1995-08-09 08:06:35 -07:00
|
|
|
/***********************************************************************/
|
|
|
|
/* */
|
2011-07-27 07:17:02 -07:00
|
|
|
/* OCaml */
|
1995-08-09 08:06:35 -07:00
|
|
|
/* */
|
|
|
|
/* Xavier Leroy, projet Cristal, INRIA Rocquencourt */
|
|
|
|
/* */
|
1996-04-30 07:53:58 -07:00
|
|
|
/* Copyright 1996 Institut National de Recherche en Informatique et */
|
1999-11-17 10:59:06 -08:00
|
|
|
/* en Automatique. All rights reserved. This file is distributed */
|
2001-12-07 05:41:02 -08:00
|
|
|
/* under the terms of the GNU Library General Public License, with */
|
|
|
|
/* the special exception on linking described in file ../../LICENSE. */
|
1995-08-09 08:06:35 -07:00
|
|
|
/* */
|
|
|
|
/***********************************************************************/
|
|
|
|
|
|
|
|
/* $Id$ */
|
|
|
|
|
1997-05-13 08:46:49 -07:00
|
|
|
#include <errno.h>
|
1997-06-13 08:52:43 -07:00
|
|
|
#include <string.h>
|
1995-05-08 08:18:32 -07:00
|
|
|
#include <mlvalues.h>
|
1997-05-13 08:46:49 -07:00
|
|
|
#include <memory.h>
|
|
|
|
#include <signals.h>
|
1996-09-04 07:15:31 -07:00
|
|
|
#include "unixsupport.h"
|
1995-05-08 08:18:32 -07:00
|
|
|
|
1997-05-13 08:46:49 -07:00
|
|
|
#ifndef EAGAIN
|
|
|
|
#define EAGAIN (-1)
|
|
|
|
#endif
|
|
|
|
#ifndef EWOULDBLOCK
|
|
|
|
#define EWOULDBLOCK (-1)
|
|
|
|
#endif
|
|
|
|
|
2001-08-28 07:47:48 -07:00
|
|
|
CAMLprim value unix_write(value fd, value buf, value vofs, value vlen)
|
1995-05-08 08:18:32 -07:00
|
|
|
{
|
1997-05-13 08:46:49 -07:00
|
|
|
long ofs, len, written;
|
|
|
|
int numbytes, ret;
|
|
|
|
char iobuf[UNIX_BUFFER_SIZE];
|
|
|
|
|
1997-05-26 10:16:31 -07:00
|
|
|
Begin_root (buf);
|
|
|
|
ofs = Long_val(vofs);
|
|
|
|
len = Long_val(vlen);
|
|
|
|
written = 0;
|
|
|
|
while (len > 0) {
|
|
|
|
numbytes = len > UNIX_BUFFER_SIZE ? UNIX_BUFFER_SIZE : len;
|
2000-11-23 05:45:03 -08:00
|
|
|
memmove (iobuf, &Byte(buf, ofs), numbytes);
|
1997-05-26 10:16:31 -07:00
|
|
|
enter_blocking_section();
|
|
|
|
ret = write(Int_val(fd), iobuf, numbytes);
|
|
|
|
leave_blocking_section();
|
|
|
|
if (ret == -1) {
|
|
|
|
if ((errno == EAGAIN || errno == EWOULDBLOCK) && written > 0) break;
|
|
|
|
uerror("write", Nothing);
|
|
|
|
}
|
|
|
|
written += ret;
|
|
|
|
ofs += ret;
|
|
|
|
len -= ret;
|
1997-05-13 08:46:49 -07:00
|
|
|
}
|
1997-05-26 10:16:31 -07:00
|
|
|
End_roots();
|
1997-05-13 08:46:49 -07:00
|
|
|
return Val_long(written);
|
1995-05-08 08:18:32 -07:00
|
|
|
}
|
2004-07-13 05:25:21 -07:00
|
|
|
|
|
|
|
/* When an error occurs after the first loop, unix_write reports the
|
|
|
|
error and discards the number of already written characters.
|
|
|
|
In this case, it would be better to discard the error and return the
|
|
|
|
number of bytes written, since most likely, unix_write will be call again,
|
|
|
|
and the error will be reproduced and this time will be reported.
|
|
|
|
This problem is avoided in unix_single_write, which is faithful to the
|
|
|
|
Unix system call. */
|
|
|
|
|
2010-01-22 04:48:24 -08:00
|
|
|
CAMLprim value unix_single_write(value fd, value buf, value vofs, value vlen)
|
2004-07-13 05:25:21 -07:00
|
|
|
{
|
|
|
|
long ofs, len;
|
|
|
|
int numbytes, ret;
|
|
|
|
char iobuf[UNIX_BUFFER_SIZE];
|
|
|
|
|
|
|
|
Begin_root (buf);
|
|
|
|
ofs = Long_val(vofs);
|
|
|
|
len = Long_val(vlen);
|
|
|
|
ret = 0;
|
|
|
|
if (len > 0) {
|
|
|
|
numbytes = len > UNIX_BUFFER_SIZE ? UNIX_BUFFER_SIZE : len;
|
|
|
|
memmove (iobuf, &Byte(buf, ofs), numbytes);
|
|
|
|
enter_blocking_section();
|
|
|
|
ret = write(Int_val(fd), iobuf, numbytes);
|
|
|
|
leave_blocking_section();
|
|
|
|
if (ret == -1) uerror("single_write", Nothing);
|
|
|
|
}
|
|
|
|
End_roots();
|
|
|
|
return Val_int(ret);
|
|
|
|
}
|