From: andy Date: Wed, 15 Mar 2006 18:09:50 +0000 (+0000) Subject: Add the Nasal I/O library so Melchior can play with it. Not enabled currently (see... X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=a770d2a97254826efc32802ec59646565116294a;p=simgear.git Add the Nasal I/O library so Melchior can play with it. Not enabled currently (see NasalSys.cxx in the flightgear CVS) --- diff --git a/simgear/nasal/Makefile.am b/simgear/nasal/Makefile.am index 5f6461c8..95021747 100644 --- a/simgear/nasal/Makefile.am +++ b/simgear/nasal/Makefile.am @@ -13,6 +13,8 @@ libsgnasal_a_SOURCES = \ lex.c \ lib.c \ mathlib.c \ + iolib.c \ + iolib.h \ misc.c \ nasal.h \ parse.c parse.h \ diff --git a/simgear/nasal/iolib.c b/simgear/nasal/iolib.c new file mode 100644 index 00000000..9d65fa1e --- /dev/null +++ b/simgear/nasal/iolib.c @@ -0,0 +1,232 @@ +#include +#include +#include +#include +#include +#include "data.h" +#include "iolib.h" + +static void ghostDestroy(void* g); +naGhostType naIOGhostType = { ghostDestroy }; + +static struct naIOGhost* ioghost(naRef r) +{ + if(naGhost_type(r) == &naIOGhostType) + return naGhost_ptr(r); + return 0; +} + +static naRef f_close(naContext c, naRef me, int argc, naRef* args) +{ + struct naIOGhost* g = argc==1 ? ioghost(args[0]) : 0; + if(!g) naRuntimeError(c, "bad argument to close()"); + if(g->handle) g->type->close(c, g->handle); + g->handle = 0; + return naNil(); +} + +static naRef f_read(naContext c, naRef me, int argc, naRef* args) +{ + struct naIOGhost* g = argc > 0 ? ioghost(args[0]) : 0; + naRef str = argc > 1 ? args[1] : naNil(); + naRef len = argc > 2 ? naNumValue(args[2]) : naNil(); + if(!g || !MUTABLE(str) || !IS_NUM(len)) + naRuntimeError(c, "bad argument to read()"); + if(str.ref.ptr.str->len < (int)len.num) + naRuntimeError(c, "string not big enough for read"); + return naNum(g->type->read(c, g->handle, (char*)str.ref.ptr.str->data, + (int)len.num)); +} + +static naRef f_write(naContext c, naRef me, int argc, naRef* args) +{ + struct naIOGhost* g = argc > 0 ? ioghost(args[0]) : 0; + naRef str = argc > 1 ? args[1] : naNil(); + if(!g || !IS_STR(str)) + naRuntimeError(c, "bad argument to write()"); + return naNum(g->type->write(c, g->handle, (char*)str.ref.ptr.str->data, + str.ref.ptr.str->len)); +} + +static naRef f_seek(naContext c, naRef me, int argc, naRef* args) +{ + struct naIOGhost* g = argc > 0 ? ioghost(args[0]) : 0; + naRef pos = argc > 1 ? naNumValue(args[1]) : naNil(); + naRef whn = argc > 2 ? naNumValue(args[2]) : naNil(); + if(!g || !IS_NUM(pos) || !IS_NUM(whn)) + naRuntimeError(c, "bad argument to seek()"); + g->type->seek(c, g->handle, (int)pos.num, (int)whn.num); + return naNil(); +} + +static naRef f_tell(naContext c, naRef me, int argc, naRef* args) +{ + struct naIOGhost* g = argc==1 ? ioghost(args[0]) : 0; + if(!g) + naRuntimeError(c, "bad argument to tell()"); + return naNum(g->type->tell(c, g->handle)); +} + +static void ghostDestroy(void* g) +{ + struct naIOGhost* io = (struct naIOGhost*)g; + io->type->destroy(io->handle); + naFree(io); +} + +//////////////////////////////////////////////////////////////////////// +// stdio library implementation below: + +static void ioclose(naContext c, void* f) +{ + if(fclose(f) != 0 && c) naRuntimeError(c, strerror(errno)); +} + +static int ioread(naContext c, void* f, char* buf, unsigned int len) +{ + int n; + naModUnlock(); n = fread(buf, 1, len, f); naModLock(); + if(n < len && !feof((FILE*)f)) naRuntimeError(c, strerror(errno)); + return n; +} + +static int iowrite(naContext c, void* f, char* buf, unsigned int len) +{ + int n; + naModUnlock(); n = fwrite(buf, 1, len, f); naModLock(); + if(ferror((FILE*)f)) naRuntimeError(c, strerror(errno)); + return n; +} + +static void ioseek(naContext c, void* f, unsigned int off, int whence) +{ + if(fseek(f, off, whence) != 0) naRuntimeError(c, strerror(errno)); +} + +static int iotell(naContext c, void* f) +{ + int n = ftell(f); + if(n < 0) naRuntimeError(c, strerror(errno)); + return n; +} + +static void iodestroy(void* f) +{ + ioclose(0, f); +} + +struct naIOType naStdIOType = { ioclose, ioread, iowrite, ioseek, + iotell, iodestroy }; + +naRef naIOGhost(naContext c, FILE* f) +{ + struct naIOGhost* ghost = naAlloc(sizeof(struct naIOGhost)); + ghost->type = &naStdIOType; + ghost->handle = f; + return naNewGhost(c, &naIOGhostType, ghost); +} + +static naRef f_open(naContext c, naRef me, int argc, naRef* args) +{ + FILE* f; + naRef file = argc > 0 ? naStringValue(c, args[0]) : naNil(); + naRef mode = argc > 1 ? naStringValue(c, args[1]) : naNil(); + if(!IS_STR(file)) naRuntimeError(c, "bad argument to open()"); + f = fopen((char*)file.ref.ptr.str->data, + IS_STR(mode) ? (const char*)mode.ref.ptr.str->data : "r"); + if(!f) naRuntimeError(c, strerror(errno)); + return naIOGhost(c, f); +} + +// frees buffer before tossing an error +static int getcguard(naContext ctx, FILE* f, void* buf) +{ + char c; + naModUnlock(); c = fgetc(f); naModLock(); + if(ferror(f)) { + naFree(buf); + naRuntimeError(ctx, strerror(errno)); + } + return c; +} + +// Handles multiple EOL conventions by using stdio's ungetc. Will not +// work for other IO types without converting them to FILE* with +// fdopen() or whatnot... +static naRef f_readln(naContext ctx, naRef me, int argc, naRef* args) +{ + naRef result; + struct naIOGhost* g = argc==1 ? ioghost(args[0]) : 0; + int i=0, sz = 128; + char* buf; + if(!g || g->type != &naStdIOType) + naRuntimeError(ctx, "bad argument to readln()"); + buf = naAlloc(sz); + while(1) { + char c = getcguard(ctx, g->handle, buf); + if(c == EOF || c == '\n') break; + if(c == '\r') { + char c2 = getcguard(ctx, g->handle, buf); + if(c2 != EOF && c2 != '\n') + ungetc(c2, g->handle); + break; + } + buf[i++] = c; + if(i >= sz) buf = naRealloc(buf, sz *= 2); + } + result = naStr_fromdata(naNewString(ctx), buf, i); + naFree(buf); + return result; +} + +static naRef f_stat(naContext ctx, naRef me, int argc, naRef* args) +{ + int n=0; + struct stat s; + naRef result, path = argc > 0 ? naStringValue(ctx, args[0]) : naNil(); + if(!IS_STR(path)) naRuntimeError(ctx, "bad argument to stat()"); + if(stat((char*)path.ref.ptr.str->data, &s) < 0) { + if(errno == ENOENT) return naNil(); + naRuntimeError(ctx, strerror(errno)); + } + result = naNewVector(ctx); + naVec_setsize(result, 11); +#define FLD(x) naVec_set(result, n++, naNum(s.st_##x)); + FLD(dev); FLD(ino); FLD(mode); FLD(nlink); FLD(uid); FLD(gid); + FLD(rdev); FLD(size); FLD(atime); FLD(mtime); FLD(ctime); +#undef FLD + return result; +} + +static struct func { char* name; naCFunction func; } funcs[] = { + { "close", f_close }, + { "read", f_read }, + { "write", f_write }, + { "seek", f_seek }, + { "tell", f_tell }, + { "open", f_open }, + { "readln", f_readln }, + { "stat", f_stat }, +}; + +static void setsym(naContext c, naRef hash, char* sym, naRef val) +{ + naRef name = naStr_fromdata(naNewString(c), sym, strlen(sym)); + naHash_set(hash, naInternSymbol(name), val); +} + +naRef naIOLib(naContext c) +{ + naRef ns = naNewHash(c); + int i, n = sizeof(funcs)/sizeof(struct func); + for(i=0; itype == &naStdIOType)) + +// Defined in iolib.c, there is no "library" header to put this in +naRef naIOGhost(naContext c, FILE* f); + +#endif // _IOLIB_H