2014-10-31 18:17:05 +00:00
|
|
|
// Copyright (c) 2013 GitHub, Inc.
|
2014-04-25 09:49:37 +00:00
|
|
|
// Use of this source code is governed by the MIT license that can be
|
2013-04-17 12:05:43 +00:00
|
|
|
// found in the LICENSE file.
|
|
|
|
|
2021-11-22 07:34:31 +00:00
|
|
|
#ifndef ELECTRON_SHELL_COMMON_V8_VALUE_CONVERTER_H_
|
|
|
|
#define ELECTRON_SHELL_COMMON_V8_VALUE_CONVERTER_H_
|
2013-04-17 12:05:43 +00:00
|
|
|
|
2019-01-21 16:27:11 +00:00
|
|
|
#include <memory>
|
|
|
|
|
2013-04-17 12:05:43 +00:00
|
|
|
#include "base/compiler_specific.h"
|
2013-12-23 14:42:21 +00:00
|
|
|
#include "v8/include/v8.h"
|
2013-04-17 12:05:43 +00:00
|
|
|
|
|
|
|
namespace base {
|
|
|
|
class DictionaryValue;
|
|
|
|
class ListValue;
|
|
|
|
class Value;
|
2018-04-18 01:44:10 +00:00
|
|
|
} // namespace base
|
2013-04-17 12:05:43 +00:00
|
|
|
|
|
|
|
namespace electron {
|
|
|
|
|
2013-12-23 14:42:21 +00:00
|
|
|
class V8ValueConverter {
|
2013-04-17 12:05:43 +00:00
|
|
|
public:
|
2013-12-23 14:42:21 +00:00
|
|
|
V8ValueConverter();
|
|
|
|
|
2021-11-03 11:41:45 +00:00
|
|
|
// disable copy
|
|
|
|
V8ValueConverter(const V8ValueConverter&) = delete;
|
|
|
|
V8ValueConverter& operator=(const V8ValueConverter&) = delete;
|
|
|
|
|
2013-12-23 14:42:21 +00:00
|
|
|
void SetRegExpAllowed(bool val);
|
|
|
|
void SetFunctionAllowed(bool val);
|
|
|
|
void SetStripNullFromObjects(bool val);
|
2014-06-28 14:33:00 +00:00
|
|
|
v8::Local<v8::Value> ToV8Value(const base::Value* value,
|
|
|
|
v8::Local<v8::Context> context) const;
|
2019-01-21 16:27:11 +00:00
|
|
|
std::unique_ptr<base::Value> FromV8Value(
|
|
|
|
v8::Local<v8::Value> value,
|
|
|
|
v8::Local<v8::Context> context) const;
|
2013-04-17 12:05:43 +00:00
|
|
|
|
|
|
|
private:
|
2014-12-17 00:46:23 +00:00
|
|
|
class FromV8ValueState;
|
2016-08-25 16:26:07 +00:00
|
|
|
class ScopedUniquenessGuard;
|
2014-06-28 14:33:00 +00:00
|
|
|
|
|
|
|
v8::Local<v8::Value> ToV8ValueImpl(v8::Isolate* isolate,
|
|
|
|
const base::Value* value) const;
|
|
|
|
v8::Local<v8::Value> ToV8Array(v8::Isolate* isolate,
|
|
|
|
const base::ListValue* list) const;
|
|
|
|
v8::Local<v8::Value> ToV8Object(
|
|
|
|
v8::Isolate* isolate,
|
2013-04-17 12:05:43 +00:00
|
|
|
const base::DictionaryValue* dictionary) const;
|
2018-04-18 01:44:10 +00:00
|
|
|
v8::Local<v8::Value> ToArrayBuffer(v8::Isolate* isolate,
|
|
|
|
const base::Value* value) const;
|
2013-04-17 12:05:43 +00:00
|
|
|
|
2019-01-21 16:27:11 +00:00
|
|
|
std::unique_ptr<base::Value> FromV8ValueImpl(FromV8ValueState* state,
|
|
|
|
v8::Local<v8::Value> value,
|
|
|
|
v8::Isolate* isolate) const;
|
|
|
|
std::unique_ptr<base::Value> FromV8Array(v8::Local<v8::Array> array,
|
|
|
|
FromV8ValueState* state,
|
|
|
|
v8::Isolate* isolate) const;
|
|
|
|
std::unique_ptr<base::Value> FromNodeBuffer(v8::Local<v8::Value> value,
|
|
|
|
FromV8ValueState* state,
|
|
|
|
v8::Isolate* isolate) const;
|
|
|
|
std::unique_ptr<base::Value> FromV8Object(v8::Local<v8::Object> object,
|
|
|
|
FromV8ValueState* state,
|
|
|
|
v8::Isolate* isolate) const;
|
2013-04-17 12:05:43 +00:00
|
|
|
|
|
|
|
// If true, we will convert RegExp JavaScript objects to string.
|
2018-05-21 22:18:38 +00:00
|
|
|
bool reg_exp_allowed_ = false;
|
2013-04-17 12:05:43 +00:00
|
|
|
|
|
|
|
// If true, we will convert Function JavaScript objects to dictionaries.
|
2018-05-21 22:18:38 +00:00
|
|
|
bool function_allowed_ = false;
|
2013-04-17 12:05:43 +00:00
|
|
|
|
|
|
|
// If true, undefined and null values are ignored when converting v8 objects
|
|
|
|
// into Values.
|
2018-05-21 22:18:38 +00:00
|
|
|
bool strip_null_from_objects_ = false;
|
2013-04-17 12:05:43 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace electron
|
|
|
|
|
2021-11-22 07:34:31 +00:00
|
|
|
#endif // ELECTRON_SHELL_COMMON_V8_VALUE_CONVERTER_H_
|