blob: 3a44e6c38e855829da83e2cfe4d7388290b4a659 [file] [log] [blame]
// Copyright (c) 2015 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef THIRD_PARTY_BLINK_RENDERER_BINDINGS_MODULES_V8_V8_BINDING_FOR_MODULES_H_
#define THIRD_PARTY_BLINK_RENDERER_BINDINGS_MODULES_V8_V8_BINDING_FOR_MODULES_H_
#include "third_party/blink/renderer/bindings/core/v8/v8_binding_for_core.h"
#include "third_party/blink/renderer/modules/modules_export.h"
#include "third_party/blink/renderer/modules/webdatabase/sqlite/sql_value.h"
namespace blink {
class IDBKey;
class IDBKeyPath;
class IDBKeyRange;
class IDBValue;
class SerializedScriptValue;
class WebBlobInfo;
// Exposed for unit testing:
MODULES_EXPORT v8::Local<v8::Value> DeserializeIDBValue(
v8::Isolate*,
v8::Local<v8::Object> creation_context,
const IDBValue*);
MODULES_EXPORT bool InjectV8KeyIntoV8Value(v8::Isolate*,
v8::Local<v8::Value> key,
v8::Local<v8::Value>,
const IDBKeyPath&);
// For use by Source/modules/indexeddb (and unit testing):
MODULES_EXPORT bool CanInjectIDBKeyIntoScriptValue(v8::Isolate*,
const ScriptValue&,
const IDBKeyPath&);
ScriptValue DeserializeScriptValue(ScriptState*,
SerializedScriptValue*,
const Vector<WebBlobInfo>*);
#if DCHECK_IS_ON()
void AssertPrimaryKeyValidOrInjectable(ScriptState*, const IDBValue*);
#endif
template <>
struct NativeValueTraits<SQLValue> {
static SQLValue NativeValue(v8::Isolate*,
v8::Local<v8::Value>,
ExceptionState&);
};
template <>
struct NativeValueTraits<std::unique_ptr<IDBKey>> {
// Implementation for ScriptValue::To<std::unique_ptr<IDBKey>>().
//
// Used by Indexed DB when converting an explicit value to a key.
// https://w3c.github.io/IndexedDB/#convert-value-to-key
//
// Returns an Invalid key if the conversion is a failure (per spec).
//
// Note that an Array key may contain Invalid members, as the "multi-entry"
// index case allows these, and will filter them out later. Use IsValid() to
// recursively check.
MODULES_EXPORT static std::unique_ptr<IDBKey>
NativeValue(v8::Isolate*, v8::Local<v8::Value>, ExceptionState&);
// Implementation for ScriptValue::To<std::unique_ptr<IDBKey>>().
//
// Used by Indexed DB when generating the primary key for a record that is
// being stored in an object store that uses in-line keys.
// https://w3c.github.io/IndexedDB/#extract-key-from-value
//
// Evaluates the given key path against the script value to produce an
// IDBKey. Returns either:
// * A nullptr, if key path evaluation fails.
// * An Invalid key, if the evaluation yielded a non-key.
// * An IDBKey, otherwise.
//
// Note that an Array key may contain with Invalid members, as the
// "multi-entry" index case allows these, and will filter them out later.
// Use IsValid() to recursively check.
MODULES_EXPORT static std::unique_ptr<IDBKey> NativeValue(
v8::Isolate*,
v8::Local<v8::Value>,
ExceptionState&,
const IDBKeyPath&);
// Implementation for ScriptValue::To<std::unique_ptr<IDBKey>>().
//
// Used by Indexed DB when generating the index key for a record that is being
// stored.
// https://w3c.github.io/IndexedDB/#extract-key-from-value
//
// Evaluates the given key path against the script value to produce an IDBKey.
// Returns either:
// * A nullptr, if key path evaluation fails.
// * An Invalid key, if the evaluation yielded a non-key.
// * An IDBKey, otherwise.
//
// Note that an Array key may contain Invalid members, as the
// "multi-entry" index case allows these, and will filter them out later. Use
// IsValid() to recursively check.
//
// If evaluating an index's key path which is an array, and the sub-key path
// matches the object store's key path, and that evaluation fails, then a
// None key member will be present in the Array key result. This should only
// occur when the store has a key generator, which would fill in the primary
// key lazily.
MODULES_EXPORT static std::unique_ptr<IDBKey> NativeValue(
v8::Isolate*,
v8::Local<v8::Value>,
ExceptionState&,
const IDBKeyPath& store_key_path,
const IDBKeyPath& index_key_path);
};
template <>
struct NativeValueTraits<IDBKeyRange*> {
static IDBKeyRange* NativeValue(v8::Isolate*,
v8::Local<v8::Value>,
ExceptionState&);
};
} // namespace blink
#endif // THIRD_PARTY_BLINK_RENDERER_BINDINGS_MODULES_V8_V8_BINDING_FOR_MODULES_H_