2012-04-27 16:26:15 +00:00
|
|
|
|
/*
|
|
|
|
|
+----------------------------------------------------------------------+
|
|
|
|
|
| PHP Version 5 |
|
|
|
|
|
+----------------------------------------------------------------------+
|
2013-09-28 17:17:33 +00:00
|
|
|
|
| Copyright (c) 1997-2013 The PHP Group |
|
2012-04-27 16:26:15 +00:00
|
|
|
|
+----------------------------------------------------------------------+
|
2013-09-28 17:17:33 +00:00
|
|
|
|
| http://www.opensource.org/licenses/mit-license.php MIT License |
|
2012-04-27 16:26:15 +00:00
|
|
|
|
+----------------------------------------------------------------------+
|
|
|
|
|
| Author: Jani Taskinen <jani.taskinen@iki.fi> |
|
2012-04-27 16:41:32 +00:00
|
|
|
|
| Author: Patrick Reilly <preilly@php.net> |
|
2012-04-27 16:26:15 +00:00
|
|
|
|
+----------------------------------------------------------------------+
|
|
|
|
|
*/
|
|
|
|
|
|
2012-07-07 00:12:53 +00:00
|
|
|
|
/* $Id$ */
|
2012-04-27 16:26:15 +00:00
|
|
|
|
|
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
|
#include "config.h"
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
extern "C" {
|
|
|
|
|
#include "php.h"
|
|
|
|
|
#include "ext/date/php_date.h"
|
|
|
|
|
#include "zend_interfaces.h"
|
|
|
|
|
#include "zend_closures.h"
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#include "php_v8js_macros.h"
|
|
|
|
|
#include <v8.h>
|
2013-06-12 07:11:30 +00:00
|
|
|
|
#include <stdexcept>
|
2012-04-27 16:26:15 +00:00
|
|
|
|
|
2013-10-03 14:27:41 +00:00
|
|
|
|
#if PHP_V8_API_VERSION < 3022000
|
|
|
|
|
/* CopyablePersistentTraits is only part of V8 from 3.22.0 on,
|
|
|
|
|
to be compatible with lower versions add our own (compatible) version. */
|
2013-10-03 14:27:04 +00:00
|
|
|
|
namespace v8 {
|
|
|
|
|
template<class T>
|
|
|
|
|
struct CopyablePersistentTraits {
|
|
|
|
|
typedef Persistent<T, CopyablePersistentTraits<T> > CopyablePersistent;
|
|
|
|
|
static const bool kResetInDestructor = true;
|
|
|
|
|
template<class S, class M>
|
2013-10-03 22:05:11 +00:00
|
|
|
|
#if PHP_V8_API_VERSION >= 3021015
|
|
|
|
|
static V8_INLINE void Copy(const Persistent<S, M>& source,
|
|
|
|
|
CopyablePersistent* dest)
|
|
|
|
|
#else
|
2013-10-03 14:27:04 +00:00
|
|
|
|
V8_INLINE(static void Copy(const Persistent<S, M>& source,
|
2013-10-03 22:05:11 +00:00
|
|
|
|
CopyablePersistent* dest))
|
|
|
|
|
#endif
|
|
|
|
|
{
|
2013-10-03 14:27:04 +00:00
|
|
|
|
// do nothing, just allow copy
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
}
|
2013-10-03 14:27:41 +00:00
|
|
|
|
#endif
|
2013-10-03 14:27:04 +00:00
|
|
|
|
|
|
|
|
|
typedef std::pair<struct php_v8js_ctx *, const char *> TemplateCacheKey;
|
|
|
|
|
typedef v8::Persistent<v8::FunctionTemplate, v8::CopyablePersistentTraits<v8::FunctionTemplate> > TemplateCacheEntry;
|
|
|
|
|
typedef std::map<TemplateCacheKey, TemplateCacheEntry> TemplateCache;
|
2013-10-02 21:38:26 +00:00
|
|
|
|
|
2012-04-27 16:26:15 +00:00
|
|
|
|
/* Callback for PHP methods and functions */
|
2013-06-22 11:35:15 +00:00
|
|
|
|
static void php_v8js_call_php_func(zval *value, zend_class_entry *ce, zend_function *method_ptr, v8::Isolate *isolate, const v8::FunctionCallbackInfo<v8::Value>& info) /* {{{ */
|
2012-04-27 16:26:15 +00:00
|
|
|
|
{
|
|
|
|
|
v8::Handle<v8::Value> return_value;
|
|
|
|
|
zend_fcall_info fci;
|
|
|
|
|
zend_fcall_info_cache fcc;
|
|
|
|
|
zval fname, *retval_ptr = NULL, **argv = NULL;
|
2013-07-07 22:58:19 +00:00
|
|
|
|
zend_uint argc = info.Length(), min_num_args = 0, max_num_args = 0;
|
2012-04-27 16:26:15 +00:00
|
|
|
|
char *error;
|
|
|
|
|
int error_len, i, flags = V8JS_FLAG_NONE;
|
|
|
|
|
|
|
|
|
|
/* Set parameter limits */
|
|
|
|
|
min_num_args = method_ptr->common.required_num_args;
|
|
|
|
|
max_num_args = method_ptr->common.num_args;
|
|
|
|
|
|
|
|
|
|
/* Function name to call */
|
|
|
|
|
ZVAL_STRING(&fname, method_ptr->common.function_name, 0);
|
|
|
|
|
|
|
|
|
|
/* zend_fcall_info */
|
|
|
|
|
fci.size = sizeof(fci);
|
|
|
|
|
fci.function_table = &ce->function_table;
|
|
|
|
|
fci.function_name = &fname;
|
|
|
|
|
fci.symbol_table = NULL;
|
|
|
|
|
fci.object_ptr = value;
|
|
|
|
|
fci.retval_ptr_ptr = &retval_ptr;
|
|
|
|
|
fci.param_count = 0;
|
|
|
|
|
|
|
|
|
|
/* Check for passed vs required number of arguments */
|
|
|
|
|
if (argc < min_num_args)
|
|
|
|
|
{
|
|
|
|
|
error_len = spprintf(&error, 0,
|
|
|
|
|
"%s::%s() expects %s %d parameter%s, %d given",
|
|
|
|
|
ce->name,
|
|
|
|
|
method_ptr->common.function_name,
|
|
|
|
|
min_num_args == max_num_args ? "exactly" : argc < min_num_args ? "at least" : "at most",
|
|
|
|
|
argc < min_num_args ? min_num_args : max_num_args,
|
|
|
|
|
(argc < min_num_args ? min_num_args : max_num_args) == 1 ? "" : "s",
|
|
|
|
|
argc);
|
|
|
|
|
|
|
|
|
|
return_value = V8JS_THROW(TypeError, error, error_len);
|
|
|
|
|
if (ce == zend_ce_closure) {
|
2012-07-07 00:12:53 +00:00
|
|
|
|
efree(const_cast<char*>(method_ptr->internal_function.function_name));
|
2012-04-27 16:26:15 +00:00
|
|
|
|
efree(method_ptr);
|
|
|
|
|
}
|
|
|
|
|
efree(error);
|
2013-07-07 22:58:19 +00:00
|
|
|
|
info.GetReturnValue().Set(return_value);
|
|
|
|
|
return;
|
2012-04-27 16:26:15 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Convert parameters passed from V8 */
|
|
|
|
|
if (argc) {
|
|
|
|
|
flags = V8JS_GLOBAL_GET_FLAGS();
|
|
|
|
|
fci.params = (zval ***) safe_emalloc(argc, sizeof(zval **), 0);
|
|
|
|
|
argv = (zval **) safe_emalloc(argc, sizeof(zval *), 0);
|
|
|
|
|
for (i = 0; i < argc; i++) {
|
|
|
|
|
MAKE_STD_ZVAL(argv[i]);
|
2013-07-07 22:58:19 +00:00
|
|
|
|
if (v8js_to_zval(info[i], argv[i], flags, isolate TSRMLS_CC) == FAILURE) {
|
2012-04-27 16:26:15 +00:00
|
|
|
|
fci.param_count++;
|
|
|
|
|
error_len = spprintf(&error, 0, "converting parameter #%d passed to %s() failed", i + 1, method_ptr->common.function_name);
|
|
|
|
|
return_value = V8JS_THROW(Error, error, error_len);
|
|
|
|
|
efree(error);
|
|
|
|
|
goto failure;
|
|
|
|
|
}
|
|
|
|
|
fci.params[fci.param_count++] = &argv[i];
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
fci.params = NULL;
|
|
|
|
|
}
|
|
|
|
|
fci.no_separation = 1;
|
|
|
|
|
|
2013-10-12 20:51:23 +00:00
|
|
|
|
{
|
|
|
|
|
isolate->Exit();
|
|
|
|
|
v8::Unlocker unlocker(isolate);
|
|
|
|
|
|
|
|
|
|
/* zend_fcall_info_cache */
|
|
|
|
|
fcc.initialized = 1;
|
|
|
|
|
fcc.function_handler = method_ptr;
|
|
|
|
|
fcc.calling_scope = ce;
|
|
|
|
|
fcc.called_scope = ce;
|
|
|
|
|
fcc.object_ptr = value;
|
|
|
|
|
|
|
|
|
|
/* Call the method */
|
|
|
|
|
zend_call_function(&fci, &fcc TSRMLS_CC);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
isolate->Enter();
|
2012-04-27 16:26:15 +00:00
|
|
|
|
|
|
|
|
|
failure:
|
|
|
|
|
/* Cleanup */
|
|
|
|
|
if (argc) {
|
|
|
|
|
for (i = 0; i < fci.param_count; i++) {
|
|
|
|
|
zval_ptr_dtor(&argv[i]);
|
|
|
|
|
}
|
|
|
|
|
efree(argv);
|
|
|
|
|
efree(fci.params);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (retval_ptr != NULL) {
|
2013-04-13 23:36:05 +00:00
|
|
|
|
return_value = zval_to_v8js(retval_ptr, isolate TSRMLS_CC);
|
2012-04-27 16:26:15 +00:00
|
|
|
|
zval_ptr_dtor(&retval_ptr);
|
|
|
|
|
} else {
|
|
|
|
|
return_value = V8JS_NULL;
|
|
|
|
|
}
|
|
|
|
|
|
2013-07-07 22:58:19 +00:00
|
|
|
|
info.GetReturnValue().Set(return_value);
|
2012-04-27 16:26:15 +00:00
|
|
|
|
}
|
|
|
|
|
/* }}} */
|
|
|
|
|
|
2013-06-22 11:35:15 +00:00
|
|
|
|
/* Callback for PHP methods and functions */
|
|
|
|
|
static void php_v8js_php_callback(const v8::FunctionCallbackInfo<v8::Value>& info) /* {{{ */
|
|
|
|
|
{
|
2013-10-12 03:09:32 +00:00
|
|
|
|
zval *value = reinterpret_cast<zval *>(info.Holder()->GetAlignedPointerFromInternalField(0));
|
|
|
|
|
v8::Isolate *isolate = reinterpret_cast<v8::Isolate *>(info.Holder()->GetAlignedPointerFromInternalField(1));
|
2013-06-22 11:35:15 +00:00
|
|
|
|
zend_function *method_ptr;
|
|
|
|
|
zend_class_entry *ce = Z_OBJCE_P(value);
|
|
|
|
|
TSRMLS_FETCH();
|
|
|
|
|
|
|
|
|
|
/* Set method_ptr from v8::External or fetch the closure invoker */
|
|
|
|
|
if (!info.Data().IsEmpty() && info.Data()->IsExternal()) {
|
|
|
|
|
method_ptr = static_cast<zend_function *>(v8::External::Cast(*info.Data())->Value());
|
|
|
|
|
} else {
|
|
|
|
|
method_ptr = zend_get_closure_invoke_method(value TSRMLS_CC);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return php_v8js_call_php_func(value, ce, method_ptr, isolate, info);
|
|
|
|
|
}
|
|
|
|
|
|
2013-06-22 00:20:01 +00:00
|
|
|
|
/* Callback for PHP constructor calls */
|
2013-06-22 11:35:15 +00:00
|
|
|
|
static void php_v8js_construct_callback(const v8::FunctionCallbackInfo<v8::Value>& info) /* {{{ */
|
2013-06-22 00:20:01 +00:00
|
|
|
|
{
|
2013-06-22 11:35:15 +00:00
|
|
|
|
v8::Isolate *isolate = v8::Isolate::GetCurrent();
|
2013-06-22 22:18:31 +00:00
|
|
|
|
info.GetReturnValue().Set(V8JS_UNDEFINED);
|
2013-06-22 11:35:15 +00:00
|
|
|
|
|
2013-06-22 00:20:01 +00:00
|
|
|
|
// @todo assert constructor call
|
2013-06-22 11:35:15 +00:00
|
|
|
|
v8::Handle<v8::Object> newobj = info.This();
|
2013-06-22 00:20:01 +00:00
|
|
|
|
zval *value;
|
|
|
|
|
TSRMLS_FETCH();
|
|
|
|
|
|
2013-06-22 22:18:31 +00:00
|
|
|
|
if (!info.IsConstructCall()) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2013-06-22 11:35:15 +00:00
|
|
|
|
if (info[0]->IsExternal()) {
|
2013-06-22 00:20:01 +00:00
|
|
|
|
// Object created by v8js in php_v8js_hash_to_jsobj, PHP object passed as v8::External.
|
2013-06-22 11:35:15 +00:00
|
|
|
|
value = static_cast<zval *>(v8::External::Cast(*info[0])->Value());
|
2013-06-22 00:20:01 +00:00
|
|
|
|
} else {
|
|
|
|
|
// Object created from JavaScript context. Need to create PHP object first.
|
2013-06-22 11:35:15 +00:00
|
|
|
|
zend_class_entry *ce = static_cast<zend_class_entry *>(v8::External::Cast(*info.Data())->Value());
|
2013-06-22 22:09:12 +00:00
|
|
|
|
zend_function *ctor_ptr = ce->constructor;
|
|
|
|
|
|
|
|
|
|
// Check access on __construct function, if any
|
|
|
|
|
if (ctor_ptr != NULL && (ctor_ptr->common.fn_flags & ZEND_ACC_PUBLIC) == 0) {
|
|
|
|
|
info.GetReturnValue().Set(v8::ThrowException(v8::String::New("Call to protected __construct() not allowed")));
|
|
|
|
|
return;
|
|
|
|
|
}
|
2013-06-22 00:20:01 +00:00
|
|
|
|
|
|
|
|
|
MAKE_STD_ZVAL(value);
|
|
|
|
|
object_init_ex(value, ce TSRMLS_CC);
|
2013-06-22 11:35:15 +00:00
|
|
|
|
|
|
|
|
|
// Call __construct function
|
2013-06-22 22:09:12 +00:00
|
|
|
|
if (ctor_ptr != NULL) {
|
|
|
|
|
php_v8js_call_php_func(value, ce, ctor_ptr, isolate, info);
|
2013-06-22 11:35:15 +00:00
|
|
|
|
}
|
2013-06-22 00:20:01 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
newobj->SetAlignedPointerInInternalField(0, value);
|
2013-06-22 11:35:15 +00:00
|
|
|
|
newobj->SetAlignedPointerInInternalField(1, (void *) isolate);
|
2013-06-22 00:20:01 +00:00
|
|
|
|
}
|
|
|
|
|
/* }}} */
|
|
|
|
|
|
2012-04-27 16:26:15 +00:00
|
|
|
|
static int _php_v8js_is_assoc_array(HashTable *myht TSRMLS_DC) /* {{{ */
|
|
|
|
|
{
|
|
|
|
|
int i;
|
|
|
|
|
char *key;
|
|
|
|
|
ulong index, idx = 0;
|
|
|
|
|
uint key_len;
|
|
|
|
|
HashPosition pos;
|
|
|
|
|
|
|
|
|
|
zend_hash_internal_pointer_reset_ex(myht, &pos);
|
|
|
|
|
for (;; zend_hash_move_forward_ex(myht, &pos)) {
|
|
|
|
|
i = zend_hash_get_current_key_ex(myht, &key, &key_len, &index, 0, &pos);
|
|
|
|
|
if (i == HASH_KEY_NON_EXISTANT)
|
|
|
|
|
break;
|
|
|
|
|
if (i == HASH_KEY_IS_STRING || index != idx) {
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
idx++;
|
|
|
|
|
}
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
/* }}} */
|
|
|
|
|
|
2013-07-07 22:58:19 +00:00
|
|
|
|
static void php_v8js_property_caller(const v8::FunctionCallbackInfo<v8::Value>& info) /* {{{ */
|
2012-04-27 16:26:15 +00:00
|
|
|
|
{
|
2013-07-07 22:58:19 +00:00
|
|
|
|
v8::Local<v8::Object> self = info.Holder();
|
|
|
|
|
v8::Local<v8::String> cname = info.Callee()->GetName()->ToString();
|
2012-04-27 16:26:15 +00:00
|
|
|
|
v8::Local<v8::Value> value;
|
2013-07-07 22:58:19 +00:00
|
|
|
|
v8::Local<v8::String> cb_func = v8::Local<v8::String>::Cast(info.Data());
|
2012-04-27 16:26:15 +00:00
|
|
|
|
|
|
|
|
|
value = self->GetHiddenValue(cb_func);
|
|
|
|
|
|
|
|
|
|
if (!value.IsEmpty() && value->IsFunction())
|
|
|
|
|
{
|
2013-07-07 22:58:19 +00:00
|
|
|
|
int argc = info.Length(), i = 0;
|
2012-04-27 16:26:15 +00:00
|
|
|
|
v8::Local<v8::Value> *argv = new v8::Local<v8::Value>[argc];
|
|
|
|
|
v8::Local<v8::Function> cb = v8::Local<v8::Function>::Cast(value);
|
|
|
|
|
|
|
|
|
|
if (cb_func->Equals(V8JS_SYM(ZEND_INVOKE_FUNC_NAME))) {
|
|
|
|
|
for (; i < argc; ++i) {
|
2013-07-07 22:58:19 +00:00
|
|
|
|
argv[i] = info[i];
|
2012-04-27 16:26:15 +00:00
|
|
|
|
}
|
|
|
|
|
value = cb->Call(self, argc, argv);
|
2013-03-18 03:46:03 +00:00
|
|
|
|
}
|
2012-04-27 16:26:15 +00:00
|
|
|
|
else /* __call() */
|
2013-03-18 03:46:03 +00:00
|
|
|
|
{
|
2012-04-27 16:26:15 +00:00
|
|
|
|
v8::Local<v8::Array> argsarr = v8::Array::New(argc);
|
|
|
|
|
for (; i < argc; ++i) {
|
2013-07-07 22:58:19 +00:00
|
|
|
|
argsarr->Set(i, info[i]);
|
2012-04-27 16:26:15 +00:00
|
|
|
|
}
|
|
|
|
|
v8::Local<v8::Value> argsv[2] = { cname, argsarr };
|
|
|
|
|
value = cb->Call(self, 2, argsv);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2013-07-07 22:58:19 +00:00
|
|
|
|
if (info.IsConstructCall()) {
|
2012-04-27 16:26:15 +00:00
|
|
|
|
if (!value.IsEmpty() && !value->IsNull()) {
|
2013-07-07 22:58:19 +00:00
|
|
|
|
info.GetReturnValue().Set(value);
|
|
|
|
|
return;
|
2012-04-27 16:26:15 +00:00
|
|
|
|
}
|
2013-07-07 22:58:19 +00:00
|
|
|
|
|
|
|
|
|
info.GetReturnValue().Set(self);
|
|
|
|
|
return;
|
2012-04-27 16:26:15 +00:00
|
|
|
|
}
|
|
|
|
|
|
2013-07-07 22:58:19 +00:00
|
|
|
|
info.GetReturnValue().Set(value);
|
2012-04-27 16:26:15 +00:00
|
|
|
|
}
|
|
|
|
|
/* }}} */
|
|
|
|
|
|
2013-07-07 22:58:19 +00:00
|
|
|
|
static void php_v8js_property_getter(v8::Local<v8::String> property, const v8::PropertyCallbackInfo<v8::Value> &info) /* {{{ */
|
2012-04-27 16:26:15 +00:00
|
|
|
|
{
|
|
|
|
|
v8::Local<v8::Object> self = info.Holder();
|
|
|
|
|
v8::Local<v8::Value> value;
|
|
|
|
|
v8::Local<v8::Function> cb;
|
|
|
|
|
|
|
|
|
|
/* Check first if JS object has the named property */
|
|
|
|
|
value = self->GetRealNamedProperty(property);
|
|
|
|
|
|
|
|
|
|
if (!value.IsEmpty()) {
|
2013-07-07 22:58:19 +00:00
|
|
|
|
info.GetReturnValue().Set(value);
|
|
|
|
|
return;
|
2012-04-27 16:26:15 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* If __get() is set for PHP object, call it */
|
|
|
|
|
value = self->GetHiddenValue(V8JS_SYM(ZEND_GET_FUNC_NAME));
|
|
|
|
|
if (!value.IsEmpty() && value->IsFunction()) {
|
|
|
|
|
cb = v8::Local<v8::Function>::Cast(value);
|
|
|
|
|
v8::Local<v8::Value> argv[1] = {property};
|
|
|
|
|
value = cb->Call(self, 1, argv);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* If __get() does not exist or returns NULL, create new function with callback for __call() */
|
|
|
|
|
if ((value.IsEmpty() || value->IsNull()) && info.Data()->IsTrue()) {
|
|
|
|
|
v8::Local<v8::FunctionTemplate> cb_t = v8::FunctionTemplate::New(php_v8js_property_caller, V8JS_SYM(ZEND_CALL_FUNC_NAME));
|
|
|
|
|
cb = cb_t->GetFunction();
|
|
|
|
|
cb->SetName(property);
|
2013-07-07 22:58:19 +00:00
|
|
|
|
info.GetReturnValue().Set(cb);
|
|
|
|
|
return;
|
2012-04-27 16:26:15 +00:00
|
|
|
|
}
|
|
|
|
|
|
2013-07-07 22:58:19 +00:00
|
|
|
|
info.GetReturnValue().Set(value);
|
2012-04-27 16:26:15 +00:00
|
|
|
|
}
|
|
|
|
|
/* }}} */
|
|
|
|
|
|
2013-07-07 22:58:19 +00:00
|
|
|
|
static void php_v8js_property_query(v8::Local<v8::String> property, const v8::PropertyCallbackInfo<v8::Integer> &info) /* {{{ */
|
2012-04-27 16:26:15 +00:00
|
|
|
|
{
|
|
|
|
|
v8::Local<v8::Object> self = info.Holder();
|
|
|
|
|
v8::Local<v8::Value> value;
|
|
|
|
|
|
|
|
|
|
/* Return early if property is set in JS object */
|
|
|
|
|
if (self->HasRealNamedProperty(property)) {
|
2013-07-07 22:58:19 +00:00
|
|
|
|
info.GetReturnValue().Set(V8JS_INT(v8::ReadOnly));
|
|
|
|
|
return;
|
2012-04-27 16:26:15 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
value = self->GetHiddenValue(V8JS_SYM(ZEND_ISSET_FUNC_NAME));
|
|
|
|
|
if (!value.IsEmpty() && value->IsFunction()) {
|
|
|
|
|
v8::Local<v8::Function> cb = v8::Local<v8::Function>::Cast(value);
|
|
|
|
|
v8::Local<v8::Value> argv[1] = {property};
|
|
|
|
|
value = cb->Call(self, 1, argv);
|
|
|
|
|
}
|
|
|
|
|
|
2013-07-07 22:58:19 +00:00
|
|
|
|
info.GetReturnValue().Set((!value.IsEmpty() && value->IsTrue()) ? V8JS_INT(v8::ReadOnly) : v8::Local<v8::Integer>());
|
2012-04-27 16:26:15 +00:00
|
|
|
|
}
|
|
|
|
|
/* }}} */
|
|
|
|
|
|
|
|
|
|
/* These are not defined by Zend */
|
|
|
|
|
#define ZEND_WAKEUP_FUNC_NAME "__wakeup"
|
|
|
|
|
#define ZEND_SLEEP_FUNC_NAME "__sleep"
|
|
|
|
|
#define ZEND_SET_STATE_FUNC_NAME "__set_state"
|
|
|
|
|
|
|
|
|
|
#define IS_MAGIC_FUNC(mname) \
|
|
|
|
|
((key_len == sizeof(mname)) && \
|
|
|
|
|
!strncasecmp(key, mname, key_len - 1))
|
|
|
|
|
|
2013-10-12 03:09:32 +00:00
|
|
|
|
#define PHP_V8JS_CALLBACK(mptr, tmpl) \
|
|
|
|
|
v8::FunctionTemplate::New(php_v8js_php_callback, v8::External::New(mptr), v8::Signature::New(tmpl))->GetFunction()
|
2012-04-27 16:26:15 +00:00
|
|
|
|
|
2013-06-12 11:13:47 +00:00
|
|
|
|
|
|
|
|
|
static void php_v8js_weak_object_callback(v8::Isolate *isolate, v8::Persistent<v8::Object> *object, zval *value)
|
|
|
|
|
{
|
|
|
|
|
if (READY_TO_DESTROY(value)) {
|
|
|
|
|
zval_dtor(value);
|
|
|
|
|
FREE_ZVAL(value);
|
|
|
|
|
} else {
|
|
|
|
|
Z_DELREF_P(value);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
v8::V8::AdjustAmountOfExternalAllocatedMemory(-1024);
|
|
|
|
|
object->Dispose();
|
|
|
|
|
}
|
|
|
|
|
|
2013-04-13 23:36:05 +00:00
|
|
|
|
static v8::Handle<v8::Value> php_v8js_hash_to_jsobj(zval *value, v8::Isolate *isolate TSRMLS_DC) /* {{{ */
|
2012-04-27 16:26:15 +00:00
|
|
|
|
{
|
2013-06-12 11:13:47 +00:00
|
|
|
|
v8::Handle<v8::Object> newobj;
|
2012-04-27 16:26:15 +00:00
|
|
|
|
int i;
|
|
|
|
|
char *key = NULL;
|
|
|
|
|
ulong index;
|
|
|
|
|
uint key_len;
|
|
|
|
|
HashTable *myht;
|
|
|
|
|
HashPosition pos;
|
|
|
|
|
zend_class_entry *ce = NULL;
|
|
|
|
|
zend_function *method_ptr, *call_ptr = NULL, *get_ptr = NULL, *invoke_ptr = NULL, *isset_ptr = NULL;
|
|
|
|
|
|
|
|
|
|
if (Z_TYPE_P(value) == IS_ARRAY) {
|
|
|
|
|
myht = HASH_OF(value);
|
|
|
|
|
} else {
|
|
|
|
|
myht = Z_OBJPROP_P(value);
|
|
|
|
|
ce = Z_OBJCE_P(value);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Prevent recursion */
|
|
|
|
|
if (myht && myht->nApplyCount > 1) {
|
|
|
|
|
return V8JS_NULL;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Object methods */
|
2013-10-02 22:34:50 +00:00
|
|
|
|
if (ce == php_ce_v8_function) {
|
|
|
|
|
php_v8js_object *c = (php_v8js_object *) zend_object_store_get_object(value TSRMLS_CC);
|
2013-10-03 14:27:04 +00:00
|
|
|
|
v8::Local<v8::Value> v8obj = v8::Local<v8::Value>::New(isolate, c->v8obj);
|
|
|
|
|
|
|
|
|
|
return v8obj;
|
2013-10-02 22:34:50 +00:00
|
|
|
|
} else if (ce) {
|
2013-10-03 14:27:04 +00:00
|
|
|
|
php_v8js_ctx *ctx = (php_v8js_ctx *) isolate->GetData();
|
|
|
|
|
v8::Local<v8::FunctionTemplate> new_tpl;
|
2013-06-12 12:46:39 +00:00
|
|
|
|
bool cached_tpl = true;
|
2013-10-02 21:38:26 +00:00
|
|
|
|
static TemplateCache tpl_map;
|
2012-04-27 16:26:15 +00:00
|
|
|
|
|
2013-06-12 07:11:30 +00:00
|
|
|
|
try {
|
2013-10-03 14:27:04 +00:00
|
|
|
|
new_tpl = v8::Local<v8::FunctionTemplate>::New
|
|
|
|
|
(isolate, tpl_map.at(std::make_pair(ctx, ce->name)));
|
2013-06-12 07:11:30 +00:00
|
|
|
|
}
|
|
|
|
|
catch (const std::out_of_range &) {
|
2013-06-12 12:46:39 +00:00
|
|
|
|
cached_tpl = false;
|
|
|
|
|
|
2013-06-12 07:11:30 +00:00
|
|
|
|
/* No cached v8::FunctionTemplate available as of yet, create one. */
|
|
|
|
|
new_tpl = v8::FunctionTemplate::New();
|
|
|
|
|
|
|
|
|
|
new_tpl->SetClassName(V8JS_STRL(ce->name, ce->name_length));
|
|
|
|
|
new_tpl->InstanceTemplate()->SetInternalFieldCount(2);
|
|
|
|
|
|
2013-06-22 00:20:01 +00:00
|
|
|
|
v8::Handle<v8::Value> wrapped_ce = v8::External::New(ce);
|
|
|
|
|
new_tpl->SetCallHandler(php_v8js_construct_callback, wrapped_ce);
|
|
|
|
|
|
2013-06-12 07:11:30 +00:00
|
|
|
|
if (ce == zend_ce_closure) {
|
|
|
|
|
/* Got a closure, mustn't cache ... */
|
|
|
|
|
new_tpl->InstanceTemplate()->SetCallAsFunctionHandler(php_v8js_php_callback);
|
|
|
|
|
} else {
|
|
|
|
|
/* Add new v8::FunctionTemplate to tpl_map, as long as it is not a closure. */
|
2013-10-03 14:27:04 +00:00
|
|
|
|
TemplateCacheEntry tce(isolate, new_tpl);
|
|
|
|
|
tpl_map[std::make_pair(ctx, ce->name)] = tce;
|
2013-06-12 12:46:39 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
2013-06-12 07:11:30 +00:00
|
|
|
|
|
2013-06-12 12:46:39 +00:00
|
|
|
|
if (ce != zend_ce_closure) {
|
|
|
|
|
/* Attach object methods to the instance template. */
|
2012-04-27 16:26:15 +00:00
|
|
|
|
zend_hash_internal_pointer_reset_ex(&ce->function_table, &pos);
|
|
|
|
|
for (;; zend_hash_move_forward_ex(&ce->function_table, &pos)) {
|
|
|
|
|
if (zend_hash_get_current_key_ex(&ce->function_table, &key, &key_len, &index, 0, &pos) != HASH_KEY_IS_STRING ||
|
|
|
|
|
zend_hash_get_current_data_ex(&ce->function_table, (void **) &method_ptr, &pos) == FAILURE
|
|
|
|
|
) {
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if ((method_ptr->common.fn_flags & ZEND_ACC_PUBLIC) && /* Allow only public methods */
|
|
|
|
|
(method_ptr->common.fn_flags & ZEND_ACC_CTOR) == 0 && /* ..and no __construct() */
|
|
|
|
|
(method_ptr->common.fn_flags & ZEND_ACC_DTOR) == 0 && /* ..or __destruct() */
|
|
|
|
|
(method_ptr->common.fn_flags & ZEND_ACC_CLONE) == 0 /* ..or __clone() functions */
|
|
|
|
|
) {
|
|
|
|
|
/* Override native toString() with __tostring() if it is set in passed object */
|
2013-06-12 12:46:39 +00:00
|
|
|
|
if (!cached_tpl && IS_MAGIC_FUNC(ZEND_TOSTRING_FUNC_NAME)) {
|
2013-10-12 03:09:32 +00:00
|
|
|
|
new_tpl->InstanceTemplate()->Set(V8JS_SYM("toString"), PHP_V8JS_CALLBACK(method_ptr, new_tpl));
|
2012-04-27 16:26:15 +00:00
|
|
|
|
/* TODO: __set(), __unset() disabled as JS is not allowed to modify the passed PHP object yet.
|
|
|
|
|
* __sleep(), __wakeup(), __set_state() are always ignored */
|
|
|
|
|
} else if (
|
|
|
|
|
IS_MAGIC_FUNC(ZEND_CALLSTATIC_FUNC_NAME)|| /* TODO */
|
|
|
|
|
IS_MAGIC_FUNC(ZEND_SLEEP_FUNC_NAME) ||
|
|
|
|
|
IS_MAGIC_FUNC(ZEND_WAKEUP_FUNC_NAME) ||
|
|
|
|
|
IS_MAGIC_FUNC(ZEND_SET_STATE_FUNC_NAME) ||
|
|
|
|
|
IS_MAGIC_FUNC(ZEND_SET_FUNC_NAME) ||
|
|
|
|
|
IS_MAGIC_FUNC(ZEND_UNSET_FUNC_NAME)
|
|
|
|
|
) {
|
|
|
|
|
/* Register all magic function as hidden with lowercase name */
|
|
|
|
|
} else if (IS_MAGIC_FUNC(ZEND_GET_FUNC_NAME)) {
|
|
|
|
|
get_ptr = method_ptr;
|
|
|
|
|
} else if (IS_MAGIC_FUNC(ZEND_CALL_FUNC_NAME)) {
|
|
|
|
|
call_ptr = method_ptr;
|
|
|
|
|
} else if (IS_MAGIC_FUNC(ZEND_INVOKE_FUNC_NAME)) {
|
|
|
|
|
invoke_ptr = method_ptr;
|
|
|
|
|
} else if (IS_MAGIC_FUNC(ZEND_ISSET_FUNC_NAME)) {
|
|
|
|
|
isset_ptr = method_ptr;
|
2013-06-12 12:46:39 +00:00
|
|
|
|
} else if (!cached_tpl) {
|
2013-10-12 03:09:32 +00:00
|
|
|
|
new_tpl->InstanceTemplate()->Set(V8JS_STR(method_ptr->common.function_name), PHP_V8JS_CALLBACK(method_ptr, new_tpl), v8::ReadOnly);
|
2012-04-27 16:26:15 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2013-06-12 12:46:39 +00:00
|
|
|
|
if (!cached_tpl) {
|
2013-06-12 07:11:30 +00:00
|
|
|
|
/* Only register getter, etc. when they're set in PHP side */
|
|
|
|
|
if (call_ptr || get_ptr || isset_ptr)
|
|
|
|
|
{
|
|
|
|
|
/* Set __get() handler which acts also as __call() proxy */
|
|
|
|
|
new_tpl->InstanceTemplate()->SetNamedPropertyHandler(
|
|
|
|
|
php_v8js_property_getter, /* getter */
|
|
|
|
|
0, /* setter */
|
|
|
|
|
isset_ptr ? php_v8js_property_query : 0, /* query */
|
|
|
|
|
0, /* deleter */
|
|
|
|
|
0, /* enumerator */
|
|
|
|
|
V8JS_BOOL(call_ptr ? true : false)
|
|
|
|
|
);
|
|
|
|
|
}
|
2012-04-27 16:26:15 +00:00
|
|
|
|
|
2013-06-12 07:11:30 +00:00
|
|
|
|
/* __invoke() handler */
|
|
|
|
|
if (invoke_ptr) {
|
|
|
|
|
new_tpl->InstanceTemplate()->SetCallAsFunctionHandler(php_v8js_property_caller, V8JS_SYM(ZEND_INVOKE_FUNC_NAME));
|
|
|
|
|
}
|
2012-04-27 16:26:15 +00:00
|
|
|
|
}
|
2013-06-12 07:11:30 +00:00
|
|
|
|
}
|
2012-04-27 16:26:15 +00:00
|
|
|
|
|
2013-06-22 00:20:01 +00:00
|
|
|
|
// Increase the reference count of this value because we're storing it internally for use later
|
|
|
|
|
// See https://github.com/preillyme/v8js/issues/6
|
|
|
|
|
Z_ADDREF_P(value);
|
|
|
|
|
|
2013-06-12 11:13:47 +00:00
|
|
|
|
// Since we got to decrease the reference count again, in case v8 garbage collector
|
|
|
|
|
// decides to dispose the JS object, we add a weak persistent handle and register
|
|
|
|
|
// a callback function that removes the reference.
|
2013-06-22 00:20:01 +00:00
|
|
|
|
v8::Handle<v8::Value> external = v8::External::New(value);
|
2013-10-03 14:27:04 +00:00
|
|
|
|
v8::Persistent<v8::Object> persist_newobj(isolate, new_tpl->GetFunction()->NewInstance(1, &external));
|
2013-06-12 11:13:47 +00:00
|
|
|
|
persist_newobj.MakeWeak(value, php_v8js_weak_object_callback);
|
2012-04-27 16:26:15 +00:00
|
|
|
|
|
2013-06-12 11:13:47 +00:00
|
|
|
|
// Just tell v8 that we're allocating some external memory
|
|
|
|
|
// (for the moment we just always tell 1k instead of trying to find out actual values)
|
|
|
|
|
v8::V8::AdjustAmountOfExternalAllocatedMemory(1024);
|
|
|
|
|
|
2013-10-03 14:27:04 +00:00
|
|
|
|
newobj = v8::Local<v8::Object>::New(isolate, persist_newobj);
|
2012-04-27 16:26:15 +00:00
|
|
|
|
|
2013-06-12 12:46:39 +00:00
|
|
|
|
if (ce != zend_ce_closure) {
|
|
|
|
|
// These unfortunately cannot be attached to the template, hence we have to put them
|
|
|
|
|
// on each and every object instance manually.
|
2012-04-27 16:26:15 +00:00
|
|
|
|
if (call_ptr) {
|
2013-10-12 03:09:32 +00:00
|
|
|
|
newobj->SetHiddenValue(V8JS_SYM(ZEND_CALL_FUNC_NAME), PHP_V8JS_CALLBACK(call_ptr, new_tpl));
|
2012-04-27 16:26:15 +00:00
|
|
|
|
}
|
|
|
|
|
if (get_ptr) {
|
2013-10-12 03:09:32 +00:00
|
|
|
|
newobj->SetHiddenValue(V8JS_SYM(ZEND_GET_FUNC_NAME), PHP_V8JS_CALLBACK(get_ptr, new_tpl));
|
2012-04-27 16:26:15 +00:00
|
|
|
|
}
|
|
|
|
|
if (invoke_ptr) {
|
2013-10-12 03:09:32 +00:00
|
|
|
|
newobj->SetHiddenValue(V8JS_SYM(ZEND_INVOKE_FUNC_NAME), PHP_V8JS_CALLBACK(invoke_ptr, new_tpl));
|
2012-04-27 16:26:15 +00:00
|
|
|
|
}
|
|
|
|
|
if (isset_ptr) {
|
2013-10-12 03:09:32 +00:00
|
|
|
|
newobj->SetHiddenValue(V8JS_SYM(ZEND_ISSET_FUNC_NAME), PHP_V8JS_CALLBACK(isset_ptr, new_tpl));
|
2012-04-27 16:26:15 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
2013-03-20 17:09:23 +00:00
|
|
|
|
|
2012-04-27 16:26:15 +00:00
|
|
|
|
} else {
|
2013-06-12 07:11:30 +00:00
|
|
|
|
v8::Local<v8::FunctionTemplate> new_tpl = v8::FunctionTemplate::New(); // @todo re-use template likewise
|
|
|
|
|
|
2012-04-27 16:26:15 +00:00
|
|
|
|
new_tpl->SetClassName(V8JS_SYM("Array"));
|
|
|
|
|
newobj = new_tpl->InstanceTemplate()->NewInstance();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Object properties */
|
|
|
|
|
i = myht ? zend_hash_num_elements(myht) : 0;
|
|
|
|
|
|
|
|
|
|
if (i > 0)
|
|
|
|
|
{
|
|
|
|
|
zval **data;
|
|
|
|
|
HashTable *tmp_ht;
|
|
|
|
|
|
|
|
|
|
zend_hash_internal_pointer_reset_ex(myht, &pos);
|
|
|
|
|
for (;; zend_hash_move_forward_ex(myht, &pos)) {
|
|
|
|
|
i = zend_hash_get_current_key_ex(myht, &key, &key_len, &index, 0, &pos);
|
|
|
|
|
if (i == HASH_KEY_NON_EXISTANT)
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
if (zend_hash_get_current_data_ex(myht, (void **) &data, &pos) == SUCCESS)
|
|
|
|
|
{
|
|
|
|
|
tmp_ht = HASH_OF(*data);
|
|
|
|
|
|
|
|
|
|
if (tmp_ht) {
|
|
|
|
|
tmp_ht->nApplyCount++;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (i == HASH_KEY_IS_STRING)
|
|
|
|
|
{
|
|
|
|
|
if (key[0] == '\0' && Z_TYPE_P(value) == IS_OBJECT) {
|
|
|
|
|
/* Skip protected and private members. */
|
|
|
|
|
if (tmp_ht) {
|
|
|
|
|
tmp_ht->nApplyCount--;
|
|
|
|
|
}
|
|
|
|
|
continue;
|
|
|
|
|
}
|
2013-04-13 23:36:05 +00:00
|
|
|
|
newobj->Set(V8JS_STRL(key, key_len - 1), zval_to_v8js(*data, isolate TSRMLS_CC), v8::ReadOnly);
|
2012-04-27 16:26:15 +00:00
|
|
|
|
} else {
|
2013-04-13 23:36:05 +00:00
|
|
|
|
newobj->Set(index, zval_to_v8js(*data, isolate TSRMLS_CC));
|
2012-04-27 16:26:15 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (tmp_ht) {
|
|
|
|
|
tmp_ht->nApplyCount--;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return newobj;
|
|
|
|
|
}
|
|
|
|
|
/* }}} */
|
|
|
|
|
|
2013-04-13 23:36:05 +00:00
|
|
|
|
static v8::Handle<v8::Value> php_v8js_hash_to_jsarr(zval *value, v8::Isolate *isolate TSRMLS_DC) /* {{{ */
|
2012-04-27 16:26:15 +00:00
|
|
|
|
{
|
|
|
|
|
HashTable *myht = HASH_OF(value);
|
|
|
|
|
int i = myht ? zend_hash_num_elements(myht) : 0;
|
|
|
|
|
|
|
|
|
|
/* Return object if dealing with assoc array */
|
|
|
|
|
if (i > 0 && _php_v8js_is_assoc_array(myht TSRMLS_CC)) {
|
2013-04-13 23:36:05 +00:00
|
|
|
|
return php_v8js_hash_to_jsobj(value, isolate TSRMLS_CC);
|
2012-04-27 16:26:15 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
v8::Local<v8::Array> newarr;
|
|
|
|
|
|
|
|
|
|
/* Prevent recursion */
|
|
|
|
|
if (myht && myht->nApplyCount > 1) {
|
|
|
|
|
return V8JS_NULL;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
newarr = v8::Array::New(i);
|
|
|
|
|
|
|
|
|
|
if (i > 0)
|
|
|
|
|
{
|
|
|
|
|
zval **data;
|
|
|
|
|
ulong index = 0;
|
|
|
|
|
HashTable *tmp_ht;
|
|
|
|
|
HashPosition pos;
|
|
|
|
|
|
|
|
|
|
for (zend_hash_internal_pointer_reset_ex(myht, &pos);
|
|
|
|
|
SUCCESS == zend_hash_get_current_data_ex(myht, (void **) &data, &pos);
|
|
|
|
|
zend_hash_move_forward_ex(myht, &pos)
|
|
|
|
|
) {
|
|
|
|
|
tmp_ht = HASH_OF(*data);
|
|
|
|
|
|
|
|
|
|
if (tmp_ht) {
|
|
|
|
|
tmp_ht->nApplyCount++;
|
|
|
|
|
}
|
|
|
|
|
|
2013-04-13 23:36:05 +00:00
|
|
|
|
newarr->Set(index++, zval_to_v8js(*data, isolate TSRMLS_CC));
|
2012-04-27 16:26:15 +00:00
|
|
|
|
|
|
|
|
|
if (tmp_ht) {
|
|
|
|
|
tmp_ht->nApplyCount--;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return newarr;
|
|
|
|
|
}
|
|
|
|
|
/* }}} */
|
|
|
|
|
|
2013-04-13 23:36:05 +00:00
|
|
|
|
v8::Handle<v8::Value> zval_to_v8js(zval *value, v8::Isolate *isolate TSRMLS_DC) /* {{{ */
|
2012-04-27 16:26:15 +00:00
|
|
|
|
{
|
|
|
|
|
v8::Handle<v8::Value> jsValue;
|
|
|
|
|
|
|
|
|
|
switch (Z_TYPE_P(value))
|
|
|
|
|
{
|
|
|
|
|
case IS_ARRAY:
|
2013-04-13 23:36:05 +00:00
|
|
|
|
jsValue = php_v8js_hash_to_jsarr(value, isolate TSRMLS_CC);
|
2012-04-27 16:26:15 +00:00
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case IS_OBJECT:
|
2013-04-13 23:36:05 +00:00
|
|
|
|
jsValue = php_v8js_hash_to_jsobj(value, isolate TSRMLS_CC);
|
2012-04-27 16:26:15 +00:00
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case IS_STRING:
|
|
|
|
|
jsValue = V8JS_STRL(Z_STRVAL_P(value), Z_STRLEN_P(value));
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case IS_LONG:
|
|
|
|
|
jsValue = V8JS_INT(Z_LVAL_P(value));
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case IS_DOUBLE:
|
|
|
|
|
jsValue = V8JS_FLOAT(Z_DVAL_P(value));
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case IS_BOOL:
|
|
|
|
|
jsValue = V8JS_BOOL(Z_BVAL_P(value));
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
case IS_NULL:
|
|
|
|
|
jsValue = V8JS_NULL;
|
|
|
|
|
break;
|
|
|
|
|
}
|
2013-03-18 03:46:03 +00:00
|
|
|
|
return jsValue;
|
2012-04-27 16:26:15 +00:00
|
|
|
|
}
|
|
|
|
|
/* }}} */
|
|
|
|
|
|
2013-04-13 23:36:05 +00:00
|
|
|
|
int v8js_to_zval(v8::Handle<v8::Value> jsValue, zval *return_value, int flags, v8::Isolate *isolate TSRMLS_DC) /* {{{ */
|
2012-04-27 16:26:15 +00:00
|
|
|
|
{
|
|
|
|
|
if (jsValue->IsString())
|
|
|
|
|
{
|
|
|
|
|
v8::String::Utf8Value str(jsValue);
|
|
|
|
|
const char *cstr = ToCString(str);
|
|
|
|
|
RETVAL_STRING(cstr, 1);
|
|
|
|
|
}
|
|
|
|
|
else if (jsValue->IsBoolean())
|
|
|
|
|
{
|
|
|
|
|
RETVAL_BOOL(jsValue->Uint32Value());
|
|
|
|
|
}
|
|
|
|
|
else if (jsValue->IsInt32() || jsValue->IsUint32())
|
|
|
|
|
{
|
|
|
|
|
RETVAL_LONG((long) jsValue->IntegerValue());
|
|
|
|
|
}
|
|
|
|
|
else if (jsValue->IsNumber())
|
|
|
|
|
{
|
|
|
|
|
RETVAL_DOUBLE(jsValue->NumberValue());
|
|
|
|
|
}
|
|
|
|
|
else if (jsValue->IsDate()) /* Return as a PHP DateTime object */
|
|
|
|
|
{
|
|
|
|
|
v8::String::Utf8Value str(jsValue);
|
|
|
|
|
const char *cstr = ToCString(str);
|
|
|
|
|
zend_class_entry *ce = php_date_get_date_ce();
|
|
|
|
|
#if PHP_VERSION_ID < 50304
|
|
|
|
|
zval *param;
|
|
|
|
|
|
|
|
|
|
MAKE_STD_ZVAL(param);
|
|
|
|
|
ZVAL_STRING(param, cstr, 1);
|
|
|
|
|
|
|
|
|
|
object_init_ex(return_value, ce TSRMLS_CC);
|
|
|
|
|
zend_call_method_with_1_params(&return_value, ce, &ce->constructor, "__construct", NULL, param);
|
|
|
|
|
zval_ptr_dtor(¶m);
|
|
|
|
|
|
|
|
|
|
if (EG(exception)) {
|
|
|
|
|
return FAILURE;
|
|
|
|
|
}
|
|
|
|
|
#else
|
|
|
|
|
php_date_instantiate(ce, return_value TSRMLS_CC);
|
|
|
|
|
if (!php_date_initialize((php_date_obj *) zend_object_store_get_object(return_value TSRMLS_CC), (char *) cstr, strlen(cstr), NULL, NULL, 0 TSRMLS_CC)) {
|
|
|
|
|
return FAILURE;
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
}
|
|
|
|
|
else if (jsValue->IsObject())
|
|
|
|
|
{
|
|
|
|
|
if ((flags & V8JS_FLAG_FORCE_ARRAY) || jsValue->IsArray()) {
|
|
|
|
|
array_init(return_value);
|
2013-04-13 23:36:05 +00:00
|
|
|
|
return php_v8js_v8_get_properties_hash(jsValue, Z_ARRVAL_P(return_value), flags, isolate TSRMLS_CC);
|
2012-04-27 16:26:15 +00:00
|
|
|
|
} else {
|
2013-04-13 23:36:05 +00:00
|
|
|
|
php_v8js_create_v8(return_value, jsValue, flags, isolate TSRMLS_CC);
|
2012-04-27 16:26:15 +00:00
|
|
|
|
return SUCCESS;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else /* types External, RegExp, Undefined and Null are considered NULL */
|
|
|
|
|
{
|
|
|
|
|
RETVAL_NULL();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return SUCCESS;
|
|
|
|
|
}
|
|
|
|
|
/* }}} */
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* 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
|
|
|
|
|
*/
|