572 lines
15 KiB
C++
572 lines
15 KiB
C++
// Copyright (c) 2011 The Chromium Embedded Framework Authors. All rights
|
|
// reserved. Use of this source code is governed by a BSD-style license that
|
|
// can be found in the LICENSE file.
|
|
//
|
|
// ---------------------------------------------------------------------------
|
|
//
|
|
// A portion of this file was generated by the CEF translator tool. When
|
|
// making changes by hand only do so within the body of existing function
|
|
// implementations. See the translator.README.txt file in the tools directory
|
|
// for more information.
|
|
//
|
|
|
|
#include "libcef_dll/cpptoc/v8context_cpptoc.h"
|
|
#include "libcef_dll/cpptoc/v8exception_cpptoc.h"
|
|
#include "libcef_dll/cpptoc/v8value_cpptoc.h"
|
|
#include "libcef_dll/ctocpp/base_ctocpp.h"
|
|
#include "libcef_dll/ctocpp/v8accessor_ctocpp.h"
|
|
#include "libcef_dll/ctocpp/v8handler_ctocpp.h"
|
|
|
|
|
|
// GLOBAL FUNCTIONS - Body may be edited by hand.
|
|
|
|
CEF_EXPORT cef_v8value_t* cef_v8value_create_undefined()
|
|
{
|
|
CefRefPtr<CefV8Value> impl = CefV8Value::CreateUndefined();
|
|
if(impl.get())
|
|
return CefV8ValueCppToC::Wrap(impl);
|
|
return NULL;
|
|
}
|
|
|
|
CEF_EXPORT cef_v8value_t* cef_v8value_create_null()
|
|
{
|
|
CefRefPtr<CefV8Value> impl = CefV8Value::CreateNull();
|
|
if(impl.get())
|
|
return CefV8ValueCppToC::Wrap(impl);
|
|
return NULL;
|
|
}
|
|
|
|
CEF_EXPORT cef_v8value_t* cef_v8value_create_bool(int value)
|
|
{
|
|
CefRefPtr<CefV8Value> impl = CefV8Value::CreateBool(value?true:false);
|
|
if(impl.get())
|
|
return CefV8ValueCppToC::Wrap(impl);
|
|
return NULL;
|
|
}
|
|
|
|
CEF_EXPORT cef_v8value_t* cef_v8value_create_int(int value)
|
|
{
|
|
CefRefPtr<CefV8Value> impl = CefV8Value::CreateInt(value);
|
|
if(impl.get())
|
|
return CefV8ValueCppToC::Wrap(impl);
|
|
return NULL;
|
|
}
|
|
|
|
CEF_EXPORT cef_v8value_t* cef_v8value_create_double(double value)
|
|
{
|
|
CefRefPtr<CefV8Value> impl = CefV8Value::CreateDouble(value);
|
|
if(impl.get())
|
|
return CefV8ValueCppToC::Wrap(impl);
|
|
return NULL;
|
|
}
|
|
|
|
CEF_EXPORT cef_v8value_t* cef_v8value_create_date(const cef_time_t* date)
|
|
{
|
|
DCHECK(date);
|
|
if (!date)
|
|
return NULL;
|
|
|
|
CefRefPtr<CefV8Value> impl = CefV8Value::CreateDate(*date);
|
|
if(impl.get())
|
|
return CefV8ValueCppToC::Wrap(impl);
|
|
return NULL;
|
|
}
|
|
|
|
CEF_EXPORT cef_v8value_t* cef_v8value_create_string(const cef_string_t* value)
|
|
{
|
|
CefRefPtr<CefV8Value> impl = CefV8Value::CreateString(CefString(value));
|
|
if(impl.get())
|
|
return CefV8ValueCppToC::Wrap(impl);
|
|
return NULL;
|
|
}
|
|
|
|
CEF_EXPORT cef_v8value_t* cef_v8value_create_object(cef_base_t* user_data)
|
|
{
|
|
CefRefPtr<CefBase> basePtr;
|
|
if(user_data)
|
|
basePtr = CefBaseCToCpp::Wrap(user_data);
|
|
|
|
CefRefPtr<CefV8Value> impl = CefV8Value::CreateObject(basePtr);
|
|
if(impl.get())
|
|
return CefV8ValueCppToC::Wrap(impl);
|
|
return NULL;
|
|
}
|
|
|
|
CEF_EXPORT cef_v8value_t* cef_v8value_create_object_with_accessor(
|
|
cef_base_t* user_data, cef_v8accessor_t* accessor)
|
|
{
|
|
CefRefPtr<CefBase> basePtr;
|
|
if(user_data)
|
|
basePtr = CefBaseCToCpp::Wrap(user_data);
|
|
|
|
CefRefPtr<CefV8Accessor> accessorPtr;
|
|
if(accessor)
|
|
accessorPtr = CefV8AccessorCToCpp::Wrap(accessor);
|
|
|
|
CefRefPtr<CefV8Value> impl = CefV8Value::CreateObject(basePtr, accessorPtr);
|
|
if(impl.get())
|
|
return CefV8ValueCppToC::Wrap(impl);
|
|
return NULL;
|
|
}
|
|
|
|
CEF_EXPORT cef_v8value_t* cef_v8value_create_array()
|
|
{
|
|
CefRefPtr<CefV8Value> impl = CefV8Value::CreateArray();
|
|
if(impl.get())
|
|
return CefV8ValueCppToC::Wrap(impl);
|
|
return NULL;
|
|
}
|
|
|
|
CEF_EXPORT cef_v8value_t* cef_v8value_create_function(const cef_string_t* name,
|
|
cef_v8handler_t* handler)
|
|
{
|
|
CefRefPtr<CefV8Handler> handlerPtr;
|
|
if(handler)
|
|
handlerPtr = CefV8HandlerCToCpp::Wrap(handler);
|
|
|
|
CefRefPtr<CefV8Value> impl =
|
|
CefV8Value::CreateFunction(CefString(name), handlerPtr);
|
|
if(impl.get())
|
|
return CefV8ValueCppToC::Wrap(impl);
|
|
return NULL;
|
|
}
|
|
|
|
|
|
// MEMBER FUNCTIONS - Body may be edited by hand.
|
|
|
|
int CEF_CALLBACK v8value_is_undefined(struct _cef_v8value_t* self)
|
|
{
|
|
DCHECK(self);
|
|
if(!self)
|
|
return 0;
|
|
|
|
return CefV8ValueCppToC::Get(self)->IsUndefined();
|
|
}
|
|
|
|
int CEF_CALLBACK v8value_is_null(struct _cef_v8value_t* self)
|
|
{
|
|
DCHECK(self);
|
|
if(!self)
|
|
return 0;
|
|
|
|
return CefV8ValueCppToC::Get(self)->IsNull();
|
|
}
|
|
|
|
int CEF_CALLBACK v8value_is_bool(struct _cef_v8value_t* self)
|
|
{
|
|
DCHECK(self);
|
|
if(!self)
|
|
return 0;
|
|
|
|
return CefV8ValueCppToC::Get(self)->IsBool();
|
|
}
|
|
|
|
int CEF_CALLBACK v8value_is_int(struct _cef_v8value_t* self)
|
|
{
|
|
DCHECK(self);
|
|
if(!self)
|
|
return 0;
|
|
|
|
return CefV8ValueCppToC::Get(self)->IsInt();
|
|
}
|
|
|
|
int CEF_CALLBACK v8value_is_double(struct _cef_v8value_t* self)
|
|
{
|
|
DCHECK(self);
|
|
if(!self)
|
|
return 0;
|
|
|
|
return CefV8ValueCppToC::Get(self)->IsDouble();
|
|
}
|
|
|
|
int CEF_CALLBACK v8value_is_date(struct _cef_v8value_t* self)
|
|
{
|
|
DCHECK(self);
|
|
if (!self)
|
|
return 0;
|
|
|
|
return CefV8ValueCppToC::Get(self)->IsDate();
|
|
}
|
|
|
|
int CEF_CALLBACK v8value_is_string(struct _cef_v8value_t* self)
|
|
{
|
|
DCHECK(self);
|
|
if(!self)
|
|
return 0;
|
|
|
|
return CefV8ValueCppToC::Get(self)->IsString();
|
|
}
|
|
|
|
int CEF_CALLBACK v8value_is_object(struct _cef_v8value_t* self)
|
|
{
|
|
DCHECK(self);
|
|
if(!self)
|
|
return 0;
|
|
|
|
return CefV8ValueCppToC::Get(self)->IsObject();
|
|
}
|
|
|
|
int CEF_CALLBACK v8value_is_array(struct _cef_v8value_t* self)
|
|
{
|
|
DCHECK(self);
|
|
if(!self)
|
|
return 0;
|
|
|
|
return CefV8ValueCppToC::Get(self)->IsArray();
|
|
}
|
|
|
|
int CEF_CALLBACK v8value_is_function(struct _cef_v8value_t* self)
|
|
{
|
|
DCHECK(self);
|
|
if(!self)
|
|
return 0;
|
|
|
|
return CefV8ValueCppToC::Get(self)->IsFunction();
|
|
}
|
|
|
|
int CEF_CALLBACK v8value_is_same(struct _cef_v8value_t* self,
|
|
struct _cef_v8value_t* that)
|
|
{
|
|
DCHECK(self);
|
|
DCHECK(that);
|
|
if(!self || !that)
|
|
return 0;
|
|
|
|
return CefV8ValueCppToC::Get(self)->IsSame(CefV8ValueCppToC::Unwrap(that));
|
|
}
|
|
|
|
int CEF_CALLBACK v8value_get_bool_value(struct _cef_v8value_t* self)
|
|
{
|
|
DCHECK(self);
|
|
if(!self)
|
|
return 0;
|
|
|
|
return CefV8ValueCppToC::Get(self)->GetBoolValue();
|
|
}
|
|
|
|
int CEF_CALLBACK v8value_get_int_value(struct _cef_v8value_t* self)
|
|
{
|
|
DCHECK(self);
|
|
if(!self)
|
|
return 0;
|
|
|
|
return CefV8ValueCppToC::Get(self)->GetIntValue();
|
|
}
|
|
|
|
double CEF_CALLBACK v8value_get_double_value(struct _cef_v8value_t* self)
|
|
{
|
|
DCHECK(self);
|
|
if(!self)
|
|
return 0;
|
|
|
|
return CefV8ValueCppToC::Get(self)->GetDoubleValue();
|
|
}
|
|
|
|
cef_time_t CEF_CALLBACK v8value_get_date_value(struct _cef_v8value_t* self)
|
|
{
|
|
DCHECK(self);
|
|
if (!self)
|
|
return cef_time_t();
|
|
|
|
return CefV8ValueCppToC::Get(self)->GetDateValue();
|
|
}
|
|
|
|
cef_string_userfree_t CEF_CALLBACK v8value_get_string_value(
|
|
struct _cef_v8value_t* self)
|
|
{
|
|
DCHECK(self);
|
|
if(!self)
|
|
return 0;
|
|
|
|
CefString valueStr = CefV8ValueCppToC::Get(self)->GetStringValue();
|
|
return valueStr.DetachToUserFree();
|
|
}
|
|
|
|
int CEF_CALLBACK v8value_has_value_bykey(struct _cef_v8value_t* self,
|
|
const cef_string_t* key)
|
|
{
|
|
DCHECK(self);
|
|
DCHECK(key);
|
|
if(!self || !key)
|
|
return 0;
|
|
|
|
return CefV8ValueCppToC::Get(self)->HasValue(CefString(key));
|
|
}
|
|
|
|
int CEF_CALLBACK v8value_has_value_byindex(struct _cef_v8value_t* self,
|
|
int index)
|
|
{
|
|
DCHECK(self);
|
|
DCHECK(index >= 0);
|
|
if(!self || index < 0)
|
|
return 0;
|
|
|
|
return CefV8ValueCppToC::Get(self)->HasValue(index);
|
|
}
|
|
|
|
int CEF_CALLBACK v8value_delete_value_bykey(struct _cef_v8value_t* self,
|
|
const cef_string_t* key)
|
|
{
|
|
DCHECK(self);
|
|
DCHECK(key);
|
|
if(!self || !key)
|
|
return 0;
|
|
|
|
return CefV8ValueCppToC::Get(self)->DeleteValue(CefString(key));
|
|
}
|
|
|
|
int CEF_CALLBACK v8value_delete_value_byindex(struct _cef_v8value_t* self,
|
|
int index)
|
|
{
|
|
DCHECK(self);
|
|
DCHECK(index >= 0);
|
|
if(!self || index < 0)
|
|
return 0;
|
|
|
|
return CefV8ValueCppToC::Get(self)->DeleteValue(index);
|
|
}
|
|
|
|
struct _cef_v8value_t* CEF_CALLBACK v8value_get_value_bykey(
|
|
struct _cef_v8value_t* self, const cef_string_t* key)
|
|
{
|
|
DCHECK(self);
|
|
DCHECK(key);
|
|
if(!self || !key)
|
|
return 0;
|
|
|
|
CefRefPtr<CefV8Value> valuePtr =
|
|
CefV8ValueCppToC::Get(self)->GetValue(CefString(key));
|
|
return CefV8ValueCppToC::Wrap(valuePtr);
|
|
}
|
|
|
|
struct _cef_v8value_t* CEF_CALLBACK v8value_get_value_byindex(
|
|
struct _cef_v8value_t* self, int index)
|
|
{
|
|
DCHECK(self);
|
|
DCHECK(index >= 0);
|
|
if(!self || index < 0)
|
|
return 0;
|
|
|
|
CefRefPtr<CefV8Value> valuePtr =
|
|
CefV8ValueCppToC::Get(self)->GetValue(index);
|
|
return CefV8ValueCppToC::Wrap(valuePtr);
|
|
}
|
|
|
|
int CEF_CALLBACK v8value_set_value_bykey(struct _cef_v8value_t* self,
|
|
const cef_string_t* key, struct _cef_v8value_t* value,
|
|
enum cef_v8_propertyattribute_t attribute)
|
|
{
|
|
DCHECK(self);
|
|
DCHECK(key);
|
|
DCHECK(value);
|
|
if(!self || !key || !value)
|
|
return 0;
|
|
|
|
CefRefPtr<CefV8Value> valuePtr = CefV8ValueCppToC::Unwrap(value);
|
|
return CefV8ValueCppToC::Get(self)->SetValue(CefString(key), valuePtr,
|
|
attribute);
|
|
}
|
|
|
|
int CEF_CALLBACK v8value_set_value_byindex(struct _cef_v8value_t* self,
|
|
int index, struct _cef_v8value_t* value)
|
|
{
|
|
DCHECK(self);
|
|
DCHECK(index >= 0);
|
|
DCHECK(value);
|
|
if(!self || index < 0 || !value)
|
|
return 0;
|
|
|
|
CefRefPtr<CefV8Value> valuePtr = CefV8ValueCppToC::Unwrap(value);
|
|
return CefV8ValueCppToC::Get(self)->SetValue(index, valuePtr);
|
|
}
|
|
|
|
int CEF_CALLBACK v8value_set_value_byaccessor(struct _cef_v8value_t* self,
|
|
const cef_string_t* key, enum cef_v8_accesscontrol_t settings,
|
|
enum cef_v8_propertyattribute_t attribute)
|
|
{
|
|
DCHECK(self);
|
|
DCHECK(key);
|
|
if(!self || !key)
|
|
return 0;
|
|
|
|
return CefV8ValueCppToC::Get(self)->SetValue(CefString(key),
|
|
settings, attribute);
|
|
}
|
|
|
|
int CEF_CALLBACK v8value_get_keys(struct _cef_v8value_t* self,
|
|
cef_string_list_t keys)
|
|
{
|
|
DCHECK(self);
|
|
DCHECK(keys);
|
|
if(!self || !keys)
|
|
return 0;
|
|
|
|
std::vector<CefString> keysList;
|
|
CefV8ValueCppToC::Get(self)->GetKeys(keysList);
|
|
size_t size = keysList.size();
|
|
for(size_t i = 0; i < size; ++i)
|
|
cef_string_list_append(keys, keysList[i].GetStruct());
|
|
return size;
|
|
}
|
|
|
|
cef_base_t* CEF_CALLBACK v8value_get_user_data(struct _cef_v8value_t* self)
|
|
{
|
|
DCHECK(self);
|
|
if(!self)
|
|
return 0;
|
|
|
|
CefRefPtr<CefBase> base = CefV8ValueCppToC::Get(self)->GetUserData();
|
|
if(base.get())
|
|
return CefBaseCToCpp::Unwrap(base);
|
|
return NULL;
|
|
}
|
|
|
|
int CEF_CALLBACK v8value_get_array_length(struct _cef_v8value_t* self)
|
|
{
|
|
DCHECK(self);
|
|
if(!self)
|
|
return 0;
|
|
|
|
return CefV8ValueCppToC::Get(self)->GetArrayLength();
|
|
}
|
|
|
|
cef_string_userfree_t CEF_CALLBACK v8value_get_function_name(
|
|
struct _cef_v8value_t* self)
|
|
{
|
|
DCHECK(self);
|
|
if(!self)
|
|
return 0;
|
|
|
|
CefString functionNameStr = CefV8ValueCppToC::Get(self)->GetFunctionName();
|
|
return functionNameStr.DetachToUserFree();
|
|
}
|
|
|
|
cef_v8handler_t* CEF_CALLBACK v8value_get_function_handler(
|
|
struct _cef_v8value_t* self)
|
|
{
|
|
DCHECK(self);
|
|
if(!self)
|
|
return 0;
|
|
|
|
CefRefPtr<CefV8Handler> handlerPtr =
|
|
CefV8ValueCppToC::Get(self)->GetFunctionHandler();
|
|
if(handlerPtr.get())
|
|
return CefV8HandlerCToCpp::Unwrap(handlerPtr);
|
|
return NULL;
|
|
}
|
|
|
|
int CEF_CALLBACK v8value_execute_function(struct _cef_v8value_t* self,
|
|
struct _cef_v8value_t* object, size_t argumentCount,
|
|
struct _cef_v8value_t* const* arguments, struct _cef_v8value_t** retval,
|
|
cef_v8exception_t** exception, int rethrow_exception)
|
|
{
|
|
DCHECK(self);
|
|
if(!self)
|
|
return 0;
|
|
|
|
CefRefPtr<CefV8Value> objectPtr;
|
|
if(object)
|
|
objectPtr = CefV8ValueCppToC::Unwrap(object);
|
|
|
|
CefV8ValueList argsList;
|
|
for(size_t i = 0; i < argumentCount; i++)
|
|
argsList.push_back(CefV8ValueCppToC::Unwrap(arguments[i]));
|
|
|
|
CefRefPtr<CefV8Value> retvalPtr;
|
|
CefRefPtr<CefV8Exception> exceptionPtr;
|
|
|
|
bool rv = CefV8ValueCppToC::Get(self)->ExecuteFunction(objectPtr,
|
|
argsList, retvalPtr, exceptionPtr, rethrow_exception?true:false);
|
|
|
|
if( retvalPtr.get() && retval)
|
|
*retval = CefV8ValueCppToC::Wrap(retvalPtr);
|
|
if (exceptionPtr.get() && exception)
|
|
*exception = CefV8ExceptionCppToC::Wrap(exceptionPtr);
|
|
|
|
return rv;
|
|
}
|
|
|
|
int CEF_CALLBACK v8value_execute_function_with_context(
|
|
struct _cef_v8value_t* self, cef_v8context_t* context,
|
|
struct _cef_v8value_t* object, size_t argumentCount,
|
|
struct _cef_v8value_t* const* arguments, struct _cef_v8value_t** retval,
|
|
cef_v8exception_t** exception, int rethrow_exception)
|
|
{
|
|
DCHECK(self);
|
|
if(!self)
|
|
return 0;
|
|
|
|
CefRefPtr<CefV8Context> contextPtr;
|
|
if(context)
|
|
contextPtr = CefV8ContextCppToC::Unwrap(context);
|
|
|
|
CefRefPtr<CefV8Value> objectPtr;
|
|
if(object)
|
|
objectPtr = CefV8ValueCppToC::Unwrap(object);
|
|
|
|
CefV8ValueList argsList;
|
|
for(size_t i = 0; i < argumentCount; i++)
|
|
argsList.push_back(CefV8ValueCppToC::Unwrap(arguments[i]));
|
|
|
|
CefRefPtr<CefV8Value> retvalPtr;
|
|
CefRefPtr<CefV8Exception> exceptionPtr;
|
|
|
|
bool rv = CefV8ValueCppToC::Get(self)->ExecuteFunctionWithContext(
|
|
contextPtr, objectPtr, argsList, retvalPtr, exceptionPtr,
|
|
rethrow_exception?true:false);
|
|
|
|
if (retvalPtr.get() && retval)
|
|
*retval = CefV8ValueCppToC::Wrap(retvalPtr);
|
|
if (exceptionPtr.get() && exception)
|
|
*exception = CefV8ExceptionCppToC::Wrap(exceptionPtr);
|
|
|
|
return rv;
|
|
}
|
|
|
|
|
|
// CONSTRUCTOR - Do not edit by hand.
|
|
|
|
CefV8ValueCppToC::CefV8ValueCppToC(CefV8Value* cls)
|
|
: CefCppToC<CefV8ValueCppToC, CefV8Value, cef_v8value_t>(cls)
|
|
{
|
|
struct_.struct_.is_undefined = v8value_is_undefined;
|
|
struct_.struct_.is_null = v8value_is_null;
|
|
struct_.struct_.is_bool = v8value_is_bool;
|
|
struct_.struct_.is_int = v8value_is_int;
|
|
struct_.struct_.is_double = v8value_is_double;
|
|
struct_.struct_.is_date = v8value_is_date;
|
|
struct_.struct_.is_string = v8value_is_string;
|
|
struct_.struct_.is_object = v8value_is_object;
|
|
struct_.struct_.is_array = v8value_is_array;
|
|
struct_.struct_.is_function = v8value_is_function;
|
|
struct_.struct_.is_same = v8value_is_same;
|
|
struct_.struct_.get_bool_value = v8value_get_bool_value;
|
|
struct_.struct_.get_int_value = v8value_get_int_value;
|
|
struct_.struct_.get_double_value = v8value_get_double_value;
|
|
struct_.struct_.get_date_value = v8value_get_date_value;
|
|
struct_.struct_.get_string_value = v8value_get_string_value;
|
|
struct_.struct_.has_value_bykey = v8value_has_value_bykey;
|
|
struct_.struct_.has_value_byindex = v8value_has_value_byindex;
|
|
struct_.struct_.delete_value_bykey = v8value_delete_value_bykey;
|
|
struct_.struct_.delete_value_byindex = v8value_delete_value_byindex;
|
|
struct_.struct_.get_value_bykey = v8value_get_value_bykey;
|
|
struct_.struct_.get_value_byindex = v8value_get_value_byindex;
|
|
struct_.struct_.set_value_bykey = v8value_set_value_bykey;
|
|
struct_.struct_.set_value_byindex = v8value_set_value_byindex;
|
|
struct_.struct_.set_value_byaccessor = v8value_set_value_byaccessor;
|
|
struct_.struct_.get_keys = v8value_get_keys;
|
|
struct_.struct_.get_user_data = v8value_get_user_data;
|
|
struct_.struct_.get_array_length = v8value_get_array_length;
|
|
struct_.struct_.get_function_name = v8value_get_function_name;
|
|
struct_.struct_.get_function_handler = v8value_get_function_handler;
|
|
struct_.struct_.execute_function = v8value_execute_function;
|
|
struct_.struct_.execute_function_with_context =
|
|
v8value_execute_function_with_context;
|
|
}
|
|
|
|
#ifndef NDEBUG
|
|
template<> long CefCppToC<CefV8ValueCppToC, CefV8Value,
|
|
cef_v8value_t>::DebugObjCt = 0;
|
|
#endif
|
|
|