blob: f239ddd7f9a7526b8465d8da76dae926730569bb [file] [log] [blame] [edit]
// Copyright (c) 2012 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.
#include "content/browser/in_process_webkit/indexed_db_callbacks.h"
#include "content/common/indexed_db/indexed_db_messages.h"
#include "webkit/quota/quota_manager.h"
using content::IndexedDBKey;
using content::IndexedDBKeyPath;
using content::SerializedScriptValue;
namespace {
const int32 kDatabaseNotAdded = -1;
}
IndexedDBCallbacksBase::IndexedDBCallbacksBase(
IndexedDBDispatcherHost* dispatcher_host,
int32 thread_id,
int32 response_id)
: dispatcher_host_(dispatcher_host),
response_id_(response_id),
thread_id_(thread_id) {
}
IndexedDBCallbacksBase::~IndexedDBCallbacksBase() {}
void IndexedDBCallbacksBase::onError(const WebKit::WebIDBDatabaseError& error) {
dispatcher_host_->Send(new IndexedDBMsg_CallbacksError(
thread_id_, response_id_, error.code(), error.message()));
}
void IndexedDBCallbacksBase::onBlocked(long long old_version) {
dispatcher_host_->Send(new IndexedDBMsg_CallbacksIntBlocked(
thread_id_, response_id_, old_version));
}
void IndexedDBCallbacksBase::onBlocked() {
dispatcher_host_->Send(new IndexedDBMsg_CallbacksBlocked(thread_id_,
response_id_));
}
IndexedDBCallbacksTransaction::IndexedDBCallbacksTransaction(
IndexedDBDispatcherHost* dispatcher_host,
int32 thread_id,
int32 response_id,
const GURL& origin_url)
: IndexedDBCallbacksBase(dispatcher_host, thread_id, response_id),
origin_url_(origin_url) {
}
void IndexedDBCallbacksTransaction::onSuccess(
WebKit::WebIDBTransaction* idb_object) {
int32 object_id =
dispatcher_host()->Add(idb_object, thread_id(), origin_url_);
dispatcher_host()->Send(
new IndexedDBMsg_CallbacksSuccessIDBTransaction(thread_id(),
response_id(), object_id));
}
IndexedDBCallbacksDatabase::IndexedDBCallbacksDatabase(
IndexedDBDispatcherHost* dispatcher_host,
int32 thread_id,
int32 response_id,
const GURL& origin_url)
: IndexedDBCallbacksBase(dispatcher_host, thread_id, response_id),
origin_url_(origin_url),
database_id_(kDatabaseNotAdded) {
}
void IndexedDBCallbacksDatabase::onSuccess(
WebKit::WebIDBDatabase* idb_object) {
int32 object_id = database_id_;
if (object_id == kDatabaseNotAdded) {
object_id = dispatcher_host()->Add(idb_object, thread_id(), origin_url_);
} else {
// We already have this database and don't need a new copy of it.
delete idb_object;
}
dispatcher_host()->Send(
new IndexedDBMsg_CallbacksSuccessIDBDatabase(thread_id(), response_id(),
object_id));
}
void IndexedDBCallbacksDatabase::onUpgradeNeeded(
long long old_version,
WebKit::WebIDBTransaction* transaction,
WebKit::WebIDBDatabase* database) {
int32 transaction_id = dispatcher_host()->Add(transaction, thread_id(),
origin_url_);
int32 database_id = dispatcher_host()->Add(database, thread_id(),
origin_url_);
database_id_ = database_id;
dispatcher_host()->Send(
new IndexedDBMsg_CallbacksUpgradeNeeded(
thread_id(), response_id(), transaction_id, database_id,
old_version));
}
void IndexedDBCallbacks<WebKit::WebIDBCursor>::onSuccess(
WebKit::WebIDBCursor* idb_object,
const WebKit::WebIDBKey& key,
const WebKit::WebIDBKey& primaryKey,
const WebKit::WebSerializedScriptValue& value) {
int32 object_id = dispatcher_host()->Add(idb_object);
IndexedDBMsg_CallbacksSuccessIDBCursor_Params params;
params.thread_id = thread_id();
params.response_id = response_id();
params.cursor_id = object_id;
params.key = IndexedDBKey(key);
params.primary_key = IndexedDBKey(primaryKey);
params.serialized_value = SerializedScriptValue(value);
dispatcher_host()->Send(new IndexedDBMsg_CallbacksSuccessIDBCursor(params));
}
void IndexedDBCallbacks<WebKit::WebIDBCursor>::onSuccess(
const WebKit::WebSerializedScriptValue& value) {
dispatcher_host()->Send(
new IndexedDBMsg_CallbacksSuccessSerializedScriptValue(
thread_id(), response_id(), SerializedScriptValue(value)));
}
void IndexedDBCallbacks<WebKit::WebIDBCursor>::onSuccess(
const WebKit::WebIDBKey& key,
const WebKit::WebIDBKey& primaryKey,
const WebKit::WebSerializedScriptValue& value) {
DCHECK(cursor_id_ != -1);
WebKit::WebIDBCursor* idb_cursor = dispatcher_host()->GetCursorFromId(
cursor_id_);
DCHECK(idb_cursor);
if (!idb_cursor)
return;
IndexedDBMsg_CallbacksSuccessCursorContinue_Params params;
params.thread_id = thread_id();
params.response_id = response_id();
params.cursor_id = cursor_id_;
params.key = IndexedDBKey(key);
params.primary_key = IndexedDBKey(primaryKey);
params.serialized_value = SerializedScriptValue(value);
dispatcher_host()->Send(
new IndexedDBMsg_CallbacksSuccessCursorContinue(params));
}
void IndexedDBCallbacks<WebKit::WebIDBCursor>::onSuccessWithPrefetch(
const WebKit::WebVector<WebKit::WebIDBKey>& keys,
const WebKit::WebVector<WebKit::WebIDBKey>& primaryKeys,
const WebKit::WebVector<WebKit::WebSerializedScriptValue>& values) {
DCHECK(cursor_id_ != -1);
std::vector<IndexedDBKey> msgKeys;
std::vector<IndexedDBKey> msgPrimaryKeys;
std::vector<SerializedScriptValue> msgValues;
for (size_t i = 0; i < keys.size(); ++i) {
msgKeys.push_back(IndexedDBKey(keys[i]));
msgPrimaryKeys.push_back(IndexedDBKey(primaryKeys[i]));
msgValues.push_back(SerializedScriptValue(values[i]));
}
IndexedDBMsg_CallbacksSuccessCursorPrefetch_Params params;
params.thread_id = thread_id();
params.response_id = response_id();
params.cursor_id = cursor_id_;
params.keys = msgKeys;
params.primary_keys = msgPrimaryKeys;
params.values = msgValues;
dispatcher_host()->Send(
new IndexedDBMsg_CallbacksSuccessCursorPrefetch(params));
}
void IndexedDBCallbacks<WebKit::WebIDBKey>::onSuccess(
const WebKit::WebIDBKey& value) {
dispatcher_host()->Send(
new IndexedDBMsg_CallbacksSuccessIndexedDBKey(
thread_id(), response_id(), IndexedDBKey(value)));
}
void IndexedDBCallbacks<WebKit::WebDOMStringList>::onSuccess(
const WebKit::WebDOMStringList& value) {
std::vector<string16> list;
for (unsigned i = 0; i < value.length(); ++i)
list.push_back(value.item(i));
dispatcher_host()->Send(
new IndexedDBMsg_CallbacksSuccessStringList(
thread_id(), response_id(), list));
}
void IndexedDBCallbacks<WebKit::WebSerializedScriptValue>::onSuccess(
const WebKit::WebSerializedScriptValue& value) {
dispatcher_host()->Send(
new IndexedDBMsg_CallbacksSuccessSerializedScriptValue(
thread_id(), response_id(), SerializedScriptValue(value)));
}
void IndexedDBCallbacks<WebKit::WebSerializedScriptValue>::onSuccess(
const WebKit::WebSerializedScriptValue& value,
const WebKit::WebIDBKey& primaryKey,
const WebKit::WebIDBKeyPath& keyPath) {
dispatcher_host()->Send(
new IndexedDBMsg_CallbacksSuccessSerializedScriptValueWithKey(
thread_id(), response_id(), SerializedScriptValue(value),
IndexedDBKey(primaryKey), IndexedDBKeyPath(keyPath)));
}