123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493 |
- /* -----------------------------------------------------------------------------
- * js_ctor: template for wrapping a ctor.
- * - $jswrapper: wrapper of called ctor
- * - $jslocals: locals part of wrapper
- * - $jscode: code part of wrapper
- * - $jsargcount: number of arguments
- * - $jsmangledtype: mangled type of class
- * ----------------------------------------------------------------------------- */
- %fragment("js_ctor", "templates") %{
- static SwigV8ReturnValue $jswrapper(const SwigV8Arguments &args) {
- SWIGV8_HANDLESCOPE();
-
- v8::Handle<v8::Object> self = args.Holder();
- $jslocals
- if(args.Length() != $jsargcount) SWIG_exception_fail(SWIG_ERROR, "Illegal number of arguments for $jswrapper.");
- $jscode
- SWIGV8_SetPrivateData(self, result, SWIGTYPE_$jsmangledtype, SWIG_POINTER_OWN);
- SWIGV8_RETURN(self);
- goto fail;
- fail:
- SWIGV8_RETURN(SWIGV8_UNDEFINED());
- }
- %}
- /* -----------------------------------------------------------------------------
- * js_veto_ctor: a vetoing ctor for abstract classes
- * - $jswrapper: name of wrapper
- * - $jsname: class name
- * ----------------------------------------------------------------------------- */
- %fragment ("js_veto_ctor", "templates")
- %{
- static SwigV8ReturnValue $jswrapper(const SwigV8Arguments &args) {
- SWIGV8_HANDLESCOPE();
-
- SWIG_exception(SWIG_ERROR, "Class $jsname can not be instantiated");
- SWIGV8_RETURN(SWIGV8_UNDEFINED());
- }
- %}
- /* -----------------------------------------------------------------------------
- * js_ctor_dispatcher: dispatcher for overloaded constructors
- * - $jswrapper: name of wrapper
- * - $jsname: class name
- * - $jsdispatchcases: part containing code for dispatching
- * ----------------------------------------------------------------------------- */
- %fragment ("js_ctor_dispatcher", "templates")
- %{
- static SwigV8ReturnValue $jswrapper(const SwigV8Arguments &args) {
- SWIGV8_HANDLESCOPE();
-
- OverloadErrorHandler errorHandler;
- v8::Handle<v8::Value> self;
- // switch all cases by means of series of if-returns.
- $jsdispatchcases
- // default:
- SWIG_exception_fail(SWIG_ERROR, "Illegal arguments for construction of $jsmangledname");
- fail:
- SWIGV8_RETURN(SWIGV8_UNDEFINED());
- }
- %}
- /* -----------------------------------------------------------------------------
- * js_overloaded_ctor: template for wrapping a ctor.
- * - $jswrapper: wrapper of called ctor
- * - $jslocals: locals part of wrapper
- * - $jscode: code part of wrapper
- * - $jsargcount: number of arguments
- * - $jsmangledtype: mangled type of class
- * ----------------------------------------------------------------------------- */
- %fragment("js_overloaded_ctor", "templates") %{
- static SwigV8ReturnValue $jswrapper(const SwigV8Arguments &args, V8ErrorHandler &SWIGV8_ErrorHandler) {
- SWIGV8_HANDLESCOPE();
-
- v8::Handle<v8::Object> self = args.Holder();
- $jslocals
- if(args.Length() != $jsargcount) SWIG_exception_fail(SWIG_ERROR, "Illegal number of arguments for $jswrapper.");
- $jscode
- SWIGV8_SetPrivateData(self, result, SWIGTYPE_$jsmangledtype, SWIG_POINTER_OWN);
- SWIGV8_RETURN(self);
- goto fail;
- fail:
- SWIGV8_RETURN(SWIGV8_UNDEFINED());
- }
- %}
- /* -----------------------------------------------------------------------------
- * js_ctor_dispatch_case: template for a dispatch case for calling an overloaded ctor.
- * - $jsargcount: number of arguments of called ctor
- * - $jswrapper: wrapper of called ctor
- *
- * Note: a try-catch-like mechanism is used to switch cases
- * ----------------------------------------------------------------------------- */
- %fragment ("js_ctor_dispatch_case", "templates")
- %{
- if(args.Length() == $jsargcount) {
- errorHandler.err.Clear();
- #if (SWIG_V8_VERSION < 0x031903)
- self = $jswrapper(args, errorHandler);
- if(errorHandler.err.IsEmpty()) {
- SWIGV8_ESCAPE(self);
- }
- #else
- $jswrapper(args, errorHandler);
- if(errorHandler.err.IsEmpty()) {
- return;
- }
- #endif
- }
- %}
- /* -----------------------------------------------------------------------------
- * js_dtor: template for a destructor wrapper
- * - $jsmangledname: mangled class name
- * - $jstype: class type
- * ----------------------------------------------------------------------------- */
- %fragment ("js_dtor", "templates")
- %{
- #if (SWIG_V8_VERSION < 0x031710)
- static void $jswrapper(v8::Persistent< v8::Value > object, void *parameter) {
- SWIGV8_Proxy *proxy = static_cast<SWIGV8_Proxy *>(parameter);
- #elif (SWIG_V8_VERSION < 0x031900)
- static void $jswrapper(v8::Isolate *isolate, v8::Persistent<v8::Value> object, void *parameter) {
- SWIGV8_Proxy *proxy = static_cast<SWIGV8_Proxy *>(parameter);
- #elif (SWIG_V8_VERSION < SWIGV8_SETWEAK_VERSION)
- static void $jswrapper(v8::Isolate *isolate, v8::Persistent<v8::Object> *object, SWIGV8_Proxy *proxy) {
- #else
- static void $jswrapper(const v8::WeakCallbackData<v8::Object, SWIGV8_Proxy> &data) {
- v8::Local<v8::Object> object = data.GetValue();
- SWIGV8_Proxy *proxy = data.GetParameter();
- #endif
- if(proxy->swigCMemOwn && proxy->swigCObject) {
- #ifdef SWIGRUNTIME_DEBUG
- printf("Deleting wrapped instance: %s\n", proxy->info->name);
- #endif
- $jsfree proxy->swigCObject;
- }
- delete proxy;
- object.Clear();
-
- #if (SWIG_V8_VERSION < 0x031710)
- object.Dispose();
- #elif (SWIG_V8_VERSION < 0x031900)
- object.Dispose(isolate);
- #elif (SWIG_V8_VERSION < 0x032100)
- object->Dispose(isolate);
- #else
- object->Dispose();
- #endif
- }
- %}
- /* -----------------------------------------------------------------------------
- * js_dtoroverride: template for a destructor wrapper
- * - $jsmangledname: mangled class name
- * - $jstype: class type
- * - ${destructor_action}: The custom destructor action to invoke.
- * ----------------------------------------------------------------------------- */
- %fragment ("js_dtoroverride", "templates")
- %{
- #if (SWIG_V8_VERSION < 0x031710)
- static void $jswrapper(v8::Persistent<v8::Value> object, void *parameter) {
- SWIGV8_Proxy *proxy = static_cast<SWIGV8_Proxy *>(parameter);
- #elif (SWIG_V8_VERSION < 0x031900)
- static void $jswrapper(v8::Isolate *isolate, v8::Persistent<v8::Value> object, void *parameter) {
- SWIGV8_Proxy *proxy = static_cast<SWIGV8_Proxy *>(parameter);
- #elif (SWIG_V8_VERSION < SWIGV8_SETWEAK_VERSION)
- static void $jswrapper(v8::Isolate *isolate, v8::Persistent< v8::Object> *object, SWIGV8_Proxy *proxy) {
- #else
- static void $jswrapper(const v8::WeakCallbackData<v8::Object, SWIGV8_Proxy> &data) {
- v8::Local<v8::Object> object = data.GetValue();
- SWIGV8_Proxy *proxy = data.GetParameter();
- #endif
- if(proxy->swigCMemOwn && proxy->swigCObject) {
- $jstype arg1 = ($jstype)proxy->swigCObject;
- ${destructor_action}
- }
- delete proxy;
- #if (SWIG_V8_VERSION < 0x031710)
- object.Dispose();
- #elif (SWIG_V8_VERSION < 0x031900)
- object.Dispose(isolate);
- #elif (SWIG_V8_VERSION < 0x032100)
- object->Dispose(isolate);
- #elif (SWIG_V8_VERSION < SWIGV8_SETWEAK_VERSION)
- object->Dispose();
- #else
- object.Clear();
- #endif
- }
- %}
- /* -----------------------------------------------------------------------------
- * js_getter: template for getter function wrappers
- * - $jswrapper: wrapper function name
- * - $jslocals: locals part of wrapper
- * - $jscode: code part of wrapper
- * ----------------------------------------------------------------------------- */
- %fragment("js_getter", "templates")
- %{
- static SwigV8ReturnValue $jswrapper(v8::Local<v8::String> property, const SwigV8PropertyCallbackInfo &info) {
- SWIGV8_HANDLESCOPE();
-
- v8::Handle<v8::Value> jsresult;
- $jslocals
- $jscode
- SWIGV8_RETURN_INFO(jsresult, info);
- goto fail;
- fail:
- SWIGV8_RETURN_INFO(SWIGV8_UNDEFINED(), info);
- }
- %}
- /* -----------------------------------------------------------------------------
- * js_setter: template for setter function wrappers
- * - $jswrapper: wrapper function name
- * - $jslocals: locals part of wrapper
- * - $jscode: code part of wrapper
- * ----------------------------------------------------------------------------- */
- %fragment("js_setter", "templates")
- %{
- static void $jswrapper(v8::Local<v8::String> property, v8::Local<v8::Value> value,
- const SwigV8PropertyCallbackInfoVoid &info) {
- SWIGV8_HANDLESCOPE();
-
- $jslocals
- $jscode
- goto fail;
- fail:
- return;
- }
- %}
- /* -----------------------------------------------------------------------------
- * js_function: template for function wrappers
- * - $jswrapper: wrapper function name
- * - $jslocals: locals part of wrapper
- * - $jscode: code part of wrapper
- * ----------------------------------------------------------------------------- */
- %fragment("js_function", "templates")
- %{
- static SwigV8ReturnValue $jswrapper(const SwigV8Arguments &args) {
- SWIGV8_HANDLESCOPE();
-
- v8::Handle<v8::Value> jsresult;
- $jslocals
- if(args.Length() != $jsargcount) SWIG_exception_fail(SWIG_ERROR, "Illegal number of arguments for $jswrapper.");
- $jscode
- SWIGV8_RETURN(jsresult);
- goto fail;
- fail:
- SWIGV8_RETURN(SWIGV8_UNDEFINED());
- }
- %}
- /* -----------------------------------------------------------------------------
- * js_function_dispatcher: template for a function dispatcher for overloaded functions
- * - $jswrapper: wrapper function name
- * - $jsname: name of the wrapped function
- * - $jslocals: locals part of wrapper
- * - $jscode: code part of wrapper
- * ----------------------------------------------------------------------------- */
- %fragment("js_function_dispatcher", "templates")
- %{
- static SwigV8ReturnValue $jswrapper(const SwigV8Arguments &args) {
- SWIGV8_HANDLESCOPE();
-
- v8::Handle<v8::Value> jsresult;
- OverloadErrorHandler errorHandler;
- $jscode
- SWIG_exception_fail(SWIG_ERROR, "Illegal arguments for function $jsname.");
- goto fail;
- fail:
- SWIGV8_RETURN(SWIGV8_UNDEFINED());
- }
- %}
- /* -----------------------------------------------------------------------------
- * js_overloaded_function: template for a overloaded function
- * - $jswrapper: wrapper function name
- * - $jslocals: locals part of wrapper
- * - $jscode: code part of wrapper
- * ----------------------------------------------------------------------------- */
- %fragment ("js_overloaded_function", "templates")
- %{
- static SwigV8ReturnValue $jswrapper(const SwigV8Arguments &args, V8ErrorHandler &SWIGV8_ErrorHandler)
- {
- SWIGV8_HANDLESCOPE();
-
- v8::Handle<v8::Value> jsresult;
- $jslocals
- $jscode
- SWIGV8_RETURN(jsresult);
- goto fail;
- fail:
- SWIGV8_RETURN(SWIGV8_UNDEFINED());
- }
- %}
- /* -----------------------------------------------------------------------------
- * js_function_dispatch_case: template for a case used in the function dispatcher
- * - $jswrapper: wrapper function name
- * - $jsargcount: number of arguments of overloaded function
- * - $jscode: code part of wrapper
- * ----------------------------------------------------------------------------- */
- %fragment ("js_function_dispatch_case", "templates")
- %{
- if(args.Length() == $jsargcount) {
- errorHandler.err.Clear();
- #if (SWIG_V8_VERSION < 0x031903)
- jsresult = $jswrapper(args, errorHandler);
- if(errorHandler.err.IsEmpty()) {
- SWIGV8_ESCAPE(jsresult);
- }
- #else
- $jswrapper(args, errorHandler);
- if(errorHandler.err.IsEmpty()) {
- return;
- }
- #endif
- }
- %}
- /* -----------------------------------------------------------------------------
- * jsv8_declare_class_template: template for a class template declaration.
- * - $jsmangledname: mangled class name
- * ----------------------------------------------------------------------------- */
- %fragment("jsv8_declare_class_template", "templates")
- %{
- SWIGV8_ClientData $jsmangledname_clientData;
- %}
- /* -----------------------------------------------------------------------------
- * jsv8_define_class_template: template for a class template definition.
- * - $jsmangledname: mangled class name
- * - $jsmangledtype: mangled class type
- * - $jsdtor: the dtor wrapper
- * ----------------------------------------------------------------------------- */
- %fragment("jsv8_define_class_template", "templates")
- %{
- /* Name: $jsmangledname, Type: $jsmangledtype, Dtor: $jsdtor */
- v8::Handle<v8::FunctionTemplate> $jsmangledname_class = SWIGV8_CreateClassTemplate("$jsmangledname");
- SWIGV8_SET_CLASS_TEMPL($jsmangledname_clientData.class_templ, $jsmangledname_class);
- $jsmangledname_clientData.dtor = $jsdtor;
- if (SWIGTYPE_$jsmangledtype->clientdata == 0) {
- SWIGTYPE_$jsmangledtype->clientdata = &$jsmangledname_clientData;
- }
- %}
- /* -----------------------------------------------------------------------------
- * jsv8_inherit: template for an class inherit statement.
- * - $jsmangledname: mangled class name
- * - $jsbaseclass: mangled name of the base class
- * ----------------------------------------------------------------------------- */
- %fragment("jsv8_inherit", "templates")
- %{
- if (SWIGTYPE_p$jsbaseclass->clientdata && !(static_cast<SWIGV8_ClientData *>(SWIGTYPE_p$jsbaseclass->clientdata)->class_templ.IsEmpty()))
- {
- #if (SWIG_V8_VERSION < 0x031903)
- $jsmangledname_class->Inherit(static_cast<SWIGV8_ClientData *>(SWIGTYPE_p$jsbaseclass->clientdata)->class_templ);
- #else
- $jsmangledname_class->Inherit(
- v8::Local<v8::FunctionTemplate>::New(
- v8::Isolate::GetCurrent(),
- static_cast<SWIGV8_ClientData *>(SWIGTYPE_p$jsbaseclass->clientdata)->class_templ)
- );
- #endif
- #ifdef SWIGRUNTIME_DEBUG
- printf("Inheritance successful $jsmangledname $jsbaseclass\n");
- #endif
- } else {
- #ifdef SWIGRUNTIME_DEBUG
- printf("Unable to inherit baseclass, it didn't exist $jsmangledname $jsbaseclass\n");
- #endif
- }
- %}
- /* -----------------------------------------------------------------------------
- * jsv8_create_class_instance: template for creating an class object.
- * - $jsname: class name
- * - $jsmangledname: mangled class name
- * ----------------------------------------------------------------------------- */
- %fragment("jsv8_create_class_instance", "templates")
- %{
- /* Class: $jsname ($jsmangledname) */
- v8::Handle<v8::FunctionTemplate> $jsmangledname_class_0 = SWIGV8_CreateClassTemplate("$jsname");
- $jsmangledname_class_0->SetCallHandler($jsctor);
- $jsmangledname_class_0->Inherit($jsmangledname_class);
- $jsmangledname_class_0->SetHiddenPrototype(true);
- v8::Handle<v8::Object> $jsmangledname_obj = $jsmangledname_class_0->GetFunction();
- %}
- /* -----------------------------------------------------------------------------
- * jsv8_register_class: template for a statement that registers a class in a parent namespace.
- * - $jsname: class name
- * - $jsmangledname: mangled class name
- * - $jsparent: mangled name of parent namespace
- * ----------------------------------------------------------------------------- */
- %fragment("jsv8_register_class", "templates")
- %{
- $jsparent_obj->Set(SWIGV8_SYMBOL_NEW("$jsname"), $jsmangledname_obj);
- %}
- /* -----------------------------------------------------------------------------
- * jsv8_create_namespace: template for a statement that creates a namespace object.
- * - $jsmangledname: mangled namespace name
- * ----------------------------------------------------------------------------- */
- %fragment("jsv8_create_namespace", "templates")
- %{
- v8::Handle<v8::Object> $jsmangledname_obj = SWIGV8_OBJECT_NEW();
- %}
- /* -----------------------------------------------------------------------------
- * jsv8_register_namespace: template for a statement that registers a namespace in a parent namespace.
- * - $jsname: name of namespace
- * - $jsmangledname: mangled name of namespace
- * - $jsparent: mangled name of parent namespace
- * ----------------------------------------------------------------------------- */
- %fragment("jsv8_register_namespace", "templates")
- %{
- $jsparent_obj->Set(SWIGV8_SYMBOL_NEW("$jsname"), $jsmangledname_obj);
- %}
- /* -----------------------------------------------------------------------------
- * jsv8_register_member_function: template for a statement that registers a member function.
- * - $jsmangledname: mangled class name
- * - $jsname: name of the function
- * - $jswrapper: wrapper of the member function
- * ----------------------------------------------------------------------------- */
- %fragment("jsv8_register_member_function", "templates")
- %{
- SWIGV8_AddMemberFunction($jsmangledname_class, "$jsname", $jswrapper);
- %}
- /* -----------------------------------------------------------------------------
- * jsv8_register_member_variable: template for a statement that registers a member variable.
- * - $jsmangledname: mangled class name
- * - $jsname: name of the function
- * - $jsgetter: wrapper of the getter function
- * - $jssetter: wrapper of the setter function
- * ----------------------------------------------------------------------------- */
- %fragment("jsv8_register_member_variable", "templates")
- %{
- SWIGV8_AddMemberVariable($jsmangledname_class, "$jsname", $jsgetter, $jssetter);
- %}
- /* -----------------------------------------------------------------------------
- * jsv8_register_static_function: template for a statement that registers a static class function.
- * - $jsname: function name
- * - $jswrapper: wrapper of the function
- * - $jsparent: mangled name of parent namespace
- *
- * Note: this template is also used for global functions.
- * ----------------------------------------------------------------------------- */
- %fragment("jsv8_register_static_function", "templates")
- %{
- SWIGV8_AddStaticFunction($jsparent_obj, "$jsname", $jswrapper);
- %}
- /* -----------------------------------------------------------------------------
- * jsv8_register_static_variable: template for a statement that registers a static variable.
- * - $jsname: variable name
- * - $jsparent: mangled name of parent namespace
- * - $jsgetter: wrapper of the getter function
- * - $jssetter: wrapper of the setter function
- *
- * Note: this template is also used for global variables.
- * ----------------------------------------------------------------------------- */
- %fragment("jsv8_register_static_variable", "templates")
- %{
- SWIGV8_AddStaticVariable($jsparent_obj, "$jsname", $jsgetter, $jssetter);
- %}
|