v8js_variables.cc 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. /*
  2. +----------------------------------------------------------------------+
  3. | PHP Version 7 |
  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::Local<v8::External> data = v8::Local<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. zend_is_auto_global(ctx->variable_name);
  30. if ((variable = zend_hash_find(&EG(symbol_table), ctx->variable_name))) {
  31. info.GetReturnValue().Set(zval_to_v8js(variable, isolate));
  32. return;
  33. }
  34. }
  35. /* }}} */
  36. void v8js_accessor_ctx_dtor(v8js_accessor_ctx *ctx) /* {{{ */
  37. {
  38. zend_string_release(ctx->variable_name);
  39. efree(ctx);
  40. }
  41. /* }}} */
  42. void v8js_register_accessors(std::vector<v8js_accessor_ctx*> *accessor_list, v8::Local<v8::FunctionTemplate> php_obj_t, zval *array, v8::Isolate *isolate) /* {{{ */
  43. {
  44. zend_string *property_name;
  45. zval *item;
  46. v8::Local<v8::ObjectTemplate> php_obj = php_obj_t->InstanceTemplate();
  47. ZEND_HASH_FOREACH_STR_KEY_VAL(Z_ARRVAL_P(array), property_name, item) {
  48. switch (Z_TYPE_P(item))
  49. {
  50. /*
  51. case IS_OBJECT:
  52. case IS_ARRAY:
  53. */
  54. case IS_STRING:
  55. break;
  56. default:
  57. continue; /* Ignore invalid values */
  58. }
  59. if (ZSTR_LEN(property_name) > std::numeric_limits<int>::max()) {
  60. zend_throw_exception(php_ce_v8js_exception,
  61. "Property name length exceeds maximum supported length", 0);
  62. continue;
  63. }
  64. // Create context to store accessor data
  65. v8js_accessor_ctx *ctx = (v8js_accessor_ctx *)emalloc(sizeof(v8js_accessor_ctx));
  66. ctx->variable_name = zend_string_copy(Z_STR_P(item));
  67. ctx->isolate = isolate;
  68. /* Set the variable fetch callback for given symbol on named property */
  69. 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));
  70. /* record the context so we can free it later */
  71. accessor_list->push_back(ctx);
  72. } ZEND_HASH_FOREACH_END();
  73. }
  74. /* }}} */
  75. /*
  76. * Local variables:
  77. * tab-width: 4
  78. * c-basic-offset: 4
  79. * indent-tabs-mode: t
  80. * End:
  81. * vim600: noet sw=4 ts=4 fdm=marker
  82. * vim<600: noet sw=4 ts=4
  83. */