NAME ^

src/io/io_unix.c - UNIX IO layer

DESCRIPTION ^

This is the Parrot UNIX IO layer. It implements unbuffered, low-level, UNIX-specific functionality.

As "UNIX" is already a generalization, it may be necessary to create separate OS-specific layers for UNIX flavors, to avoid over-complicating this file.

References: ^

APitUE - W. Richard Stevens, AT&T SFIO, Perl5 (Nick Ing-Simmons)

Functions ^

static INTVAL flags_to_unix(INTVAL flags)

Returns a UNIX-specific interpretation of flags suitable for passing to open() and fopen() in PIO_unix_open() and PIO_unix_fdopen() respectively.

static INTVAL PIO_unix_init(Interp *interp, ParrotIOLayer *layer)

Sets up the interpreter's standard std* IO handles. Returns 0 on success and -1 on error.

static ParrotIO *PIO_unix_open(Interp *interp, ParrotIOLayer *layer, const char *spath, INTVAL flags)

Opens *spath. flags is a bitwise or combination of PIO_F_* values.

static INTVAL PIO_unix_async(Interp *interp, ParrotIOLayer *layer, ParrotIO *io, INTVAL b)

Experimental asynchronous IO.

This is available if PARROT_ASYNC_DEVEL is defined.

Only works on Linux at the moment.

Toggles the O_ASYNC flag on the IO file descriptor.

static ParrotIO *PIO_unix_fdopen(Interp *interp, ParrotIOLayer *layer, PIOHANDLE fd, INTVAL flags)

Returns a new ParrotIO with file descriptor fd.

static INTVAL PIO_unix_close(Interp *interp, ParrotIOLayer *layer, ParrotIO *io)

Closes *io's file descriptor.

INTVAL PIO_unix_isatty(PIOHANDLE fd)

Returns a boolean value indicating whether fd is a console/tty.

INTVAL PIO_unix_getblksize(PIOHANDLE fd)

Various ways of determining block size.

If passed a file descriptor then fstat() and the stat buffer are used if available.

If called without an argument then the BLKSIZE constant is returned if it was available at compile time, otherwise PIO_BLKSIZE is returned.

static INTVAL PIO_unix_flush(Interp *interp, ParrotIOLayer *layer, ParrotIO *io)

At lowest layer all we can do for flush is to ask the kernel to sync().

XXX: Is it necessary to sync() here?

static size_t PIO_unix_read(Interp *interp, ParrotIOLayer *layer, ParrotIO *io, STRING ** buf)

Calls read() to return up to len bytes in the memory starting at buffer.

static size_t PIO_unix_write(Interp *interp, ParrotIOLayer *layer, ParrotIO *io, STRING *)

Calls write() to write len bytes from the memory starting at buffer to the file descriptor in *io.

static PIOOFF_T PIO_unix_seek(Interp *interp, ParrotIOLayer *layer, ParrotIO *io, PIOOFF_T offset, INTVAL whence)

Hard seek.

Calls lseek() to advance the read/write position on *io's file descriptor to offset bytes from the location indicated by whence.

static PIOOFF_T PIO_unix_tell(Interp *interp, ParrotIOLayer *layer, ParrotIO *io)

Returns the current read/write position on *io's file discriptor.

Networking ^

Define PARROT_NET_DEVEL to enable networking.

These could be native extensions but they probably should be here if we wish to make them integrated with the async IO system.

Very minimal stubs for now, maybe someone will run with these.

STRING *PIO_sockaddr_in(Interp *interp, unsigned short port, STRING *addr)

PIO_sockaddr_in() is not part of the layer and so must be extern.

XXX: We can probably just write our own routines (htons(), inet_aton(), etc.) and take this out of platform specific compilation

static ParrotIO *PIO_unix_socket(Interp *interp, ParrotIOLayer *layer, int fam, int type, int proto)

Uses socket() to create a socket with the specified address family, socket type and protocol number.

static INTVAL PIO_unix_connect(Interp *interp, ParrotIOLayer *layer, ParrotIO *io, STRING *r)

Connects *io's socket to address *r.

static INTVAL PIO_unix_bind(Interp *interp, ParrotIOLayer *layer, ParrotIO *io, STRING *l)

Binds *io's socket to the local address and port specified by *l.

static INTVAL PIO_unix_listen(Interp *interp, ParrotIOLayer *layer, ParrotIO *io, INTVAL sec)

Listen for new connections. This is only applicable to STREAM or SEQ sockets.

static ParrotIO *PIO_unix_accept(Interp *interp, ParrotIOLayer *layer, ParrotIO *io)

Accept a new connection and return a newly created ParrotIO socket.

static INTVAL PIO_unix_send(Interp *interp, ParrotIOLayer *layer, ParrotIO *io, STRING *s)

Send the message *s to *io's connected socket.

static INTVAL PIO_unix_recv(Interp *interp, ParrotIOLayer *layer, ParrotIO *io, STRING **s)

Receives a message in **s from *io's connected socket.

static INTVAL PIO_unix_poll(Interp *interp, ParrotIOLayer *l, ParrotIO *io, int which, int sec, int usec)

Utility function for polling a single IO stream with a timeout.

Returns a 1 | 2 | 4 (read, write, error) value.

This is not equivalent to any speficic POSIX or BSD socket call, however it is a useful, common primitive.

Not at all usefule --leo.

Also, a buffering layer above this may choose to reimpliment by checking the read buffer.

static ParrotIO *PIO_unix_pipe(Interp *interp, ParrotIOLayer *l, STRING *cmd, int flags)

Very limited exec for now.

XXX: Where does this fit, should it belong in the ParrotIOLayerAPI?

SEE ALSO ^

src/io/io_buf.c, src/io/io_passdown.c, src/io/io_stdio.c, src/io/io_unix.c, src/io/io_win32.c, src/io/io.c, src/io/io_private.h.

HISTORY ^

Initially written by Melvin Smith (mrjoltcola@mindspring.com).


parrot