| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526 | 
							- /*
 
-   +----------------------------------------------------------------------+
 
-   | PHP Version 5                                                        |
 
-   +----------------------------------------------------------------------+
 
-   | Copyright (c) 1997-2017 The PHP Group                                |
 
-   +----------------------------------------------------------------------+
 
-   | http://www.opensource.org/licenses/mit-license.php  MIT License      |
 
-   +----------------------------------------------------------------------+
 
-   | Author: Jani Taskinen <[email protected]>                         |
 
-   | Author: Patrick Reilly <[email protected]>                             |
 
-   | Author: Stefan Siegl <[email protected]>                          |
 
-   +----------------------------------------------------------------------+
 
- */
 
- #ifdef HAVE_CONFIG_H
 
- #include "config.h"
 
- #endif
 
- #include "php_v8js_macros.h"
 
- #include "v8js_commonjs.h"
 
- #include "v8js_exceptions.h"
 
- extern "C" {
 
- #include "zend_exceptions.h"
 
- }
 
- /* global.exit - terminate execution */
 
- V8JS_METHOD(exit) /* {{{ */
 
- {
 
- 	v8::Isolate *isolate = info.GetIsolate();
 
- 	v8js_terminate_execution(isolate);
 
- }
 
- /* }}} */
 
- /* global.sleep - sleep for passed seconds */
 
- V8JS_METHOD(sleep) /* {{{ */
 
- {
 
- 	php_sleep(info[0]->Int32Value());
 
- }
 
- /* }}} */
 
- /* global.print - php print() */
 
- V8JS_METHOD(print) /* {{{ */
 
- {
 
- 	v8::Isolate *isolate = info.GetIsolate();
 
- 	zend_long ret = 0;
 
- 	for (int i = 0; i < info.Length(); i++) {
 
- 		v8::String::Utf8Value str(info[i]);
 
- 		const char *cstr = ToCString(str);
 
- 		ret = PHPWRITE(cstr, strlen(cstr));
 
- 	}
 
- 	info.GetReturnValue().Set(zend_long_to_v8js(ret, isolate));
 
- }
 
- /* }}} */
 
- static void v8js_dumper(v8::Isolate *isolate, v8::Local<v8::Value> var, int level TSRMLS_DC) /* {{{ */
 
- {
 
- 	if (level > 1) {
 
- 		php_printf("%*c", (level - 1) * 2, ' ');
 
- 	}
 
- 	if (var.IsEmpty())
 
- 	{
 
- 		php_printf("<empty>\n");
 
- 		return;
 
- 	}
 
- 	if (var->IsNull() || var->IsUndefined() /* PHP compat */)
 
- 	{
 
- 		php_printf("NULL\n");
 
- 		return;
 
- 	}
 
- 	if (var->IsInt32())
 
- 	{
 
- 		php_printf("int(%ld)\n", (long) var->IntegerValue());
 
- 		return;
 
- 	}
 
- 	if (var->IsUint32())
 
- 	{
 
- 		php_printf("int(%lu)\n", (unsigned long) var->IntegerValue());
 
- 		return;
 
- 	}
 
- 	if (var->IsNumber())
 
- 	{
 
- 		php_printf("float(%f)\n", var->NumberValue());
 
- 		return;
 
- 	}
 
- 	if (var->IsBoolean())
 
- 	{
 
- 		php_printf("bool(%s)\n", var->BooleanValue() ? "true" : "false");
 
- 		return;
 
- 	}
 
- 	v8::TryCatch try_catch; /* object.toString() can throw an exception */
 
- 	v8::Local<v8::String> details;
 
- 	if(var->IsRegExp()) {
 
- 		v8::RegExp *re = v8::RegExp::Cast(*var);
 
- 		details = re->GetSource();
 
- 	}
 
- 	else {
 
- 		details = var->ToDetailString();
 
- 		if (try_catch.HasCaught()) {
 
- 			details = V8JS_SYM("<toString threw exception>");
 
- 		}
 
- 	}
 
- 	v8::String::Utf8Value str(details);
 
- 	const char *valstr = ToCString(str);
 
- 	size_t valstr_len = details->ToString()->Utf8Length();
 
- 	if (var->IsString())
 
- 	{
 
- 		php_printf("string(%zu) \"", valstr_len);
 
- 		PHPWRITE(valstr, valstr_len);
 
- 		php_printf("\"\n");
 
- 	}
 
- 	else if (var->IsDate())
 
- 	{
 
- 		// fake the fields of a PHP DateTime
 
- 		php_printf("Date(%s)\n", valstr);
 
- 	}
 
- 	else if (var->IsRegExp())
 
- 	{
 
- 		php_printf("regexp(/%s/)\n", valstr);
 
- 	}
 
- 	else if (var->IsArray())
 
- 	{
 
- 		v8::Local<v8::Array> array = v8::Local<v8::Array>::Cast(var);
 
- 		uint32_t length = array->Length();
 
- 		php_printf("array(%d) {\n", length);
 
- 		for (unsigned i = 0; i < length; i++) {
 
- 			php_printf("%*c[%d] =>\n", level * 2, ' ', i);
 
- 			v8js_dumper(isolate, array->Get(i), level + 1 TSRMLS_CC);
 
- 		}
 
- 		if (level > 1) {
 
- 			php_printf("%*c", (level - 1) * 2, ' ');
 
- 		}
 
- 		ZEND_PUTS("}\n");
 
- 	}
 
- 	else if (var->IsObject())
 
- 	{
 
- 		v8::Local<v8::Object> object = v8::Local<v8::Object>::Cast(var);
 
- 		V8JS_GET_CLASS_NAME(cname, object);
 
- 		int hash = object->GetIdentityHash();
 
- 		if (var->IsFunction() && strcmp(ToCString(cname), "Closure") != 0)
 
- 		{
 
- 			v8::String::Utf8Value csource(object->ToString());
 
- 			php_printf("object(Closure)#%d {\n%*c%s\n", hash, level * 2 + 2, ' ', ToCString(csource));
 
- 		}
 
- 		else
 
- 		{
 
- 			v8::Local<v8::Array> keys = object->GetOwnPropertyNames();
 
- 			uint32_t length = keys->Length();
 
- 			if (strcmp(ToCString(cname), "Array") == 0 ||
 
- 				strcmp(ToCString(cname), "V8Object") == 0) {
 
- 				php_printf("array");
 
- 			} else {
 
- 				php_printf("object(%s)#%d", ToCString(cname), hash);
 
- 			}
 
- 			php_printf(" (%d) {\n", length);
 
- 			for (unsigned i = 0; i < length; i++) {
 
- 				v8::Local<v8::String> key = keys->Get(i)->ToString();
 
- 				v8::String::Utf8Value kname(key);
 
- 				php_printf("%*c[\"%s\"] =>\n", level * 2, ' ', ToCString(kname));
 
- 				v8js_dumper(isolate, object->Get(key), level + 1 TSRMLS_CC);
 
- 			}
 
- 		}
 
- 		if (level > 1) {
 
- 			php_printf("%*c", (level - 1) * 2, ' ');
 
- 		}
 
- 		ZEND_PUTS("}\n");
 
- 	}
 
- 	else /* null, undefined, etc. */
 
- 	{
 
- 		php_printf("<%s>\n", valstr);
 
- 	}
 
- }
 
- /* }}} */
 
- /* global.var_dump - Dump JS values */
 
- V8JS_METHOD(var_dump) /* {{{ */
 
- {
 
- 	v8::Isolate *isolate = info.GetIsolate();
 
- 	V8JS_TSRMLS_FETCH();
 
- 	for (int i = 0; i < info.Length(); i++) {
 
- 		v8js_dumper(isolate, info[i], 1 TSRMLS_CC);
 
- 	}
 
- 	info.GetReturnValue().Set(V8JS_NULL);
 
- }
 
- /* }}} */
 
- V8JS_METHOD(require)
 
- {
 
- 	v8::Isolate *isolate = info.GetIsolate();
 
- 	V8JS_TSRMLS_FETCH();
 
- 	// Get the extension context
 
- 	v8::Local<v8::External> data = v8::Local<v8::External>::Cast(info.Data());
 
- 	v8js_ctx *c = static_cast<v8js_ctx*>(data->Value());
 
- 	// Check that we have a module loader
 
- 	if(Z_TYPE(c->module_loader) == IS_NULL) {
 
- 		info.GetReturnValue().Set(isolate->ThrowException(V8JS_SYM("No module loader")));
 
- 		return;
 
- 	}
 
- 	v8::String::Utf8Value module_id_v8(info[0]);
 
- 	const char *module_id = ToCString(module_id_v8);
 
- 	char *normalised_path, *module_name;
 
- 	if (Z_TYPE(c->module_normaliser) == IS_NULL) {
 
- 		// No custom normalisation routine registered, use internal one
 
- 		normalised_path = (char *)emalloc(PATH_MAX);
 
- 		module_name = (char *)emalloc(PATH_MAX);
 
- 		v8js_commonjs_normalise_identifier(c->modules_base.back(), module_id, normalised_path, module_name);
 
- 	}
 
- 	else {
 
- 		// Call custom normaliser
 
- 		int call_result;
 
- 		zval params[2];
 
- 		zval normaliser_result;
 
- 		zend_try {
 
- 			{
 
- 				isolate->Exit();
 
- 				v8::Unlocker unlocker(isolate);
 
- 				ZVAL_STRING(¶ms[0], c->modules_base.back());
 
- 				ZVAL_STRING(¶ms[1], module_id);
 
- 				call_result = call_user_function_ex(EG(function_table), NULL, &c->module_normaliser,
 
- 													&normaliser_result, 2, params, 0, NULL TSRMLS_CC);
 
- 			}
 
- 			isolate->Enter();
 
- 			if (call_result == FAILURE) {
 
- 				info.GetReturnValue().Set(isolate->ThrowException(V8JS_SYM("Module normaliser callback failed")));
 
- 			}
 
- 		}
 
- 		zend_catch {
 
- 			v8js_terminate_execution(isolate);
 
- 			V8JSG(fatal_error_abort) = 1;
 
- 			call_result = FAILURE;
 
- 		}
 
- 		zend_end_try();
 
- 		zval_ptr_dtor(¶ms[0]);
 
- 		zval_ptr_dtor(¶ms[1]);
 
- 		if(call_result == FAILURE) {
 
- 			return;
 
- 		}
 
- 		// Check if an exception was thrown
 
- 		if (EG(exception)) {
 
- 			// Clear the PHP exception and throw it in V8 instead
 
- 			zend_clear_exception(TSRMLS_C);
 
- 			info.GetReturnValue().Set(isolate->ThrowException(V8JS_SYM("Module normaliser callback exception")));
 
- 			return;
 
- 		}
 
- 		if (Z_TYPE(normaliser_result) != IS_ARRAY) {
 
- 			zval_ptr_dtor(&normaliser_result);
 
- 			info.GetReturnValue().Set(isolate->ThrowException(V8JS_SYM("Module normaliser didn't return an array")));
 
- 			return;
 
- 		}
 
- 		HashTable *ht = HASH_OF(&normaliser_result);
 
- 		int num_elements = zend_hash_num_elements(ht);
 
- 		if(num_elements != 2) {
 
- 			zval_ptr_dtor(&normaliser_result);
 
- 			info.GetReturnValue().Set(isolate->ThrowException(V8JS_SYM("Module normaliser expected to return array of 2 strings")));
 
- 			return;
 
- 		}
 
- 		zval *data;
 
- 		ulong index = 0;
 
- 		ZEND_HASH_FOREACH_VAL(ht, data) {
 
- 			if (Z_TYPE_P(data) != IS_STRING) {
 
- 				convert_to_string(data);
 
- 			}
 
- 			switch(index++) {
 
- 			case 0: // normalised path
 
- 				normalised_path = estrndup(Z_STRVAL_P(data), Z_STRLEN_P(data));
 
- 				break;
 
- 			case 1: // normalised module id
 
- 				module_name = estrndup(Z_STRVAL_P(data), Z_STRLEN_P(data));
 
- 				break;
 
- 			}
 
- 		}
 
- 		ZEND_HASH_FOREACH_END();
 
- 		zval_ptr_dtor(&normaliser_result);
 
- 	}
 
- 	char *normalised_module_id = (char *)emalloc(strlen(normalised_path)+1+strlen(module_name)+1);
 
- 	*normalised_module_id = 0;
 
- 	if (strlen(normalised_path) > 0) {
 
- 		strcat(normalised_module_id, normalised_path);
 
- 		strcat(normalised_module_id, "/");
 
- 	}
 
- 	strcat(normalised_module_id, module_name);
 
- 	efree(module_name);
 
- 	// Check for module cyclic dependencies
 
- 	for (std::vector<char *>::iterator it = c->modules_stack.begin(); it != c->modules_stack.end(); ++it)
 
-     {
 
-     	if (!strcmp(*it, normalised_module_id)) {
 
-     		efree(normalised_module_id);
 
-     		efree(normalised_path);
 
- 		info.GetReturnValue().Set(isolate->ThrowException(V8JS_SYM("Module cyclic dependency")));
 
- 		return;
 
-     	}
 
-     }
 
-     // If we have already loaded and cached this module then use it
 
- 	if (c->modules_loaded.count(normalised_module_id) > 0) {
 
- 		v8::Persistent<v8::Object> newobj;
 
- 		newobj.Reset(isolate, c->modules_loaded[normalised_module_id]);
 
- 		info.GetReturnValue().Set(newobj);
 
- 		efree(normalised_module_id);
 
- 		efree(normalised_path);
 
- 		return;
 
- 	}
 
- 	// Callback to PHP to load the module code
 
- 	zval module_code;
 
- 	int call_result;
 
- 	zval params[1];
 
- 	{
 
- 		isolate->Exit();
 
- 		v8::Unlocker unlocker(isolate);
 
- 		zend_try {
 
- 			ZVAL_STRING(¶ms[0], normalised_module_id);
 
- 			call_result = call_user_function_ex(EG(function_table), NULL, &c->module_loader, &module_code, 1, params, 0, NULL TSRMLS_CC);
 
- 		}
 
- 		zend_catch {
 
- 			v8js_terminate_execution(isolate);
 
- 			V8JSG(fatal_error_abort) = 1;
 
- 		}
 
- 		zend_end_try();
 
- 	}
 
- 	isolate->Enter();
 
- 	if (V8JSG(fatal_error_abort)) {
 
- 		call_result = FAILURE;
 
- 	}
 
- 	else if (call_result == FAILURE) {
 
- 		info.GetReturnValue().Set(isolate->ThrowException(V8JS_SYM("Module loader callback failed")));
 
- 	}
 
- 	zval_ptr_dtor(¶ms[0]);
 
- 	if (call_result == FAILURE) {
 
- 		efree(normalised_module_id);
 
- 		efree(normalised_path);
 
- 		return;
 
- 	}
 
- 	// Check if an exception was thrown
 
- 	if (EG(exception)) {
 
- 		efree(normalised_module_id);
 
- 		efree(normalised_path);
 
- 		// Clear the PHP exception and throw it in V8 instead
 
- 		zend_clear_exception(TSRMLS_C);
 
- 		info.GetReturnValue().Set(isolate->ThrowException(V8JS_SYM("Module loader callback exception")));
 
- 		return;
 
- 	}
 
- 	// Convert the return value to string
 
- 	if (Z_TYPE(module_code) != IS_STRING) {
 
- 		convert_to_string(&module_code);
 
- 	}
 
- 	// Create a template for the global object and set the built-in global functions
 
- 	v8::Local<v8::ObjectTemplate> global_template = v8::ObjectTemplate::New();
 
- 	global_template->Set(V8JS_SYM("print"), v8::FunctionTemplate::New(isolate, V8JS_MN(print)), v8::ReadOnly);
 
- 	global_template->Set(V8JS_SYM("var_dump"), v8::FunctionTemplate::New(isolate, V8JS_MN(var_dump)), v8::ReadOnly);
 
- 	global_template->Set(V8JS_SYM("sleep"), v8::FunctionTemplate::New(isolate, V8JS_MN(sleep)), v8::ReadOnly);
 
- 	global_template->Set(V8JS_SYM("require"), v8::FunctionTemplate::New(isolate, V8JS_MN(require), v8::External::New(isolate, c)), v8::ReadOnly);
 
- 	// Add the exports object in which the module can return its API
 
- 	v8::Local<v8::ObjectTemplate> exports_template = v8::ObjectTemplate::New();
 
- 	global_template->Set(V8JS_SYM("exports"), exports_template);
 
- 	// Add the module object in which the module can have more fine-grained control over what it can return
 
- 	v8::Local<v8::ObjectTemplate> module_template = v8::ObjectTemplate::New();
 
- 	module_template->Set(V8JS_SYM("id"), V8JS_STR(normalised_module_id));
 
- 	global_template->Set(V8JS_SYM("module"), module_template);
 
- 	// Each module gets its own context so different modules do not affect each other
 
- 	v8::Local<v8::Context> context = v8::Local<v8::Context>::New(isolate, v8::Context::New(isolate, NULL, global_template));
 
- 	// Catch JS exceptions
 
- 	v8::TryCatch try_catch;
 
- 	v8::Locker locker(isolate);
 
- 	v8::Isolate::Scope isolate_scope(isolate);
 
- 	v8::HandleScope handle_scope(isolate);
 
- 	// Enter the module context
 
- 	v8::Context::Scope scope(context);
 
- 	// Set script identifier
 
- 	v8::Local<v8::String> sname = V8JS_STR(normalised_module_id);
 
- 	if (Z_STRLEN(module_code) > std::numeric_limits<int>::max()) {
 
- 		zend_throw_exception(php_ce_v8js_exception,
 
- 			"Module code size exceeds maximum supported length", 0);
 
- 		return;
 
- 	}
 
- 	v8::Local<v8::String> source = V8JS_STRL(Z_STRVAL(module_code), static_cast<int>(Z_STRLEN(module_code)));
 
- 	zval_ptr_dtor(&module_code);
 
- 	// Create and compile script
 
- 	v8::Local<v8::Script> script = v8::Script::Compile(source, sname);
 
- 	// The script will be empty if there are compile errors
 
- 	if (script.IsEmpty()) {
 
- 		efree(normalised_module_id);
 
- 		efree(normalised_path);
 
- 		info.GetReturnValue().Set(isolate->ThrowException(V8JS_SYM("Module script compile failed")));
 
- 		return;
 
- 	}
 
- 	// Add this module and path to the stack
 
- 	c->modules_stack.push_back(normalised_module_id);
 
- 	c->modules_base.push_back(normalised_path);
 
- 	// Run script
 
- 	script->Run();
 
- 	// Remove this module and path from the stack
 
- 	c->modules_stack.pop_back();
 
- 	c->modules_base.pop_back();
 
- 	efree(normalised_path);
 
- 	// Script possibly terminated, return immediately
 
- 	if (!try_catch.CanContinue()) {
 
- 		info.GetReturnValue().Set(isolate->ThrowException(V8JS_SYM("Module script compile failed")));
 
- 		efree(normalised_module_id);
 
- 		return;
 
- 	}
 
- 	// Handle runtime JS exceptions
 
- 	if (try_catch.HasCaught()) {
 
- 		// Rethrow the exception back to JS
 
- 		info.GetReturnValue().Set(try_catch.ReThrow());
 
- 		efree(normalised_module_id);
 
- 		return;
 
- 	}
 
- 	v8::Local<v8::Object> newobj;
 
- 	// Cache the module so it doesn't need to be compiled and run again
 
- 	// Ensure compatibility with CommonJS implementations such as NodeJS by playing nicely with module.exports and exports
 
- 	if (context->Global()->Has(V8JS_SYM("module"))
 
- 		&& context->Global()->Get(V8JS_SYM("module"))->IsObject()
 
- 		&& context->Global()->Get(V8JS_SYM("module"))->ToObject()->Has(V8JS_SYM("exports"))
 
- 		&& context->Global()->Get(V8JS_SYM("module"))->ToObject()->Get(V8JS_SYM("exports"))->IsObject()) {
 
- 		// If module.exports has been set then we cache this arbitrary value...
 
- 		newobj = context->Global()->Get(V8JS_SYM("module"))->ToObject()->Get(V8JS_SYM("exports"))->ToObject();
 
- 	} else {
 
- 		// ...otherwise we cache the exports object itself
 
- 		newobj = context->Global()->Get(V8JS_SYM("exports"))->ToObject();
 
- 	}
 
- 	c->modules_loaded[normalised_module_id].Reset(isolate, newobj);
 
- 	info.GetReturnValue().Set(newobj);
 
- }
 
- void v8js_register_methods(v8::Handle<v8::ObjectTemplate> global, v8js_ctx *c) /* {{{ */
 
- {
 
- 	v8::Isolate *isolate = c->isolate;
 
- 	global->Set(V8JS_SYM("exit"), v8::FunctionTemplate::New(isolate, V8JS_MN(exit)), v8::ReadOnly);
 
- 	global->Set(V8JS_SYM("sleep"), v8::FunctionTemplate::New(isolate, V8JS_MN(sleep)), v8::ReadOnly);
 
- 	global->Set(V8JS_SYM("print"), v8::FunctionTemplate::New(isolate, V8JS_MN(print)), v8::ReadOnly);
 
- 	global->Set(V8JS_SYM("var_dump"), v8::FunctionTemplate::New(isolate, V8JS_MN(var_dump)), v8::ReadOnly);
 
- 	c->modules_base.push_back("");
 
- 	global->Set(V8JS_SYM("require"), v8::FunctionTemplate::New(isolate, V8JS_MN(require), v8::External::New(isolate, c)), v8::ReadOnly);
 
- }
 
- /* }}} */
 
- /*
 
-  * Local variables:
 
-  * tab-width: 4
 
-  * c-basic-offset: 4
 
-  * indent-tabs-mode: t
 
-  * End:
 
-  * vim600: noet sw=4 ts=4 fdm=marker
 
-  * vim<600: noet sw=4 ts=4
 
-  */
 
 
  |