v8js_variables.cc 2.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. /*
  2. +----------------------------------------------------------------------+
  3. | PHP Version 5 |
  4. +----------------------------------------------------------------------+
  5. | Copyright (c) 1997-2013 The PHP Group |
  6. +----------------------------------------------------------------------+
  7. | http://www.opensource.org/licenses/mit-license.php MIT License |
  8. +----------------------------------------------------------------------+
  9. | Author: Jani Taskinen <[email protected]> |
  10. | Author: Patrick Reilly <[email protected]> |
  11. +----------------------------------------------------------------------+
  12. */
  13. /* $Id:$ */
  14. #ifdef HAVE_CONFIG_H
  15. #include "config.h"
  16. #endif
  17. #include <string>
  18. #include "php_v8js_macros.h"
  19. static void v8js_fetch_php_variable(v8::Local<v8::String> name, const v8::PropertyCallbackInfo<v8::Value>& info) /* {{{ */
  20. {
  21. v8::Handle<v8::External> data = v8::Handle<v8::External>::Cast(info.Data());
  22. v8js_accessor_ctx *ctx = static_cast<v8js_accessor_ctx *>(data->Value());
  23. v8::Isolate *isolate = ctx->isolate;
  24. zval *variable;
  25. V8JS_TSRMLS_FETCH();
  26. zend_is_auto_global(ctx->variable_name TSRMLS_CC);
  27. if ((variable = zend_hash_find(&EG(symbol_table), ctx->variable_name))) {
  28. info.GetReturnValue().Set(zval_to_v8js(variable, isolate TSRMLS_CC));
  29. return;
  30. }
  31. }
  32. /* }}} */
  33. void v8js_accessor_ctx_dtor(v8js_accessor_ctx *ctx TSRMLS_DC) /* {{{ */
  34. {
  35. zend_string_release(ctx->variable_name);
  36. efree(ctx);
  37. }
  38. /* }}} */
  39. void v8js_register_accessors(std::vector<v8js_accessor_ctx*> *accessor_list, v8::Local<v8::FunctionTemplate> php_obj_t, zval *array, v8::Isolate *isolate TSRMLS_DC) /* {{{ */
  40. {
  41. zend_string *property_name;
  42. zval *item;
  43. v8::Local<v8::ObjectTemplate> php_obj = php_obj_t->InstanceTemplate();
  44. ZEND_HASH_FOREACH_STR_KEY_VAL(Z_ARRVAL_P(array), property_name, item) {
  45. switch (Z_TYPE_P(item))
  46. {
  47. /*
  48. case IS_OBJECT:
  49. case IS_ARRAY:
  50. */
  51. case IS_STRING:
  52. break;
  53. default:
  54. continue; /* Ignore invalid values */
  55. }
  56. // Create context to store accessor data
  57. v8js_accessor_ctx *ctx = (v8js_accessor_ctx *)emalloc(sizeof(v8js_accessor_ctx));
  58. ctx->variable_name = zend_string_copy(Z_STR_P(item));
  59. ctx->isolate = isolate;
  60. /* Set the variable fetch callback for given symbol on named property */
  61. php_obj->SetAccessor(V8JS_ZSTR(property_name), v8js_fetch_php_variable, NULL, v8::External::New(isolate, ctx), v8::PROHIBITS_OVERWRITING, v8::ReadOnly, v8::AccessorSignature::New(isolate, php_obj_t));
  62. /* record the context so we can free it later */
  63. accessor_list->push_back(ctx);
  64. } ZEND_HASH_FOREACH_END();
  65. }
  66. /* }}} */
  67. /*
  68. * Local variables:
  69. * tab-width: 4
  70. * c-basic-offset: 4
  71. * indent-tabs-mode: t
  72. * End:
  73. * vim600: noet sw=4 ts=4 fdm=marker
  74. * vim<600: noet sw=4 ts=4
  75. */