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
|
// Copyright (c) 2010 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 "chrome/renderer/renderer_webidbdatabase_impl.h"
#include "chrome/common/indexed_db_messages.h"
#include "chrome/renderer/render_thread.h"
#include "chrome/renderer/indexed_db_dispatcher.h"
#include "chrome/renderer/renderer_webidbobjectstore_impl.h"
#include "chrome/renderer/renderer_webidbtransaction_impl.h"
#include "third_party/WebKit/Source/WebKit/chromium/public/WebString.h"
#include "third_party/WebKit/Source/WebKit/chromium/public/WebVector.h"
using WebKit::WebDOMStringList;
using WebKit::WebExceptionCode;
using WebKit::WebFrame;
using WebKit::WebIDBCallbacks;
using WebKit::WebIDBTransaction;
using WebKit::WebString;
using WebKit::WebVector;
RendererWebIDBDatabaseImpl::RendererWebIDBDatabaseImpl(int32 idb_database_id)
: idb_database_id_(idb_database_id) {
}
RendererWebIDBDatabaseImpl::~RendererWebIDBDatabaseImpl() {
// It's not possible for there to be pending callbacks that address this
// object since inside WebKit, they hold a reference to the object wich owns
// this object. But, if that ever changed, then we'd need to invalidate
// any such pointers.
RenderThread::current()->Send(new IndexedDBHostMsg_DatabaseDestroyed(
idb_database_id_));
}
WebString RendererWebIDBDatabaseImpl::name() const {
string16 result;
RenderThread::current()->Send(
new IndexedDBHostMsg_DatabaseName(idb_database_id_, &result));
return result;
}
WebString RendererWebIDBDatabaseImpl::version() const {
string16 result;
RenderThread::current()->Send(
new IndexedDBHostMsg_DatabaseVersion(idb_database_id_, &result));
return result;
}
WebDOMStringList RendererWebIDBDatabaseImpl::objectStoreNames() const {
std::vector<string16> result;
RenderThread::current()->Send(
new IndexedDBHostMsg_DatabaseObjectStoreNames(idb_database_id_, &result));
WebDOMStringList webResult;
for (std::vector<string16>::const_iterator it = result.begin();
it != result.end(); ++it) {
webResult.append(*it);
}
return webResult;
}
WebKit::WebIDBObjectStore* RendererWebIDBDatabaseImpl::createObjectStore(
const WebKit::WebString& name,
const WebKit::WebString& key_path,
bool auto_increment,
const WebKit::WebIDBTransaction& transaction,
WebExceptionCode& ec) {
IndexedDBHostMsg_DatabaseCreateObjectStore_Params params;
params.name = name;
params.key_path = key_path;
params.auto_increment = auto_increment;
params.transaction_id = IndexedDBDispatcher::TransactionId(transaction);
params.idb_database_id = idb_database_id_;
int object_store;
RenderThread::current()->Send(
new IndexedDBHostMsg_DatabaseCreateObjectStore(params, &object_store, &ec));
if (!object_store)
return NULL;
return new RendererWebIDBObjectStoreImpl(object_store);
}
void RendererWebIDBDatabaseImpl::deleteObjectStore(
const WebString& name,
const WebIDBTransaction& transaction,
WebExceptionCode& ec) {
RenderThread::current()->Send(
new IndexedDBHostMsg_DatabaseDeleteObjectStore(
idb_database_id_, name,
IndexedDBDispatcher::TransactionId(transaction), &ec));
}
void RendererWebIDBDatabaseImpl::setVersion(
const WebString& version,
WebIDBCallbacks* callbacks,
WebExceptionCode& ec) {
IndexedDBDispatcher* dispatcher =
RenderThread::current()->indexed_db_dispatcher();
dispatcher->RequestIDBDatabaseSetVersion(
version, callbacks, idb_database_id_, &ec);
}
WebKit::WebIDBTransaction* RendererWebIDBDatabaseImpl::transaction(
const WebDOMStringList& names,
unsigned short mode,
unsigned long timeout,
WebExceptionCode& ec) {
std::vector<string16> object_stores;
object_stores.reserve(names.length());
for (unsigned int i = 0; i < names.length(); ++i)
object_stores.push_back(names.item(i));
int transaction_id;
RenderThread::current()->Send(
new IndexedDBHostMsg_DatabaseTransaction(
idb_database_id_, object_stores, mode,
timeout, &transaction_id, &ec));
if (!transaction_id)
return NULL;
return new RendererWebIDBTransactionImpl(transaction_id);
}
|