OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [tags/] [gnu-src/] [newlib-1.18.0/] [newlib-1.18.0-or32-1.0rc2/] [newlib/] [libc/] [stdio/] [funopen.c] - Diff between revs 207 and 520

Only display areas with differences | Details | Blame | View Log

Rev 207 Rev 520
/* Copyright (C) 2007 Eric Blake
/* Copyright (C) 2007 Eric Blake
 * Permission to use, copy, modify, and distribute this software
 * Permission to use, copy, modify, and distribute this software
 * is freely granted, provided that this notice is preserved.
 * is freely granted, provided that this notice is preserved.
 */
 */
 
 
/*
/*
FUNCTION
FUNCTION
<<funopen>>, <<fropen>>, <<fwopen>>---open a stream with custom callbacks
<<funopen>>, <<fropen>>, <<fwopen>>---open a stream with custom callbacks
 
 
INDEX
INDEX
        funopen
        funopen
INDEX
INDEX
        fropen
        fropen
INDEX
INDEX
        fwopen
        fwopen
 
 
ANSI_SYNOPSIS
ANSI_SYNOPSIS
        #include <stdio.h>
        #include <stdio.h>
        FILE *funopen(const void *<[cookie]>,
        FILE *funopen(const void *<[cookie]>,
                      int (*<[readfn]>) (void *cookie, char *buf, int n),
                      int (*<[readfn]>) (void *cookie, char *buf, int n),
                      int (*<[writefn]>) (void *cookie, const char *buf, int n),
                      int (*<[writefn]>) (void *cookie, const char *buf, int n),
                      fpos_t (*<[seekfn]>) (void *cookie, fpos_t off, int whence),
                      fpos_t (*<[seekfn]>) (void *cookie, fpos_t off, int whence),
                      int (*<[closefn]>) (void *cookie));
                      int (*<[closefn]>) (void *cookie));
        FILE *fropen(const void *<[cookie]>,
        FILE *fropen(const void *<[cookie]>,
                     int (*<[readfn]>) (void *cookie, char *buf, int n));
                     int (*<[readfn]>) (void *cookie, char *buf, int n));
        FILE *fwopen(const void *<[cookie]>,
        FILE *fwopen(const void *<[cookie]>,
                     int (*<[writefn]>) (void *cookie, const char *buf, int n));
                     int (*<[writefn]>) (void *cookie, const char *buf, int n));
 
 
DESCRIPTION
DESCRIPTION
<<funopen>> creates a <<FILE>> stream where I/O is performed using
<<funopen>> creates a <<FILE>> stream where I/O is performed using
custom callbacks.  At least one of <[readfn]> and <[writefn]> must be
custom callbacks.  At least one of <[readfn]> and <[writefn]> must be
provided, which determines whether the stream behaves with mode <"r">,
provided, which determines whether the stream behaves with mode <"r">,
<"w">, or <"r+">.
<"w">, or <"r+">.
 
 
<[readfn]> should return -1 on failure, or else the number of bytes
<[readfn]> should return -1 on failure, or else the number of bytes
read (0 on EOF).  It is similar to <<read>>, except that <int> rather
read (0 on EOF).  It is similar to <<read>>, except that <int> rather
than <size_t> bounds a transaction size, and <[cookie]> will be passed
than <size_t> bounds a transaction size, and <[cookie]> will be passed
as the first argument.  A NULL <[readfn]> makes attempts to read the
as the first argument.  A NULL <[readfn]> makes attempts to read the
stream fail.
stream fail.
 
 
<[writefn]> should return -1 on failure, or else the number of bytes
<[writefn]> should return -1 on failure, or else the number of bytes
written.  It is similar to <<write>>, except that <int> rather than
written.  It is similar to <<write>>, except that <int> rather than
<size_t> bounds a transaction size, and <[cookie]> will be passed as
<size_t> bounds a transaction size, and <[cookie]> will be passed as
the first argument.  A NULL <[writefn]> makes attempts to write the
the first argument.  A NULL <[writefn]> makes attempts to write the
stream fail.
stream fail.
 
 
<[seekfn]> should return (fpos_t)-1 on failure, or else the current
<[seekfn]> should return (fpos_t)-1 on failure, or else the current
file position.  It is similar to <<lseek>>, except that <[cookie]>
file position.  It is similar to <<lseek>>, except that <[cookie]>
will be passed as the first argument.  A NULL <[seekfn]> makes the
will be passed as the first argument.  A NULL <[seekfn]> makes the
stream behave similarly to a pipe in relation to stdio functions that
stream behave similarly to a pipe in relation to stdio functions that
require positioning.  This implementation assumes fpos_t and off_t are
require positioning.  This implementation assumes fpos_t and off_t are
the same type.
the same type.
 
 
<[closefn]> should return -1 on failure, or 0 on success.  It is
<[closefn]> should return -1 on failure, or 0 on success.  It is
similar to <<close>>, except that <[cookie]> will be passed as the
similar to <<close>>, except that <[cookie]> will be passed as the
first argument.  A NULL <[closefn]> merely flushes all data then lets
first argument.  A NULL <[closefn]> merely flushes all data then lets
<<fclose>> succeed.  A failed close will still invalidate the stream.
<<fclose>> succeed.  A failed close will still invalidate the stream.
 
 
Read and write I/O functions are allowed to change the underlying
Read and write I/O functions are allowed to change the underlying
buffer on fully buffered or line buffered streams by calling
buffer on fully buffered or line buffered streams by calling
<<setvbuf>>.  They are also not required to completely fill or empty
<<setvbuf>>.  They are also not required to completely fill or empty
the buffer.  They are not, however, allowed to change streams from
the buffer.  They are not, however, allowed to change streams from
unbuffered to buffered or to change the state of the line buffering
unbuffered to buffered or to change the state of the line buffering
flag.  They must also be prepared to have read or write calls occur on
flag.  They must also be prepared to have read or write calls occur on
buffers other than the one most recently specified.
buffers other than the one most recently specified.
 
 
The functions <<fropen>> and <<fwopen>> are convenience macros around
The functions <<fropen>> and <<fwopen>> are convenience macros around
<<funopen>> that only use the specified callback.
<<funopen>> that only use the specified callback.
 
 
RETURNS
RETURNS
The return value is an open FILE pointer on success.  On error,
The return value is an open FILE pointer on success.  On error,
<<NULL>> is returned, and <<errno>> will be set to EINVAL if a
<<NULL>> is returned, and <<errno>> will be set to EINVAL if a
function pointer is missing, ENOMEM if the stream cannot be created,
function pointer is missing, ENOMEM if the stream cannot be created,
or EMFILE if too many streams are already open.
or EMFILE if too many streams are already open.
 
 
PORTABILITY
PORTABILITY
This function is a newlib extension, copying the prototype from BSD.
This function is a newlib extension, copying the prototype from BSD.
It is not portable.  See also the <<fopencookie>> interface from Linux.
It is not portable.  See also the <<fopencookie>> interface from Linux.
 
 
Supporting OS subroutines required: <<sbrk>>.
Supporting OS subroutines required: <<sbrk>>.
*/
*/
 
 
#include <stdio.h>
#include <stdio.h>
#include <errno.h>
#include <errno.h>
#include <sys/lock.h>
#include <sys/lock.h>
#include "local.h"
#include "local.h"
 
 
typedef int (*funread)(void *_cookie, char *_buf, int _n);
typedef int (*funread)(void *_cookie, char *_buf, int _n);
typedef int (*funwrite)(void *_cookie, const char *_buf, int _n);
typedef int (*funwrite)(void *_cookie, const char *_buf, int _n);
#ifdef __LARGE64_FILES
#ifdef __LARGE64_FILES
typedef _fpos64_t (*funseek)(void *_cookie, _fpos64_t _off, int _whence);
typedef _fpos64_t (*funseek)(void *_cookie, _fpos64_t _off, int _whence);
#else
#else
typedef fpos_t (*funseek)(void *_cookie, fpos_t _off, int _whence);
typedef fpos_t (*funseek)(void *_cookie, fpos_t _off, int _whence);
#endif
#endif
typedef int (*funclose)(void *_cookie);
typedef int (*funclose)(void *_cookie);
 
 
typedef struct funcookie {
typedef struct funcookie {
  void *cookie;
  void *cookie;
  funread readfn;
  funread readfn;
  funwrite writefn;
  funwrite writefn;
  funseek seekfn;
  funseek seekfn;
  funclose closefn;
  funclose closefn;
} funcookie;
} funcookie;
 
 
static _READ_WRITE_RETURN_TYPE
static _READ_WRITE_RETURN_TYPE
_DEFUN(funreader, (ptr, cookie, buf, n),
_DEFUN(funreader, (ptr, cookie, buf, n),
       struct _reent *ptr _AND
       struct _reent *ptr _AND
       void *cookie _AND
       void *cookie _AND
       char *buf _AND
       char *buf _AND
       int n)
       int n)
{
{
  int result;
  int result;
  funcookie *c = (funcookie *) cookie;
  funcookie *c = (funcookie *) cookie;
  errno = 0;
  errno = 0;
  if ((result = c->readfn (c->cookie, buf, n)) < 0 && errno)
  if ((result = c->readfn (c->cookie, buf, n)) < 0 && errno)
    ptr->_errno = errno;
    ptr->_errno = errno;
  return result;
  return result;
}
}
 
 
static _READ_WRITE_RETURN_TYPE
static _READ_WRITE_RETURN_TYPE
_DEFUN(funwriter, (ptr, cookie, buf, n),
_DEFUN(funwriter, (ptr, cookie, buf, n),
       struct _reent *ptr _AND
       struct _reent *ptr _AND
       void *cookie _AND
       void *cookie _AND
       const char *buf _AND
       const char *buf _AND
       int n)
       int n)
{
{
  int result;
  int result;
  funcookie *c = (funcookie *) cookie;
  funcookie *c = (funcookie *) cookie;
  errno = 0;
  errno = 0;
  if ((result = c->writefn (c->cookie, buf, n)) < 0 && errno)
  if ((result = c->writefn (c->cookie, buf, n)) < 0 && errno)
    ptr->_errno = errno;
    ptr->_errno = errno;
  return result;
  return result;
}
}
 
 
static _fpos_t
static _fpos_t
_DEFUN(funseeker, (ptr, cookie, off, whence),
_DEFUN(funseeker, (ptr, cookie, off, whence),
       struct _reent *ptr _AND
       struct _reent *ptr _AND
       void *cookie _AND
       void *cookie _AND
       _fpos_t off _AND
       _fpos_t off _AND
       int whence)
       int whence)
{
{
  funcookie *c = (funcookie *) cookie;
  funcookie *c = (funcookie *) cookie;
#ifndef __LARGE64_FILES
#ifndef __LARGE64_FILES
  fpos_t result;
  fpos_t result;
  errno = 0;
  errno = 0;
  if ((result = c->seekfn (c->cookie, (fpos_t) off, whence)) < 0 && errno)
  if ((result = c->seekfn (c->cookie, (fpos_t) off, whence)) < 0 && errno)
    ptr->_errno = errno;
    ptr->_errno = errno;
#else /* __LARGE64_FILES */
#else /* __LARGE64_FILES */
  _fpos64_t result;
  _fpos64_t result;
  errno = 0;
  errno = 0;
  if ((result = c->seekfn (c->cookie, (_fpos64_t) off, whence)) < 0 && errno)
  if ((result = c->seekfn (c->cookie, (_fpos64_t) off, whence)) < 0 && errno)
    ptr->_errno = errno;
    ptr->_errno = errno;
  else if ((_fpos_t)result != result)
  else if ((_fpos_t)result != result)
    {
    {
      ptr->_errno = EOVERFLOW;
      ptr->_errno = EOVERFLOW;
      result = -1;
      result = -1;
    }
    }
#endif /* __LARGE64_FILES */
#endif /* __LARGE64_FILES */
  return result;
  return result;
}
}
 
 
#ifdef __LARGE64_FILES
#ifdef __LARGE64_FILES
static _fpos64_t
static _fpos64_t
_DEFUN(funseeker64, (ptr, cookie, off, whence),
_DEFUN(funseeker64, (ptr, cookie, off, whence),
       struct _reent *ptr _AND
       struct _reent *ptr _AND
       void *cookie _AND
       void *cookie _AND
       _fpos64_t off _AND
       _fpos64_t off _AND
       int whence)
       int whence)
{
{
  _fpos64_t result;
  _fpos64_t result;
  funcookie *c = (funcookie *) cookie;
  funcookie *c = (funcookie *) cookie;
  errno = 0;
  errno = 0;
  if ((result = c->seekfn (c->cookie, off, whence)) < 0 && errno)
  if ((result = c->seekfn (c->cookie, off, whence)) < 0 && errno)
    ptr->_errno = errno;
    ptr->_errno = errno;
  return result;
  return result;
}
}
#endif /* __LARGE64_FILES */
#endif /* __LARGE64_FILES */
 
 
static int
static int
_DEFUN(funcloser, (ptr, cookie),
_DEFUN(funcloser, (ptr, cookie),
       struct _reent *ptr _AND
       struct _reent *ptr _AND
       void *cookie)
       void *cookie)
{
{
  int result = 0;
  int result = 0;
  funcookie *c = (funcookie *) cookie;
  funcookie *c = (funcookie *) cookie;
  if (c->closefn)
  if (c->closefn)
    {
    {
      errno = 0;
      errno = 0;
      if ((result = c->closefn (c->cookie)) < 0 && errno)
      if ((result = c->closefn (c->cookie)) < 0 && errno)
        ptr->_errno = errno;
        ptr->_errno = errno;
    }
    }
  _free_r (ptr, c);
  _free_r (ptr, c);
  return result;
  return result;
}
}
 
 
FILE *
FILE *
_DEFUN(_funopen_r, (ptr, cookie, readfn, writefn, seekfn, closefn),
_DEFUN(_funopen_r, (ptr, cookie, readfn, writefn, seekfn, closefn),
       struct _reent *ptr _AND
       struct _reent *ptr _AND
       const void *cookie _AND
       const void *cookie _AND
       funread readfn _AND
       funread readfn _AND
       funwrite writefn _AND
       funwrite writefn _AND
       funseek seekfn _AND
       funseek seekfn _AND
       funclose closefn)
       funclose closefn)
{
{
  FILE *fp;
  FILE *fp;
  funcookie *c;
  funcookie *c;
 
 
  if (!readfn && !writefn)
  if (!readfn && !writefn)
    {
    {
      ptr->_errno = EINVAL;
      ptr->_errno = EINVAL;
      return NULL;
      return NULL;
    }
    }
  if ((fp = __sfp (ptr)) == NULL)
  if ((fp = __sfp (ptr)) == NULL)
    return NULL;
    return NULL;
  if ((c = (funcookie *) _malloc_r (ptr, sizeof *c)) == NULL)
  if ((c = (funcookie *) _malloc_r (ptr, sizeof *c)) == NULL)
    {
    {
      __sfp_lock_acquire ();
      __sfp_lock_acquire ();
      fp->_flags = 0;            /* release */
      fp->_flags = 0;            /* release */
#ifndef __SINGLE_THREAD__
#ifndef __SINGLE_THREAD__
      __lock_close_recursive (fp->_lock);
      __lock_close_recursive (fp->_lock);
#endif
#endif
      __sfp_lock_release ();
      __sfp_lock_release ();
      return NULL;
      return NULL;
    }
    }
 
 
  _flockfile (fp);
  _flockfile (fp);
  fp->_file = -1;
  fp->_file = -1;
  c->cookie = (void *) cookie; /* cast away const */
  c->cookie = (void *) cookie; /* cast away const */
  fp->_cookie = c;
  fp->_cookie = c;
  if (readfn)
  if (readfn)
    {
    {
      c->readfn = readfn;
      c->readfn = readfn;
      fp->_read = funreader;
      fp->_read = funreader;
      if (writefn)
      if (writefn)
        {
        {
          fp->_flags = __SRW;
          fp->_flags = __SRW;
          c->writefn = writefn;
          c->writefn = writefn;
          fp->_write = funwriter;
          fp->_write = funwriter;
        }
        }
      else
      else
        {
        {
          fp->_flags = __SRD;
          fp->_flags = __SRD;
          c->writefn = NULL;
          c->writefn = NULL;
          fp->_write = NULL;
          fp->_write = NULL;
        }
        }
    }
    }
  else
  else
    {
    {
      fp->_flags = __SWR;
      fp->_flags = __SWR;
      c->writefn = writefn;
      c->writefn = writefn;
      fp->_write = funwriter;
      fp->_write = funwriter;
      c->readfn = NULL;
      c->readfn = NULL;
      fp->_read = NULL;
      fp->_read = NULL;
    }
    }
  c->seekfn = seekfn;
  c->seekfn = seekfn;
  fp->_seek = seekfn ? funseeker : NULL;
  fp->_seek = seekfn ? funseeker : NULL;
#ifdef __LARGE64_FILES
#ifdef __LARGE64_FILES
  fp->_seek64 = seekfn ? funseeker64 : NULL;
  fp->_seek64 = seekfn ? funseeker64 : NULL;
  fp->_flags |= __SL64;
  fp->_flags |= __SL64;
#endif
#endif
  c->closefn = closefn;
  c->closefn = closefn;
  fp->_close = funcloser;
  fp->_close = funcloser;
  _funlockfile (fp);
  _funlockfile (fp);
  return fp;
  return fp;
}
}
 
 
#ifndef _REENT_ONLY
#ifndef _REENT_ONLY
FILE *
FILE *
_DEFUN(funopen, (cookie, readfn, writefn, seekfn, closefn),
_DEFUN(funopen, (cookie, readfn, writefn, seekfn, closefn),
       const void *cookie _AND
       const void *cookie _AND
       funread readfn _AND
       funread readfn _AND
       funwrite writefn _AND
       funwrite writefn _AND
       funseek seekfn _AND
       funseek seekfn _AND
       funclose closefn)
       funclose closefn)
{
{
  return _funopen_r (_REENT, cookie, readfn, writefn, seekfn, closefn);
  return _funopen_r (_REENT, cookie, readfn, writefn, seekfn, closefn);
}
}
#endif /* !_REENT_ONLY */
#endif /* !_REENT_ONLY */
 
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.