-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathdoxbee-async.js
More file actions
183 lines (152 loc) · 5.31 KB
/
doxbee-async.js
File metadata and controls
183 lines (152 loc) · 5.31 KB
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
// MIT License
// Copyright (c) 2013 Gorgi Kosev
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
// The above copyright notice and this permission notice shall be included in all
// copies or substantial portions of the Software.
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
// SOFTWARE.
// Copyright 2018 Google LLC, Benedikt Meurer
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// <https://www.apache.org/licenses/LICENSE-2.0>
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
(function(){function r(e,n,t){function o(i,f){if(!n[i]){if(!e[i]){var c="function"==typeof require&&require;if(!f&&c)return c(i,!0);if(u)return u(i,!0);var a=new Error("Cannot find module '"+i+"'");throw a.code="MODULE_NOT_FOUND",a}var p=n[i]={exports:{}};e[i][0].call(p.exports,function(r){var n=e[i][1][r];return o(n||r)},p,p.exports,r,e,n,t)}return n[i].exports}for(var u="function"==typeof require&&require,i=0;i<t.length;i++)o(t[i]);return o}return r})()({1:[function(require,module,exports){
"use strict";
const fakes = require("../lib/fakes-async.js");
module.exports = async function doxbee(stream, idOrPath) {
const blob = fakes.blobManager.create(fakes.account);
const tx = fakes.db.begin();
try {
const blobId = await blob.put(stream);
const file = await fakes.self.byUuidOrPath(idOrPath).get();
const previousId = file ? file.version : null;
const version = {
userAccountId: fakes.userAccount.id,
date: new Date(),
blobId: blobId,
creatorId: fakes.userAccount.id,
previousId: previousId
};
version.id = fakes.Version.createHash(version);
await fakes.Version.insert(version).execWithin(tx);
let fileId;
if (!file) {
const splitPath = idOrPath.split("/");
const fileName = splitPath[splitPath.length - 1];
fileId = fakes.uuid.v1();
const q = await fakes.self.createQuery(idOrPath, {
id: fileId,
userAccountId: fakes.userAccount.id,
name: fileName,
version: version.id
});
await q.execWithin(tx);
} else {
fileId = file.id;
}
await fakes.FileVersion.insert({
fileId: fileId,
versionId: version.id
}).execWithin(tx);
await fakes.File.whereUpdate(
{ id: fileId },
{ version: version.id }
).execWithin(tx);
await tx.commit();
} catch (err) {
await tx.rollback();
throw err;
}
};
},{"../lib/fakes-async.js":2}],2:[function(require,module,exports){
"use strict";
async function dummy_1() { }
async function dummy_2(a) { }
// a queryish object with all kinds of functions
function Queryish() {}
Queryish.prototype.all = dummy_1;
Queryish.prototype.exec = dummy_1;
Queryish.prototype.execWithin = dummy_2;
Queryish.prototype.get = dummy_1;
function queryish() {
return new Queryish();
}
class Uuid {
v1() {}
}
const uuid = new Uuid();
const userAccount = { id: 1 };
const account = {};
function Blob() {}
Blob.prototype.put = dummy_2;
class BlobManager {
create() {
return new Blob();
}
}
const blobManager = new BlobManager();
var cqQueryish = queryish();
function Self() {}
Self.prototype.byUuidOrPath = queryish;
Self.prototype.createQuery = async function createQuery(x, y) { return cqQueryish; };
const self = new Self();
function File() {}
File.insert = queryish;
File.whereUpdate = queryish;
function FileVersion() {}
FileVersion.insert = queryish;
function Version() {}
Version.createHash = function createHash(v) {
return 1;
};
Version.insert = queryish;
function Transaction() {}
Transaction.prototype.commit = dummy_1;
Transaction.prototype.rollback = dummy_1;
class Db {
begin() {
return new Transaction();
}
}
const db = new Db();
module.exports = {
uuid,
userAccount,
account,
blobManager,
self,
File,
FileVersion,
Version,
db
};
},{}],3:[function(require,module,exports){
const doxbee = require("../lib/doxbee-async");
globalThis.Benchmark = class {
runIteration() {
const innerIterations = 25_000;
const promises = new Array(innerIterations);
for (var i = 0; i < innerIterations; i++)
promises[i] = doxbee(i, "foo");
return Promise.all(promises);
}
};
},{"../lib/doxbee-async":1}]},{},[3]);