0ad/source/ps/scripting/JSInterface_VFS.cpp

212 lines
5.4 KiB
C++
Raw Normal View History

2005-05-02 21:47:06 +02:00
#include "precompiled.h"
#include <sstream>
2005-05-02 21:47:06 +02:00
#include "ps/CStr.h"
#include "ps/VFSUtil.h"
#include "lib/res/res.h"
#include "scripting/ScriptingHost.h"
#include "scripting/JSConversions.h"
#include "scripting/JSInterface_VFS.h"
2005-05-02 21:47:06 +02:00
// shared error handling code
#define JS_CHECK_FILE_ERR(err)\
/* this is liable to happen often, so don't complain */\
if(err == ERR_FILE_NOT_FOUND)\
{\
*rval = JSVAL_NULL;\
return( JS_TRUE );\
}\
/* unknown failure. we return an error (akin to an exception in JS) that
stops the script to make sure this error is noticed. */\
else if(err < 0)\
return( JS_FALSE );\
/* else: success */
// state held across multiple BuildFileListCB calls; init by BuildFileList.
2005-05-02 21:47:06 +02:00
struct BuildFileListState
{
JSContext* cx;
JSObject* filename_array;
int cur_idx;
BuildFileListState(JSContext* cx_)
: cx(cx_)
{
filename_array = JS_NewArrayObject(cx, 0, NULL);
cur_idx = 0;
}
};
// called for each matching directory entry; add its full pathname to array.
static void BuildFileListCB(const char* path, const DirEnt* UNUSED(ent), void* context)
2005-05-02 21:47:06 +02:00
{
BuildFileListState* s = (BuildFileListState*)context;
2005-05-03 07:16:10 +02:00
jsval val = ToJSVal( CStr ( path ) );
// note: <path> is already directory + name!
JS_SetElement(s->cx, s->filename_array, s->cur_idx++, &val);
2005-05-02 21:47:06 +02:00
}
// Return an array of pathname strings, one for each matching entry in the
// specified directory.
//
// pathnames = buildFileList(start_path [, filter_string [, recursive ] ]);
// directory: VFS path
// filter_string: default "" matches everything; otherwise, see vfs_next_dirent.
// recurse: should subdirectories be included in the search? default false.
//
// note: full pathnames of each file/subdirectory are returned,
// ready for use as a "filename" for the other functions.
JSBool JSI_VFS::BuildFileList( JSContext* cx, JSObject* UNUSED(obj), uintN argc, jsval* argv, jsval* rval )
2005-05-02 21:47:06 +02:00
{
//
// get arguments
//
debug_assert( argc >= 1 );
2005-05-02 21:47:06 +02:00
CStr path;
if( !ToPrimitive<CStr>( cx, argv[0], path ) )
return( JS_FALSE );
CStr filter_str = "";
if(argc >= 2)
{
if( !ToPrimitive<CStr>( cx, argv[1], filter_str ) )
return( JS_FALSE );
}
// convert to const char*; if there's no filter, pass 0 for speed
// (interpreted as: "accept all files without comparing").
const char* filter = 0;
if(!filter_str.empty())
filter = filter_str.c_str();
bool recursive = false;
if(argc >= 3)
{
if( !ToPrimitive<bool>( cx, argv[2], recursive ) )
return( JS_FALSE );
}
int flags = recursive? VFSUtil::RECURSIVE : 0;
2005-05-02 21:47:06 +02:00
// build array in the callback function
BuildFileListState state(cx);
VFSUtil::EnumDirEnts( path, flags, filter, BuildFileListCB, &state );
2005-05-02 21:47:06 +02:00
*rval = OBJECT_TO_JSVAL( state.filename_array );
2005-05-02 21:47:06 +02:00
return( JS_TRUE );
}
// Return time [seconds since 1970] of the last modification to the specified file.
//
// mtime = getFileMTime(filename);
// filename: VFS filename (may include path)
JSBool JSI_VFS::GetFileMTime( JSContext* cx, JSObject* UNUSED(obj), uintN argc, jsval* argv, jsval* rval )
2005-05-02 21:47:06 +02:00
{
debug_assert( argc >= 1 );
2005-05-02 21:47:06 +02:00
CStr filename;
if( !ToPrimitive<CStr>( cx, argv[0], filename ) )
return( JS_FALSE );
struct stat s;
LibError err = vfs_stat( filename.c_str(), &s );
JS_CHECK_FILE_ERR( err );
2005-05-02 21:47:06 +02:00
*rval = ToJSVal( (double)s.st_mtime );
2005-05-02 21:47:06 +02:00
return( JS_TRUE );
}
// Return current size of file.
//
// size = getFileSize(filename);
// filename: VFS filename (may include path)
JSBool JSI_VFS::GetFileSize( JSContext* cx, JSObject* UNUSED(obj), uintN argc, jsval* argv, jsval* rval )
2005-05-02 21:47:06 +02:00
{
debug_assert( argc >= 1 );
2005-05-02 21:47:06 +02:00
CStr filename;
if( !ToPrimitive<CStr>( cx, argv[0], filename ) )
return( JS_FALSE );
struct stat s;
LibError err = vfs_stat( filename.c_str(), &s );
JS_CHECK_FILE_ERR(err);
2005-05-02 21:47:06 +02:00
*rval = ToJSVal( (uint)s.st_size );
2005-05-02 21:47:06 +02:00
return( JS_TRUE );
}
// Return file contents in a string.
//
// contents = readFile(filename);
// filename: VFS filename (may include path)
JSBool JSI_VFS::ReadFile( JSContext* cx, JSObject* UNUSED(obj), uintN argc, jsval* argv, jsval* rval )
2005-05-02 21:47:06 +02:00
{
debug_assert( argc >= 1 );
2005-05-02 21:47:06 +02:00
CStr filename;
if( !ToPrimitive<CStr>( cx, argv[0], filename ) )
return( JS_FALSE );
FileIOBuf buf;
2005-05-02 21:47:06 +02:00
size_t size;
LibError err = vfs_load( filename.c_str(), buf, size );
JS_CHECK_FILE_ERR( err );
CStr contents( (const char*)buf, size );
(void)file_buf_free(buf);
2005-05-02 21:47:06 +02:00
*rval = ToJSVal( CStr( contents ) );
2005-05-02 21:47:06 +02:00
return( JS_TRUE );
}
// Return file contents as an array of lines.
//
// lines = readFileLines(filename);
// filename: VFS filename (may include path)
JSBool JSI_VFS::ReadFileLines( JSContext* cx, JSObject* UNUSED(obj), uintN argc, jsval* argv, jsval* rval )
2005-05-02 21:47:06 +02:00
{
debug_assert( argc >= 1 );
2005-05-02 21:47:06 +02:00
CStr filename;
if( !ToPrimitive<CStr>( cx, argv[0], filename ) )
return( JS_FALSE );
//
2005-05-02 21:47:06 +02:00
// read file
//
FileIOBuf buf;
2005-05-02 21:47:06 +02:00
size_t size;
LibError err = vfs_load( filename.c_str( ), buf, size );
JS_CHECK_FILE_ERR( err );
CStr contents( (const char*)buf, size );
(void)file_buf_free( buf );
2005-05-02 21:47:06 +02:00
//
2005-05-02 21:47:06 +02:00
// split into array of strings (one per line)
//
std::stringstream ss( contents );
JSObject* line_array = JS_NewArrayObject( cx, 0, NULL );
2005-05-02 21:47:06 +02:00
std::string line;
int cur_line = 0;
while( std::getline( ss, line ) )
2005-05-02 21:47:06 +02:00
{
jsval val = ToJSVal( CStr( line ) );
JS_SetElement( cx, line_array, cur_line++, &val );
2005-05-02 21:47:06 +02:00
}
*rval = OBJECT_TO_JSVAL( line_array );
2005-05-02 21:47:06 +02:00
return( JS_TRUE );
}