v8js_variables.cc 2.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  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. extern "C" {
  18. #include "php.h"
  19. }
  20. #include "php_v8js_macros.h"
  21. #include <v8.h>
  22. #include <string>
  23. static void v8js_fetch_php_variable(v8::Local<v8::String> name, const v8::PropertyCallbackInfo<v8::Value>& info) /* {{{ */
  24. {
  25. v8::Handle<v8::External> data = v8::Handle<v8::External>::Cast(info.Data());
  26. v8js_accessor_ctx *ctx = static_cast<v8js_accessor_ctx *>(data->Value());
  27. v8::Isolate *isolate = ctx->isolate;
  28. zval *variable;
  29. V8JS_TSRMLS_FETCH();
  30. zend_is_auto_global(ctx->variable_name TSRMLS_CC);
  31. if ((variable = zend_hash_find(&EG(symbol_table), ctx->variable_name))) {
  32. info.GetReturnValue().Set(zval_to_v8js(variable, isolate TSRMLS_CC));
  33. return;
  34. }
  35. }
  36. /* }}} */
  37. void v8js_accessor_ctx_dtor(v8js_accessor_ctx *ctx TSRMLS_DC) /* {{{ */
  38. {
  39. zend_string_release(ctx->variable_name);
  40. efree(ctx);
  41. }
  42. /* }}} */
  43. 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) /* {{{ */
  44. {
  45. zend_string *property_name;
  46. zval *item;
  47. v8::Local<v8::ObjectTemplate> php_obj = php_obj_t->InstanceTemplate();
  48. ZEND_HASH_FOREACH_STR_KEY_VAL(Z_ARRVAL_P(array), property_name, item) {
  49. switch (Z_TYPE_P(item))
  50. {
  51. /*
  52. case IS_OBJECT:
  53. case IS_ARRAY:
  54. */
  55. case IS_STRING:
  56. break;
  57. default:
  58. continue; /* Ignore invalid values */
  59. }
  60. // Create context to store accessor data
  61. v8js_accessor_ctx *ctx = (v8js_accessor_ctx *)emalloc(sizeof(v8js_accessor_ctx));
  62. ctx->variable_name = zend_string_copy(Z_STR_P(item));
  63. ctx->isolate = isolate;
  64. /* Set the variable fetch callback for given symbol on named property */
  65. 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));
  66. /* record the context so we can free it later */
  67. accessor_list->push_back(ctx);
  68. } ZEND_HASH_FOREACH_END();
  69. }
  70. /* }}} */
  71. /*
  72. * Local variables:
  73. * tab-width: 4
  74. * c-basic-offset: 4
  75. * End:
  76. * vim600: noet sw=4 ts=4 fdm=marker
  77. * vim<600: noet sw=4 ts=4
  78. */