javascripthelpers.swg 3.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. %insert(runtime) %{
  2. // Note: since 3.19 there are new CallBack types, since 03.21.9 the old ones have been removed
  3. #if (SWIG_V8_VERSION < 0x031903)
  4. typedef v8::InvocationCallback SwigV8FunctionCallback;
  5. typedef v8::AccessorGetter SwigV8AccessorGetterCallback;
  6. typedef v8::AccessorSetter SwigV8AccessorSetterCallback;
  7. typedef v8::AccessorInfo SwigV8PropertyCallbackInfoVoid;
  8. #else
  9. typedef v8::FunctionCallback SwigV8FunctionCallback;
  10. typedef v8::AccessorGetterCallback SwigV8AccessorGetterCallback;
  11. typedef v8::AccessorSetterCallback SwigV8AccessorSetterCallback;
  12. typedef v8::PropertyCallbackInfo<void> SwigV8PropertyCallbackInfoVoid;
  13. #endif
  14. /**
  15. * Creates a class template for a class with specified initialization function.
  16. */
  17. SWIGRUNTIME v8::Handle<v8::FunctionTemplate> SWIGV8_CreateClassTemplate(const char* symbol) {
  18. SWIGV8_HANDLESCOPE_ESC();
  19. v8::Local<v8::FunctionTemplate> class_templ = SWIGV8_FUNCTEMPLATE_NEW_VOID();
  20. class_templ->SetClassName(SWIGV8_SYMBOL_NEW(symbol));
  21. v8::Handle<v8::ObjectTemplate> inst_templ = class_templ->InstanceTemplate();
  22. inst_templ->SetInternalFieldCount(1);
  23. v8::Handle<v8::ObjectTemplate> equals_templ = class_templ->PrototypeTemplate();
  24. equals_templ->Set(SWIGV8_SYMBOL_NEW("equals"), SWIGV8_FUNCTEMPLATE_NEW(_SWIGV8_wrap_equals));
  25. v8::Handle<v8::ObjectTemplate> cptr_templ = class_templ->PrototypeTemplate();
  26. cptr_templ->Set(SWIGV8_SYMBOL_NEW("getCPtr"), SWIGV8_FUNCTEMPLATE_NEW(_wrap_getCPtr));
  27. SWIGV8_ESCAPE(class_templ);
  28. }
  29. /**
  30. * Registers a class method with given name for a given class template.
  31. */
  32. SWIGRUNTIME void SWIGV8_AddMemberFunction(v8::Handle<v8::FunctionTemplate> class_templ, const char* symbol,
  33. SwigV8FunctionCallback _func) {
  34. v8::Handle<v8::ObjectTemplate> proto_templ = class_templ->PrototypeTemplate();
  35. proto_templ->Set(SWIGV8_SYMBOL_NEW(symbol), SWIGV8_FUNCTEMPLATE_NEW(_func));
  36. }
  37. /**
  38. * Registers a class property with given name for a given class template.
  39. */
  40. SWIGRUNTIME void SWIGV8_AddMemberVariable(v8::Handle<v8::FunctionTemplate> class_templ, const char* symbol,
  41. SwigV8AccessorGetterCallback getter, SwigV8AccessorSetterCallback setter) {
  42. v8::Handle<v8::ObjectTemplate> proto_templ = class_templ->InstanceTemplate();
  43. proto_templ->SetAccessor(SWIGV8_SYMBOL_NEW(symbol), getter, setter);
  44. }
  45. /**
  46. * Registers a class method with given name for a given object.
  47. */
  48. SWIGRUNTIME void SWIGV8_AddStaticFunction(v8::Handle<v8::Object> obj, const char* symbol,
  49. const SwigV8FunctionCallback& _func) {
  50. obj->Set(SWIGV8_SYMBOL_NEW(symbol), SWIGV8_FUNCTEMPLATE_NEW(_func)->GetFunction());
  51. }
  52. /**
  53. * Registers a class method with given name for a given object.
  54. */
  55. SWIGRUNTIME void SWIGV8_AddStaticVariable(v8::Handle<v8::Object> obj, const char* symbol,
  56. SwigV8AccessorGetterCallback getter, SwigV8AccessorSetterCallback setter) {
  57. obj->SetAccessor(SWIGV8_SYMBOL_NEW(symbol), getter, setter);
  58. }
  59. SWIGRUNTIME void JS_veto_set_variable(v8::Local<v8::String> property, v8::Local<v8::Value> value,
  60. const SwigV8PropertyCallbackInfoVoid& info)
  61. {
  62. char buffer[256];
  63. char msg[512];
  64. int res;
  65. property->WriteUtf8(buffer, 256);
  66. res = sprintf(msg, "Tried to write read-only variable: %s.", buffer);
  67. if(res<0) {
  68. SWIG_exception(SWIG_ERROR, "Tried to write read-only variable.");
  69. } else {
  70. SWIG_exception(SWIG_ERROR, msg);
  71. }
  72. }
  73. %} // v8_helper_functions