v8js_variables.cc 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. /*
  2. +----------------------------------------------------------------------+
  3. | PHP Version 5 |
  4. +----------------------------------------------------------------------+
  5. | Copyright (c) 1997-2017 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. | Author: Stefan Siegl <[email protected]> |
  12. +----------------------------------------------------------------------+
  13. */
  14. #ifdef HAVE_CONFIG_H
  15. #include "config.h"
  16. #endif
  17. #include <string>
  18. #include "php_v8js_macros.h"
  19. #include "v8js_exceptions.h"
  20. extern "C" {
  21. #include "zend_exceptions.h"
  22. }
  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. if (ZSTR_LEN(property_name) > std::numeric_limits<int>::max()) {
  61. zend_throw_exception(php_ce_v8js_exception,
  62. "Property name length exceeds maximum supported length", 0);
  63. continue;
  64. }
  65. // Create context to store accessor data
  66. v8js_accessor_ctx *ctx = (v8js_accessor_ctx *)emalloc(sizeof(v8js_accessor_ctx));
  67. ctx->variable_name = zend_string_copy(Z_STR_P(item));
  68. ctx->isolate = isolate;
  69. /* Set the variable fetch callback for given symbol on named property */
  70. php_obj->SetAccessor(V8JS_STRL(ZSTR_VAL(property_name), static_cast<int>(ZSTR_LEN(property_name))), v8js_fetch_php_variable, NULL, v8::External::New(isolate, ctx), v8::PROHIBITS_OVERWRITING, v8::ReadOnly, v8::AccessorSignature::New(isolate, php_obj_t));
  71. /* record the context so we can free it later */
  72. accessor_list->push_back(ctx);
  73. } ZEND_HASH_FOREACH_END();
  74. }
  75. /* }}} */
  76. /*
  77. * Local variables:
  78. * tab-width: 4
  79. * c-basic-offset: 4
  80. * indent-tabs-mode: t
  81. * End:
  82. * vim600: noet sw=4 ts=4 fdm=marker
  83. * vim<600: noet sw=4 ts=4
  84. */