-
Notifications
You must be signed in to change notification settings - Fork 0
/
rad.js
199 lines (177 loc) · 7.25 KB
/
rad.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
;(function(){ // RAD
console.log("Warning: Experimental rewrite of RAD to use Book. It is not API compatible with RAD yet and is very alpha.");
var sT = setTimeout, Book = sT.Book || require('gun/src/book'), RAD = sT.RAD || (sT.RAD = function(opt){
opt = opt || {};
opt.file = String(opt.file || 'radata');
var log = opt.log || console.log
var has = (sT.RAD.has || (sT.RAD.has = {}))[opt.file];
if(has){ return has } // TODO: BUG? Not reuses same instance?
var r = function rad(word, is, reply){ r.word = word;
if(!b){ start(word, is, reply); return r }
if(is === undefined || 'function' == typeof is){ // THIS IS A READ:
var page = b.page(word);
if(page.from){ return is && is(page, null), r }
return read(word, is, page), r; // get from disk
}
//console.log("OFF");return;
// ON WRITE:
// batch until read from disk is done (and if a write was going, do that first)
//if(!valid(word, is, reply)){ return }
b(word, is);
write(word, reply);
return r;
}, /** @param b the book */ b;
r.then = function(cb, p){ return p = (new Promise(function(yes, no){ r(r.word, yes) })), cb? p.then(cb) : p }
r.read = r.results = function(cb){ return (new Promise(async function(yes, no){ yes((await r(r.word)).read(cb)) })) }
async function read(word, reply, page){ // TODO: this function doesn't do much, inline it???
if(!reply){ return }
var p = page || b.page(word);
get(p, function(err, disk){
if(err){ log("ERR! in read() get() cb", err); reply(p.no, err); return }
p.from = disk || p.from;
reply(p, null, b);
})
}
function write(word, reply){
var p = b.page(word), tmp;
if(tmp=p.saving){(reply||!tmp.length)&&(p.saving=tmp.concat(reply));return} // TODO: PERF! Rogowski points out concat is slow. BUG??? I HAVE NO clue how/why this if statement being called from recursion yet not set to 0.
p.saving = ('function' == typeof reply)? [reply] : reply || [];
get(p, function(err, disk){
if(err){ log("ERR! in write() get() cb ", err); return } // TODO: BUG!!! Unhandled, no callbacks called.
p.from = disk || p.from;
tmp = p.saving; p.saving = [];
put(p, ''+p, function(err, ok){
sT.each(tmp, function(cb){ cb && cb(err, ok) });
tmp = p.saving; p.saving = 0;
if(tmp.length){ write(word, tmp) }
});
}, p);
}
function put(file, data, cb){
put[file = fname(file)] = { data: data };
RAD.put(file, data, function(err, ok){
delete put[file];
cb && cb(err, ok);
}, opt);
};
function get(file, cb){
var tmp;
if(!file){ return } // TODO: HANDLE ERROR!!
if(file.from){ cb(null, file.from); return }
if(b&&1==b.list.length){ file.first = (file.first < '!')? file.first : '!'; } // TODO: BUG!!!! This cleanly makes for a common first file, but SAVING INVISIBLE ASCII KEYS IS COMPLETELY UNTESTED and guaranteed to have bugs/corruption issues.
if(tmp = put[file = fname(file)]){ cb(u, tmp.data); return }
if(tmp = get[file]){ tmp.push(cb); return } get[file] = [cb];
RAD.get(file, function(err, data){
tmp = get[file]||''; delete get[file];
sT.each(tmp, function(cb){ cb && cb(err, data) });
}, opt);
};
function start(word, is, reply){
if(b){ r(word, is, reply); return }
get(' ', function(err, d){
if(err){ log('ERR! in start() get()', err); reply && reply(err); return }
if(b){ r(word, is, reply); return }
b = r.book = Book();
if((d = Book.slot(d)).length){ b.list = d } // TODO: BUG! Add some other sort of corrupted/error check here?
watch(b).parse = function(t){ return ('string' == typeof t)? Book.decode(Book.slot(t)[0]) : t } // TODO: This was ugly temporary, but is necessary, and is logically correct, but is there a cleaner, nicer, less assumptiony way to do it? // TODO: SOLUTION?! I think this needs to be in Book, not RAD.
r(word, is, reply);
})
}
function watch(b){ // SPLIT LOGIC!
var split = b.split;
b.list.toString = function(){
//console.time();
var i = -1, t = '', p; while (p = this[++i]){
t += "|" +"`"+Book.encode(p.substring())+"`"+Book.encode(p.meta||null)+"`"
}
t += "|";
//console.timeEnd();
return t;
}
b.split = function(next, page){
put(' ', '' + b.list, function(err, ok){
if(err){ console.log("ERR!"); return }
// ??
});
}
return b;
}
function ename(t){ return encodeURIComponent(t).replace(/\*/g, '%2A').slice(0, 250) }
//function fname(p){ return opt.file + '/' + ename(p.substring()) }
function fname(p){ return ename(p.substring()) }
function valid(word, is, reply){
if(is !== is){ reply(word +" cannot be NaN!"); return }
return true;
}
return r;
}), MAX = 1000/* 300000000 */;
sT.each = sT.each || function(l,f){l.forEach(f)};
try { module.exports = RAD } catch (e){ }
/*
// junk below that needs to be cleaned up and corrected for the actual correct RAD API.
var env = {}, nope = function(){ }, nah = function(){ return nope }, u;
env.require = (typeof require !== '' + u && require) || nope;
env.process = (typeof process != '' + u && process) || { memoryUsage: nah };
env.os = env.require('os') || { totalmem: nope, freemem: nope };
env.v8 = env.require('v8') || { getHeapStatistics: nah };
env.fs = env.require('fs') || { writeFile: nope, readFile: nope };
env.max = env.v8.getHeapStatistics().total_available_size / (2 ** 12);
env.count = env.last = 0;
return;
//if(err && 'ENOENT' === (err.code||'').toUpperCase()){ err = null }
setInterval(function(){
var stats = { memory: {} };
stats.memory.total = env.os.totalmem() / 1024 / 1024; // in MB
stats.memory.free = env.os.freemem() / 1024 / 1024; // in MB
stats.memory.hused = env.v8.getHeapStatistics().used_heap_size / 1024 / 1024; // in MB
stats.memory.used = env.process.memoryUsage().rss / 1024 / 1024; // in MB
console.log(stats.memory);
}, 9);
*/
}());
; (function(){ // temporary fs storage plugin, needs to be refactored to use the actual RAD plugin interface.
var fs;
try { fs = require('fs') } catch (e){ };
if(!fs){ return }
var sT = setTimeout, RAD = sT.RAD;
RAD.put = function(file, data, cb, opt){
fs.writeFile(opt.file+'/'+file, data, cb);
}
RAD.get = function(file, cb, opt){
fs.readFile(opt.file+'/'+file, function(err, data){
if(err && 'ENOENT' === (err.code||'').toUpperCase()){ return cb() }
cb(err, (data||'').toString()||data);
});
}
}());
;(function(){ // temporary fs storage plugin, needs to be refactored to use the actual RAD plugin interface.
var lS;
try { lS = localStorage } catch (e){ };
if(!lS){ return }
var sT = setTimeout, RAD = sT.RAD;
RAD.put = function(file, data, cb, opt){
setTimeout(function(){
lS[opt.file+'/'+file] = data;
cb(null, 1);
},1);
}
RAD.get = function(file, cb, opt){
setTimeout(function(){
cb(null, lS[opt.file+'/'+file]);
},1);
}
}());
;(function(){ return;
var get;
try { get = fetch } catch (e){ console.log("WARNING! need `npm install node-fetch@2.6`"); get = fetch = require('node-fetch') };
if(!get){ return }
var sT = setTimeout, RAD = sT.RAD, put = RAD.put, get = RAD.get;
RAD.put = function(file, data, cb, opt){ put && put(file, data, cb, opt);
cb(401)
}
RAD.get = async function(file, cb, opt){ get && get(file, cb, opt);
var t = (await (await fetch('http://localhost:8765/gun/authorsData/'+file)).text());
if('404' == t){ cb(); return }
cb(null, t);
}
}());