Add initial Javascript V8 emitter implementation.
git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/branches/oliverb-javascript-v8@13743 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
parent
4bcfca05dd
commit
3c30e2d382
9 changed files with 857 additions and 1 deletions
73
Lib/javascript/v8/javascriptcode.swg
Normal file
73
Lib/javascript/v8/javascriptcode.swg
Normal file
|
|
@ -0,0 +1,73 @@
|
|||
|
||||
%fragment("v8_initializer", "templates") %{
|
||||
void ${MODULE}_Initialize(v8::Handle<v8::Context> context)
|
||||
{
|
||||
v8::HandleScope scope;
|
||||
|
||||
// register the module in globale context
|
||||
v8::Local<v8::Object> global = context->Global();
|
||||
|
||||
${PART_NAMESPACES}
|
||||
|
||||
${PART_CLASS_TEMPLATES}
|
||||
|
||||
${PART_WRAPPERS}
|
||||
|
||||
${PART_INHERITANCE}
|
||||
|
||||
${PART_REGISTER}
|
||||
}%}
|
||||
|
||||
%fragment("v8_declare_class_template", "templates") %{
|
||||
v8::Persistent<v8::FunctionTemplate> SWIGV8_${NAME_MANGLED};%}
|
||||
|
||||
%fragment("v8_define_class_template", "templates") %{
|
||||
SWIGV8_${NAME_MANGLED} = SWIGV8_CreateClassTemplate("${NAME_UNQUALIFIED}" , ${NAME_MANGLED}_new);%}
|
||||
|
||||
%fragment("v8_inherit", "templates") %{
|
||||
SWIGV8_${NAME_MANGLED}->Inherit(SWIGV8_${BASE_CLASS});%}
|
||||
|
||||
%fragment("v8_register_class", "templates") %{
|
||||
${CONTEXT}->Set(v8::String::NewSymbol("${NAME_UNQUALIFIED}", SWIGV8_${NAME_MANGLED}->GetFunction()));%}
|
||||
|
||||
%fragment("v8_ctor_wrapper", "templates") %{
|
||||
v8::Handle<v8::Value> ${NAME_MANGLED}_new(const v8::Arguments& args) {
|
||||
v8::HandleScope scope;
|
||||
v8::Handle<v8::Object> self = args.Holder();
|
||||
${LOCALS}
|
||||
${ACTION}
|
||||
self->SetInternalField(0, v8::External::New(ptr));
|
||||
return self;
|
||||
}
|
||||
%}
|
||||
|
||||
%fragment("v8_getter", "templates") %{
|
||||
v8::Handle<v8::Value> ${NAME_MANGLED}_get(v8::Local<v8::String> property, const v8::AccessorInfo& info) {
|
||||
v8::HandleScope scope;
|
||||
v8::Handle<v8::Object> ret;
|
||||
${LOCALS}
|
||||
${ACTION}
|
||||
${MARSHAL_OUTPUT}
|
||||
return scope.Close(ret);
|
||||
}
|
||||
%}
|
||||
|
||||
%fragment("v8_setter", "templates") %{
|
||||
void ${NAME_MANGLED}_set(v8::Local<v8::String> property, v8::Local<v8::Value> value, const v8::AccessorInfo& info) {
|
||||
${LOCALS}
|
||||
${MARSHAL_INPUT}
|
||||
${ACTION}
|
||||
}
|
||||
%}
|
||||
|
||||
%fragment("v8_function", "templates") %{
|
||||
v8::Handle<v8::Value> ${NAME_MANGLED}(const Arguments &args) {
|
||||
v8::HandleScope scope;
|
||||
v8::Handle<v8::Object> ret;
|
||||
${LOCALS}
|
||||
${MARSHAL_INPUT}
|
||||
${ACTION}
|
||||
${MARSHAL_OUTPUT}
|
||||
return scope.Close(ret);
|
||||
}
|
||||
%}
|
||||
58
Lib/javascript/v8/javascripthelpers.swg
Normal file
58
Lib/javascript/v8/javascripthelpers.swg
Normal file
|
|
@ -0,0 +1,58 @@
|
|||
|
||||
%insert(runtime) %{
|
||||
|
||||
/**
|
||||
* Creates a class template for a class without extra initialization function.
|
||||
*/
|
||||
v8::Persistent<v8::FunctionTemplate> SWIGV8_CreateClassTemplate(const char* symbol) {
|
||||
v8::Local<v8::FunctionTemplate> class_templ = v8::FunctionTemplate::New();
|
||||
class_templ->SetClassName(v8::String::NewSymbol(symbol));
|
||||
|
||||
v8::Handle<v8::ObjectTemplate> inst_templ = class_templ->InstanceTemplate();
|
||||
inst_templ->SetInternalFieldCount(1);
|
||||
|
||||
return v8::Persistent<v8::FunctionTemplate>::New(class_templ);
|
||||
}
|
||||
|
||||
/**
|
||||
* Creates a class template for a class with specified initialization function.
|
||||
*/
|
||||
v8::Persistent<v8::FunctionTemplate> SWIGV8_CreateClassTemplate(const char* symbol, v8::InvocationCallback _func) {
|
||||
v8::Local<v8::FunctionTemplate> class_templ = v8::FunctionTemplate::New(_func);
|
||||
class_templ->SetClassName(v8::String::NewSymbol(symbol));
|
||||
|
||||
v8::Handle<v8::ObjectTemplate> inst_templ = class_templ->InstanceTemplate();
|
||||
inst_templ->SetInternalFieldCount(1);
|
||||
|
||||
return v8::Persistent<v8::FunctionTemplate>::New(class_templ);
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the pimpl data of a V8 class.
|
||||
*/
|
||||
v8::Handle<v8::Value> V8GeneratorUtils::SetInstance(const v8::Arguments& args, void* data) {
|
||||
v8::HandleScope scope;
|
||||
|
||||
v8::Handle<v8::Object> self = args.Holder();
|
||||
self->SetInternalField(0, v8::External::New(data));
|
||||
|
||||
return self;
|
||||
}
|
||||
|
||||
/**
|
||||
* Registers a class method with given name for a given class template.
|
||||
*/
|
||||
void V8GeneratorUtils::AddClassMethod(v8::Handle<v8::FunctionTemplate> class_templ, const char* symbol, v8::InvocationCallback _func) {
|
||||
v8::Handle<v8::ObjectTemplate> proto_templ = class_templ->PrototypeTemplate();
|
||||
proto_templ->Set(v8::String::NewSymbol(symbol), v8::FunctionTemplate::New(_func));
|
||||
}
|
||||
|
||||
/**
|
||||
* Registers a class property with given name for a given class template.
|
||||
*/
|
||||
void V8GeneratorUtils::AddProperty(v8::Handle<v8::FunctionTemplate> class_templ, const char* varname, v8::AccessorGetter getter, v8::AccessorSetter setter) {
|
||||
v8::Handle<v8::ObjectTemplate> proto_templ = class_templ->InstanceTemplate();
|
||||
proto_templ->SetAccessor(v8::String::New(varname), getter, setter);
|
||||
}
|
||||
|
||||
%} // v8_helper_functions
|
||||
265
Lib/javascript/v8/javascriptprimitives.swg
Normal file
265
Lib/javascript/v8/javascriptprimitives.swg
Normal file
|
|
@ -0,0 +1,265 @@
|
|||
// Primitive types
|
||||
%typemap(in) char,
|
||||
signed char,
|
||||
unsigned char,
|
||||
short,
|
||||
unsigned short,
|
||||
int,
|
||||
unsigned int,
|
||||
long,
|
||||
unsigned long,
|
||||
long long,
|
||||
unsigned long long,
|
||||
float,
|
||||
double
|
||||
%{ $1 = ($1_ltype)JSValueToNumber(context, $input, NULL); %}
|
||||
|
||||
%typemap(in) const bool &, bool &,
|
||||
const char &, char &,
|
||||
const signed char &, signed char &,
|
||||
const unsigned char &, unsigned char &,
|
||||
const short &, short &,
|
||||
const unsigned short &, unsigned short &,
|
||||
const int &, int &,
|
||||
const unsigned int &, unsigned int &,
|
||||
const long &, long &,
|
||||
const unsigned long &, unsigned long &,
|
||||
const long long &, long long &,
|
||||
const unsigned long long &,unsigned long long &,
|
||||
const float &, float &,
|
||||
const double &, double &
|
||||
%{ $1 = ($1_ltype)&$input; %}
|
||||
|
||||
%typemap(out) char,
|
||||
signed char,
|
||||
unsigned char,
|
||||
short,
|
||||
unsigned short,
|
||||
int,
|
||||
unsigned int,
|
||||
long,
|
||||
unsigned long,
|
||||
long long,
|
||||
unsigned long long,
|
||||
float,
|
||||
double
|
||||
%{ $result = JSValueMakeNumber(context, $1); %}
|
||||
|
||||
%typemap(out) const bool &, bool &,
|
||||
const char &, char &,
|
||||
const signed char &, signed char &,
|
||||
const unsigned char &, unsigned char &,
|
||||
const short &, short &,
|
||||
const unsigned short &, unsigned short &,
|
||||
const int &, int &,
|
||||
const unsigned int &, unsigned int &,
|
||||
const long &, long &,
|
||||
const unsigned long &, unsigned long &,
|
||||
const long long &, long long &,
|
||||
const unsigned long long &,unsigned long long &,
|
||||
const float &, float &,
|
||||
const double &, double &
|
||||
%{ $result = JSValueMakeNumber(context,*$1); %}
|
||||
|
||||
|
||||
%typemap(in) short *,
|
||||
unsigned short *,
|
||||
int *,
|
||||
unsigned int *,
|
||||
long *,
|
||||
unsigned long *,
|
||||
long long *,
|
||||
unsigned long long *,
|
||||
float *,
|
||||
double *
|
||||
%{
|
||||
JSObjectRef o$1 = JSValueToObject(context,$input, NULL);
|
||||
SWIG_PRV_DATA *$1_privatedata = (SWIG_PRV_DATA *)JSObjectGetPrivate(o$1);
|
||||
$1 = ($1_ltype)$1_privatedata->swigCObject;
|
||||
%}
|
||||
|
||||
|
||||
%typemap(out) short *,
|
||||
unsigned short *,
|
||||
int *,
|
||||
unsigned int *,
|
||||
long *,
|
||||
unsigned long *,
|
||||
long long *,
|
||||
unsigned long long *,
|
||||
float *,
|
||||
double *
|
||||
%{
|
||||
SWIG_PRV_DATA *privatedata = new SWIG_PRV_DATA();
|
||||
privatedata->swigCMemOwn = false;
|
||||
privatedata->swigCObject = result;
|
||||
$result = JSObjectMake(context, _wrap_swig_ptr_$*1_ltype_createJSClass(context), privatedata);
|
||||
%}
|
||||
|
||||
%typemap(in) bool
|
||||
%{
|
||||
$1 = ($1_ltype)JSValueToBoolean(context, $input);
|
||||
%}
|
||||
|
||||
%typemap(out) bool
|
||||
%{
|
||||
$result = JSValueMakeBoolean(context, $1);
|
||||
%}
|
||||
|
||||
|
||||
%typemap(out) void
|
||||
%{ $result = JSValueMakeUndefined(context); %}
|
||||
|
||||
|
||||
%typemap(in) char *
|
||||
%{
|
||||
JSStringRef $1_str = JSValueToStringCopy(context, $input, NULL);
|
||||
size_t $1_strsize = JSStringGetMaximumUTF8CStringSize($1_str);
|
||||
$1 = (char *)malloc($1_strsize * sizeof(char));
|
||||
JSStringGetUTF8CString($1_str, $1, $1_strsize);
|
||||
%}
|
||||
|
||||
%typemap(out) char *
|
||||
%{
|
||||
JSStringRef jsstring = JSStringCreateWithUTF8CString($1);
|
||||
$result = JSValueMakeString(context, jsstring);
|
||||
JSStringRelease(jsstring);
|
||||
%}
|
||||
|
||||
%typemap(arginit) char * ""
|
||||
|
||||
%typemap(in) char *& ($*1_ltype temp = 0) %{
|
||||
temp = ($*1_ltype)$input;
|
||||
JSStringRef $1_str = JSValueToStringCopy(context, $input, NULL);
|
||||
size_t $1_strsize = JSStringGetMaximumUTF8CStringSize($1_str);
|
||||
$1 = (char *)malloc($1_strsize * sizeof(char));
|
||||
JSStringGetUTF8CString($1_str, $1, $1_strsize);
|
||||
%}
|
||||
|
||||
%typemap(out) char *&
|
||||
%{
|
||||
JSStringRef jsstring = JSStringCreateWithUTF8CString((const char *)*$1);
|
||||
$result = JSValueMakeString(context, jsstring);
|
||||
JSStringRelease(jsstring);
|
||||
%}
|
||||
|
||||
/* char arrays - treat as String */
|
||||
%typemap(in) char[ANY], char[] %{
|
||||
JSStringRef $1_str = JSValueToStringCopy(context, $input, NULL);
|
||||
size_t $1_strsize = JSStringGetMaximumUTF8CStringSize($1_str);
|
||||
JSStringGetUTF8CString($1_str, $1, $1_strsize);
|
||||
%}
|
||||
|
||||
%typemap(out) char[ANY], char[]
|
||||
%{
|
||||
JSStringRef jsstring = JSStringCreateWithUTF8CString($1);
|
||||
$result = JSValueMakeString(context, jsstring);
|
||||
JSStringRelease(jsstring);
|
||||
%}
|
||||
|
||||
%typemap(freearg) char *, char *&, char[ANY], char[] //TODO: Not working: A memory leak
|
||||
%{ free($1); %}
|
||||
|
||||
|
||||
/* Typemaps for composite types */
|
||||
%typemap(in) SWIGTYPE ($&1_type argp) // Objects passed by value, convert to a pointer
|
||||
%{
|
||||
JSObjectRef o$1 = JSValueToObject(context,$input, NULL);
|
||||
SWIG_PRV_DATA *$1_privatedata = (SWIG_PRV_DATA *)JSObjectGetPrivate(o$1);
|
||||
argp = ($&1_ltype)$1_privatedata->swigCObject;
|
||||
$1 = *argp;
|
||||
%}
|
||||
|
||||
%typemap(out) SWIGTYPE ($&1_type temp)
|
||||
#ifdef __cplusplus
|
||||
%{
|
||||
temp = new $1_ltype((const $1_ltype &)$1);
|
||||
SWIG_PRV_DATA *privatedata = new SWIG_PRV_DATA();
|
||||
privatedata->swigCMemOwn = false;
|
||||
privatedata->swigCObject = temp;
|
||||
$result = JSObjectMake(context, _wrap_$1_type_createJSClass(context), privatedata);
|
||||
//$result = JSObjectMake(context, _wrap_$1_basetype_createJSClass(context), privatedata);
|
||||
//$result = JSObjectMake(context, _wrap_$objecttype_createJSClass(context), privatedata);
|
||||
// $1_mangle
|
||||
// $1_descriptor
|
||||
%}
|
||||
#else
|
||||
{
|
||||
$&1_ltype $1ptr = ($&1_ltype) malloc(sizeof($1_ltype));
|
||||
memmove($1ptr, &$1, sizeof($1_type));
|
||||
temp = $1ptr;
|
||||
SWIG_PRV_DATA *privatedata = (SWIG_PRV_DATA *)malloc(sizeof(SWIG_PRV_DATA());
|
||||
privatedata->swigCMemOwn = false;
|
||||
privatedata->swigCObject = temp;
|
||||
$result = JSObjectMake(context, _wrap_$1_ltype_createJSClass(context), privatedata);
|
||||
//$result = JSObjectMake(context, _wrap_$1_basetype_createJSClass(context), privatedata);
|
||||
//$result = JSObjectMake(context, _wrap_$objecttype_createJSClass(context), privatedata);
|
||||
// $1_mangle
|
||||
// $1_descriptor
|
||||
}
|
||||
#endif
|
||||
|
||||
%typemap(in) SWIGTYPE *, SWIGTYPE &
|
||||
%{
|
||||
JSObjectRef o$1 = JSValueToObject(context,$input, NULL);
|
||||
SWIG_PRV_DATA *$1_privatedata = (SWIG_PRV_DATA *)JSObjectGetPrivate(o$1);
|
||||
$1 = ($1_ltype)$1_privatedata->swigCObject;
|
||||
%}
|
||||
|
||||
%typemap(out) SWIGTYPE *, SWIGTYPE &
|
||||
%{
|
||||
SWIG_PRV_DATA *privatedata = new SWIG_PRV_DATA();
|
||||
privatedata->swigCMemOwn = false;
|
||||
privatedata->swigCObject = result;
|
||||
$result = JSObjectMake(context, _wrap_$*1_ltype_createJSClass(context), privatedata);
|
||||
//$result = JSObjectMake(context, _wrap_$1_basetype_createJSClass(context), privatedata);
|
||||
//$result = JSObjectMake(context, _wrap_$objecttype_createJSClass(context), privatedata);
|
||||
// $1_mangle
|
||||
// $1_descriptor
|
||||
%}
|
||||
|
||||
%typemap(arginit) SWIGTYPE *
|
||||
%{
|
||||
// Sanity check if the call is not on the global object
|
||||
if (!JSValueIsEqual(context,
|
||||
JSValueToObject(context,thisObject,NULL),
|
||||
JSValueToObject(context,JSContextGetGlobalObject(context), NULL),
|
||||
NULL)) {
|
||||
SWIG_PRV_DATA* $1_swigprivatedata = (SWIG_PRV_DATA*)JSObjectGetPrivate(thisObject);
|
||||
$1 = ($1_ltype)$1_swigprivatedata->swigCObject;
|
||||
}
|
||||
%}
|
||||
|
||||
%typemap(in) SWIGTYPE (CLASS::*) ""
|
||||
|
||||
%typemap(out) SWIGTYPE (CLASS::*)
|
||||
%{
|
||||
// Class* out typemap
|
||||
$result = JSObjectMake(context, _wrap_$*1_ltype_createJSClass(context), result);
|
||||
%}
|
||||
|
||||
|
||||
|
||||
/* Typecheck typemaps - The purpose of these is merely to issue a warning for overloaded C++ functions
|
||||
* that cannot be overloaded in Javascript as more than one C++ type maps to a single Javascript type */
|
||||
// TODO
|
||||
|
||||
|
||||
// Default array handling
|
||||
%typemap(in) SWIGTYPE [] %{ $1 = ($1_ltype)$input; %}
|
||||
%typemap(out) SWIGTYPE [] %{ $result = $1; %}
|
||||
|
||||
|
||||
// Javascript specific directives
|
||||
//TODO
|
||||
|
||||
// Some ANSI C typemaps */
|
||||
%apply unsigned long { size_t };
|
||||
|
||||
%apply const unsigned long & { const size_t & };
|
||||
|
||||
// Array reference typemaps
|
||||
%apply SWIGTYPE & { SWIGTYPE ((&)[ANY]) }
|
||||
|
||||
// const pointers
|
||||
%apply SWIGTYPE * { SWIGTYPE *const }
|
||||
9
Lib/javascript/v8/javascriptruntime.swg
Normal file
9
Lib/javascript/v8/javascriptruntime.swg
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
/* -----------------------------------------------------------------------------
|
||||
* javascriptruntime.swg
|
||||
*
|
||||
* Javascript support code
|
||||
* ----------------------------------------------------------------------------- */
|
||||
|
||||
%insert(runtime) %{
|
||||
#include <v8.h>
|
||||
%}
|
||||
Loading…
Add table
Add a link
Reference in a new issue