1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215
|
// Copyright 2016 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef EXTENSIONS_RENDERER_BINDINGS_ARGUMENT_SPEC_H_
#define EXTENSIONS_RENDERER_BINDINGS_ARGUMENT_SPEC_H_
#include <map>
#include <memory>
#include <optional>
#include <set>
#include <string>
#include <string_view>
#include <vector>
#include "base/values.h"
#include "v8/include/v8.h"
namespace extensions {
class APITypeReferenceMap;
enum class ArgumentType {
INTEGER,
DOUBLE,
BOOLEAN,
STRING,
OBJECT,
LIST,
BINARY,
FUNCTION,
ANY,
REF,
CHOICES,
};
// A description of a given Argument to an Extension.
class ArgumentSpec {
public:
using PropertiesMap = std::map<std::string, std::unique_ptr<ArgumentSpec>>;
// Reads the description from `dict` and sets associated fields.
// TODO(devlin): We should strongly think about generating these instead of
// populating them at runtime.
explicit ArgumentSpec(const base::Value::Dict& dict);
explicit ArgumentSpec(ArgumentType type);
ArgumentSpec(const ArgumentSpec&) = delete;
ArgumentSpec& operator=(const ArgumentSpec&) = delete;
~ArgumentSpec();
// Returns true if the given `value` is of the correct type to match this
// spec. If it is not, populates `error`.
bool IsCorrectType(v8::Local<v8::Value> value,
const APITypeReferenceMap& refs,
std::string* error) const;
// Returns true if the passed `value` matches this specification. If
// `out_value` is non-null, converts the value to a base::Value and populates
// `out_value`. Similarly, if |v8_out_value| is non-null, this will populate
// |v8_out_value| with the parsed value. The advantage to duplicating the
// parsed value into |v8_out_value| is that for defined objects, the result
// will be a data object with no getters/setters, so clients don't need to
// worry about re-checking the arguments. Note that this will *not* apply in
// the case of ArgumentType::ANY, ArgumentType::BINARY, or
// ArgumentType::FUNCTION, where we do not copy the (arbitrary) contents.
// If both `out_value` and |v8_out_value| are null, no conversion is
// performed.
bool ParseArgument(v8::Local<v8::Context> context,
v8::Local<v8::Value> value,
const APITypeReferenceMap& refs,
std::unique_ptr<base::Value>* out_value,
v8::Local<v8::Value>* v8_out_value,
std::string* error) const;
// Returns a type name for this argument. Note: This should only be used to
// surface errors to developers.
const std::string& GetTypeName() const;
const std::string& name() const { return name_; }
bool optional() const { return optional_; }
ArgumentType type() const { return type_; }
const std::set<std::string>& enum_values() const { return enum_values_; }
void set_name(std::string_view name) { name_ = std::string(name); }
void set_optional(bool optional) { optional_ = optional; }
void set_ref(std::string_view ref) { ref_ = std::string(ref); }
void set_minimum(int minimum) { minimum_ = minimum; }
void set_properties(PropertiesMap properties) {
properties_ = std::move(properties);
}
void set_list_element_type(std::unique_ptr<ArgumentSpec> list_element_type) {
list_element_type_ = std::move(list_element_type);
}
void set_choices(std::vector<std::unique_ptr<ArgumentSpec>> choices) {
choices_ = std::move(choices);
}
void set_enum_values(std::set<std::string> enum_values) {
enum_values_ = std::move(enum_values);
}
void set_additional_properties(
std::unique_ptr<ArgumentSpec> additional_properties) {
additional_properties_ = std::move(additional_properties);
}
void set_instance_of(std::string instance_of) {
instance_of_ = std::move(instance_of);
}
void set_preserve_null(bool preserve_null) { preserve_null_ = preserve_null; }
void set_serialize_function(bool serialize_function) {
serialize_function_ = serialize_function;
}
private:
// Initializes this object according to `type_string` and `dict`.
void InitializeType(const base::Value::Dict& dict);
// Conversion functions. These should only be used if the spec is of the given
// type (otherwise, they will DCHECK).
bool ParseArgumentToFundamental(v8::Local<v8::Context> context,
v8::Local<v8::Value> value,
std::unique_ptr<base::Value>* out_value,
v8::Local<v8::Value>* v8_out_value,
std::string* error) const;
bool ParseArgumentToObject(v8::Local<v8::Context> context,
v8::Local<v8::Object> object,
const APITypeReferenceMap& refs,
std::unique_ptr<base::Value>* out_value,
v8::Local<v8::Value>* v8_out_value,
std::string* error) const;
bool ParseArgumentToArray(v8::Local<v8::Context> context,
v8::Local<v8::Array> value,
const APITypeReferenceMap& refs,
std::unique_ptr<base::Value>* out_value,
v8::Local<v8::Value>* v8_out_value,
std::string* error) const;
bool ParseArgumentToAny(v8::Local<v8::Context> context,
v8::Local<v8::Value> value,
std::unique_ptr<base::Value>* out_value,
v8::Local<v8::Value>* v8_out_value,
std::string* error) const;
bool ParseArgumentToFunction(v8::Local<v8::Context> context,
v8::Local<v8::Value> value,
std::unique_ptr<base::Value>* out_value,
v8::Local<v8::Value>* v8_out_value,
std::string* error) const;
// Returns an error message indicating the type of `value` does not match the
// expected type.
std::string GetInvalidTypeError(v8::Local<v8::Value> value) const;
// The name of the argument.
std::string name_;
// The type of the argument.
ArgumentType type_ = ArgumentType::INTEGER;
// A readable type name for this argument, lazily initialized.
mutable std::string type_name_;
// Whether or not the argument is required.
bool optional_ = false;
// Whether to preserve null properties found in objects.
bool preserve_null_ = false;
// Whether to serialize (by stringifying) a function argument. Only valid for
// arguments of type FUNCTION.
bool serialize_function_ = false;
// The reference the argument points to, if any. Note that if this is set,
// none of the following fields describing the argument will be.
std::optional<std::string> ref_;
// The type of instance an object should be, if any. Only applicable for
// ArgumentType::OBJECT. If specified, the argument must contain the instance
// type in its prototype chain.
std::optional<std::string> instance_of_;
// A minimum and maximum for integer and double values, if any.
std::optional<int> minimum_;
std::optional<int> maximum_;
// A minimium length for strings or arrays.
std::optional<size_t> min_length_;
// A maximum length for strings or arrays.
std::optional<size_t> max_length_;
// A map of required properties; present only for objects. Note that any
// properties *not* defined in this map will be dropped during conversion.
std::map<std::string, std::unique_ptr<ArgumentSpec>> properties_;
// The type of item that should be in the list; present only for lists.
std::unique_ptr<ArgumentSpec> list_element_type_;
// The different possible specs this argument can map to. Only populated for
// arguments of type CHOICES.
std::vector<std::unique_ptr<ArgumentSpec>> choices_;
// The possible enum values, if defined for this argument.
std::set<std::string> enum_values_;
// The specification for 'additional properties'. This is used when we want
// to allow the API to pass an object with arbitrary properties. Only
// applicable for ArgumentType::OBJECT.
std::unique_ptr<ArgumentSpec> additional_properties_;
// Whether this specific spec should ignore additional properties provided
// which do not match the spec, without emitting an error.
bool ignore_additional_properties_ = false;
};
} // namespace extensions
#endif // EXTENSIONS_RENDERER_BINDINGS_ARGUMENT_SPEC_H_
|