1995-08-09 08:06:35 -07:00
|
|
|
/***********************************************************************/
|
|
|
|
/* */
|
1996-04-30 07:53:58 -07:00
|
|
|
/* Objective Caml */
|
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 */
|
1995-08-09 08:06:35 -07:00
|
|
|
/* Automatique. Distributed only by permission. */
|
|
|
|
/* */
|
|
|
|
/***********************************************************************/
|
|
|
|
|
|
|
|
/* $Id$ */
|
|
|
|
|
1995-05-04 03:15:53 -07:00
|
|
|
/* Buffered input/output */
|
|
|
|
|
|
|
|
#ifndef _io_
|
|
|
|
#define _io_
|
|
|
|
|
|
|
|
|
|
|
|
#include "misc.h"
|
|
|
|
#include "mlvalues.h"
|
|
|
|
|
|
|
|
#ifndef IO_BUFFER_SIZE
|
|
|
|
#define IO_BUFFER_SIZE 4096
|
|
|
|
#endif
|
|
|
|
|
|
|
|
struct channel {
|
|
|
|
int fd; /* Unix file descriptor */
|
|
|
|
long offset; /* Absolute position of fd in the file */
|
|
|
|
char * end; /* Physical end of the buffer */
|
1996-04-18 09:29:57 -07:00
|
|
|
char * curr; /* Current position in the buffer */
|
|
|
|
char * max; /* Logical end of the buffer (for input) */
|
1997-08-29 08:37:22 -07:00
|
|
|
void * mutex; /* Placeholder for mutex (for systhreads) */
|
|
|
|
char buff[IO_BUFFER_SIZE]; /* The buffer itself */
|
1995-05-04 03:15:53 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
/* For an output channel:
|
|
|
|
[offset] is the absolute position of the beginning of the buffer [buff].
|
|
|
|
For an input channel:
|
1996-04-18 09:29:57 -07:00
|
|
|
[offset] is the absolute position of the logical end of the buffer, [max].
|
1995-05-04 03:15:53 -07:00
|
|
|
*/
|
|
|
|
|
1997-08-29 08:37:22 -07:00
|
|
|
/* Functions and macros that can be called from C. Take arguments of
|
|
|
|
type struct channel *. No locking is performed. */
|
|
|
|
|
1995-05-04 03:15:53 -07:00
|
|
|
#define putch(channel, ch) \
|
1996-04-18 09:29:57 -07:00
|
|
|
{ if ((channel)->curr >= (channel)->end) flush_partial(channel); \
|
|
|
|
*((channel)->curr)++ = (ch); }
|
1995-05-04 03:15:53 -07:00
|
|
|
|
|
|
|
#define getch(channel) \
|
|
|
|
((channel)->curr >= (channel)->max \
|
|
|
|
? refill(channel) \
|
|
|
|
: (unsigned char) *((channel))->curr++)
|
|
|
|
|
1997-09-02 05:55:01 -07:00
|
|
|
struct channel * open_descriptor (int);
|
|
|
|
void close_channel (struct channel *);
|
1996-04-18 09:29:57 -07:00
|
|
|
|
1997-09-02 05:55:01 -07:00
|
|
|
int flush_partial (struct channel *);
|
|
|
|
void flush (struct channel *);
|
|
|
|
void putword (struct channel *, uint32);
|
|
|
|
int putblock (struct channel *, char *, long);
|
|
|
|
void really_putblock (struct channel *, char *, long);
|
1996-04-18 09:29:57 -07:00
|
|
|
|
1997-09-02 05:55:01 -07:00
|
|
|
unsigned char refill (struct channel *);
|
|
|
|
uint32 getword (struct channel *);
|
|
|
|
int getblock (struct channel *, char *, long);
|
|
|
|
int really_getblock (struct channel *, char *, long);
|
1995-05-04 03:15:53 -07:00
|
|
|
|
1997-08-29 08:37:22 -07:00
|
|
|
/* Extract a struct channel * from the heap object representing it */
|
|
|
|
|
|
|
|
#define Channel(v) ((struct channel *) Field(v, 1))
|
|
|
|
|
|
|
|
/* The locking machinery */
|
|
|
|
|
1997-09-02 05:55:01 -07:00
|
|
|
extern void (*channel_mutex_free) (struct channel *);
|
|
|
|
extern void (*channel_mutex_lock) (struct channel *);
|
|
|
|
extern void (*channel_mutex_unlock) (struct channel *);
|
|
|
|
extern void (*channel_mutex_unlock_exn) (void);
|
1997-08-29 08:37:22 -07:00
|
|
|
|
|
|
|
#define Lock(channel) \
|
|
|
|
if (channel_mutex_lock != NULL) (*channel_mutex_lock)(channel)
|
|
|
|
#define Unlock(channel) \
|
|
|
|
if (channel_mutex_unlock != NULL) (*channel_mutex_unlock)(channel)
|
|
|
|
#define Unlock_exn() \
|
|
|
|
if (channel_mutex_unlock_exn != NULL) (*channel_mutex_unlock_exn)()
|
|
|
|
|
1995-05-04 03:15:53 -07:00
|
|
|
#endif /* _io_ */
|