2014-10-31 11:17:05 -07:00
|
|
|
// Copyright (c) 2013 GitHub, Inc.
|
2014-04-25 17:49:37 +08:00
|
|
|
// Use of this source code is governed by the MIT license that can be
|
2013-04-17 20:05:43 +08:00
|
|
|
// found in the LICENSE file.
|
|
|
|
|
2019-10-31 16:56:00 +09:00
|
|
|
#ifndef SHELL_COMMON_V8_VALUE_CONVERTER_H_
|
|
|
|
#define SHELL_COMMON_V8_VALUE_CONVERTER_H_
|
2013-04-17 20:05:43 +08:00
|
|
|
|
2019-01-21 21:57:11 +05:30
|
|
|
#include <memory>
|
|
|
|
|
2013-04-17 20:05:43 +08:00
|
|
|
#include "base/compiler_specific.h"
|
2016-08-26 15:30:02 -07:00
|
|
|
#include "base/macros.h"
|
2013-12-23 22:42:21 +08:00
|
|
|
#include "v8/include/v8.h"
|
2013-04-17 20:05:43 +08:00
|
|
|
|
|
|
|
namespace base {
|
|
|
|
class DictionaryValue;
|
|
|
|
class ListValue;
|
|
|
|
class Value;
|
2018-04-17 21:44:10 -04:00
|
|
|
} // namespace base
|
2013-04-17 20:05:43 +08:00
|
|
|
|
2019-06-19 14:23:04 -07:00
|
|
|
namespace electron {
|
2013-04-17 20:05:43 +08:00
|
|
|
|
2013-12-23 22:42:21 +08:00
|
|
|
class V8ValueConverter {
|
2013-04-17 20:05:43 +08:00
|
|
|
public:
|
2013-12-23 22:42:21 +08:00
|
|
|
V8ValueConverter();
|
|
|
|
|
|
|
|
void SetRegExpAllowed(bool val);
|
|
|
|
void SetFunctionAllowed(bool val);
|
|
|
|
void SetStripNullFromObjects(bool val);
|
2014-06-28 22:33:00 +08:00
|
|
|
v8::Local<v8::Value> ToV8Value(const base::Value* value,
|
|
|
|
v8::Local<v8::Context> context) const;
|
2019-01-21 21:57:11 +05:30
|
|
|
std::unique_ptr<base::Value> FromV8Value(
|
|
|
|
v8::Local<v8::Value> value,
|
|
|
|
v8::Local<v8::Context> context) const;
|
2013-04-17 20:05:43 +08:00
|
|
|
|
|
|
|
private:
|
2014-12-16 16:46:23 -08:00
|
|
|
class FromV8ValueState;
|
2016-08-25 09:26:07 -07:00
|
|
|
class ScopedUniquenessGuard;
|
2014-06-28 22:33:00 +08: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 20:05:43 +08:00
|
|
|
const base::DictionaryValue* dictionary) const;
|
2018-04-17 21:44:10 -04:00
|
|
|
v8::Local<v8::Value> ToArrayBuffer(v8::Isolate* isolate,
|
|
|
|
const base::Value* value) const;
|
2013-04-17 20:05:43 +08:00
|
|
|
|
2019-01-21 21:57:11 +05:30
|
|
|
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 20:05:43 +08:00
|
|
|
|
|
|
|
// If true, we will convert RegExp JavaScript objects to string.
|
2018-05-22 00:18:38 +02:00
|
|
|
bool reg_exp_allowed_ = false;
|
2013-04-17 20:05:43 +08:00
|
|
|
|
|
|
|
// If true, we will convert Function JavaScript objects to dictionaries.
|
2018-05-22 00:18:38 +02:00
|
|
|
bool function_allowed_ = false;
|
2013-04-17 20:05:43 +08:00
|
|
|
|
|
|
|
// If true, undefined and null values are ignored when converting v8 objects
|
|
|
|
// into Values.
|
2018-05-22 00:18:38 +02:00
|
|
|
bool strip_null_from_objects_ = false;
|
2013-04-17 20:05:43 +08:00
|
|
|
|
2013-12-23 22:42:21 +08:00
|
|
|
DISALLOW_COPY_AND_ASSIGN(V8ValueConverter);
|
2013-04-17 20:05:43 +08:00
|
|
|
};
|
|
|
|
|
2019-06-19 14:23:04 -07:00
|
|
|
} // namespace electron
|
2013-04-17 20:05:43 +08:00
|
|
|
|
2019-10-31 16:56:00 +09:00
|
|
|
#endif // SHELL_COMMON_V8_VALUE_CONVERTER_H_
|