aboutsummaryrefslogtreecommitdiff
path: root/extension/background/query.ts
blob: 75201c2d4754d711cbb8cce6aa05a8fe1739fd5f (plain)
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
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
/*
 This file is part of TALER
 (C) 2016 GNUnet e.V.

 TALER is free software; you can redistribute it and/or modify it under the
 terms of the GNU General Public License as published by the Free Software
 Foundation; either version 3, or (at your option) any later version.

 TALER is distributed in the hope that it will be useful, but WITHOUT ANY
 WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
 A PARTICULAR PURPOSE.  See the GNU General Public License for more details.

 You should have received a copy of the GNU General Public License along with
 TALER; see the file COPYING.  If not, If not, see <http://www.gnu.org/licenses/>
 */

/// <reference path="../decl/chrome/chrome.d.ts" />


/**
 * Database query abstractions.
 * @module Query
 * @author Florian Dold
 */

"use strict";

function Query(db) {
  return new QueryRoot(db);
}


abstract class QueryStreamBase {
  abstract subscribe(f: (isDone: boolean, value: any) => void);
  root: QueryRoot;

  constructor(root: QueryRoot) {
    this.root = root;
  }

  indexJoin(storeName: string, indexName: string, key: any): QueryStreamBase {
    // join on the source relation's key, which may be
    // a path or a transformer function
    return new QueryStreamIndexJoin(this, storeName, indexName, key);
  }

  filter(f: (any) => boolean): QueryStreamBase {
    return new QueryStreamFilter(this, f);
  }

  reduce(f, acc?): Promise<any> {
    let leakedResolve;
    let p = new Promise((resolve, reject) => {
      leakedResolve = resolve;
    });

    this.subscribe((isDone, value) => {
      if (isDone) {
        leakedResolve(acc);
        return;
      }
      acc = f(value, acc);
    });

    return Promise.resolve().then(() => this.root.finish().then(() => p));
  }
}


class QueryStreamFilter extends QueryStreamBase {
  s: QueryStreamBase;
  filterFn;

  constructor(s: QueryStreamBase, filterFn) {
    super(s.root);
    this.s = s;
    this.filterFn = filterFn;
  }

  subscribe(f) {
    this.s.subscribe((isDone, value) => {
      if (isDone) {
        f(true, undefined);
        return;
      }
      if (this.filterFn(value)) {
        f(false, value)
      }
    });
  }
}


class QueryStreamIndexJoin extends QueryStreamBase {
  s: QueryStreamBase;
  storeName;
  key;
  constructor(s, storeName: string, indexName: string, key: any) {
    super(s.root);
    this.s = s;
    this.storeName = storeName;
    this.key = key;
  }

  subscribe(f) {
    this.s.subscribe((isDone, value) => {
      if (isDone) {
        f(true, undefined);
        return;
      }

      let s = this.root.tx.objectStore(this.storeName);
      let req = s.openCursor(IDBKeyRange.only(value));
      req.onsuccess = () => {
        let cursor = req.result;
        if (cursor) {
          f(false, [value, cursor.value]);
          cursor.continue();
        } else {
          f(true, undefined);
        }
      }
    });
  }

}


class IterQueryStream extends QueryStreamBase {
  private qr: QueryRoot;
  private storeName;
  private options;

  constructor(qr, storeName, options?) {
    super(qr);
    this.qr = qr;
    this.options = options;
    this.storeName = storeName;
  }

  subscribe(f) {
    function doIt() {
      let s = this.qr.tx.objectStore(this.storeName);
      let kr = undefined;
      if (this.options && ("only" in this.options)) {
        kr = IDBKeyRange.only(this.options.only);
      }
      let req = s.openCursor(kr);
      req.onsuccess = (e) => {
        let cursor: IDBCursorWithValue = req.result;
        if (cursor) {
          f(false, cursor.value);
          cursor.continue();
        } else {
          f(true, undefined);
        }
      }
    }
    this.qr.work.push(doIt.bind(this));
  }
}


class QueryRoot {
  work = [];
  db: IDBDatabase;
  tx: IDBTransaction;
  stores = new Set();
  kickoffPromise;

  constructor(db) {
    this.db = db;
  }

  iter(storeName): QueryStreamBase {
    this.stores.add(storeName);
    return new IterQueryStream(this, storeName);
  }

  iterOnly(storeName, key): QueryStreamBase {
    this.stores.add(storeName);
    return new IterQueryStream(this, storeName, {only: key});
  }

  put(storeName, val): QueryRoot {
    this.stores.add(storeName);
    function doPut() {
      this.tx.objectStore(storeName).put(val);
    }
    this.work.push(doPut.bind(this));
    return this;
  }

  putAll(storeName, iterable): QueryRoot {
    this.stores.add(storeName);
    function doPutAll() {
      for (let obj of iterable) {
        this.tx.objectStore(storeName).put(obj);
      }
    }
    this.work.push(doPutAll.bind(this));
    return this;
  }

  add(storeName, val): QueryRoot {
    this.stores.add(storeName);
    function doAdd() {
      this.tx.objectStore(storeName).add(val);
    }
    this.work.push(doAdd.bind(this));
    return this;
  }

  get(storeName, key): Promise<any> {
    this.stores.add(storeName);
    let leakedResolve;
    let p = new Promise((resolve, reject) => {
      leakedResolve = resolve;
    });
    if (!leakedResolve) {
      // According to ES6 spec (paragraph 25.4.3.1), this can't happen.
      throw Error("assertion failed");
    }
    function doGet() {
      let req = this.tx.objectStore(storeName).get(key);
      req.onsuccess = (r) => {
        leakedResolve(req.result);
      };
    }
    this.work.push(doGet.bind(this));
    return Promise.resolve().then(() => {
      return this.finish().then(() => p);
    });
  }

  finish(): Promise<void> {
    if (this.kickoffPromise) {
      return this.kickoffPromise;
    }
    this.kickoffPromise = new Promise((resolve, reject) => {

      this.tx = this.db.transaction(Array.from(this.stores), "readwrite");
      this.tx.oncomplete = () => {
        resolve();
      };
      for (let w of this.work) {
        w();
      }
    });
    return this.kickoffPromise;
  }

  delete(storeName: string, key): QueryRoot {
    this.stores.add(storeName);
    function doDelete() {
      this.tx.objectStore(storeName).delete(key);
    }
    this.work.push(doDelete.bind(this));
    return this;
  }
}