1991-02-19 08:39:46 -04:00
|
|
|
|
1990-10-14 09:07:46 -03:00
|
|
|
/* File object implementation */
|
|
|
|
|
1997-05-02 00:12:38 -03:00
|
|
|
#include "Python.h"
|
1994-08-01 08:34:53 -03:00
|
|
|
#include "structmember.h"
|
1990-10-14 09:07:46 -03:00
|
|
|
|
1999-08-27 17:39:37 -03:00
|
|
|
#ifndef DONT_HAVE_SYS_TYPES_H
|
1999-01-07 18:09:51 -04:00
|
|
|
#include <sys/types.h>
|
1999-08-27 17:39:37 -03:00
|
|
|
#endif /* DONT_HAVE_SYS_TYPES_H */
|
1999-01-07 18:09:51 -04:00
|
|
|
|
2000-06-28 17:57:07 -03:00
|
|
|
/* We expect that fstat exists on most systems.
|
|
|
|
It's confirmed on Unix, Mac and Windows.
|
|
|
|
If you don't have it, add #define DONT_HAVE_FSTAT to your config.h. */
|
|
|
|
#ifndef DONT_HAVE_FSTAT
|
|
|
|
#define HAVE_FSTAT
|
|
|
|
|
|
|
|
#ifndef DONT_HAVE_SYS_TYPES_H
|
|
|
|
#include <sys/types.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef DONT_HAVE_SYS_STAT_H
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#else
|
|
|
|
#ifdef HAVE_STAT_H
|
|
|
|
#include <stat.h>
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif /* DONT_HAVE_FSTAT */
|
|
|
|
|
1996-12-05 17:54:17 -04:00
|
|
|
#ifdef HAVE_UNISTD_H
|
|
|
|
#include <unistd.h>
|
|
|
|
#endif
|
|
|
|
|
1997-05-06 12:23:24 -03:00
|
|
|
#ifdef MS_WIN32
|
|
|
|
#define fileno _fileno
|
2000-08-11 16:02:59 -03:00
|
|
|
/* can (almost fully) duplicate with _chsize, see file_truncate */
|
1997-05-06 12:23:24 -03:00
|
|
|
#define HAVE_FTRUNCATE
|
|
|
|
#endif
|
|
|
|
|
1998-04-28 13:05:59 -03:00
|
|
|
#ifdef macintosh
|
|
|
|
#ifdef USE_GUSI
|
|
|
|
#define HAVE_FTRUNCATE
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
1995-04-23 19:12:47 -03:00
|
|
|
#ifdef __MWERKS__
|
|
|
|
/* Mwerks fopen() doesn't always set errno */
|
|
|
|
#define NO_FOPEN_ERRNO
|
|
|
|
#endif
|
1995-02-19 11:55:19 -04:00
|
|
|
|
1997-05-02 00:12:38 -03:00
|
|
|
#define BUF(v) PyString_AS_STRING((PyStringObject *)v)
|
1991-03-06 09:06:18 -04:00
|
|
|
|
1999-08-27 17:39:37 -03:00
|
|
|
#ifndef DONT_HAVE_ERRNO_H
|
1993-07-05 07:31:29 -03:00
|
|
|
#include <errno.h>
|
1999-08-27 17:39:37 -03:00
|
|
|
#endif
|
1990-10-14 09:07:46 -03:00
|
|
|
|
2000-08-11 16:02:59 -03:00
|
|
|
/* define the appropriate 64-bit capable tell() function */
|
2000-09-21 19:15:29 -03:00
|
|
|
#if defined(MS_WIN64)
|
|
|
|
#define TELL64 _telli64
|
2001-01-08 22:00:11 -04:00
|
|
|
#elif defined(__NetBSD__) || defined(__OpenBSD__) || defined(__FreeBSD__) || defined(_HAVE_BSDI) || defined(__APPLE__)
|
2000-09-21 19:15:29 -03:00
|
|
|
/* NOTE: this is only used on older
|
|
|
|
NetBSD prior to f*o() funcions */
|
|
|
|
#define TELL64(fd) lseek((fd),0,SEEK_CUR)
|
2000-08-11 16:02:59 -03:00
|
|
|
#endif
|
|
|
|
|
|
|
|
|
1990-10-14 09:07:46 -03:00
|
|
|
typedef struct {
|
1997-05-02 00:12:38 -03:00
|
|
|
PyObject_HEAD
|
1990-10-14 09:07:46 -03:00
|
|
|
FILE *f_fp;
|
1997-05-02 00:12:38 -03:00
|
|
|
PyObject *f_name;
|
|
|
|
PyObject *f_mode;
|
2000-07-09 00:09:57 -03:00
|
|
|
int (*f_close)(FILE *);
|
1991-04-04 06:44:06 -04:00
|
|
|
int f_softspace; /* Flag used by 'print' command */
|
2000-03-10 18:55:18 -04:00
|
|
|
int f_binary; /* Flag which indicates whether the file is open
|
|
|
|
open in binary (1) or test (0) mode */
|
1997-05-02 00:12:38 -03:00
|
|
|
} PyFileObject;
|
1990-10-14 09:07:46 -03:00
|
|
|
|
|
|
|
FILE *
|
2000-07-09 02:02:18 -03:00
|
|
|
PyFile_AsFile(PyObject *f)
|
1990-10-14 09:07:46 -03:00
|
|
|
{
|
1997-05-02 00:12:38 -03:00
|
|
|
if (f == NULL || !PyFile_Check(f))
|
1990-10-14 09:07:46 -03:00
|
|
|
return NULL;
|
1992-09-25 18:59:05 -03:00
|
|
|
else
|
1997-05-02 00:12:38 -03:00
|
|
|
return ((PyFileObject *)f)->f_fp;
|
1990-10-14 09:07:46 -03:00
|
|
|
}
|
|
|
|
|
1997-05-02 00:12:38 -03:00
|
|
|
PyObject *
|
2000-07-09 02:02:18 -03:00
|
|
|
PyFile_Name(PyObject *f)
|
1993-10-18 14:06:59 -03:00
|
|
|
{
|
1997-05-02 00:12:38 -03:00
|
|
|
if (f == NULL || !PyFile_Check(f))
|
1993-10-18 14:06:59 -03:00
|
|
|
return NULL;
|
|
|
|
else
|
1997-05-02 00:12:38 -03:00
|
|
|
return ((PyFileObject *)f)->f_name;
|
1993-10-18 14:06:59 -03:00
|
|
|
}
|
|
|
|
|
1997-05-02 00:12:38 -03:00
|
|
|
PyObject *
|
2000-07-09 02:02:18 -03:00
|
|
|
PyFile_FromFile(FILE *fp, char *name, char *mode, int (*close)(FILE *))
|
1990-10-14 09:07:46 -03:00
|
|
|
{
|
1997-05-02 00:12:38 -03:00
|
|
|
PyFileObject *f = PyObject_NEW(PyFileObject, &PyFile_Type);
|
1990-10-14 09:07:46 -03:00
|
|
|
if (f == NULL)
|
|
|
|
return NULL;
|
|
|
|
f->f_fp = NULL;
|
1997-05-02 00:12:38 -03:00
|
|
|
f->f_name = PyString_FromString(name);
|
|
|
|
f->f_mode = PyString_FromString(mode);
|
1991-06-04 16:37:39 -03:00
|
|
|
f->f_close = close;
|
1991-04-04 06:44:06 -04:00
|
|
|
f->f_softspace = 0;
|
2000-03-10 18:55:18 -04:00
|
|
|
if (strchr(mode,'b') != NULL)
|
|
|
|
f->f_binary = 1;
|
|
|
|
else
|
|
|
|
f->f_binary = 0;
|
1990-10-14 09:07:46 -03:00
|
|
|
if (f->f_name == NULL || f->f_mode == NULL) {
|
1997-05-02 00:12:38 -03:00
|
|
|
Py_DECREF(f);
|
1990-10-14 09:07:46 -03:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
f->f_fp = fp;
|
1997-05-02 00:12:38 -03:00
|
|
|
return (PyObject *) f;
|
1990-10-14 09:07:46 -03:00
|
|
|
}
|
|
|
|
|
1997-05-02 00:12:38 -03:00
|
|
|
PyObject *
|
2000-07-09 02:02:18 -03:00
|
|
|
PyFile_FromString(char *name, char *mode)
|
1990-10-14 09:07:46 -03:00
|
|
|
{
|
2000-07-09 00:09:57 -03:00
|
|
|
extern int fclose(FILE *);
|
1997-05-02 00:12:38 -03:00
|
|
|
PyFileObject *f;
|
|
|
|
f = (PyFileObject *) PyFile_FromFile((FILE *)NULL, name, mode, fclose);
|
1990-10-14 09:07:46 -03:00
|
|
|
if (f == NULL)
|
|
|
|
return NULL;
|
1995-01-02 15:07:15 -04:00
|
|
|
#ifdef HAVE_FOPENRF
|
1991-02-13 19:25:27 -04:00
|
|
|
if (*mode == '*') {
|
|
|
|
FILE *fopenRF();
|
|
|
|
f->f_fp = fopenRF(name, mode+1);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
#endif
|
1992-08-05 16:58:53 -03:00
|
|
|
{
|
1997-05-02 00:12:38 -03:00
|
|
|
Py_BEGIN_ALLOW_THREADS
|
1992-08-05 16:58:53 -03:00
|
|
|
f->f_fp = fopen(name, mode);
|
1997-05-02 00:12:38 -03:00
|
|
|
Py_END_ALLOW_THREADS
|
1992-08-05 16:58:53 -03:00
|
|
|
}
|
1991-02-13 19:25:27 -04:00
|
|
|
if (f->f_fp == NULL) {
|
1995-04-23 19:12:47 -03:00
|
|
|
#ifdef NO_FOPEN_ERRNO
|
1998-07-23 13:07:02 -03:00
|
|
|
/* Metroworks only, not testable, so unchanged */
|
1995-04-23 19:12:47 -03:00
|
|
|
if ( errno == 0 ) {
|
1997-05-02 00:12:38 -03:00
|
|
|
PyErr_SetString(PyExc_IOError, "Cannot open file");
|
|
|
|
Py_DECREF(f);
|
1995-04-23 19:12:47 -03:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
#endif
|
1998-07-23 13:07:02 -03:00
|
|
|
PyErr_SetFromErrnoWithFilename(PyExc_IOError, name);
|
1997-05-02 00:12:38 -03:00
|
|
|
Py_DECREF(f);
|
1990-10-14 09:07:46 -03:00
|
|
|
return NULL;
|
|
|
|
}
|
1997-05-02 00:12:38 -03:00
|
|
|
return (PyObject *)f;
|
1990-10-14 09:07:46 -03:00
|
|
|
}
|
|
|
|
|
1994-08-01 08:34:53 -03:00
|
|
|
void
|
2000-07-09 02:02:18 -03:00
|
|
|
PyFile_SetBufSize(PyObject *f, int bufsize)
|
1994-08-01 08:34:53 -03:00
|
|
|
{
|
|
|
|
if (bufsize >= 0) {
|
|
|
|
#ifdef HAVE_SETVBUF
|
|
|
|
int type;
|
|
|
|
switch (bufsize) {
|
|
|
|
case 0:
|
|
|
|
type = _IONBF;
|
|
|
|
break;
|
|
|
|
case 1:
|
|
|
|
type = _IOLBF;
|
|
|
|
bufsize = BUFSIZ;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
type = _IOFBF;
|
|
|
|
}
|
1997-05-02 00:12:38 -03:00
|
|
|
setvbuf(((PyFileObject *)f)->f_fp, (char *)NULL,
|
|
|
|
type, bufsize);
|
1998-03-06 11:32:40 -04:00
|
|
|
#else /* !HAVE_SETVBUF */
|
|
|
|
if (bufsize <= 1)
|
|
|
|
setbuf(((PyFileObject *)f)->f_fp, (char *)NULL);
|
|
|
|
#endif /* !HAVE_SETVBUF */
|
1994-08-01 08:34:53 -03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1997-05-02 00:12:38 -03:00
|
|
|
static PyObject *
|
2000-07-09 02:02:18 -03:00
|
|
|
err_closed(void)
|
1992-07-06 11:19:26 -03:00
|
|
|
{
|
1997-05-02 00:12:38 -03:00
|
|
|
PyErr_SetString(PyExc_ValueError, "I/O operation on closed file");
|
1992-07-06 11:19:26 -03:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
1990-10-14 09:07:46 -03:00
|
|
|
/* Methods */
|
|
|
|
|
|
|
|
static void
|
2000-07-09 02:02:18 -03:00
|
|
|
file_dealloc(PyFileObject *f)
|
1990-10-14 09:07:46 -03:00
|
|
|
{
|
1992-08-05 16:58:53 -03:00
|
|
|
if (f->f_fp != NULL && f->f_close != NULL) {
|
1997-05-02 00:12:38 -03:00
|
|
|
Py_BEGIN_ALLOW_THREADS
|
1991-06-04 16:37:39 -03:00
|
|
|
(*f->f_close)(f->f_fp);
|
1997-05-02 00:12:38 -03:00
|
|
|
Py_END_ALLOW_THREADS
|
1992-08-05 16:58:53 -03:00
|
|
|
}
|
1998-04-10 19:16:39 -03:00
|
|
|
if (f->f_name != NULL) {
|
1997-05-02 00:12:38 -03:00
|
|
|
Py_DECREF(f->f_name);
|
1998-04-10 19:16:39 -03:00
|
|
|
}
|
|
|
|
if (f->f_mode != NULL) {
|
1997-05-02 00:12:38 -03:00
|
|
|
Py_DECREF(f->f_mode);
|
1998-04-10 19:16:39 -03:00
|
|
|
}
|
2000-05-03 20:44:39 -03:00
|
|
|
PyObject_DEL(f);
|
1990-10-14 09:07:46 -03:00
|
|
|
}
|
|
|
|
|
1997-05-02 00:12:38 -03:00
|
|
|
static PyObject *
|
2000-07-09 02:02:18 -03:00
|
|
|
file_repr(PyFileObject *f)
|
1990-10-14 09:07:46 -03:00
|
|
|
{
|
|
|
|
char buf[300];
|
2000-06-30 12:01:00 -03:00
|
|
|
sprintf(buf, "<%s file '%.256s', mode '%.10s' at %p>",
|
1990-10-14 09:07:46 -03:00
|
|
|
f->f_fp == NULL ? "closed" : "open",
|
1997-05-02 00:12:38 -03:00
|
|
|
PyString_AsString(f->f_name),
|
|
|
|
PyString_AsString(f->f_mode),
|
2000-06-30 12:01:00 -03:00
|
|
|
f);
|
1997-05-02 00:12:38 -03:00
|
|
|
return PyString_FromString(buf);
|
1990-10-14 09:07:46 -03:00
|
|
|
}
|
|
|
|
|
1997-05-02 00:12:38 -03:00
|
|
|
static PyObject *
|
2000-07-09 02:02:18 -03:00
|
|
|
file_close(PyFileObject *f, PyObject *args)
|
1990-10-14 09:07:46 -03:00
|
|
|
{
|
1991-06-04 16:37:39 -03:00
|
|
|
int sts = 0;
|
1997-05-02 00:12:38 -03:00
|
|
|
if (!PyArg_NoArgs(args))
|
1990-10-14 09:07:46 -03:00
|
|
|
return NULL;
|
|
|
|
if (f->f_fp != NULL) {
|
1992-08-05 16:58:53 -03:00
|
|
|
if (f->f_close != NULL) {
|
1997-05-02 00:12:38 -03:00
|
|
|
Py_BEGIN_ALLOW_THREADS
|
1992-08-05 16:58:53 -03:00
|
|
|
errno = 0;
|
1991-06-04 16:37:39 -03:00
|
|
|
sts = (*f->f_close)(f->f_fp);
|
1997-05-02 00:12:38 -03:00
|
|
|
Py_END_ALLOW_THREADS
|
1992-08-05 16:58:53 -03:00
|
|
|
}
|
1990-10-14 09:07:46 -03:00
|
|
|
f->f_fp = NULL;
|
|
|
|
}
|
1992-03-04 12:39:24 -04:00
|
|
|
if (sts == EOF)
|
1997-05-02 00:12:38 -03:00
|
|
|
return PyErr_SetFromErrno(PyExc_IOError);
|
1991-06-04 16:37:39 -03:00
|
|
|
if (sts != 0)
|
1997-05-02 00:12:38 -03:00
|
|
|
return PyInt_FromLong((long)sts);
|
|
|
|
Py_INCREF(Py_None);
|
|
|
|
return Py_None;
|
1990-10-14 09:07:46 -03:00
|
|
|
}
|
|
|
|
|
2000-08-11 16:02:59 -03:00
|
|
|
|
|
|
|
/* a portable fseek() function
|
|
|
|
return 0 on success, non-zero on failure (with errno set) */
|
|
|
|
int
|
2001-01-07 17:19:34 -04:00
|
|
|
#if defined(HAVE_LARGEFILE_SUPPORT) && SIZEOF_OFF_T < 8 && SIZEOF_FPOS_T >= 8
|
2000-08-31 02:18:54 -03:00
|
|
|
_portable_fseek(FILE *fp, fpos_t offset, int whence)
|
2000-08-11 16:02:59 -03:00
|
|
|
#else
|
2000-08-31 02:18:54 -03:00
|
|
|
_portable_fseek(FILE *fp, off_t offset, int whence)
|
2000-08-11 16:02:59 -03:00
|
|
|
#endif
|
|
|
|
{
|
|
|
|
#if defined(HAVE_FSEEKO)
|
|
|
|
return fseeko(fp, offset, whence);
|
|
|
|
#elif defined(HAVE_FSEEK64)
|
|
|
|
return fseek64(fp, offset, whence);
|
2000-10-06 17:42:33 -03:00
|
|
|
#elif defined(__BEOS__)
|
|
|
|
return _fseek(fp, offset, whence);
|
2001-01-07 17:19:34 -04:00
|
|
|
#elif defined(HAVE_LARGEFILE_SUPPORT) && SIZEOF_FPOS_T >= 8
|
2000-08-11 16:02:59 -03:00
|
|
|
/* lacking a 64-bit capable fseek() (as Win64 does) use a 64-bit capable
|
|
|
|
fsetpos() and tell() to implement fseek()*/
|
|
|
|
fpos_t pos;
|
|
|
|
switch (whence) {
|
|
|
|
case SEEK_CUR:
|
|
|
|
if (fgetpos(fp, &pos) != 0)
|
|
|
|
return -1;
|
|
|
|
offset += pos;
|
|
|
|
break;
|
|
|
|
case SEEK_END:
|
|
|
|
/* do a "no-op" seek first to sync the buffering so that
|
|
|
|
the low-level tell() can be used correctly */
|
|
|
|
if (fseek(fp, 0, SEEK_END) != 0)
|
|
|
|
return -1;
|
|
|
|
if ((pos = TELL64(fileno(fp))) == -1L)
|
|
|
|
return -1;
|
|
|
|
offset += pos;
|
|
|
|
break;
|
|
|
|
/* case SEEK_SET: break; */
|
|
|
|
}
|
|
|
|
return fsetpos(fp, &offset);
|
|
|
|
#else
|
|
|
|
return fseek(fp, offset, whence);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* a portable ftell() function
|
|
|
|
Return -1 on failure with errno set appropriately, current file
|
|
|
|
position on success */
|
2001-01-07 17:19:34 -04:00
|
|
|
#if defined(HAVE_LARGEFILE_SUPPORT) && SIZEOF_OFF_T < 8 && SIZEOF_FPOS_T >= 8
|
2000-08-11 16:02:59 -03:00
|
|
|
fpos_t
|
|
|
|
#else
|
|
|
|
off_t
|
|
|
|
#endif
|
2000-08-31 02:18:54 -03:00
|
|
|
_portable_ftell(FILE* fp)
|
2000-08-11 16:02:59 -03:00
|
|
|
{
|
|
|
|
#if defined(HAVE_FTELLO) && defined(HAVE_LARGEFILE_SUPPORT)
|
|
|
|
return ftello(fp);
|
|
|
|
#elif defined(HAVE_FTELL64) && defined(HAVE_LARGEFILE_SUPPORT)
|
|
|
|
return ftell64(fp);
|
|
|
|
#elif SIZEOF_FPOS_T >= 8 && defined(HAVE_LARGEFILE_SUPPORT)
|
|
|
|
fpos_t pos;
|
|
|
|
if (fgetpos(fp, &pos) != 0)
|
|
|
|
return -1;
|
|
|
|
return pos;
|
|
|
|
#else
|
|
|
|
return ftell(fp);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
|
1997-05-02 00:12:38 -03:00
|
|
|
static PyObject *
|
2000-07-09 02:02:18 -03:00
|
|
|
file_seek(PyFileObject *f, PyObject *args)
|
1990-10-14 09:07:46 -03:00
|
|
|
{
|
1992-07-06 11:19:26 -03:00
|
|
|
int whence;
|
1992-08-05 16:58:53 -03:00
|
|
|
int ret;
|
2001-01-07 17:19:34 -04:00
|
|
|
#if defined(HAVE_LARGEFILE_SUPPORT) && SIZEOF_OFF_T < 8 && SIZEOF_FPOS_T >= 8
|
2000-08-11 16:02:59 -03:00
|
|
|
fpos_t offset, pos;
|
|
|
|
#else
|
1999-01-06 14:51:17 -04:00
|
|
|
off_t offset;
|
2000-08-11 16:02:59 -03:00
|
|
|
#endif /* !MS_WIN64 */
|
1999-01-06 14:51:17 -04:00
|
|
|
PyObject *offobj;
|
2001-01-07 17:19:34 -04:00
|
|
|
|
1992-07-06 11:19:26 -03:00
|
|
|
if (f->f_fp == NULL)
|
|
|
|
return err_closed();
|
|
|
|
whence = 0;
|
2000-02-29 09:59:29 -04:00
|
|
|
if (!PyArg_ParseTuple(args, "O|i:seek", &offobj, &whence))
|
1999-01-06 14:51:17 -04:00
|
|
|
return NULL;
|
|
|
|
#if !defined(HAVE_LARGEFILE_SUPPORT)
|
|
|
|
offset = PyInt_AsLong(offobj);
|
|
|
|
#else
|
|
|
|
offset = PyLong_Check(offobj) ?
|
|
|
|
PyLong_AsLongLong(offobj) : PyInt_AsLong(offobj);
|
|
|
|
#endif
|
|
|
|
if (PyErr_Occurred())
|
1999-01-04 13:22:18 -04:00
|
|
|
return NULL;
|
2001-01-07 17:19:34 -04:00
|
|
|
|
1997-05-02 00:12:38 -03:00
|
|
|
Py_BEGIN_ALLOW_THREADS
|
1991-03-06 09:06:18 -04:00
|
|
|
errno = 0;
|
2000-08-11 16:02:59 -03:00
|
|
|
ret = _portable_fseek(f->f_fp, offset, whence);
|
1997-05-02 00:12:38 -03:00
|
|
|
Py_END_ALLOW_THREADS
|
2000-08-11 16:02:59 -03:00
|
|
|
|
1992-08-05 16:58:53 -03:00
|
|
|
if (ret != 0) {
|
1997-05-02 00:12:38 -03:00
|
|
|
PyErr_SetFromErrno(PyExc_IOError);
|
1992-03-04 12:39:24 -04:00
|
|
|
clearerr(f->f_fp);
|
|
|
|
return NULL;
|
1991-03-06 09:06:18 -04:00
|
|
|
}
|
1997-05-02 00:12:38 -03:00
|
|
|
Py_INCREF(Py_None);
|
|
|
|
return Py_None;
|
1991-03-06 09:06:18 -04:00
|
|
|
}
|
|
|
|
|
2000-08-11 16:02:59 -03:00
|
|
|
|
1995-01-02 15:07:15 -04:00
|
|
|
#ifdef HAVE_FTRUNCATE
|
1997-05-02 00:12:38 -03:00
|
|
|
static PyObject *
|
2000-07-09 02:02:18 -03:00
|
|
|
file_truncate(PyFileObject *f, PyObject *args)
|
1995-01-02 15:07:15 -04:00
|
|
|
{
|
|
|
|
int ret;
|
2001-01-07 17:19:34 -04:00
|
|
|
#if defined(HAVE_LARGEFILE_SUPPORT) && SIZEOF_OFF_T < 8 && SIZEOF_FPOS_T >= 8
|
2000-08-11 16:02:59 -03:00
|
|
|
fpos_t newsize;
|
|
|
|
#else
|
1999-01-06 14:51:17 -04:00
|
|
|
off_t newsize;
|
2000-08-11 16:02:59 -03:00
|
|
|
#endif
|
1999-01-06 14:51:17 -04:00
|
|
|
PyObject *newsizeobj;
|
2001-01-07 17:19:34 -04:00
|
|
|
|
1995-01-02 15:07:15 -04:00
|
|
|
if (f->f_fp == NULL)
|
|
|
|
return err_closed();
|
1999-01-06 14:51:17 -04:00
|
|
|
newsizeobj = NULL;
|
2000-02-29 09:59:29 -04:00
|
|
|
if (!PyArg_ParseTuple(args, "|O:truncate", &newsizeobj))
|
1999-01-04 13:22:18 -04:00
|
|
|
return NULL;
|
1999-01-06 14:51:17 -04:00
|
|
|
if (newsizeobj != NULL) {
|
|
|
|
#if !defined(HAVE_LARGEFILE_SUPPORT)
|
|
|
|
newsize = PyInt_AsLong(newsizeobj);
|
|
|
|
#else
|
|
|
|
newsize = PyLong_Check(newsizeobj) ?
|
|
|
|
PyLong_AsLongLong(newsizeobj) :
|
|
|
|
PyInt_AsLong(newsizeobj);
|
|
|
|
#endif
|
|
|
|
if (PyErr_Occurred())
|
|
|
|
return NULL;
|
|
|
|
} else {
|
|
|
|
/* Default to current position*/
|
1997-05-02 00:12:38 -03:00
|
|
|
Py_BEGIN_ALLOW_THREADS
|
1995-01-02 15:07:15 -04:00
|
|
|
errno = 0;
|
2000-08-11 16:02:59 -03:00
|
|
|
newsize = _portable_ftell(f->f_fp);
|
1997-05-02 00:12:38 -03:00
|
|
|
Py_END_ALLOW_THREADS
|
1999-01-06 14:51:17 -04:00
|
|
|
if (newsize == -1) {
|
1997-05-02 00:12:38 -03:00
|
|
|
PyErr_SetFromErrno(PyExc_IOError);
|
1995-01-02 15:07:15 -04:00
|
|
|
clearerr(f->f_fp);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
}
|
1997-05-02 00:12:38 -03:00
|
|
|
Py_BEGIN_ALLOW_THREADS
|
1995-01-02 15:07:15 -04:00
|
|
|
errno = 0;
|
|
|
|
ret = fflush(f->f_fp);
|
1997-05-02 00:12:38 -03:00
|
|
|
Py_END_ALLOW_THREADS
|
2000-08-11 16:02:59 -03:00
|
|
|
if (ret != 0) goto onioerror;
|
|
|
|
|
|
|
|
#ifdef MS_WIN32
|
|
|
|
/* can use _chsize; if, however, the newsize overflows 32-bits then
|
|
|
|
_chsize is *not* adequate; in this case, an OverflowError is raised */
|
|
|
|
if (newsize > LONG_MAX) {
|
|
|
|
PyErr_SetString(PyExc_OverflowError,
|
|
|
|
"the new size is too long for _chsize (it is limited to 32-bit values)");
|
|
|
|
return NULL;
|
|
|
|
} else {
|
|
|
|
Py_BEGIN_ALLOW_THREADS
|
1995-01-02 15:07:15 -04:00
|
|
|
errno = 0;
|
2000-08-11 16:02:59 -03:00
|
|
|
ret = _chsize(fileno(f->f_fp), newsize);
|
1997-05-02 00:12:38 -03:00
|
|
|
Py_END_ALLOW_THREADS
|
2000-08-11 16:02:59 -03:00
|
|
|
if (ret != 0) goto onioerror;
|
1995-01-02 15:07:15 -04:00
|
|
|
}
|
2000-08-11 16:02:59 -03:00
|
|
|
#else
|
|
|
|
Py_BEGIN_ALLOW_THREADS
|
|
|
|
errno = 0;
|
|
|
|
ret = ftruncate(fileno(f->f_fp), newsize);
|
|
|
|
Py_END_ALLOW_THREADS
|
|
|
|
if (ret != 0) goto onioerror;
|
|
|
|
#endif /* !MS_WIN32 */
|
2001-01-07 17:19:34 -04:00
|
|
|
|
1997-05-02 00:12:38 -03:00
|
|
|
Py_INCREF(Py_None);
|
|
|
|
return Py_None;
|
2000-08-11 16:02:59 -03:00
|
|
|
|
|
|
|
onioerror:
|
|
|
|
PyErr_SetFromErrno(PyExc_IOError);
|
|
|
|
clearerr(f->f_fp);
|
|
|
|
return NULL;
|
1995-01-02 15:07:15 -04:00
|
|
|
}
|
|
|
|
#endif /* HAVE_FTRUNCATE */
|
|
|
|
|
1997-05-02 00:12:38 -03:00
|
|
|
static PyObject *
|
2000-07-09 02:02:18 -03:00
|
|
|
file_tell(PyFileObject *f, PyObject *args)
|
1991-03-06 09:06:18 -04:00
|
|
|
{
|
2001-01-07 17:19:34 -04:00
|
|
|
#if defined(HAVE_LARGEFILE_SUPPORT) && SIZEOF_OFF_T < 8 && SIZEOF_FPOS_T >= 8
|
2000-08-11 16:02:59 -03:00
|
|
|
fpos_t pos;
|
|
|
|
#else
|
|
|
|
off_t pos;
|
|
|
|
#endif
|
|
|
|
|
1992-07-06 11:19:26 -03:00
|
|
|
if (f->f_fp == NULL)
|
|
|
|
return err_closed();
|
1997-05-02 00:12:38 -03:00
|
|
|
if (!PyArg_NoArgs(args))
|
1990-10-14 09:07:46 -03:00
|
|
|
return NULL;
|
1997-05-02 00:12:38 -03:00
|
|
|
Py_BEGIN_ALLOW_THREADS
|
1991-03-06 09:06:18 -04:00
|
|
|
errno = 0;
|
2000-08-11 16:02:59 -03:00
|
|
|
pos = _portable_ftell(f->f_fp);
|
1997-05-02 00:12:38 -03:00
|
|
|
Py_END_ALLOW_THREADS
|
2000-08-11 16:02:59 -03:00
|
|
|
if (pos == -1) {
|
1997-05-02 00:12:38 -03:00
|
|
|
PyErr_SetFromErrno(PyExc_IOError);
|
1992-03-04 12:39:24 -04:00
|
|
|
clearerr(f->f_fp);
|
|
|
|
return NULL;
|
1991-03-06 09:06:18 -04:00
|
|
|
}
|
1999-01-06 14:51:17 -04:00
|
|
|
#if !defined(HAVE_LARGEFILE_SUPPORT)
|
2000-08-11 16:02:59 -03:00
|
|
|
return PyInt_FromLong(pos);
|
1999-01-06 14:51:17 -04:00
|
|
|
#else
|
2000-08-11 16:02:59 -03:00
|
|
|
return PyLong_FromLongLong(pos);
|
1999-01-06 14:51:17 -04:00
|
|
|
#endif
|
1991-03-06 09:06:18 -04:00
|
|
|
}
|
|
|
|
|
1997-05-02 00:12:38 -03:00
|
|
|
static PyObject *
|
2000-07-09 02:02:18 -03:00
|
|
|
file_fileno(PyFileObject *f, PyObject *args)
|
1992-06-23 06:07:03 -03:00
|
|
|
{
|
1992-07-06 11:19:26 -03:00
|
|
|
if (f->f_fp == NULL)
|
|
|
|
return err_closed();
|
1997-05-02 00:12:38 -03:00
|
|
|
if (!PyArg_NoArgs(args))
|
1992-06-23 06:07:03 -03:00
|
|
|
return NULL;
|
1997-05-02 00:12:38 -03:00
|
|
|
return PyInt_FromLong((long) fileno(f->f_fp));
|
1992-06-23 06:07:03 -03:00
|
|
|
}
|
|
|
|
|
1997-05-02 00:12:38 -03:00
|
|
|
static PyObject *
|
2000-07-09 02:02:18 -03:00
|
|
|
file_flush(PyFileObject *f, PyObject *args)
|
1991-03-06 09:06:18 -04:00
|
|
|
{
|
1992-08-05 16:58:53 -03:00
|
|
|
int res;
|
2001-01-07 17:19:34 -04:00
|
|
|
|
1992-07-06 11:19:26 -03:00
|
|
|
if (f->f_fp == NULL)
|
|
|
|
return err_closed();
|
1997-05-02 00:12:38 -03:00
|
|
|
if (!PyArg_NoArgs(args))
|
1991-03-06 09:06:18 -04:00
|
|
|
return NULL;
|
1997-05-02 00:12:38 -03:00
|
|
|
Py_BEGIN_ALLOW_THREADS
|
1991-03-06 09:06:18 -04:00
|
|
|
errno = 0;
|
1992-08-05 16:58:53 -03:00
|
|
|
res = fflush(f->f_fp);
|
1997-05-02 00:12:38 -03:00
|
|
|
Py_END_ALLOW_THREADS
|
1992-08-05 16:58:53 -03:00
|
|
|
if (res != 0) {
|
1997-05-02 00:12:38 -03:00
|
|
|
PyErr_SetFromErrno(PyExc_IOError);
|
1992-03-04 12:39:24 -04:00
|
|
|
clearerr(f->f_fp);
|
|
|
|
return NULL;
|
1991-03-06 09:06:18 -04:00
|
|
|
}
|
1997-05-02 00:12:38 -03:00
|
|
|
Py_INCREF(Py_None);
|
|
|
|
return Py_None;
|
1991-03-06 09:06:18 -04:00
|
|
|
}
|
|
|
|
|
1997-05-02 00:12:38 -03:00
|
|
|
static PyObject *
|
2000-07-09 02:02:18 -03:00
|
|
|
file_isatty(PyFileObject *f, PyObject *args)
|
1991-06-04 16:37:39 -03:00
|
|
|
{
|
1992-08-05 16:58:53 -03:00
|
|
|
long res;
|
1992-07-06 11:19:26 -03:00
|
|
|
if (f->f_fp == NULL)
|
|
|
|
return err_closed();
|
1997-05-02 00:12:38 -03:00
|
|
|
if (!PyArg_NoArgs(args))
|
1991-06-04 16:37:39 -03:00
|
|
|
return NULL;
|
1997-05-02 00:12:38 -03:00
|
|
|
Py_BEGIN_ALLOW_THREADS
|
1992-08-05 16:58:53 -03:00
|
|
|
res = isatty((int)fileno(f->f_fp));
|
1997-05-02 00:12:38 -03:00
|
|
|
Py_END_ALLOW_THREADS
|
|
|
|
return PyInt_FromLong(res);
|
1991-06-04 16:37:39 -03:00
|
|
|
}
|
|
|
|
|
1999-08-27 17:39:37 -03:00
|
|
|
|
1997-05-09 19:27:31 -03:00
|
|
|
#if BUFSIZ < 8192
|
|
|
|
#define SMALLCHUNK 8192
|
|
|
|
#else
|
|
|
|
#define SMALLCHUNK BUFSIZ
|
|
|
|
#endif
|
|
|
|
|
1999-01-14 15:00:14 -04:00
|
|
|
#if SIZEOF_INT < 4
|
|
|
|
#define BIGCHUNK (512 * 32)
|
|
|
|
#else
|
|
|
|
#define BIGCHUNK (512 * 1024)
|
|
|
|
#endif
|
1997-05-09 19:27:31 -03:00
|
|
|
|
|
|
|
static size_t
|
2000-07-09 02:02:18 -03:00
|
|
|
new_buffersize(PyFileObject *f, size_t currentsize)
|
1997-05-09 19:27:31 -03:00
|
|
|
{
|
|
|
|
#ifdef HAVE_FSTAT
|
|
|
|
long pos, end;
|
|
|
|
struct stat st;
|
|
|
|
if (fstat(fileno(f->f_fp), &st) == 0) {
|
|
|
|
end = st.st_size;
|
1998-12-11 16:44:56 -04:00
|
|
|
/* The following is not a bug: we really need to call lseek()
|
|
|
|
*and* ftell(). The reason is that some stdio libraries
|
|
|
|
mistakenly flush their buffer when ftell() is called and
|
|
|
|
the lseek() call it makes fails, thereby throwing away
|
|
|
|
data that cannot be recovered in any way. To avoid this,
|
|
|
|
we first test lseek(), and only call ftell() if lseek()
|
|
|
|
works. We can't use the lseek() value either, because we
|
|
|
|
need to take the amount of buffered data into account.
|
|
|
|
(Yet another reason why stdio stinks. :-) */
|
1998-05-05 19:21:35 -03:00
|
|
|
pos = lseek(fileno(f->f_fp), 0L, SEEK_CUR);
|
|
|
|
if (pos >= 0)
|
|
|
|
pos = ftell(f->f_fp);
|
1998-04-27 16:01:08 -03:00
|
|
|
if (pos < 0)
|
|
|
|
clearerr(f->f_fp);
|
1997-05-09 19:27:31 -03:00
|
|
|
if (end > pos && pos >= 0)
|
1998-12-11 16:44:56 -04:00
|
|
|
return currentsize + end - pos + 1;
|
1998-03-03 18:36:10 -04:00
|
|
|
/* Add 1 so if the file were to grow we'd notice. */
|
1997-05-09 19:27:31 -03:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
if (currentsize > SMALLCHUNK) {
|
|
|
|
/* Keep doubling until we reach BIGCHUNK;
|
|
|
|
then keep adding BIGCHUNK. */
|
|
|
|
if (currentsize <= BIGCHUNK)
|
|
|
|
return currentsize + currentsize;
|
|
|
|
else
|
|
|
|
return currentsize + BIGCHUNK;
|
|
|
|
}
|
|
|
|
return currentsize + SMALLCHUNK;
|
|
|
|
}
|
|
|
|
|
1997-05-02 00:12:38 -03:00
|
|
|
static PyObject *
|
2000-07-09 02:02:18 -03:00
|
|
|
file_read(PyFileObject *f, PyObject *args)
|
1991-03-06 09:06:18 -04:00
|
|
|
{
|
1997-05-10 19:33:55 -03:00
|
|
|
long bytesrequested = -1;
|
1997-05-09 19:27:31 -03:00
|
|
|
size_t bytesread, buffersize, chunksize;
|
1997-05-02 00:12:38 -03:00
|
|
|
PyObject *v;
|
2001-01-07 17:19:34 -04:00
|
|
|
|
1992-07-06 11:19:26 -03:00
|
|
|
if (f->f_fp == NULL)
|
|
|
|
return err_closed();
|
2000-02-29 09:59:29 -04:00
|
|
|
if (!PyArg_ParseTuple(args, "|l:read", &bytesrequested))
|
1997-05-10 19:33:55 -03:00
|
|
|
return NULL;
|
1997-05-09 19:27:31 -03:00
|
|
|
if (bytesrequested < 0)
|
1999-04-10 12:48:23 -03:00
|
|
|
buffersize = new_buffersize(f, (size_t)0);
|
1997-05-09 19:27:31 -03:00
|
|
|
else
|
|
|
|
buffersize = bytesrequested;
|
2000-08-11 16:02:59 -03:00
|
|
|
if (buffersize > INT_MAX) {
|
|
|
|
PyErr_SetString(PyExc_OverflowError,
|
|
|
|
"requested number of bytes is more than a Python string can hold");
|
|
|
|
return NULL;
|
|
|
|
}
|
1997-05-09 19:27:31 -03:00
|
|
|
v = PyString_FromStringAndSize((char *)NULL, buffersize);
|
1990-12-20 11:06:42 -04:00
|
|
|
if (v == NULL)
|
1990-10-14 09:07:46 -03:00
|
|
|
return NULL;
|
1997-05-09 19:27:31 -03:00
|
|
|
bytesread = 0;
|
1991-03-06 09:06:18 -04:00
|
|
|
for (;;) {
|
1997-05-10 19:07:25 -03:00
|
|
|
Py_BEGIN_ALLOW_THREADS
|
|
|
|
errno = 0;
|
1997-05-09 19:27:31 -03:00
|
|
|
chunksize = fread(BUF(v) + bytesread, 1,
|
|
|
|
buffersize - bytesread, f->f_fp);
|
1997-05-10 19:07:25 -03:00
|
|
|
Py_END_ALLOW_THREADS
|
|
|
|
if (chunksize == 0) {
|
|
|
|
if (!ferror(f->f_fp))
|
|
|
|
break;
|
|
|
|
PyErr_SetFromErrno(PyExc_IOError);
|
|
|
|
clearerr(f->f_fp);
|
|
|
|
Py_DECREF(v);
|
|
|
|
return NULL;
|
|
|
|
}
|
1997-05-09 19:27:31 -03:00
|
|
|
bytesread += chunksize;
|
|
|
|
if (bytesread < buffersize)
|
1991-03-06 09:06:18 -04:00
|
|
|
break;
|
1997-05-09 19:27:31 -03:00
|
|
|
if (bytesrequested < 0) {
|
1998-12-11 16:44:56 -04:00
|
|
|
buffersize = new_buffersize(f, buffersize);
|
1997-05-09 19:27:31 -03:00
|
|
|
if (_PyString_Resize(&v, buffersize) < 0)
|
1991-03-06 09:06:18 -04:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
}
|
1997-05-09 19:27:31 -03:00
|
|
|
if (bytesread != buffersize)
|
|
|
|
_PyString_Resize(&v, bytesread);
|
1990-10-14 09:07:46 -03:00
|
|
|
return v;
|
|
|
|
}
|
|
|
|
|
1997-05-05 19:15:02 -03:00
|
|
|
static PyObject *
|
2000-07-09 02:02:18 -03:00
|
|
|
file_readinto(PyFileObject *f, PyObject *args)
|
1997-05-05 19:15:02 -03:00
|
|
|
{
|
|
|
|
char *ptr;
|
2000-08-11 16:02:59 -03:00
|
|
|
size_t ntodo, ndone, nnow;
|
2001-01-07 17:19:34 -04:00
|
|
|
|
1997-05-05 19:15:02 -03:00
|
|
|
if (f->f_fp == NULL)
|
|
|
|
return err_closed();
|
|
|
|
if (!PyArg_Parse(args, "w#", &ptr, &ntodo))
|
|
|
|
return NULL;
|
|
|
|
ndone = 0;
|
1997-05-10 19:07:25 -03:00
|
|
|
while (ntodo > 0) {
|
|
|
|
Py_BEGIN_ALLOW_THREADS
|
|
|
|
errno = 0;
|
1997-05-05 19:15:02 -03:00
|
|
|
nnow = fread(ptr+ndone, 1, ntodo, f->f_fp);
|
1997-05-10 19:07:25 -03:00
|
|
|
Py_END_ALLOW_THREADS
|
|
|
|
if (nnow == 0) {
|
|
|
|
if (!ferror(f->f_fp))
|
|
|
|
break;
|
1997-05-05 19:15:02 -03:00
|
|
|
PyErr_SetFromErrno(PyExc_IOError);
|
|
|
|
clearerr(f->f_fp);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
ndone += nnow;
|
|
|
|
ntodo -= nnow;
|
|
|
|
}
|
2000-08-11 16:02:59 -03:00
|
|
|
return PyInt_FromLong((long)ndone);
|
1997-05-05 19:15:02 -03:00
|
|
|
}
|
|
|
|
|
2001-01-07 17:19:34 -04:00
|
|
|
/**************************************************************************
|
|
|
|
Win32 MS routine to get next line.
|
|
|
|
|
|
|
|
Under MSVC 6:
|
|
|
|
|
2001-01-08 00:02:07 -04:00
|
|
|
+ MS threadsafe getc is very slow (multiple layers of function calls before+
|
|
|
|
after each character, to lock+unlock the stream).
|
|
|
|
+ The stream-locking functions are MS-internal -- can't access them from user
|
|
|
|
code.
|
|
|
|
+ There's nothing Tim could find in the MS C or platform SDK libraries that
|
|
|
|
can worm around this.
|
2001-01-07 17:19:34 -04:00
|
|
|
+ MS fgets locks/unlocks only once per line; it's the only hook we have.
|
|
|
|
|
|
|
|
So we use fgets for speed(!), despite that it's painful.
|
|
|
|
|
|
|
|
MS realloc is also slow.
|
|
|
|
|
|
|
|
In the usual case, we have one pleasantly small line already sitting in a
|
|
|
|
stdio buffer, and we optimize heavily for that case.
|
|
|
|
|
2001-01-07 20:53:12 -04:00
|
|
|
CAUTION: This routine cheats, relying on that MSVC 6 fgets doesn't overwrite
|
|
|
|
any buffer positions to the right of the terminating null byte. Seems
|
|
|
|
unlikely that will change in the future, but ... std test test_bufio should
|
|
|
|
catch it if that changes.
|
2001-01-07 17:19:34 -04:00
|
|
|
**************************************************************************/
|
|
|
|
|
|
|
|
/* if Win32 and MS's compiler */
|
|
|
|
#if defined(MS_WIN32) && defined(_MSC_VER)
|
|
|
|
#define USE_MS_GETLINE_HACK
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef USE_MS_GETLINE_HACK
|
|
|
|
static PyObject*
|
|
|
|
ms_getline_hack(FILE *fp)
|
|
|
|
{
|
2001-01-07 20:53:12 -04:00
|
|
|
/* INITBUFSIZE is the maximum line length that lets us get away with the fast
|
|
|
|
* no-realloc path. get_line uses 100 for its initial size, but isn't trying
|
|
|
|
* to avoid reallocs. Under MSVC 6, and using files with lines all under 100
|
|
|
|
* chars long, dropping this from 200 to 100 bought less than 1% speedup.
|
|
|
|
* Since many kinds of log files have lines exceeding 100 chars, the tiny
|
|
|
|
* slowdown from using 200 is more than offset by the large speedup for such
|
|
|
|
* log files.
|
|
|
|
* INCBUFSIZE is the amount by which we grow the buffer, if INITBUFSIZE isn't
|
|
|
|
* enough. It doesn't much matter what this set to.
|
|
|
|
*/
|
|
|
|
#define INITBUFSIZE 200
|
2001-01-07 17:19:34 -04:00
|
|
|
#define INCBUFSIZE 1000
|
|
|
|
PyObject* v; /* the string object result */
|
|
|
|
size_t total_v_size; /* total # chars in v's buffer */
|
|
|
|
char* pvfree; /* address of next free slot */
|
|
|
|
char* pvend; /* address one beyond last free slot */
|
|
|
|
char* p; /* temp */
|
2001-01-07 20:53:12 -04:00
|
|
|
char msbuf[INITBUFSIZE];
|
2001-01-07 17:19:34 -04:00
|
|
|
|
2001-01-07 20:53:12 -04:00
|
|
|
/* Optimize for normal case: avoid _PyString_Resize if at all
|
|
|
|
* possible via first reading into auto msbuf.
|
|
|
|
*/
|
|
|
|
Py_BEGIN_ALLOW_THREADS
|
|
|
|
memset(msbuf, '\n', INITBUFSIZE);
|
|
|
|
p = fgets(msbuf, INITBUFSIZE, fp);
|
|
|
|
Py_END_ALLOW_THREADS
|
|
|
|
|
|
|
|
if (p == NULL) {
|
|
|
|
clearerr(fp);
|
|
|
|
if (PyErr_CheckSignals())
|
|
|
|
return NULL;
|
|
|
|
v = PyString_FromStringAndSize("", 0);
|
|
|
|
return v;
|
|
|
|
}
|
|
|
|
/* fgets read *something* */
|
|
|
|
p = memchr(msbuf, '\n', INITBUFSIZE);
|
|
|
|
if (p != NULL) {
|
|
|
|
/* Did the \n come from fgets or from us?
|
|
|
|
* Since fgets stops at the first \n, and then writes \0, if
|
|
|
|
* it's from fgets a \0 must be next. But if that's so, it
|
|
|
|
* could not have come from us, since the \n's we filled the
|
|
|
|
* buffer with have only more \n's to the right.
|
2001-01-07 17:19:34 -04:00
|
|
|
*/
|
2001-01-07 20:53:12 -04:00
|
|
|
pvend = msbuf + INITBUFSIZE;
|
|
|
|
if (p+1 < pvend && *(p+1) == '\0') {
|
|
|
|
/* It's from fgets: we win! In particular, we
|
|
|
|
* haven't done any mallocs yet, and can build the
|
|
|
|
* final result on the first try.
|
2001-01-07 17:19:34 -04:00
|
|
|
*/
|
2001-01-07 20:53:12 -04:00
|
|
|
v = PyString_FromStringAndSize(msbuf, p - msbuf + 1);
|
2001-01-07 17:19:34 -04:00
|
|
|
return v;
|
|
|
|
}
|
2001-01-07 20:53:12 -04:00
|
|
|
/* Must be from us: fgets didn't fill the buffer and didn't
|
|
|
|
* find a newline, so it must be the last and newline-free
|
|
|
|
* line of the file.
|
2001-01-07 17:19:34 -04:00
|
|
|
*/
|
2001-01-07 20:53:12 -04:00
|
|
|
assert(p > msbuf && *(p-1) == '\0');
|
|
|
|
v = PyString_FromStringAndSize(msbuf, p - msbuf - 1);
|
|
|
|
return v;
|
2001-01-07 17:19:34 -04:00
|
|
|
}
|
2001-01-07 20:53:12 -04:00
|
|
|
/* yuck: fgets overwrote all the newlines, i.e. the entire buffer.
|
|
|
|
* So this line isn't over yet, or maybe it is but we're exactly at
|
2001-01-08 00:02:07 -04:00
|
|
|
* EOF; in either case, we're tired <wink>.
|
2001-01-07 20:53:12 -04:00
|
|
|
*/
|
|
|
|
assert(msbuf[INITBUFSIZE-1] == '\0');
|
|
|
|
total_v_size = INITBUFSIZE + INCBUFSIZE;
|
2001-01-08 00:02:07 -04:00
|
|
|
v = PyString_FromStringAndSize((char*)NULL, (int)total_v_size);
|
2001-01-07 20:53:12 -04:00
|
|
|
if (v == NULL)
|
|
|
|
return v;
|
|
|
|
/* copy over everything except the last null byte */
|
|
|
|
memcpy(BUF(v), msbuf, INITBUFSIZE-1);
|
|
|
|
pvfree = BUF(v) + INITBUFSIZE - 1;
|
2001-01-07 17:19:34 -04:00
|
|
|
|
|
|
|
/* Keep reading stuff into v; if it ever ends successfully, break
|
2001-01-07 20:53:12 -04:00
|
|
|
* after setting p one beyond the end of the line. The code here is
|
|
|
|
* very much like the code above, except reads into v's buffer; see
|
|
|
|
* the code above for detailed comments about the logic.
|
2001-01-07 17:19:34 -04:00
|
|
|
*/
|
|
|
|
for (;;) {
|
|
|
|
size_t nfree;
|
|
|
|
|
|
|
|
Py_BEGIN_ALLOW_THREADS
|
|
|
|
pvend = BUF(v) + total_v_size;
|
|
|
|
nfree = pvend - pvfree;
|
|
|
|
memset(pvfree, '\n', nfree);
|
|
|
|
p = fgets(pvfree, nfree, fp);
|
|
|
|
Py_END_ALLOW_THREADS
|
|
|
|
|
|
|
|
if (p == NULL) {
|
|
|
|
clearerr(fp);
|
|
|
|
if (PyErr_CheckSignals()) {
|
|
|
|
Py_DECREF(v);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
p = pvfree;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
p = memchr(pvfree, '\n', nfree);
|
|
|
|
if (p != NULL) {
|
|
|
|
if (p+1 < pvend && *(p+1) == '\0') {
|
|
|
|
/* \n came from fgets */
|
|
|
|
++p;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
/* \n came from us; last line of file, no newline */
|
|
|
|
assert(p > pvfree && *(p-1) == '\0');
|
|
|
|
--p;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
/* expand buffer and try again */
|
|
|
|
assert(*(pvend-1) == '\0');
|
|
|
|
total_v_size += INCBUFSIZE;
|
|
|
|
if (total_v_size > INT_MAX) {
|
|
|
|
PyErr_SetString(PyExc_OverflowError,
|
|
|
|
"line is longer than a Python string can hold");
|
|
|
|
Py_DECREF(v);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
if (_PyString_Resize(&v, (int)total_v_size) < 0)
|
|
|
|
return NULL;
|
|
|
|
/* overwrite the trailing null byte */
|
|
|
|
pvfree = BUF(v) + (total_v_size - INCBUFSIZE - 1);
|
|
|
|
}
|
|
|
|
if (BUF(v) + total_v_size != p)
|
|
|
|
_PyString_Resize(&v, p - BUF(v));
|
|
|
|
return v;
|
|
|
|
#undef INITBUFSIZE
|
|
|
|
#undef INCBUFSIZE
|
|
|
|
}
|
|
|
|
#endif /* ifdef USE_MS_GETLINE_HACK */
|
1997-05-05 19:15:02 -03:00
|
|
|
|
1991-04-04 11:21:57 -04:00
|
|
|
/* Internal routine to get a line.
|
|
|
|
Size argument interpretation:
|
|
|
|
> 0: max length;
|
2001-01-07 21:26:47 -04:00
|
|
|
<= 0: read arbitrary line
|
1991-03-06 09:06:18 -04:00
|
|
|
*/
|
|
|
|
|
2001-01-05 10:43:05 -04:00
|
|
|
#ifdef HAVE_GETC_UNLOCKED
|
|
|
|
#define GETC(f) getc_unlocked(f)
|
|
|
|
#define FLOCKFILE(f) flockfile(f)
|
|
|
|
#define FUNLOCKFILE(f) funlockfile(f)
|
|
|
|
#else
|
|
|
|
#define GETC(f) getc(f)
|
|
|
|
#define FLOCKFILE(f)
|
|
|
|
#define FUNLOCKFILE(f)
|
|
|
|
#endif
|
|
|
|
|
1997-05-02 00:12:38 -03:00
|
|
|
static PyObject *
|
2000-07-09 02:02:18 -03:00
|
|
|
get_line(PyFileObject *f, int n)
|
1990-10-14 09:07:46 -03:00
|
|
|
{
|
2001-01-05 10:43:05 -04:00
|
|
|
FILE *fp = f->f_fp;
|
|
|
|
int c;
|
2000-11-28 22:53:22 -04:00
|
|
|
char *buf, *end;
|
2000-08-11 16:02:59 -03:00
|
|
|
size_t n1, n2;
|
1997-05-02 00:12:38 -03:00
|
|
|
PyObject *v;
|
1991-04-04 11:21:57 -04:00
|
|
|
|
2001-01-07 17:19:34 -04:00
|
|
|
#ifdef USE_MS_GETLINE_HACK
|
2001-01-07 21:26:47 -04:00
|
|
|
|
|
|
|
if (n <= 0)
|
2001-01-07 17:19:34 -04:00
|
|
|
return ms_getline_hack(fp);
|
|
|
|
#endif
|
1991-04-04 11:21:57 -04:00
|
|
|
n2 = n > 0 ? n : 100;
|
1997-05-02 00:12:38 -03:00
|
|
|
v = PyString_FromStringAndSize((char *)NULL, n2);
|
1990-12-20 11:06:42 -04:00
|
|
|
if (v == NULL)
|
1990-10-14 09:07:46 -03:00
|
|
|
return NULL;
|
1991-03-06 09:06:18 -04:00
|
|
|
buf = BUF(v);
|
|
|
|
end = buf + n2;
|
1992-08-04 09:41:02 -03:00
|
|
|
|
1991-03-06 09:06:18 -04:00
|
|
|
for (;;) {
|
2001-01-05 10:43:05 -04:00
|
|
|
Py_BEGIN_ALLOW_THREADS
|
|
|
|
FLOCKFILE(fp);
|
|
|
|
while ((c = GETC(fp)) != EOF &&
|
|
|
|
(*buf++ = c) != '\n' &&
|
|
|
|
buf != end)
|
|
|
|
;
|
|
|
|
FUNLOCKFILE(fp);
|
|
|
|
Py_END_ALLOW_THREADS
|
|
|
|
if (c == '\n')
|
|
|
|
break;
|
|
|
|
if (c == EOF) {
|
1991-06-03 07:54:55 -03:00
|
|
|
clearerr(fp);
|
1997-05-02 00:12:38 -03:00
|
|
|
if (PyErr_CheckSignals()) {
|
|
|
|
Py_DECREF(v);
|
1991-04-04 11:21:57 -04:00
|
|
|
return NULL;
|
|
|
|
}
|
1991-03-06 09:06:18 -04:00
|
|
|
break;
|
1991-04-04 11:21:57 -04:00
|
|
|
}
|
2001-01-05 10:43:05 -04:00
|
|
|
/* Must be because buf == end */
|
|
|
|
if (n > 0)
|
1991-04-04 11:21:57 -04:00
|
|
|
break;
|
2001-01-05 10:43:05 -04:00
|
|
|
n1 = n2;
|
|
|
|
n2 += 1000;
|
|
|
|
if (n2 > INT_MAX) {
|
|
|
|
PyErr_SetString(PyExc_OverflowError,
|
|
|
|
"line is longer than a Python string can hold");
|
2001-01-07 17:19:34 -04:00
|
|
|
Py_DECREF(v);
|
2001-01-05 10:43:05 -04:00
|
|
|
return NULL;
|
1991-04-04 11:21:57 -04:00
|
|
|
}
|
2001-01-05 10:43:05 -04:00
|
|
|
if (_PyString_Resize(&v, n2) < 0)
|
|
|
|
return NULL;
|
|
|
|
buf = BUF(v) + n1;
|
|
|
|
end = BUF(v) + n2;
|
1990-10-14 09:07:46 -03:00
|
|
|
}
|
1992-08-04 09:41:02 -03:00
|
|
|
|
1991-03-06 09:06:18 -04:00
|
|
|
n1 = buf - BUF(v);
|
|
|
|
if (n1 != n2)
|
1997-05-02 00:12:38 -03:00
|
|
|
_PyString_Resize(&v, n1);
|
1990-10-14 09:07:46 -03:00
|
|
|
return v;
|
|
|
|
}
|
|
|
|
|
1991-04-04 11:21:57 -04:00
|
|
|
/* External C interface */
|
|
|
|
|
1997-05-02 00:12:38 -03:00
|
|
|
PyObject *
|
2000-07-09 02:02:18 -03:00
|
|
|
PyFile_GetLine(PyObject *f, int n)
|
1991-04-04 11:21:57 -04:00
|
|
|
{
|
2001-01-07 16:51:39 -04:00
|
|
|
PyObject *result;
|
|
|
|
|
1992-09-25 18:59:05 -03:00
|
|
|
if (f == NULL) {
|
1997-05-02 00:12:38 -03:00
|
|
|
PyErr_BadInternalCall();
|
1991-04-04 11:21:57 -04:00
|
|
|
return NULL;
|
|
|
|
}
|
2001-01-07 16:51:39 -04:00
|
|
|
|
|
|
|
if (PyFile_Check(f)) {
|
|
|
|
if (((PyFileObject*)f)->f_fp == NULL)
|
|
|
|
return err_closed();
|
|
|
|
result = get_line((PyFileObject *)f, n);
|
|
|
|
}
|
|
|
|
else {
|
1997-05-02 00:12:38 -03:00
|
|
|
PyObject *reader;
|
|
|
|
PyObject *args;
|
2001-01-07 16:51:39 -04:00
|
|
|
|
1997-05-02 00:12:38 -03:00
|
|
|
reader = PyObject_GetAttrString(f, "readline");
|
1992-09-25 18:59:05 -03:00
|
|
|
if (reader == NULL)
|
|
|
|
return NULL;
|
|
|
|
if (n <= 0)
|
1997-05-02 00:12:38 -03:00
|
|
|
args = Py_BuildValue("()");
|
1992-09-25 18:59:05 -03:00
|
|
|
else
|
1997-05-02 00:12:38 -03:00
|
|
|
args = Py_BuildValue("(i)", n);
|
1992-09-25 18:59:05 -03:00
|
|
|
if (args == NULL) {
|
1997-05-02 00:12:38 -03:00
|
|
|
Py_DECREF(reader);
|
1992-09-25 18:59:05 -03:00
|
|
|
return NULL;
|
|
|
|
}
|
1997-05-02 00:12:38 -03:00
|
|
|
result = PyEval_CallObject(reader, args);
|
|
|
|
Py_DECREF(reader);
|
|
|
|
Py_DECREF(args);
|
|
|
|
if (result != NULL && !PyString_Check(result)) {
|
|
|
|
Py_DECREF(result);
|
1992-09-25 18:59:05 -03:00
|
|
|
result = NULL;
|
1997-05-02 00:12:38 -03:00
|
|
|
PyErr_SetString(PyExc_TypeError,
|
1992-09-25 18:59:05 -03:00
|
|
|
"object.readline() returned non-string");
|
|
|
|
}
|
2001-01-07 16:51:39 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
if (n < 0 && result != NULL && PyString_Check(result)) {
|
|
|
|
char *s = PyString_AS_STRING(result);
|
|
|
|
int len = PyString_GET_SIZE(result);
|
|
|
|
if (len == 0) {
|
|
|
|
Py_DECREF(result);
|
|
|
|
result = NULL;
|
|
|
|
PyErr_SetString(PyExc_EOFError,
|
|
|
|
"EOF when reading a line");
|
|
|
|
}
|
|
|
|
else if (s[len-1] == '\n') {
|
|
|
|
if (result->ob_refcnt == 1)
|
|
|
|
_PyString_Resize(&result, len-1);
|
|
|
|
else {
|
|
|
|
PyObject *v;
|
|
|
|
v = PyString_FromStringAndSize(s, len-1);
|
1997-05-02 00:12:38 -03:00
|
|
|
Py_DECREF(result);
|
2001-01-07 16:51:39 -04:00
|
|
|
result = v;
|
1992-09-25 18:59:05 -03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2001-01-07 16:51:39 -04:00
|
|
|
return result;
|
1991-04-04 11:21:57 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Python method */
|
|
|
|
|
1997-05-02 00:12:38 -03:00
|
|
|
static PyObject *
|
2000-07-09 02:02:18 -03:00
|
|
|
file_readline(PyFileObject *f, PyObject *args)
|
1991-04-04 11:21:57 -04:00
|
|
|
{
|
1997-05-10 19:33:55 -03:00
|
|
|
int n = -1;
|
1991-04-04 11:21:57 -04:00
|
|
|
|
1992-07-06 11:19:26 -03:00
|
|
|
if (f->f_fp == NULL)
|
|
|
|
return err_closed();
|
2000-02-29 09:59:29 -04:00
|
|
|
if (!PyArg_ParseTuple(args, "|i:readline", &n))
|
1997-05-10 19:33:55 -03:00
|
|
|
return NULL;
|
|
|
|
if (n == 0)
|
|
|
|
return PyString_FromString("");
|
|
|
|
if (n < 0)
|
|
|
|
n = 0;
|
2000-07-05 12:32:40 -03:00
|
|
|
return get_line(f, n);
|
1991-04-04 11:21:57 -04:00
|
|
|
}
|
|
|
|
|
1997-05-02 00:12:38 -03:00
|
|
|
static PyObject *
|
2000-07-09 02:02:18 -03:00
|
|
|
file_readlines(PyFileObject *f, PyObject *args)
|
1991-03-06 09:06:18 -04:00
|
|
|
{
|
1997-05-10 19:33:55 -03:00
|
|
|
long sizehint = 0;
|
1997-05-02 00:12:38 -03:00
|
|
|
PyObject *list;
|
|
|
|
PyObject *line;
|
1997-05-10 19:07:25 -03:00
|
|
|
char small_buffer[SMALLCHUNK];
|
|
|
|
char *buffer = small_buffer;
|
|
|
|
size_t buffersize = SMALLCHUNK;
|
|
|
|
PyObject *big_buffer = NULL;
|
|
|
|
size_t nfilled = 0;
|
|
|
|
size_t nread;
|
1997-05-10 19:33:55 -03:00
|
|
|
size_t totalread = 0;
|
1997-05-10 19:07:25 -03:00
|
|
|
char *p, *q, *end;
|
|
|
|
int err;
|
1991-04-04 11:21:57 -04:00
|
|
|
|
1992-07-06 11:19:26 -03:00
|
|
|
if (f->f_fp == NULL)
|
|
|
|
return err_closed();
|
2000-02-29 09:59:29 -04:00
|
|
|
if (!PyArg_ParseTuple(args, "|l:readlines", &sizehint))
|
1991-04-04 11:21:57 -04:00
|
|
|
return NULL;
|
1997-05-02 00:12:38 -03:00
|
|
|
if ((list = PyList_New(0)) == NULL)
|
1991-03-06 09:06:18 -04:00
|
|
|
return NULL;
|
|
|
|
for (;;) {
|
1997-05-10 19:07:25 -03:00
|
|
|
Py_BEGIN_ALLOW_THREADS
|
|
|
|
errno = 0;
|
|
|
|
nread = fread(buffer+nfilled, 1, buffersize-nfilled, f->f_fp);
|
|
|
|
Py_END_ALLOW_THREADS
|
|
|
|
if (nread == 0) {
|
1997-05-10 19:33:55 -03:00
|
|
|
sizehint = 0;
|
1998-02-19 16:46:48 -04:00
|
|
|
if (!ferror(f->f_fp))
|
1997-05-10 19:07:25 -03:00
|
|
|
break;
|
|
|
|
PyErr_SetFromErrno(PyExc_IOError);
|
|
|
|
clearerr(f->f_fp);
|
|
|
|
error:
|
1997-05-02 00:12:38 -03:00
|
|
|
Py_DECREF(list);
|
1997-05-10 19:07:25 -03:00
|
|
|
list = NULL;
|
|
|
|
goto cleanup;
|
|
|
|
}
|
1997-05-10 19:33:55 -03:00
|
|
|
totalread += nread;
|
1997-05-10 19:07:25 -03:00
|
|
|
p = memchr(buffer+nfilled, '\n', nread);
|
|
|
|
if (p == NULL) {
|
|
|
|
/* Need a larger buffer to fit this line */
|
|
|
|
nfilled += nread;
|
|
|
|
buffersize *= 2;
|
2000-08-11 16:02:59 -03:00
|
|
|
if (buffersize > INT_MAX) {
|
|
|
|
PyErr_SetString(PyExc_OverflowError,
|
2000-10-24 16:57:45 -03:00
|
|
|
"line is longer than a Python string can hold");
|
2000-08-11 16:02:59 -03:00
|
|
|
goto error;
|
|
|
|
}
|
1997-05-10 19:07:25 -03:00
|
|
|
if (big_buffer == NULL) {
|
|
|
|
/* Create the big buffer */
|
|
|
|
big_buffer = PyString_FromStringAndSize(
|
|
|
|
NULL, buffersize);
|
|
|
|
if (big_buffer == NULL)
|
|
|
|
goto error;
|
|
|
|
buffer = PyString_AS_STRING(big_buffer);
|
|
|
|
memcpy(buffer, small_buffer, nfilled);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
/* Grow the big buffer */
|
|
|
|
_PyString_Resize(&big_buffer, buffersize);
|
|
|
|
buffer = PyString_AS_STRING(big_buffer);
|
|
|
|
}
|
|
|
|
continue;
|
1991-03-06 09:06:18 -04:00
|
|
|
}
|
1997-05-10 19:07:25 -03:00
|
|
|
end = buffer+nfilled+nread;
|
|
|
|
q = buffer;
|
|
|
|
do {
|
|
|
|
/* Process complete lines */
|
|
|
|
p++;
|
|
|
|
line = PyString_FromStringAndSize(q, p-q);
|
|
|
|
if (line == NULL)
|
|
|
|
goto error;
|
|
|
|
err = PyList_Append(list, line);
|
|
|
|
Py_DECREF(line);
|
|
|
|
if (err != 0)
|
|
|
|
goto error;
|
|
|
|
q = p;
|
|
|
|
p = memchr(q, '\n', end-q);
|
|
|
|
} while (p != NULL);
|
|
|
|
/* Move the remaining incomplete line to the start */
|
|
|
|
nfilled = end-q;
|
|
|
|
memmove(buffer, q, nfilled);
|
1997-05-10 19:33:55 -03:00
|
|
|
if (sizehint > 0)
|
|
|
|
if (totalread >= (size_t)sizehint)
|
|
|
|
break;
|
1997-05-10 19:07:25 -03:00
|
|
|
}
|
|
|
|
if (nfilled != 0) {
|
|
|
|
/* Partial last line */
|
|
|
|
line = PyString_FromStringAndSize(buffer, nfilled);
|
|
|
|
if (line == NULL)
|
|
|
|
goto error;
|
1997-05-10 19:33:55 -03:00
|
|
|
if (sizehint > 0) {
|
|
|
|
/* Need to complete the last line */
|
2000-07-05 12:32:40 -03:00
|
|
|
PyObject *rest = get_line(f, 0);
|
1997-05-10 19:33:55 -03:00
|
|
|
if (rest == NULL) {
|
|
|
|
Py_DECREF(line);
|
|
|
|
goto error;
|
|
|
|
}
|
|
|
|
PyString_Concat(&line, rest);
|
|
|
|
Py_DECREF(rest);
|
|
|
|
if (line == NULL)
|
|
|
|
goto error;
|
|
|
|
}
|
1997-05-10 19:07:25 -03:00
|
|
|
err = PyList_Append(list, line);
|
1997-05-02 00:12:38 -03:00
|
|
|
Py_DECREF(line);
|
1997-05-10 19:07:25 -03:00
|
|
|
if (err != 0)
|
|
|
|
goto error;
|
1991-03-06 09:06:18 -04:00
|
|
|
}
|
1997-05-10 19:07:25 -03:00
|
|
|
cleanup:
|
1998-04-10 19:16:39 -03:00
|
|
|
if (big_buffer) {
|
1997-05-10 19:07:25 -03:00
|
|
|
Py_DECREF(big_buffer);
|
1998-04-10 19:16:39 -03:00
|
|
|
}
|
1991-03-06 09:06:18 -04:00
|
|
|
return list;
|
|
|
|
}
|
|
|
|
|
1997-05-02 00:12:38 -03:00
|
|
|
static PyObject *
|
2000-07-09 02:02:18 -03:00
|
|
|
file_write(PyFileObject *f, PyObject *args)
|
1990-10-14 09:07:46 -03:00
|
|
|
{
|
1992-07-06 11:19:26 -03:00
|
|
|
char *s;
|
1990-10-14 09:07:46 -03:00
|
|
|
int n, n2;
|
1992-07-06 11:19:26 -03:00
|
|
|
if (f->f_fp == NULL)
|
|
|
|
return err_closed();
|
2000-03-10 18:55:18 -04:00
|
|
|
if (!PyArg_Parse(args, f->f_binary ? "s#" : "t#", &s, &n))
|
1990-10-14 09:07:46 -03:00
|
|
|
return NULL;
|
1991-04-04 06:44:06 -04:00
|
|
|
f->f_softspace = 0;
|
1997-05-02 00:12:38 -03:00
|
|
|
Py_BEGIN_ALLOW_THREADS
|
1990-10-14 09:07:46 -03:00
|
|
|
errno = 0;
|
1992-07-06 11:19:26 -03:00
|
|
|
n2 = fwrite(s, 1, n, f->f_fp);
|
1997-05-02 00:12:38 -03:00
|
|
|
Py_END_ALLOW_THREADS
|
1990-10-14 09:07:46 -03:00
|
|
|
if (n2 != n) {
|
1997-05-02 00:12:38 -03:00
|
|
|
PyErr_SetFromErrno(PyExc_IOError);
|
1992-03-04 12:39:24 -04:00
|
|
|
clearerr(f->f_fp);
|
1990-10-14 09:07:46 -03:00
|
|
|
return NULL;
|
|
|
|
}
|
1997-05-02 00:12:38 -03:00
|
|
|
Py_INCREF(Py_None);
|
|
|
|
return Py_None;
|
1990-10-14 09:07:46 -03:00
|
|
|
}
|
|
|
|
|
1997-05-02 00:12:38 -03:00
|
|
|
static PyObject *
|
2000-07-09 02:02:18 -03:00
|
|
|
file_writelines(PyFileObject *f, PyObject *args)
|
1993-10-25 06:59:04 -03:00
|
|
|
{
|
2000-03-13 12:27:06 -04:00
|
|
|
#define CHUNKSIZE 1000
|
|
|
|
PyObject *list, *line;
|
|
|
|
PyObject *result;
|
|
|
|
int i, j, index, len, nwritten, islist;
|
|
|
|
|
1993-10-25 06:59:04 -03:00
|
|
|
if (f->f_fp == NULL)
|
|
|
|
return err_closed();
|
2000-03-13 12:27:06 -04:00
|
|
|
if (args == NULL || !PySequence_Check(args)) {
|
1997-05-02 00:12:38 -03:00
|
|
|
PyErr_SetString(PyExc_TypeError,
|
2000-10-24 16:57:45 -03:00
|
|
|
"writelines() argument must be a sequence of strings");
|
1993-10-25 06:59:04 -03:00
|
|
|
return NULL;
|
|
|
|
}
|
2000-03-13 12:27:06 -04:00
|
|
|
islist = PyList_Check(args);
|
|
|
|
|
|
|
|
/* Strategy: slurp CHUNKSIZE lines into a private list,
|
|
|
|
checking that they are all strings, then write that list
|
|
|
|
without holding the interpreter lock, then come back for more. */
|
|
|
|
index = 0;
|
|
|
|
if (islist)
|
|
|
|
list = NULL;
|
|
|
|
else {
|
|
|
|
list = PyList_New(CHUNKSIZE);
|
|
|
|
if (list == NULL)
|
1993-10-25 06:59:04 -03:00
|
|
|
return NULL;
|
2000-03-13 12:27:06 -04:00
|
|
|
}
|
|
|
|
result = NULL;
|
|
|
|
|
|
|
|
for (;;) {
|
|
|
|
if (islist) {
|
|
|
|
Py_XDECREF(list);
|
|
|
|
list = PyList_GetSlice(args, index, index+CHUNKSIZE);
|
|
|
|
if (list == NULL)
|
|
|
|
return NULL;
|
|
|
|
j = PyList_GET_SIZE(list);
|
1993-10-25 06:59:04 -03:00
|
|
|
}
|
2000-03-13 12:27:06 -04:00
|
|
|
else {
|
|
|
|
for (j = 0; j < CHUNKSIZE; j++) {
|
|
|
|
line = PySequence_GetItem(args, index+j);
|
|
|
|
if (line == NULL) {
|
|
|
|
if (PyErr_ExceptionMatches(
|
2000-08-25 19:39:50 -03:00
|
|
|
PyExc_IndexError)) {
|
2000-03-13 12:27:06 -04:00
|
|
|
PyErr_Clear();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
/* Some other error occurred.
|
|
|
|
XXX We may lose some output. */
|
|
|
|
goto error;
|
|
|
|
}
|
|
|
|
PyList_SetItem(list, j, line);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (j == 0)
|
|
|
|
break;
|
|
|
|
|
2000-08-25 19:39:50 -03:00
|
|
|
/* Check that all entries are indeed strings. If not,
|
|
|
|
apply the same rules as for file.write() and
|
|
|
|
convert the results to strings. This is slow, but
|
|
|
|
seems to be the only way since all conversion APIs
|
|
|
|
could potentially execute Python code. */
|
|
|
|
for (i = 0; i < j; i++) {
|
|
|
|
PyObject *v = PyList_GET_ITEM(list, i);
|
|
|
|
if (!PyString_Check(v)) {
|
|
|
|
const char *buffer;
|
|
|
|
int len;
|
2001-01-07 17:19:34 -04:00
|
|
|
if (((f->f_binary &&
|
2000-08-25 19:39:50 -03:00
|
|
|
PyObject_AsReadBuffer(v,
|
|
|
|
(const void**)&buffer,
|
|
|
|
&len)) ||
|
|
|
|
PyObject_AsCharBuffer(v,
|
|
|
|
&buffer,
|
|
|
|
&len))) {
|
|
|
|
PyErr_SetString(PyExc_TypeError,
|
2000-10-24 16:57:45 -03:00
|
|
|
"writelines() argument must be a sequence of strings");
|
2000-08-25 19:39:50 -03:00
|
|
|
goto error;
|
|
|
|
}
|
|
|
|
line = PyString_FromStringAndSize(buffer,
|
|
|
|
len);
|
|
|
|
if (line == NULL)
|
|
|
|
goto error;
|
|
|
|
Py_DECREF(v);
|
2000-08-25 19:49:05 -03:00
|
|
|
PyList_SET_ITEM(list, i, line);
|
2000-08-25 19:39:50 -03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Since we are releasing the global lock, the
|
|
|
|
following code may *not* execute Python code. */
|
2000-03-13 12:27:06 -04:00
|
|
|
Py_BEGIN_ALLOW_THREADS
|
|
|
|
f->f_softspace = 0;
|
|
|
|
errno = 0;
|
|
|
|
for (i = 0; i < j; i++) {
|
2000-08-25 19:39:50 -03:00
|
|
|
line = PyList_GET_ITEM(list, i);
|
2000-03-13 12:27:06 -04:00
|
|
|
len = PyString_GET_SIZE(line);
|
|
|
|
nwritten = fwrite(PyString_AS_STRING(line),
|
|
|
|
1, len, f->f_fp);
|
|
|
|
if (nwritten != len) {
|
|
|
|
Py_BLOCK_THREADS
|
|
|
|
PyErr_SetFromErrno(PyExc_IOError);
|
|
|
|
clearerr(f->f_fp);
|
|
|
|
goto error;
|
|
|
|
}
|
1993-10-25 06:59:04 -03:00
|
|
|
}
|
2000-03-13 12:27:06 -04:00
|
|
|
Py_END_ALLOW_THREADS
|
|
|
|
|
|
|
|
if (j < CHUNKSIZE)
|
|
|
|
break;
|
|
|
|
index += CHUNKSIZE;
|
1993-10-25 06:59:04 -03:00
|
|
|
}
|
2000-03-13 12:27:06 -04:00
|
|
|
|
1997-05-02 00:12:38 -03:00
|
|
|
Py_INCREF(Py_None);
|
2000-03-13 12:27:06 -04:00
|
|
|
result = Py_None;
|
|
|
|
error:
|
|
|
|
Py_XDECREF(list);
|
|
|
|
return result;
|
1993-10-25 06:59:04 -03:00
|
|
|
}
|
|
|
|
|
1997-05-02 00:12:38 -03:00
|
|
|
static PyMethodDef file_methods[] = {
|
1997-05-10 19:33:55 -03:00
|
|
|
{"readline", (PyCFunction)file_readline, 1},
|
1997-07-13 00:56:50 -03:00
|
|
|
{"read", (PyCFunction)file_read, 1},
|
|
|
|
{"write", (PyCFunction)file_write, 0},
|
|
|
|
{"fileno", (PyCFunction)file_fileno, 0},
|
1999-01-04 13:22:18 -04:00
|
|
|
{"seek", (PyCFunction)file_seek, 1},
|
1995-01-02 15:07:15 -04:00
|
|
|
#ifdef HAVE_FTRUNCATE
|
1999-01-04 13:22:18 -04:00
|
|
|
{"truncate", (PyCFunction)file_truncate, 1},
|
1995-01-02 15:07:15 -04:00
|
|
|
#endif
|
1997-05-02 00:12:38 -03:00
|
|
|
{"tell", (PyCFunction)file_tell, 0},
|
1997-05-05 19:15:02 -03:00
|
|
|
{"readinto", (PyCFunction)file_readinto, 0},
|
1997-07-13 00:56:50 -03:00
|
|
|
{"readlines", (PyCFunction)file_readlines, 1},
|
|
|
|
{"writelines", (PyCFunction)file_writelines, 0},
|
|
|
|
{"flush", (PyCFunction)file_flush, 0},
|
|
|
|
{"close", (PyCFunction)file_close, 0},
|
|
|
|
{"isatty", (PyCFunction)file_isatty, 0},
|
1990-10-14 09:07:46 -03:00
|
|
|
{NULL, NULL} /* sentinel */
|
|
|
|
};
|
|
|
|
|
1997-05-02 00:12:38 -03:00
|
|
|
#define OFF(x) offsetof(PyFileObject, x)
|
1994-08-01 08:34:53 -03:00
|
|
|
|
|
|
|
static struct memberlist file_memberlist[] = {
|
|
|
|
{"softspace", T_INT, OFF(f_softspace)},
|
|
|
|
{"mode", T_OBJECT, OFF(f_mode), RO},
|
|
|
|
{"name", T_OBJECT, OFF(f_name), RO},
|
|
|
|
/* getattr(f, "closed") is implemented without this table */
|
|
|
|
{"closed", T_INT, 0, RO},
|
|
|
|
{NULL} /* Sentinel */
|
|
|
|
};
|
|
|
|
|
1997-05-02 00:12:38 -03:00
|
|
|
static PyObject *
|
2000-07-09 02:02:18 -03:00
|
|
|
file_getattr(PyFileObject *f, char *name)
|
1990-10-14 09:07:46 -03:00
|
|
|
{
|
1997-05-02 00:12:38 -03:00
|
|
|
PyObject *res;
|
1994-08-01 08:34:53 -03:00
|
|
|
|
1997-05-02 00:12:38 -03:00
|
|
|
res = Py_FindMethod(file_methods, (PyObject *)f, name);
|
1994-08-01 08:34:53 -03:00
|
|
|
if (res != NULL)
|
|
|
|
return res;
|
1997-05-02 00:12:38 -03:00
|
|
|
PyErr_Clear();
|
1994-08-01 08:34:53 -03:00
|
|
|
if (strcmp(name, "closed") == 0)
|
1997-05-02 00:12:38 -03:00
|
|
|
return PyInt_FromLong((long)(f->f_fp == 0));
|
|
|
|
return PyMember_Get((char *)f, file_memberlist, name);
|
1994-08-01 08:34:53 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
2000-07-09 02:02:18 -03:00
|
|
|
file_setattr(PyFileObject *f, char *name, PyObject *v)
|
1994-08-01 08:34:53 -03:00
|
|
|
{
|
|
|
|
if (v == NULL) {
|
1997-05-02 00:12:38 -03:00
|
|
|
PyErr_SetString(PyExc_AttributeError,
|
|
|
|
"can't delete file attributes");
|
1994-08-01 08:34:53 -03:00
|
|
|
return -1;
|
|
|
|
}
|
1997-05-02 00:12:38 -03:00
|
|
|
return PyMember_Set((char *)f, file_memberlist, name, v);
|
1990-10-14 09:07:46 -03:00
|
|
|
}
|
|
|
|
|
1997-05-02 00:12:38 -03:00
|
|
|
PyTypeObject PyFile_Type = {
|
|
|
|
PyObject_HEAD_INIT(&PyType_Type)
|
1990-10-14 09:07:46 -03:00
|
|
|
0,
|
|
|
|
"file",
|
1997-05-02 00:12:38 -03:00
|
|
|
sizeof(PyFileObject),
|
1990-10-14 09:07:46 -03:00
|
|
|
0,
|
1994-08-01 08:34:53 -03:00
|
|
|
(destructor)file_dealloc, /*tp_dealloc*/
|
1992-09-17 14:54:56 -03:00
|
|
|
0, /*tp_print*/
|
1994-08-01 08:34:53 -03:00
|
|
|
(getattrfunc)file_getattr, /*tp_getattr*/
|
|
|
|
(setattrfunc)file_setattr, /*tp_setattr*/
|
1990-10-14 09:07:46 -03:00
|
|
|
0, /*tp_compare*/
|
1994-08-01 08:34:53 -03:00
|
|
|
(reprfunc)file_repr, /*tp_repr*/
|
1990-10-14 09:07:46 -03:00
|
|
|
};
|
1991-04-04 06:44:06 -04:00
|
|
|
|
|
|
|
/* Interface for the 'soft space' between print items. */
|
|
|
|
|
|
|
|
int
|
2000-07-09 02:02:18 -03:00
|
|
|
PyFile_SoftSpace(PyObject *f, int newflag)
|
1991-04-04 06:44:06 -04:00
|
|
|
{
|
|
|
|
int oldflag = 0;
|
1992-09-25 18:59:05 -03:00
|
|
|
if (f == NULL) {
|
|
|
|
/* Do nothing */
|
|
|
|
}
|
1997-05-02 00:12:38 -03:00
|
|
|
else if (PyFile_Check(f)) {
|
|
|
|
oldflag = ((PyFileObject *)f)->f_softspace;
|
|
|
|
((PyFileObject *)f)->f_softspace = newflag;
|
1991-04-04 06:44:06 -04:00
|
|
|
}
|
1992-09-25 18:59:05 -03:00
|
|
|
else {
|
1997-05-02 00:12:38 -03:00
|
|
|
PyObject *v;
|
|
|
|
v = PyObject_GetAttrString(f, "softspace");
|
1992-09-25 18:59:05 -03:00
|
|
|
if (v == NULL)
|
1997-05-02 00:12:38 -03:00
|
|
|
PyErr_Clear();
|
1992-09-25 18:59:05 -03:00
|
|
|
else {
|
1997-05-02 00:12:38 -03:00
|
|
|
if (PyInt_Check(v))
|
|
|
|
oldflag = PyInt_AsLong(v);
|
|
|
|
Py_DECREF(v);
|
1992-09-25 18:59:05 -03:00
|
|
|
}
|
1997-05-02 00:12:38 -03:00
|
|
|
v = PyInt_FromLong((long)newflag);
|
1992-09-25 18:59:05 -03:00
|
|
|
if (v == NULL)
|
1997-05-02 00:12:38 -03:00
|
|
|
PyErr_Clear();
|
1992-09-25 18:59:05 -03:00
|
|
|
else {
|
1997-05-02 00:12:38 -03:00
|
|
|
if (PyObject_SetAttrString(f, "softspace", v) != 0)
|
|
|
|
PyErr_Clear();
|
|
|
|
Py_DECREF(v);
|
1992-09-25 18:59:05 -03:00
|
|
|
}
|
|
|
|
}
|
1991-04-04 06:44:06 -04:00
|
|
|
return oldflag;
|
|
|
|
}
|
1992-09-25 18:59:05 -03:00
|
|
|
|
|
|
|
/* Interfaces to write objects/strings to file-like objects */
|
|
|
|
|
|
|
|
int
|
2000-07-09 02:02:18 -03:00
|
|
|
PyFile_WriteObject(PyObject *v, PyObject *f, int flags)
|
1992-09-25 18:59:05 -03:00
|
|
|
{
|
1997-05-02 00:12:38 -03:00
|
|
|
PyObject *writer, *value, *args, *result;
|
1992-09-25 18:59:05 -03:00
|
|
|
if (f == NULL) {
|
1997-05-02 00:12:38 -03:00
|
|
|
PyErr_SetString(PyExc_TypeError, "writeobject with NULL file");
|
1992-09-25 18:59:05 -03:00
|
|
|
return -1;
|
|
|
|
}
|
1997-05-02 00:12:38 -03:00
|
|
|
else if (PyFile_Check(f)) {
|
|
|
|
FILE *fp = PyFile_AsFile(f);
|
1992-09-25 18:59:05 -03:00
|
|
|
if (fp == NULL) {
|
|
|
|
err_closed();
|
|
|
|
return -1;
|
|
|
|
}
|
1997-05-02 00:12:38 -03:00
|
|
|
return PyObject_Print(v, fp, flags);
|
1992-09-25 18:59:05 -03:00
|
|
|
}
|
1997-05-02 00:12:38 -03:00
|
|
|
writer = PyObject_GetAttrString(f, "write");
|
1992-09-25 18:59:05 -03:00
|
|
|
if (writer == NULL)
|
|
|
|
return -1;
|
1997-05-02 00:12:38 -03:00
|
|
|
if (flags & Py_PRINT_RAW)
|
|
|
|
value = PyObject_Str(v);
|
1993-11-05 06:22:19 -04:00
|
|
|
else
|
1997-05-02 00:12:38 -03:00
|
|
|
value = PyObject_Repr(v);
|
1993-11-05 06:22:19 -04:00
|
|
|
if (value == NULL) {
|
1997-05-02 00:12:38 -03:00
|
|
|
Py_DECREF(writer);
|
1993-11-05 06:22:19 -04:00
|
|
|
return -1;
|
1992-09-25 18:59:05 -03:00
|
|
|
}
|
1997-05-02 00:12:38 -03:00
|
|
|
args = Py_BuildValue("(O)", value);
|
1997-05-22 11:02:25 -03:00
|
|
|
if (args == NULL) {
|
1997-05-02 00:12:38 -03:00
|
|
|
Py_DECREF(value);
|
|
|
|
Py_DECREF(writer);
|
1995-07-10 20:32:26 -03:00
|
|
|
return -1;
|
|
|
|
}
|
1997-05-02 00:12:38 -03:00
|
|
|
result = PyEval_CallObject(writer, args);
|
|
|
|
Py_DECREF(args);
|
|
|
|
Py_DECREF(value);
|
|
|
|
Py_DECREF(writer);
|
1992-09-25 18:59:05 -03:00
|
|
|
if (result == NULL)
|
|
|
|
return -1;
|
1997-05-02 00:12:38 -03:00
|
|
|
Py_DECREF(result);
|
1992-09-25 18:59:05 -03:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
1997-05-22 19:25:11 -03:00
|
|
|
int
|
2000-07-09 02:02:18 -03:00
|
|
|
PyFile_WriteString(char *s, PyObject *f)
|
1992-09-25 18:59:05 -03:00
|
|
|
{
|
|
|
|
if (f == NULL) {
|
1997-05-22 19:25:11 -03:00
|
|
|
/* Should be caused by a pre-existing error */
|
2000-07-09 02:02:18 -03:00
|
|
|
if (!PyErr_Occurred())
|
1997-05-22 19:25:11 -03:00
|
|
|
PyErr_SetString(PyExc_SystemError,
|
|
|
|
"null file for PyFile_WriteString");
|
|
|
|
return -1;
|
1992-09-25 18:59:05 -03:00
|
|
|
}
|
1997-05-02 00:12:38 -03:00
|
|
|
else if (PyFile_Check(f)) {
|
|
|
|
FILE *fp = PyFile_AsFile(f);
|
1997-05-22 19:25:11 -03:00
|
|
|
if (fp == NULL) {
|
|
|
|
err_closed();
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
fputs(s, fp);
|
|
|
|
return 0;
|
1992-09-25 18:59:05 -03:00
|
|
|
}
|
1997-05-02 00:12:38 -03:00
|
|
|
else if (!PyErr_Occurred()) {
|
|
|
|
PyObject *v = PyString_FromString(s);
|
1997-05-22 19:25:11 -03:00
|
|
|
int err;
|
|
|
|
if (v == NULL)
|
|
|
|
return -1;
|
|
|
|
err = PyFile_WriteObject(v, f, Py_PRINT_RAW);
|
|
|
|
Py_DECREF(v);
|
|
|
|
return err;
|
1992-09-25 18:59:05 -03:00
|
|
|
}
|
1997-07-13 00:56:50 -03:00
|
|
|
else
|
|
|
|
return -1;
|
1992-09-25 18:59:05 -03:00
|
|
|
}
|
2000-07-13 20:56:54 -03:00
|
|
|
|
|
|
|
/* Try to get a file-descriptor from a Python object. If the object
|
|
|
|
is an integer or long integer, its value is returned. If not, the
|
|
|
|
object's fileno() method is called if it exists; the method must return
|
|
|
|
an integer or long integer, which is returned as the file descriptor value.
|
|
|
|
-1 is returned on failure.
|
|
|
|
*/
|
|
|
|
|
|
|
|
int PyObject_AsFileDescriptor(PyObject *o)
|
|
|
|
{
|
|
|
|
int fd;
|
|
|
|
PyObject *meth;
|
|
|
|
|
|
|
|
if (PyInt_Check(o)) {
|
|
|
|
fd = PyInt_AsLong(o);
|
|
|
|
}
|
|
|
|
else if (PyLong_Check(o)) {
|
|
|
|
fd = PyLong_AsLong(o);
|
|
|
|
}
|
|
|
|
else if ((meth = PyObject_GetAttrString(o, "fileno")) != NULL)
|
|
|
|
{
|
|
|
|
PyObject *fno = PyEval_CallObject(meth, NULL);
|
|
|
|
Py_DECREF(meth);
|
|
|
|
if (fno == NULL)
|
|
|
|
return -1;
|
2001-01-07 17:19:34 -04:00
|
|
|
|
2000-07-13 20:56:54 -03:00
|
|
|
if (PyInt_Check(fno)) {
|
|
|
|
fd = PyInt_AsLong(fno);
|
|
|
|
Py_DECREF(fno);
|
|
|
|
}
|
|
|
|
else if (PyLong_Check(fno)) {
|
|
|
|
fd = PyLong_AsLong(fno);
|
|
|
|
Py_DECREF(fno);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
PyErr_SetString(PyExc_TypeError,
|
|
|
|
"fileno() returned a non-integer");
|
|
|
|
Py_DECREF(fno);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
PyErr_SetString(PyExc_TypeError,
|
|
|
|
"argument must be an int, or have a fileno() method.");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (fd < 0) {
|
|
|
|
PyErr_Format(PyExc_ValueError,
|
|
|
|
"file descriptor cannot be a negative integer (%i)",
|
|
|
|
fd);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
return fd;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|