Rev 35751 | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed
/** R : A Computer Language for Statistical Data Analysis* Copyright (C) 2000-2005 The R Development Core Team.** This program is free software; you can redistribute it and/or modify* it under the terms of the GNU General Public License as published by* the Free Software Foundation; either version 2 of the License, or* (at your option) any later version.** This program is distributed in the hope that it will be useful,* but WITHOUT ANY WARRANTY; without even the implied warranty of* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the* GNU General Public License for more details.** You should have received a copy of the GNU General Public License* along with this program; if not, write to the Free Software* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA*/#ifndef R_CONNECTIONS_H_#define R_CONNECTIONS_H_#include <R_ext/Boolean.h>/* until we make connections more public this allows the opaquepointer definition to be made available in Rinternals.h */#ifndef HAVE_RCONNECTION_TYPEDEFtypedef struct Rconn *Rconnection;#endifstruct Rconn {char* class;char* description;char mode[5];Rboolean text, isopen, incomplete, canread, canwrite, canseek, blocking,isGzcon;Rboolean (*open)(struct Rconn *);void (*close)(struct Rconn *); /* routine closing after auto open */void (*destroy)(struct Rconn *); /* when closing connection */int (*vfprintf)(struct Rconn *, const char *, va_list);int (*fgetc)(struct Rconn *);int (*fgetc_internal)(struct Rconn *);/* int (*ungetc)(int c, struct Rconn *); */double (*seek)(struct Rconn *, double, int, int);void (*truncate)(struct Rconn *);int (*fflush)(struct Rconn *);size_t (*read)(void *, size_t, size_t, struct Rconn *);size_t (*write)(const void *, size_t, size_t, struct Rconn *);/* void (*onerror)(struct Rconn *); */int nPushBack, posPushBack; /* number of lines, position on top line */char **PushBack;int save, save2;/* unsigned char encoding[256];*/char encname[101];/* will be iconv_t, which is a pointer. NULL if not in use */void *inconv, *outconv;/* The idea here is that no MBCS char will ever not fit */char iconvbuff[25], oconvbuff[50], *next, init_out[25];short navail, inavail;Rboolean EOF_signalled;void *private;};typedef struct fileconn {FILE *fp;#if defined(HAVE_OFF_T) && defined(_LARGEFILE_SOURCE)off_t rpos, wpos;#else#ifdef Win32off64_t rpos, wpos;#elselong rpos, wpos;#endif#endifRboolean last_was_write;#ifdef Win32Rboolean anon_file;char name[PATH_MAX+1];#endif} *Rfileconn;typedef struct fifoconn {int fd;} *Rfifoconn;typedef struct gzfileconn {void *fp;int cp;} *Rgzfileconn;typedef struct textconn {char *data; /* all the data */int cur, nchars; /* current pos and number of chars */char save; /* pushback */} *Rtextconn;typedef struct outtextconn {int len; /* number of lines */SEXP namesymbol;SEXP data;char *lastline;int lastlinelength; /* buffer size */} *Routtextconn;typedef enum {HTTPsh, FTPsh} UrlScheme;typedef struct urlconn {void *ctxt;UrlScheme type;} *Rurlconn;typedef struct sockconn {int port;int server;int fd;char *host;char inbuf[4096], *pstart, *pend;} *Rsockconn;typedef struct unzconn {void *uf;} *Runzconn;typedef struct bzfileconn {FILE *fp;void *bfp;} *Rbzfileconn;typedef struct clpconn {char *buff;int pos, len, last, sizeKB;Rboolean warned;} *Rclpconn;/* zlib wants to use ZLIB_H without leading underscore in 1.2.1 */#if defined(_ZLIB_H) || defined(ZLIB_H)typedef struct gzconn {Rconnection con;int cp; /* compression level */z_stream s;int z_err, z_eof;uLong crc;Byte *inbuf, *outbuf;int nsaved;char saved[2];Rboolean allow;} *Rgzconn;#endifint Rconn_fgetc(Rconnection con);int Rconn_ungetc(int c, Rconnection con);int Rconn_getline(Rconnection con, char *buf, int bufsize);int Rconn_printf(Rconnection con, const char *format, ...);Rconnection getConnection(int n);Rconnection getConnection_no_err(int n);Rboolean switch_stdout(int icon, int closeOnExit);void con_close(int i);void Rconn_setEncoding(Rconnection con, SEXP enc);void init_con(Rconnection new, char *description, char *mode);Rconnection R_newurl(char *description, char *mode);Rconnection R_newsock(char *host, int port, int server, char *mode);Rconnection in_R_newsock(char *host, int port, int server, char *mode);Rconnection R_newunz(char *description, char *mode);int dummy_fgetc(Rconnection con);int dummy_vfprintf(Rconnection con, const char *format, va_list ap);int getActiveSink(int n);void con_pushback(Rconnection con, Rboolean newLine, char *line);int Rsockselect(int nsock, int *insockfd, int *ready, int *write,double timeout);#define set_iconv Rf_set_iconvvoid set_iconv(Rconnection con);#endif