2014-12-12 22:59:28 +00:00
|
|
|
/*
|
|
|
|
+----------------------------------------------------------------------+
|
|
|
|
| PHP Version 5 |
|
|
|
|
+----------------------------------------------------------------------+
|
|
|
|
| Copyright (c) 1997-2013 The PHP Group |
|
|
|
|
+----------------------------------------------------------------------+
|
|
|
|
| http://www.opensource.org/licenses/mit-license.php MIT License |
|
|
|
|
+----------------------------------------------------------------------+
|
|
|
|
| Author: Jani Taskinen <jani.taskinen@iki.fi> |
|
|
|
|
| Author: Patrick Reilly <preilly@php.net> |
|
|
|
|
+----------------------------------------------------------------------+
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef V8JS_CLASS_H
|
|
|
|
#define V8JS_CLASS_H
|
|
|
|
|
2014-12-12 23:43:19 +00:00
|
|
|
|
|
|
|
/* Abbreviate long type names */
|
|
|
|
typedef v8::Persistent<v8::FunctionTemplate, v8::CopyablePersistentTraits<v8::FunctionTemplate> > v8js_tmpl_t;
|
|
|
|
typedef v8::Persistent<v8::Object, v8::CopyablePersistentTraits<v8::Object> > v8js_persistent_obj_t;
|
|
|
|
|
|
|
|
/* Forward declarations */
|
|
|
|
struct v8js_v8object;
|
2014-12-13 00:15:29 +00:00
|
|
|
struct v8js_accessor_ctx;
|
2015-08-02 21:35:47 +00:00
|
|
|
struct _v8js_script;
|
2014-12-12 23:43:19 +00:00
|
|
|
|
2015-08-01 15:49:11 +00:00
|
|
|
struct cmp_str {
|
|
|
|
bool operator()(char const *a, char const *b) const {
|
|
|
|
return strcmp(a, b) < 0;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2014-12-12 23:43:19 +00:00
|
|
|
/* {{{ Context container */
|
2014-12-13 00:15:29 +00:00
|
|
|
struct v8js_ctx {
|
2014-12-12 23:43:19 +00:00
|
|
|
zend_object std;
|
|
|
|
v8::Persistent<v8::String> object_name;
|
|
|
|
v8::Persistent<v8::Context> context;
|
|
|
|
zend_bool report_uncaught;
|
|
|
|
zval *pending_exception;
|
|
|
|
int in_execution;
|
|
|
|
v8::Isolate *isolate;
|
|
|
|
|
2015-08-21 14:12:12 +00:00
|
|
|
long flags;
|
|
|
|
|
2014-12-12 23:43:19 +00:00
|
|
|
long time_limit;
|
|
|
|
bool time_limit_hit;
|
|
|
|
long memory_limit;
|
|
|
|
bool memory_limit_hit;
|
|
|
|
|
2015-09-01 13:53:21 +00:00
|
|
|
v8js_tmpl_t global_template;
|
|
|
|
v8js_tmpl_t array_tmpl;
|
2014-12-12 23:43:19 +00:00
|
|
|
|
|
|
|
zval *module_loader;
|
|
|
|
std::vector<char *> modules_stack;
|
|
|
|
std::vector<char *> modules_base;
|
2015-08-01 15:49:11 +00:00
|
|
|
std::map<char *, v8js_persistent_obj_t, cmp_str> modules_loaded;
|
2014-12-12 23:43:19 +00:00
|
|
|
std::map<const char *,v8js_tmpl_t> template_cache;
|
|
|
|
|
|
|
|
std::map<zval *, v8js_persistent_obj_t> weak_objects;
|
|
|
|
std::map<v8js_tmpl_t *, v8js_persistent_obj_t> weak_closures;
|
2015-08-27 12:46:27 +00:00
|
|
|
std::map<v8js_tmpl_t *, v8js_tmpl_t> call_impls;
|
|
|
|
std::map<zend_function *, v8js_tmpl_t> method_tmpls;
|
2014-12-12 23:43:19 +00:00
|
|
|
|
|
|
|
std::list<v8js_v8object *> v8js_v8objects;
|
|
|
|
|
2014-12-13 00:15:29 +00:00
|
|
|
std::vector<v8js_accessor_ctx *> accessor_list;
|
2015-08-02 21:35:47 +00:00
|
|
|
std::vector<struct _v8js_script *> script_objects;
|
2014-12-12 23:43:19 +00:00
|
|
|
char *tz;
|
|
|
|
#ifdef ZTS
|
|
|
|
void ***zts_ctx;
|
|
|
|
#endif
|
|
|
|
};
|
|
|
|
/* }}} */
|
|
|
|
|
|
|
|
#ifdef ZTS
|
2014-12-13 00:15:29 +00:00
|
|
|
# define V8JS_TSRMLS_FETCH() TSRMLS_FETCH_FROM_CTX(((v8js_ctx *) isolate->GetData(0))->zts_ctx);
|
2014-12-12 23:43:19 +00:00
|
|
|
#else
|
|
|
|
# define V8JS_TSRMLS_FETCH()
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2014-12-12 22:59:28 +00:00
|
|
|
PHP_MINIT_FUNCTION(v8js_class);
|
|
|
|
|
|
|
|
#endif /* V8JS_CLASS_H */
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Local variables:
|
|
|
|
* tab-width: 4
|
|
|
|
* c-basic-offset: 4
|
|
|
|
* End:
|
|
|
|
* vim600: noet sw=4 ts=4 fdm=marker
|
|
|
|
* vim<600: noet sw=4 ts=4
|
|
|
|
*/
|