mirror of
https://github.com/mongodb/mongo.git
synced 2024-12-01 01:21:03 +01:00
49 lines
1.2 KiB
C++
49 lines
1.2 KiB
C++
// engine_spidermonkey.h
|
|
|
|
#pragma once
|
|
|
|
|
|
#include "engine.h"
|
|
|
|
#ifdef _WIN32
|
|
#define XP_WIN
|
|
#else
|
|
#define XP_UNIX
|
|
#endif
|
|
|
|
#ifdef MOZJS
|
|
#include "mozjs/jsapi.h"
|
|
#else
|
|
#include "js/jsapi.h"
|
|
#endif
|
|
|
|
namespace mongo {
|
|
|
|
class SMScope;
|
|
|
|
// internal things
|
|
void dontDeleteScope( SMScope * s ){}
|
|
void errorReporter( JSContext *cx, const char *message, JSErrorReport *report );
|
|
extern boost::thread_specific_ptr<SMScope> currentScope;
|
|
|
|
// bson
|
|
JSBool resolveBSONField( JSContext *cx, JSObject *obj, jsval id, uintN flags, JSObject **objp );
|
|
|
|
|
|
// mongo
|
|
extern JSClass mongo_local_class;
|
|
JSBool mongo_local_constructor( JSContext *cx, JSObject *obj, uintN argc, jsval *argv, jsval *rval );
|
|
|
|
extern JSClass db_class;
|
|
JSBool db_constructor( JSContext *cx, JSObject *obj, uintN argc, jsval *argv, jsval *rval );
|
|
|
|
extern JSClass db_collection_class;
|
|
JSBool db_collection_constructor( JSContext *cx, JSObject *obj, uintN argc, jsval *argv, jsval *rval );
|
|
|
|
JSObject * doCreateCollection( JSContext * cx , JSObject * db , const string& shortName );
|
|
|
|
extern JSClass object_id_class;
|
|
|
|
extern JSFunctionSpec mongo_functions[];
|
|
}
|