1991-02-19 08:39:46 -04:00
|
|
|
/***********************************************************
|
1992-04-05 11:26:55 -03:00
|
|
|
Copyright 1991, 1992 by Stichting Mathematisch Centrum, Amsterdam, The
|
1991-02-19 08:39:46 -04:00
|
|
|
Netherlands.
|
|
|
|
|
|
|
|
All Rights Reserved
|
|
|
|
|
|
|
|
Permission to use, copy, modify, and distribute this software and its
|
|
|
|
documentation for any purpose and without fee is hereby granted,
|
|
|
|
provided that the above copyright notice appear in all copies and that
|
|
|
|
both that copyright notice and this permission notice appear in
|
|
|
|
supporting documentation, and that the names of Stichting Mathematisch
|
|
|
|
Centrum or CWI not be used in advertising or publicity pertaining to
|
|
|
|
distribution of the software without specific, written prior permission.
|
|
|
|
|
|
|
|
STICHTING MATHEMATISCH CENTRUM DISCLAIMS ALL WARRANTIES WITH REGARD TO
|
|
|
|
THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
|
|
|
|
FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH CENTRUM BE LIABLE
|
|
|
|
FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
|
|
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
|
|
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT
|
|
|
|
OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
|
|
|
|
|
|
******************************************************************/
|
|
|
|
|
1990-10-14 09:07:46 -03:00
|
|
|
/* File object implementation */
|
|
|
|
|
1990-12-20 11:06:42 -04:00
|
|
|
#include "allobjects.h"
|
1992-01-27 12:53:23 -04:00
|
|
|
#include "modsupport.h"
|
1990-10-14 09:07:46 -03:00
|
|
|
|
1991-03-06 09:06:18 -04:00
|
|
|
#define BUF(v) GETSTRINGVALUE((stringobject *)v)
|
|
|
|
|
1990-12-20 11:06:42 -04:00
|
|
|
#include "errno.h"
|
|
|
|
#ifndef errno
|
|
|
|
extern int errno;
|
|
|
|
#endif
|
1990-10-14 09:07:46 -03:00
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
OB_HEAD
|
|
|
|
FILE *f_fp;
|
|
|
|
object *f_name;
|
|
|
|
object *f_mode;
|
1991-06-04 16:37:39 -03:00
|
|
|
int (*f_close) PROTO((FILE *));
|
1991-04-04 06:44:06 -04:00
|
|
|
int f_softspace; /* Flag used by 'print' command */
|
1990-10-14 09:07:46 -03:00
|
|
|
} fileobject;
|
|
|
|
|
|
|
|
FILE *
|
|
|
|
getfilefile(f)
|
|
|
|
object *f;
|
|
|
|
{
|
|
|
|
if (!is_fileobject(f)) {
|
1990-12-20 11:06:42 -04:00
|
|
|
err_badcall();
|
1990-10-14 09:07:46 -03:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
return ((fileobject *)f)->f_fp;
|
|
|
|
}
|
|
|
|
|
|
|
|
object *
|
1991-06-04 16:37:39 -03:00
|
|
|
newopenfileobject(fp, name, mode, close)
|
1990-10-14 09:07:46 -03:00
|
|
|
FILE *fp;
|
|
|
|
char *name;
|
|
|
|
char *mode;
|
1991-06-04 16:37:39 -03:00
|
|
|
int (*close) FPROTO((FILE *));
|
1990-10-14 09:07:46 -03:00
|
|
|
{
|
|
|
|
fileobject *f = NEWOBJ(fileobject, &Filetype);
|
|
|
|
if (f == NULL)
|
|
|
|
return NULL;
|
|
|
|
f->f_fp = NULL;
|
|
|
|
f->f_name = newstringobject(name);
|
|
|
|
f->f_mode = newstringobject(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;
|
1990-10-14 09:07:46 -03:00
|
|
|
if (f->f_name == NULL || f->f_mode == NULL) {
|
|
|
|
DECREF(f);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
f->f_fp = fp;
|
|
|
|
return (object *) f;
|
|
|
|
}
|
|
|
|
|
|
|
|
object *
|
|
|
|
newfileobject(name, mode)
|
|
|
|
char *name, *mode;
|
|
|
|
{
|
1991-06-04 16:37:39 -03:00
|
|
|
extern int fclose PROTO((FILE *));
|
1990-10-14 09:07:46 -03:00
|
|
|
fileobject *f;
|
1991-06-04 16:37:39 -03:00
|
|
|
f = (fileobject *) newopenfileobject((FILE *)NULL, name, mode, fclose);
|
1990-10-14 09:07:46 -03:00
|
|
|
if (f == NULL)
|
|
|
|
return NULL;
|
1991-02-13 19:25:27 -04:00
|
|
|
#ifdef THINK_C
|
|
|
|
if (*mode == '*') {
|
|
|
|
FILE *fopenRF();
|
|
|
|
f->f_fp = fopenRF(name, mode+1);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
#endif
|
|
|
|
f->f_fp = fopen(name, mode);
|
|
|
|
if (f->f_fp == NULL) {
|
1991-12-10 10:00:03 -04:00
|
|
|
err_errno(IOError);
|
1990-10-14 09:07:46 -03:00
|
|
|
DECREF(f);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
return (object *)f;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Methods */
|
|
|
|
|
|
|
|
static void
|
1990-12-20 11:06:42 -04:00
|
|
|
file_dealloc(f)
|
1990-10-14 09:07:46 -03:00
|
|
|
fileobject *f;
|
|
|
|
{
|
1991-06-04 16:37:39 -03:00
|
|
|
if (f->f_fp != NULL && f->f_close != NULL)
|
|
|
|
(*f->f_close)(f->f_fp);
|
1990-10-14 09:07:46 -03:00
|
|
|
if (f->f_name != NULL)
|
|
|
|
DECREF(f->f_name);
|
|
|
|
if (f->f_mode != NULL)
|
|
|
|
DECREF(f->f_mode);
|
|
|
|
free((char *)f);
|
|
|
|
}
|
|
|
|
|
1991-06-07 13:10:43 -03:00
|
|
|
static int
|
1990-12-20 11:06:42 -04:00
|
|
|
file_print(f, fp, flags)
|
1990-10-14 09:07:46 -03:00
|
|
|
fileobject *f;
|
|
|
|
FILE *fp;
|
|
|
|
int flags;
|
|
|
|
{
|
|
|
|
fprintf(fp, "<%s file ", f->f_fp == NULL ? "closed" : "open");
|
1991-06-07 13:10:43 -03:00
|
|
|
if (printobject(f->f_name, fp, flags) != 0)
|
|
|
|
return -1;
|
1990-10-14 09:07:46 -03:00
|
|
|
fprintf(fp, ", mode ");
|
1991-06-07 13:10:43 -03:00
|
|
|
if (printobject(f->f_mode, fp, flags) != 0)
|
|
|
|
return -1;
|
1990-10-14 09:07:46 -03:00
|
|
|
fprintf(fp, ">");
|
1991-06-07 13:10:43 -03:00
|
|
|
return 0;
|
1990-10-14 09:07:46 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
static object *
|
1990-12-20 11:06:42 -04:00
|
|
|
file_repr(f)
|
1990-10-14 09:07:46 -03:00
|
|
|
fileobject *f;
|
|
|
|
{
|
|
|
|
char buf[300];
|
1990-12-20 11:06:42 -04:00
|
|
|
/* XXX This differs from file_print if the filename contains
|
1990-10-14 09:07:46 -03:00
|
|
|
quotes or other funny characters. */
|
|
|
|
sprintf(buf, "<%s file '%.256s', mode '%.10s'>",
|
|
|
|
f->f_fp == NULL ? "closed" : "open",
|
|
|
|
getstringvalue(f->f_name),
|
|
|
|
getstringvalue(f->f_mode));
|
|
|
|
return newstringobject(buf);
|
|
|
|
}
|
|
|
|
|
|
|
|
static object *
|
1990-12-20 11:06:42 -04:00
|
|
|
file_close(f, args)
|
1990-10-14 09:07:46 -03:00
|
|
|
fileobject *f;
|
|
|
|
object *args;
|
|
|
|
{
|
1991-06-04 16:37:39 -03:00
|
|
|
int sts = 0;
|
1990-10-14 09:07:46 -03:00
|
|
|
if (args != NULL) {
|
1990-12-20 11:06:42 -04:00
|
|
|
err_badarg();
|
1990-10-14 09:07:46 -03:00
|
|
|
return NULL;
|
|
|
|
}
|
1991-06-04 16:37:39 -03:00
|
|
|
errno = 0;
|
1990-10-14 09:07:46 -03:00
|
|
|
if (f->f_fp != NULL) {
|
1991-06-04 16:37:39 -03:00
|
|
|
if (f->f_close != NULL)
|
|
|
|
sts = (*f->f_close)(f->f_fp);
|
1990-10-14 09:07:46 -03:00
|
|
|
f->f_fp = NULL;
|
|
|
|
}
|
1992-03-04 12:39:24 -04:00
|
|
|
if (sts == EOF)
|
1991-12-10 10:00:03 -04:00
|
|
|
return err_errno(IOError);
|
1991-06-04 16:37:39 -03:00
|
|
|
if (sts != 0)
|
|
|
|
return newintobject((long)sts);
|
1990-10-14 09:07:46 -03:00
|
|
|
INCREF(None);
|
|
|
|
return None;
|
|
|
|
}
|
|
|
|
|
|
|
|
static object *
|
1991-03-06 09:06:18 -04:00
|
|
|
file_seek(f, args)
|
1990-10-14 09:07:46 -03:00
|
|
|
fileobject *f;
|
|
|
|
object *args;
|
|
|
|
{
|
1991-03-06 09:06:18 -04:00
|
|
|
long offset;
|
|
|
|
long whence;
|
|
|
|
|
1990-10-14 09:07:46 -03:00
|
|
|
if (f->f_fp == NULL) {
|
1990-12-20 11:06:42 -04:00
|
|
|
err_badarg();
|
1990-10-14 09:07:46 -03:00
|
|
|
return NULL;
|
|
|
|
}
|
1991-03-06 09:06:18 -04:00
|
|
|
if (args != NULL && is_intobject(args)) {
|
|
|
|
offset = getintvalue(args);
|
|
|
|
whence = 0; /* SEEK_SET */
|
|
|
|
}
|
|
|
|
else {
|
1991-09-10 11:55:58 -03:00
|
|
|
if (!getlonglongarg(args, &offset, &whence))
|
1991-03-06 09:06:18 -04:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
errno = 0;
|
|
|
|
if (fseek(f->f_fp, offset, (int)whence) != 0) {
|
1992-03-04 12:39:24 -04:00
|
|
|
err_errno(IOError);
|
|
|
|
clearerr(f->f_fp);
|
|
|
|
return NULL;
|
1991-03-06 09:06:18 -04:00
|
|
|
}
|
|
|
|
INCREF(None);
|
|
|
|
return None;
|
|
|
|
}
|
|
|
|
|
|
|
|
static object *
|
|
|
|
file_tell(f, args)
|
|
|
|
fileobject *f;
|
|
|
|
object *args;
|
|
|
|
{
|
|
|
|
long offset;
|
|
|
|
if (args != NULL || f->f_fp == NULL) {
|
1990-12-20 11:06:42 -04:00
|
|
|
err_badarg();
|
1990-10-14 09:07:46 -03:00
|
|
|
return NULL;
|
|
|
|
}
|
1991-03-06 09:06:18 -04:00
|
|
|
errno = 0;
|
|
|
|
offset = ftell(f->f_fp);
|
|
|
|
if (offset == -1L) {
|
1992-03-04 12:39:24 -04:00
|
|
|
err_errno(IOError);
|
|
|
|
clearerr(f->f_fp);
|
|
|
|
return NULL;
|
1991-03-06 09:06:18 -04:00
|
|
|
}
|
|
|
|
return newintobject(offset);
|
|
|
|
}
|
|
|
|
|
|
|
|
static object *
|
|
|
|
file_flush(f, args)
|
|
|
|
fileobject *f;
|
|
|
|
object *args;
|
|
|
|
{
|
|
|
|
if (args != NULL || f->f_fp == NULL) {
|
|
|
|
err_badarg();
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
errno = 0;
|
|
|
|
if (fflush(f->f_fp) != 0) {
|
1992-03-04 12:39:24 -04:00
|
|
|
err_errno(IOError);
|
|
|
|
clearerr(f->f_fp);
|
|
|
|
return NULL;
|
1991-03-06 09:06:18 -04:00
|
|
|
}
|
|
|
|
INCREF(None);
|
|
|
|
return None;
|
|
|
|
}
|
|
|
|
|
1991-06-04 16:37:39 -03:00
|
|
|
static object *
|
|
|
|
file_isatty(f, args)
|
|
|
|
fileobject *f;
|
|
|
|
object *args;
|
|
|
|
{
|
|
|
|
if (args != NULL || f->f_fp == NULL) {
|
|
|
|
err_badarg();
|
|
|
|
return NULL;
|
|
|
|
}
|
1992-03-27 13:23:38 -04:00
|
|
|
return newintobject((long)isatty((int)fileno(f->f_fp)));
|
1991-06-04 16:37:39 -03:00
|
|
|
}
|
|
|
|
|
1991-03-06 09:06:18 -04:00
|
|
|
static object *
|
|
|
|
file_read(f, args)
|
|
|
|
fileobject *f;
|
|
|
|
object *args;
|
|
|
|
{
|
|
|
|
int n, n1, n2, n3;
|
|
|
|
object *v;
|
|
|
|
|
|
|
|
if (f->f_fp == NULL) {
|
1990-12-20 11:06:42 -04:00
|
|
|
err_badarg();
|
1990-10-14 09:07:46 -03:00
|
|
|
return NULL;
|
|
|
|
}
|
1991-03-06 09:06:18 -04:00
|
|
|
if (args == 0)
|
|
|
|
n = 0;
|
|
|
|
else {
|
|
|
|
if (!getintarg(args, &n))
|
|
|
|
return NULL;
|
|
|
|
if (n < 0) {
|
|
|
|
err_badarg();
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
n2 = n != 0 ? n : BUFSIZ;
|
|
|
|
v = newsizedstringobject((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
|
|
|
n1 = 0;
|
|
|
|
for (;;) {
|
|
|
|
n3 = fread(BUF(v)+n1, 1, n2-n1, f->f_fp);
|
|
|
|
/* XXX Error check? */
|
|
|
|
if (n3 == 0)
|
|
|
|
break;
|
|
|
|
n1 += n3;
|
|
|
|
if (n1 == n)
|
|
|
|
break;
|
|
|
|
if (n == 0) {
|
|
|
|
n2 = n1 + BUFSIZ;
|
|
|
|
if (resizestring(&v, n2) < 0)
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (n1 != n2)
|
|
|
|
resizestring(&v, n1);
|
1990-10-14 09:07:46 -03:00
|
|
|
return v;
|
|
|
|
}
|
|
|
|
|
1991-04-04 11:21:57 -04:00
|
|
|
/* Internal routine to get a line.
|
|
|
|
Size argument interpretation:
|
|
|
|
> 0: max length;
|
|
|
|
= 0: read arbitrary line;
|
|
|
|
< 0: strip trailing '\n', raise EOFError if EOF reached immediately
|
1991-03-06 09:06:18 -04:00
|
|
|
*/
|
|
|
|
|
1991-04-04 11:21:57 -04:00
|
|
|
object *
|
|
|
|
getline(f, n)
|
1990-10-14 09:07:46 -03:00
|
|
|
fileobject *f;
|
1991-04-04 11:21:57 -04:00
|
|
|
int n;
|
1990-10-14 09:07:46 -03:00
|
|
|
{
|
1991-03-06 09:06:18 -04:00
|
|
|
register FILE *fp;
|
|
|
|
register int c;
|
|
|
|
register char *buf, *end;
|
1991-04-04 11:21:57 -04:00
|
|
|
int n1, n2;
|
1990-10-14 09:07:46 -03:00
|
|
|
object *v;
|
1991-04-04 11:21:57 -04:00
|
|
|
|
1991-03-06 09:06:18 -04:00
|
|
|
if ((fp = f->f_fp) == NULL) {
|
1990-12-20 11:06:42 -04:00
|
|
|
err_badarg();
|
1990-10-14 09:07:46 -03:00
|
|
|
return NULL;
|
|
|
|
}
|
1991-04-04 11:21:57 -04:00
|
|
|
|
|
|
|
n2 = n > 0 ? n : 100;
|
1991-03-06 09:06:18 -04:00
|
|
|
v = newsizedstringobject((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;
|
|
|
|
|
|
|
|
for (;;) {
|
1991-04-04 11:21:57 -04:00
|
|
|
if ((c = getc(fp)) == EOF) {
|
1991-06-03 07:54:55 -03:00
|
|
|
clearerr(fp);
|
1991-04-04 11:21:57 -04:00
|
|
|
if (intrcheck()) {
|
|
|
|
DECREF(v);
|
|
|
|
err_set(KeyboardInterrupt);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
if (n < 0 && buf == BUF(v)) {
|
|
|
|
DECREF(v);
|
1991-12-24 09:26:41 -04:00
|
|
|
err_setstr(EOFError,
|
|
|
|
"EOF when reading a line");
|
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
|
|
|
}
|
|
|
|
if ((*buf++ = c) == '\n') {
|
|
|
|
if (n < 0)
|
|
|
|
buf--;
|
|
|
|
break;
|
|
|
|
}
|
1991-03-06 09:06:18 -04:00
|
|
|
if (buf == end) {
|
1991-04-04 11:21:57 -04:00
|
|
|
if (n > 0)
|
1991-03-06 09:06:18 -04:00
|
|
|
break;
|
|
|
|
n1 = n2;
|
|
|
|
n2 += 1000;
|
|
|
|
if (resizestring(&v, n2) < 0)
|
|
|
|
return NULL;
|
|
|
|
buf = BUF(v) + n1;
|
|
|
|
end = BUF(v) + n2;
|
|
|
|
}
|
1990-10-14 09:07:46 -03:00
|
|
|
}
|
1991-03-06 09:06:18 -04:00
|
|
|
|
|
|
|
n1 = buf - BUF(v);
|
|
|
|
if (n1 != n2)
|
|
|
|
resizestring(&v, n1);
|
1990-10-14 09:07:46 -03:00
|
|
|
return v;
|
|
|
|
}
|
|
|
|
|
1991-04-04 11:21:57 -04:00
|
|
|
/* External C interface */
|
|
|
|
|
|
|
|
object *
|
|
|
|
filegetline(f, n)
|
|
|
|
object *f;
|
|
|
|
int n;
|
|
|
|
{
|
|
|
|
if (f == NULL || !is_fileobject(f)) {
|
|
|
|
err_badcall();
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
return getline((fileobject *)f, n);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Python method */
|
|
|
|
|
|
|
|
static object *
|
|
|
|
file_readline(f, args)
|
|
|
|
fileobject *f;
|
|
|
|
object *args;
|
|
|
|
{
|
|
|
|
int n;
|
|
|
|
|
|
|
|
if (args == NULL)
|
|
|
|
n = 0; /* Unlimited */
|
|
|
|
else {
|
|
|
|
if (!getintarg(args, &n))
|
|
|
|
return NULL;
|
|
|
|
if (n < 0) {
|
|
|
|
err_badarg();
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1992-03-27 13:23:38 -04:00
|
|
|
return getline(f, n);
|
1991-04-04 11:21:57 -04:00
|
|
|
}
|
|
|
|
|
1991-03-06 09:06:18 -04:00
|
|
|
static object *
|
|
|
|
file_readlines(f, args)
|
|
|
|
fileobject *f;
|
|
|
|
object *args;
|
|
|
|
{
|
|
|
|
object *list;
|
|
|
|
object *line;
|
1991-04-04 11:21:57 -04:00
|
|
|
|
|
|
|
if (!getnoarg(args))
|
|
|
|
return NULL;
|
1991-03-06 09:06:18 -04:00
|
|
|
if ((list = newlistobject(0)) == NULL)
|
|
|
|
return NULL;
|
|
|
|
for (;;) {
|
1991-04-04 11:21:57 -04:00
|
|
|
line = getline(f, 0);
|
1991-03-06 09:06:18 -04:00
|
|
|
if (line != NULL && getstringsize(line) == 0) {
|
|
|
|
DECREF(line);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (line == NULL || addlistitem(list, line) != 0) {
|
|
|
|
DECREF(list);
|
|
|
|
XDECREF(line);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
DECREF(line);
|
|
|
|
}
|
|
|
|
return list;
|
|
|
|
}
|
|
|
|
|
1990-10-14 09:07:46 -03:00
|
|
|
static object *
|
1990-12-20 11:06:42 -04:00
|
|
|
file_write(f, args)
|
1990-10-14 09:07:46 -03:00
|
|
|
fileobject *f;
|
|
|
|
object *args;
|
|
|
|
{
|
|
|
|
int n, n2;
|
|
|
|
if (f->f_fp == NULL) {
|
1990-12-20 11:06:42 -04:00
|
|
|
err_badarg();
|
1990-10-14 09:07:46 -03:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
if (args == NULL || !is_stringobject(args)) {
|
1990-12-20 11:06:42 -04:00
|
|
|
err_badarg();
|
1990-10-14 09:07:46 -03:00
|
|
|
return NULL;
|
|
|
|
}
|
1991-04-04 06:44:06 -04:00
|
|
|
f->f_softspace = 0;
|
1990-10-14 09:07:46 -03:00
|
|
|
errno = 0;
|
1991-12-10 10:00:03 -04:00
|
|
|
n2 = fwrite(getstringvalue(args), 1, n = getstringsize(args), f->f_fp);
|
1990-10-14 09:07:46 -03:00
|
|
|
if (n2 != n) {
|
1991-12-10 10:00:03 -04:00
|
|
|
err_errno(IOError);
|
1992-03-04 12:39:24 -04:00
|
|
|
clearerr(f->f_fp);
|
1990-10-14 09:07:46 -03:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
INCREF(None);
|
|
|
|
return None;
|
|
|
|
}
|
|
|
|
|
1990-12-20 11:06:42 -04:00
|
|
|
static struct methodlist file_methods[] = {
|
1991-03-06 09:06:18 -04:00
|
|
|
{"close", file_close},
|
|
|
|
{"flush", file_flush},
|
1991-06-04 16:37:39 -03:00
|
|
|
{"isatty", file_isatty},
|
1990-12-20 11:06:42 -04:00
|
|
|
{"read", file_read},
|
|
|
|
{"readline", file_readline},
|
1991-03-06 09:06:18 -04:00
|
|
|
{"readlines", file_readlines},
|
|
|
|
{"seek", file_seek},
|
|
|
|
{"tell", file_tell},
|
|
|
|
{"write", file_write},
|
1990-10-14 09:07:46 -03:00
|
|
|
{NULL, NULL} /* sentinel */
|
|
|
|
};
|
|
|
|
|
|
|
|
static object *
|
1990-12-20 11:06:42 -04:00
|
|
|
file_getattr(f, name)
|
1990-10-14 09:07:46 -03:00
|
|
|
fileobject *f;
|
|
|
|
char *name;
|
|
|
|
{
|
1990-12-20 11:06:42 -04:00
|
|
|
return findmethod(file_methods, (object *)f, name);
|
1990-10-14 09:07:46 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
typeobject Filetype = {
|
|
|
|
OB_HEAD_INIT(&Typetype)
|
|
|
|
0,
|
|
|
|
"file",
|
|
|
|
sizeof(fileobject),
|
|
|
|
0,
|
1990-12-20 11:06:42 -04:00
|
|
|
file_dealloc, /*tp_dealloc*/
|
|
|
|
file_print, /*tp_print*/
|
|
|
|
file_getattr, /*tp_getattr*/
|
1990-10-14 09:07:46 -03:00
|
|
|
0, /*tp_setattr*/
|
|
|
|
0, /*tp_compare*/
|
1990-12-20 11:06:42 -04:00
|
|
|
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
|
|
|
|
softspace(f, newflag)
|
|
|
|
object *f;
|
|
|
|
int newflag;
|
|
|
|
{
|
|
|
|
int oldflag = 0;
|
|
|
|
if (f != NULL && is_fileobject(f)) {
|
|
|
|
oldflag = ((fileobject *)f)->f_softspace;
|
|
|
|
((fileobject *)f)->f_softspace = newflag;
|
|
|
|
}
|
|
|
|
return oldflag;
|
|
|
|
}
|