forked from byteball/ocore
-
Notifications
You must be signed in to change notification settings - Fork 0
/
joint_storage.js
307 lines (284 loc) · 11.2 KB
/
joint_storage.js
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
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
/*jslint node: true */
"use strict";
var _ = require('lodash');
var async = require('async');
var storage = require('./storage.js');
var db = require('./db.js');
var constants = require("./constants.js");
var objectHash = require("./object_hash.js");
var mutex = require('./mutex.js');
var conf = require('./conf.js');
var breadcrumbs = require('./breadcrumbs.js');
function checkIfNewUnit(unit, callbacks) {
if (storage.isKnownUnit(unit))
return callbacks.ifKnown();
db.query("SELECT 1 FROM units WHERE unit=?", [unit], function(rows){
if (rows.length > 0){
storage.setUnitIsKnown(unit);
return callbacks.ifKnown();
}
db.query("SELECT 1 FROM unhandled_joints WHERE unit=?", [unit], function(unhandled_rows){
if (unhandled_rows.length > 0)
return callbacks.ifKnownUnverified();
db.query("SELECT error FROM known_bad_joints WHERE unit=?", [unit], function(bad_rows){
(bad_rows.length === 0) ? callbacks.ifNew() : callbacks.ifKnownBad(bad_rows[0].error);
});
});
});
}
function checkIfNewJoint(objJoint, callbacks) {
checkIfNewUnit(objJoint.unit.unit, {
ifKnown: callbacks.ifKnown,
ifKnownUnverified: callbacks.ifKnownUnverified,
ifKnownBad: callbacks.ifKnownBad,
ifNew: function(){
db.query("SELECT error FROM known_bad_joints WHERE joint=?", [objectHash.getJointHash(objJoint)], function(bad_rows){
(bad_rows.length === 0) ? callbacks.ifNew() : callbacks.ifKnownBad(bad_rows[0].error);
});
}
});
}
function removeUnhandledJointAndDependencies(unit, onDone){
db.takeConnectionFromPool(function(conn){
var arrQueries = [];
conn.addQuery(arrQueries, "BEGIN");
conn.addQuery(arrQueries, "DELETE FROM unhandled_joints WHERE unit=?", [unit]);
conn.addQuery(arrQueries, "DELETE FROM dependencies WHERE unit=?", [unit]);
conn.addQuery(arrQueries, "COMMIT");
async.series(arrQueries, function(){
conn.release();
if (onDone)
onDone();
});
});
}
function saveUnhandledJointAndDependencies(objJoint, arrMissingParentUnits, peer, onDone){
db.takeConnectionFromPool(function(conn){
var unit = objJoint.unit.unit;
var sql = "INSERT "+conn.getIgnore()+" INTO dependencies (unit, depends_on_unit) VALUES " + arrMissingParentUnits.map(function(missing_unit){
return "("+conn.escape(unit)+", "+conn.escape(missing_unit)+")";
}).join(", ");
var arrQueries = [];
conn.addQuery(arrQueries, "BEGIN");
conn.addQuery(arrQueries, "INSERT INTO unhandled_joints (unit, json, peer) VALUES (?, ?, ?)", [unit, JSON.stringify(objJoint), peer]);
conn.addQuery(arrQueries, sql);
conn.addQuery(arrQueries, "COMMIT");
async.series(arrQueries, function(){
conn.release();
if (onDone)
onDone();
});
});
}
// handleDependentJoint called for each dependent unit
function readDependentJointsThatAreReady(unit, handleDependentJoint){
//console.log("readDependentJointsThatAreReady "+unit);
var t=Date.now();
var from = unit ? "FROM dependencies AS src_deps JOIN dependencies USING(unit)" : "FROM dependencies";
var where = unit ? "WHERE src_deps.depends_on_unit="+db.escape(unit) : "";
mutex.lock(["dependencies"], function(unlock){
db.query(
"SELECT dependencies.unit, unhandled_joints.unit AS unit_for_json, \n\
SUM(CASE WHEN units.unit IS NULL THEN 1 ELSE 0 END) AS count_missing_parents \n\
"+from+" \n\
JOIN unhandled_joints ON dependencies.unit=unhandled_joints.unit \n\
LEFT JOIN units ON dependencies.depends_on_unit=units.unit \n\
"+where+" \n\
GROUP BY dependencies.unit \n\
HAVING count_missing_parents=0 \n\
ORDER BY NULL",
function(rows){
//console.log(rows.length+" joints are ready");
//console.log("deps: "+(Date.now()-t));
rows.forEach(function(row) {
db.query("SELECT json, peer, "+db.getUnixTimestamp("creation_date")+" AS creation_ts FROM unhandled_joints WHERE unit=?", [row.unit_for_json], function(internal_rows){
internal_rows.forEach(function(internal_row) {
handleDependentJoint(JSON.parse(internal_row.json), parseInt(internal_row.creation_ts), internal_row.peer);
});
});
});
unlock();
}
);
});
}
function findLostJoints(handleLostJoints){
//console.log("findLostJoints");
db.query(
"SELECT DISTINCT depends_on_unit \n\
FROM dependencies \n\
LEFT JOIN unhandled_joints ON depends_on_unit=unhandled_joints.unit \n\
LEFT JOIN units ON depends_on_unit=units.unit \n\
WHERE unhandled_joints.unit IS NULL AND units.unit IS NULL AND dependencies.creation_date < " + db.addTime("-8 SECOND"),
function(rows){
//console.log(rows.length+" lost joints");
if (rows.length === 0)
return;
handleLostJoints(rows.map(function(row){ return row.depends_on_unit; }));
}
);
}
// onPurgedDependentJoint called for each purged dependent unit
function purgeJointAndDependencies(objJoint, error, onPurgedDependentJoint, onDone){
db.takeConnectionFromPool(function(conn){
var unit = objJoint.unit.unit;
var arrQueries = [];
conn.addQuery(arrQueries, "BEGIN");
conn.addQuery(arrQueries, "INSERT INTO known_bad_joints (unit, json, error) VALUES (?,?,?)", [unit, JSON.stringify(objJoint), error]);
conn.addQuery(arrQueries, "DELETE FROM unhandled_joints WHERE unit=?", [unit]); // if any
conn.addQuery(arrQueries, "DELETE FROM dependencies WHERE unit=?", [unit]);
collectQueriesToPurgeDependentJoints(conn, arrQueries, unit, error, onPurgedDependentJoint, function(){
conn.addQuery(arrQueries, "COMMIT");
async.series(arrQueries, function(){
conn.release();
if (onDone)
onDone();
})
});
});
}
// onPurgedDependentJoint called for each purged dependent unit
function purgeDependencies(unit, error, onPurgedDependentJoint, onDone){
db.takeConnectionFromPool(function(conn){
var arrQueries = [];
conn.addQuery(arrQueries, "BEGIN");
collectQueriesToPurgeDependentJoints(conn, arrQueries, unit, error, onPurgedDependentJoint, function(){
conn.addQuery(arrQueries, "COMMIT");
async.series(arrQueries, function(){
conn.release();
if (onDone)
onDone();
})
});
});
}
// onPurgedDependentJoint called for each purged dependent unit
function collectQueriesToPurgeDependentJoints(conn, arrQueries, unit, error, onPurgedDependentJoint, onDone){
conn.query("SELECT unit, peer FROM dependencies JOIN unhandled_joints USING(unit) WHERE depends_on_unit=?", [unit], function(rows){
if (rows.length === 0)
return onDone();
//conn.addQuery(arrQueries, "DELETE FROM dependencies WHERE depends_on_unit=?", [unit]);
var arrUnits = rows.map(function(row) { return row.unit; });
conn.addQuery(arrQueries, "INSERT "+conn.getIgnore()+" INTO known_bad_joints (unit, json, error) \n\
SELECT unit, json, ? FROM unhandled_joints WHERE unit IN(?)", [error, arrUnits]);
conn.addQuery(arrQueries, "DELETE FROM unhandled_joints WHERE unit IN(?)", [arrUnits]);
conn.addQuery(arrQueries, "DELETE FROM dependencies WHERE unit IN(?)", [arrUnits]);
async.eachSeries(
rows,
function(row, cb){
if (onPurgedDependentJoint)
onPurgedDependentJoint(row.unit, row.peer);
collectQueriesToPurgeDependentJoints(conn, arrQueries, row.unit, error, onPurgedDependentJoint, cb);
},
onDone
);
});
}
function purgeUncoveredNonserialJointsUnderLock(){
mutex.lockOrSkip(["purge_uncovered"], function(unlock){
purgeUncoveredNonserialJoints(false, unlock);
});
}
function purgeUncoveredNonserialJoints(bByExistenceOfChildren, onDone){
var cond = bByExistenceOfChildren ? "(SELECT 1 FROM parenthoods WHERE parent_unit=unit LIMIT 1) IS NULL" : "is_free=1";
var order_column = (conf.storage === 'mysql') ? 'creation_date' : 'rowid'; // this column must be indexed!
var byIndex = (bByExistenceOfChildren && conf.storage === 'sqlite') ? 'INDEXED BY bySequence' : '';
// the purged units can arrive again, no problem
db.query( // purge the bad ball if we've already received at least 7 witnesses after receiving the bad ball
"SELECT unit FROM units "+byIndex+" \n\
WHERE "+cond+" AND sequence IN('final-bad','temp-bad') AND content_hash IS NULL \n\
AND NOT EXISTS (SELECT * FROM dependencies WHERE depends_on_unit=units.unit) \n\
AND NOT EXISTS (SELECT * FROM balls WHERE balls.unit=units.unit) \n\
AND EXISTS ( \n\
SELECT DISTINCT address FROM units AS wunits CROSS JOIN unit_authors USING(unit) CROSS JOIN my_witnesses USING(address) \n\
WHERE wunits."+order_column+" > units."+order_column+" \n\
LIMIT ?,1 \n\
) \n\
/* AND NOT EXISTS (SELECT * FROM unhandled_joints) */",
// some unhandled joints may depend on the unit to be archived but it is not in dependencies because it was known when its child was received
[constants.MAJORITY_OF_WITNESSES - 1],
function(rows){
async.eachSeries(
rows,
function(row, cb){
breadcrumbs.add("--------------- archiving uncovered unit "+row.unit);
storage.readJoint(db, row.unit, {
ifNotFound: function(){
throw Error("nonserial unit not found?");
},
ifFound: function(objJoint){
db.takeConnectionFromPool(function(conn){
mutex.lock(["write"], function(unlock){
var arrQueries = [];
conn.addQuery(arrQueries, "BEGIN");
storage.generateQueriesToArchiveJoint(conn, objJoint, 'uncovered', arrQueries, function(){
conn.addQuery(arrQueries, "COMMIT");
async.series(arrQueries, function(){
unlock();
conn.release();
breadcrumbs.add("------- done archiving "+row.unit);
storage.forgetUnit(row.unit);
cb();
});
});
});
});
}
});
},
function(){
if (rows.length > 0)
return purgeUncoveredNonserialJoints(true, onDone); // to clean chains of bad units
if (!bByExistenceOfChildren)
return onDone();
// else 0 rows and bByExistenceOfChildren
db.query(
"UPDATE units SET is_free=1 WHERE is_free=0 AND main_chain_index IS NULL \n\
AND (SELECT 1 FROM parenthoods WHERE parent_unit=unit LIMIT 1) IS NULL",
function(){
onDone();
}
);
}
);
}
);
}
// handleJoint is called for every joint younger than mci
function readJointsSinceMci(mci, handleJoint, onDone){
db.query(
"SELECT units.unit FROM units LEFT JOIN archived_joints USING(unit) \n\
WHERE (is_stable=0 AND main_chain_index>=? OR main_chain_index IS NULL OR is_free=1) AND archived_joints.unit IS NULL \n\
ORDER BY +level",
[mci],
function(rows){
async.eachSeries(
rows,
function(row, cb){
storage.readJoint(db, row.unit, {
ifNotFound: function(){
// throw Error("unit "+row.unit+" not found");
breadcrumbs.add("unit "+row.unit+" not found");
cb();
},
ifFound: function(objJoint){
handleJoint(objJoint);
cb();
}
});
},
onDone
);
}
);
}
exports.checkIfNewUnit = checkIfNewUnit;
exports.checkIfNewJoint = checkIfNewJoint;
exports.saveUnhandledJointAndDependencies = saveUnhandledJointAndDependencies;
exports.removeUnhandledJointAndDependencies = removeUnhandledJointAndDependencies;
exports.readDependentJointsThatAreReady = readDependentJointsThatAreReady;
exports.findLostJoints = findLostJoints;
exports.purgeJointAndDependencies = purgeJointAndDependencies;
exports.purgeDependencies = purgeDependencies;
exports.purgeUncoveredNonserialJointsUnderLock = purgeUncoveredNonserialJointsUnderLock;
exports.readJointsSinceMci = readJointsSinceMci;