-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathSparqlStorer.ts
309 lines (288 loc) · 9.03 KB
/
SparqlStorer.ts
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
308
309
import FeedsAgent, {
Message,
} from "../scuttlesaurus/agents/feeds/FeedsAgent.ts";
import FeedsStorage from "../scuttlesaurus/storage/FeedsStorage.ts";
import { delay, FeedId, JSONValue } from "../scuttlesaurus/util.ts";
import msgToSparql, { RichMessage } from "./msgToSparql.ts";
export default class SparqlStorer implements FeedsStorage {
constructor(
public sparqlEndpointQuery: string,
public sparqlEndpointUpdate: string,
public credentials: string | undefined,
) {}
async storeMessage(
feedId: FeedId,
position: number,
msg: JSONValue,
): Promise<void> {
if (await this.messageExists(feedId, position)) {
throw new Error("A message with that feed and position already exist");
}
const insertDelete = msgToSparql(msg as RichMessage);
const sparqlStatement = `
PREFIX ssb: <ssb:ontology:>
PREFIX ssbx: <ssb:ontology:derivatives:>
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
DELETE {
${insertDelete.deleteClause}
}
INSERT {
${insertDelete.insertClause}
}
WHERE {
OPTIONAL {?x ssb:seq ${position}; ssb:author <${feedId.toUri()}>.}
FILTER (!BOUND(?x))
}`;
await this.runSparqlStatementSequential(sparqlStatement);
}
private async messageExists(
feedId: FeedId,
position: number,
): Promise<boolean> {
const query = `
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX ssb: <ssb:ontology:>
ASK {
{?x ssb:seq ${position}; ssb:author <${feedId.toUri()}>.}
}
`;
const headers: Record<string, string> = {
"Accept": "application/sparql-results+json,*/*;q=0.9",
"Content-Type": "application/sparql-query",
};
if (this.credentials) {
headers.Authorization = `Basic ${btoa(this.credentials)}`;
}
const fetchResult = fetch(this.sparqlEndpointQuery, {
headers,
"body": query,
"method": "POST",
});
const response = await fetchResult;
if (!response.ok) {
const body = await response.text();
throw new Error(`${body}`);
}
const resultJson = await response.json();
return resultJson.value;
}
async getMessage(feedId: FeedId, position: number): Promise<Message> {
const query = `
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX ssb: <ssb:ontology:>
SELECT ?raw WHERE {
{
?msg rdf:type ssb:Message;
ssb:author <${feedId.toUri()}>;
ssb:seq ${position};
ssb:raw ?raw.
}
}`;
const headers: Record<string, string> = {
"Accept": "application/sparql-results+json,*/*;q=0.9",
"Content-Type": "application/sparql-query",
};
if (this.credentials) {
headers.Authorization = `Basic ${btoa(this.credentials)}`;
}
const fetchResult = fetch(this.sparqlEndpointQuery, {
headers,
"body": query,
"method": "POST",
});
const response = await fetchResult;
if (!response.ok) {
const body = await response.text();
throw new Error(`${body}`);
}
const resultJson = await response.json();
if (resultJson.results.bindings.length === 1) {
return JSON.parse(resultJson.results.bindings[0].raw.value);
} else {
throw new Error("No such message");
}
}
async lastMessage(feedId: FeedId): Promise<number> {
const query = `
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX ssb: <ssb:ontology:>
SELECT (MAX(?seq) as ?last) WHERE {
{
?msg rdf:type ssb:Message;
ssb:author <${feedId.toUri()}>;
ssb:seq ?seq.
}
}`;
const headers: Record<string, string> = {
"Accept": "application/sparql-results+json,*/*;q=0.9",
"Content-Type": "application/sparql-query",
};
if (this.credentials) {
headers.Authorization = `Basic ${btoa(this.credentials)}`;
}
const fetchResult = fetch(this.sparqlEndpointQuery, {
headers,
"body": query,
"method": "POST",
});
const response = await fetchResult;
if (!response.ok) {
const body = await response.text();
throw new Error(`${body}`);
}
const resultJson = await response.json();
if (resultJson.results.bindings[0]?.last?.value) {
return parseInt(resultJson.results.bindings[0].last.value);
} else {
return 0;
}
}
/** stored exsting and new messages in the triple store*/
connectAgent(feedsAgent: FeedsAgent) {
const processMsg = async (msg: Message) => {
const insertDelete = msgToSparql(msg as RichMessage);
const sparqlStatement = `
PREFIX ssb: <ssb:ontology:>
PREFIX ssbx: <ssb:ontology:derivatives:>
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
INSERT DATA {
${insertDelete.insertClause}
};
DELETE DATA {
${insertDelete.deleteClause}
}
`;
try {
await this.runSparqlStatementSequential(sparqlStatement);
} catch (error) {
console.error(
`Failed inserting message with sparql, ignoring: ${error}. Stack: ${error.stack}`,
);
}
};
const processFeed = async (feedId: FeedId) => {
await delay(100);
const fromMessage = await this.firstUnrecordedMessage(feedId);
const msgFeed = feedsAgent.getFeed(feedId, {
fromMessage,
newMessages: false,
});
for await (const msg of msgFeed) {
await processMsg(msg);
//reduce the write load to increase chances that reads still suceed
await delay(100);
}
};
(async () => {
const subscriptions = [...feedsAgent.subscriptions];
try {
for (const subscription of subscriptions) {
try {
await processFeed(subscription);
} catch (e) {
console.info(`Processing subscription ${subscription}: ${e}`);
}
}
/*const promiseResults = await Promise.allSettled(
subscriptions.map(processFeed),
);
promiseResults.forEach((result, i) => {
if (result.status === "rejected") {
console.info(`Processing subscription ${subscriptions[i]}`);
}
});*/
} catch (e) {
console.error(`Processing subscriptions: ${e}`);
}
})();
feedsAgent.addNewMessageListeners((_feedId: FeedId, msg: Message) => {
processMsg(msg);
});
//feedsAgent.subscriptions.addAddListener(processFeed);
}
semaphore: Promise<unknown> = Promise.resolve();
private async runSparqlStatementSequential(sparqlStatement: string) {
while (true) {
const semaphore = this.semaphore;
try {
await semaphore;
} catch (_e) {
//this should be handled by the concurrent invoker
}
if (semaphore === this.semaphore) {
break;
}
}
this.semaphore = this.runSparqlStatement(sparqlStatement);
await this.semaphore;
}
private async runSparqlStatement(sparqlStatement: string) {
await delay(100);
const headers: Record<string, string> = {
"Accept": "text/plain,*/*;q=0.9",
"Content-Type": "application/sparql-update;charset=utf-8",
};
if (this.credentials) {
headers.Authorization = `Basic ${btoa(this.credentials)}`;
}
const response = await fetch(
this.sparqlEndpointUpdate,
{
headers,
"body": sparqlStatement,
"method": "POST",
keepalive: false,
},
);
if (!response.ok) {
const body = await response.text();
throw new Error(`${body}\n${sparqlStatement}`);
}
/* this is to avoid:
error: Uncaught (in promise) TypeError: error sending request for url (http://fuseki:3330/ds/update): connection closed before message completed
at async mainFetch (deno:ext/fetch/26_fetch.js:266:14)
*/
await response.arrayBuffer();
}
private async firstUnrecordedMessage(feedId: FeedId): Promise<number> {
const query = `
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX ssb: <ssb:ontology:>
SELECT ?next WHERE {
{
?msg rdf:type ssb:Message;
ssb:author <${feedId.toUri()}>;
ssb:seq ?seq.
}
BIND((?seq+1) AS ?next)
MINUS {
?otherMsg rdf:type ssb:Message;
ssb:author <${feedId.toUri()}>;
ssb:seq ?next.
}
} ORDER BY ASC(?seq) LIMIT 1`;
const headers: Record<string, string> = {
"Accept": "application/sparql-results+json,*/*;q=0.9",
"Content-Type": "application/sparql-query",
};
if (this.credentials) {
headers.Authorization = `Basic ${btoa(this.credentials)}`;
}
const fetchResult = fetch(this.sparqlEndpointQuery, {
headers,
"body": query,
"method": "POST",
});
const response = await fetchResult;
if (!response.ok) {
const body = await response.text();
throw new Error(`${body}`);
}
const resultJson = await response.json();
if (resultJson.results.bindings.length === 1) {
return parseInt(resultJson.results.bindings[0].next.value);
} else {
return 1;
}
}
}