@dxos/functions 0.5.3-main.979c3c1 → 0.5.3-main.a09cd97
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/lib/browser/chunk-HRU7VDYL.mjs +87 -0
- package/dist/lib/browser/chunk-HRU7VDYL.mjs.map +7 -0
- package/dist/lib/browser/index.mjs +722 -487
- package/dist/lib/browser/index.mjs.map +4 -4
- package/dist/lib/browser/meta.json +1 -1
- package/dist/lib/browser/types.mjs +14 -0
- package/dist/lib/browser/types.mjs.map +7 -0
- package/dist/lib/node/chunk-R5JUDLSN.cjs +104 -0
- package/dist/lib/node/chunk-R5JUDLSN.cjs.map +7 -0
- package/dist/lib/node/index.cjs +709 -480
- package/dist/lib/node/index.cjs.map +4 -4
- package/dist/lib/node/meta.json +1 -1
- package/dist/lib/node/types.cjs +35 -0
- package/dist/lib/node/types.cjs.map +7 -0
- package/dist/types/src/browser/index.d.ts +2 -0
- package/dist/types/src/browser/index.d.ts.map +1 -0
- package/dist/types/src/function/function-registry.d.ts +24 -0
- package/dist/types/src/function/function-registry.d.ts.map +1 -0
- package/dist/types/src/function/function-registry.test.d.ts +2 -0
- package/dist/types/src/function/function-registry.test.d.ts.map +1 -0
- package/dist/types/src/function/index.d.ts +2 -0
- package/dist/types/src/function/index.d.ts.map +1 -0
- package/dist/types/src/handler.d.ts.map +1 -1
- package/dist/types/src/index.d.ts +2 -0
- package/dist/types/src/index.d.ts.map +1 -1
- package/dist/types/src/runtime/dev-server.d.ts +7 -10
- package/dist/types/src/runtime/dev-server.d.ts.map +1 -1
- package/dist/types/src/runtime/scheduler.d.ts +11 -59
- package/dist/types/src/runtime/scheduler.d.ts.map +1 -1
- package/dist/types/src/testing/functions-integration.test.d.ts +2 -0
- package/dist/types/src/testing/functions-integration.test.d.ts.map +1 -0
- package/dist/types/src/testing/index.d.ts +4 -0
- package/dist/types/src/testing/index.d.ts.map +1 -0
- package/dist/types/src/testing/setup.d.ts +5 -0
- package/dist/types/src/testing/setup.d.ts.map +1 -0
- package/dist/types/src/testing/test/handler.d.ts +1 -0
- package/dist/types/src/testing/test/handler.d.ts.map +1 -1
- package/dist/types/src/testing/types.d.ts +9 -0
- package/dist/types/src/testing/types.d.ts.map +1 -0
- package/dist/types/src/testing/util.d.ts +3 -0
- package/dist/types/src/testing/util.d.ts.map +1 -0
- package/dist/types/src/trigger/index.d.ts +2 -0
- package/dist/types/src/trigger/index.d.ts.map +1 -0
- package/dist/types/src/trigger/trigger-registry.d.ts +40 -0
- package/dist/types/src/trigger/trigger-registry.d.ts.map +1 -0
- package/dist/types/src/trigger/trigger-registry.test.d.ts +2 -0
- package/dist/types/src/trigger/trigger-registry.test.d.ts.map +1 -0
- package/dist/types/src/trigger/type/index.d.ts +5 -0
- package/dist/types/src/trigger/type/index.d.ts.map +1 -0
- package/dist/types/src/trigger/type/subscription-trigger.d.ts +4 -0
- package/dist/types/src/trigger/type/subscription-trigger.d.ts.map +1 -0
- package/dist/types/src/trigger/type/timer-trigger.d.ts +4 -0
- package/dist/types/src/trigger/type/timer-trigger.d.ts.map +1 -0
- package/dist/types/src/trigger/type/webhook-trigger.d.ts +4 -0
- package/dist/types/src/trigger/type/webhook-trigger.d.ts.map +1 -0
- package/dist/types/src/trigger/type/websocket-trigger.d.ts +13 -0
- package/dist/types/src/trigger/type/websocket-trigger.d.ts.map +1 -0
- package/dist/types/src/types.d.ts +146 -122
- package/dist/types/src/types.d.ts.map +1 -1
- package/package.json +30 -14
- package/schema/functions.json +139 -116
- package/src/browser/index.ts +5 -0
- package/src/function/function-registry.test.ts +105 -0
- package/src/function/function-registry.ts +90 -0
- package/src/function/index.ts +5 -0
- package/src/index.ts +2 -0
- package/src/runtime/dev-server.test.ts +15 -35
- package/src/runtime/dev-server.ts +37 -20
- package/src/runtime/scheduler.test.ts +54 -75
- package/src/runtime/scheduler.ts +70 -297
- package/src/testing/functions-integration.test.ts +99 -0
- package/src/testing/index.ts +7 -0
- package/src/testing/setup.ts +45 -0
- package/src/testing/test/handler.ts +8 -2
- package/src/testing/types.ts +9 -0
- package/src/testing/util.ts +16 -0
- package/src/trigger/index.ts +5 -0
- package/src/trigger/trigger-registry.test.ts +255 -0
- package/src/trigger/trigger-registry.ts +201 -0
- package/src/trigger/type/index.ts +8 -0
- package/src/trigger/type/subscription-trigger.ts +80 -0
- package/src/trigger/type/timer-trigger.ts +44 -0
- package/src/trigger/type/webhook-trigger.ts +47 -0
- package/src/trigger/type/websocket-trigger.ts +91 -0
- package/src/types.ts +79 -53
package/schema/functions.json
CHANGED
|
@@ -1,26 +1,24 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
3
3
|
"type": "object",
|
|
4
|
-
"required": [
|
|
5
|
-
"functions"
|
|
6
|
-
],
|
|
4
|
+
"required": [],
|
|
7
5
|
"properties": {
|
|
8
6
|
"functions": {
|
|
9
7
|
"type": "array",
|
|
10
8
|
"items": {
|
|
11
9
|
"type": "object",
|
|
12
10
|
"required": [
|
|
13
|
-
"
|
|
14
|
-
"
|
|
11
|
+
"uri",
|
|
12
|
+
"route",
|
|
15
13
|
"handler"
|
|
16
14
|
],
|
|
17
15
|
"properties": {
|
|
18
|
-
"
|
|
16
|
+
"uri": {
|
|
19
17
|
"type": "string",
|
|
20
18
|
"description": "a string",
|
|
21
19
|
"title": "string"
|
|
22
20
|
},
|
|
23
|
-
"
|
|
21
|
+
"route": {
|
|
24
22
|
"type": "string",
|
|
25
23
|
"description": "a string",
|
|
26
24
|
"title": "string"
|
|
@@ -44,140 +42,165 @@
|
|
|
44
42
|
"items": {
|
|
45
43
|
"type": "object",
|
|
46
44
|
"required": [
|
|
47
|
-
"function"
|
|
45
|
+
"function",
|
|
46
|
+
"spec"
|
|
48
47
|
],
|
|
49
48
|
"properties": {
|
|
50
49
|
"function": {
|
|
51
50
|
"type": "string",
|
|
52
|
-
"description": "Function
|
|
51
|
+
"description": "Function URI.",
|
|
53
52
|
"title": "string"
|
|
54
53
|
},
|
|
55
54
|
"meta": {
|
|
56
|
-
"
|
|
57
|
-
"required": [],
|
|
58
|
-
"properties": {},
|
|
59
|
-
"additionalProperties": {
|
|
60
|
-
"$id": "/schemas/any",
|
|
61
|
-
"title": "any"
|
|
62
|
-
}
|
|
55
|
+
"$ref": "#/$defs/object"
|
|
63
56
|
},
|
|
64
|
-
"
|
|
65
|
-
"
|
|
66
|
-
|
|
67
|
-
"cron"
|
|
68
|
-
],
|
|
69
|
-
"properties": {
|
|
70
|
-
"cron": {
|
|
71
|
-
"type": "string",
|
|
72
|
-
"description": "a string",
|
|
73
|
-
"title": "string"
|
|
74
|
-
}
|
|
75
|
-
},
|
|
76
|
-
"additionalProperties": false
|
|
77
|
-
},
|
|
78
|
-
"webhook": {
|
|
79
|
-
"type": "object",
|
|
80
|
-
"required": [
|
|
81
|
-
"method"
|
|
82
|
-
],
|
|
83
|
-
"properties": {
|
|
84
|
-
"method": {
|
|
85
|
-
"type": "string",
|
|
86
|
-
"description": "a string",
|
|
87
|
-
"title": "string"
|
|
88
|
-
},
|
|
89
|
-
"port": {
|
|
90
|
-
"type": "number",
|
|
91
|
-
"description": "a number",
|
|
92
|
-
"title": "number"
|
|
93
|
-
}
|
|
94
|
-
},
|
|
95
|
-
"additionalProperties": false
|
|
96
|
-
},
|
|
97
|
-
"websocket": {
|
|
98
|
-
"type": "object",
|
|
99
|
-
"required": [
|
|
100
|
-
"url"
|
|
101
|
-
],
|
|
102
|
-
"properties": {
|
|
103
|
-
"url": {
|
|
104
|
-
"type": "string",
|
|
105
|
-
"description": "a string",
|
|
106
|
-
"title": "string"
|
|
107
|
-
},
|
|
108
|
-
"init": {
|
|
57
|
+
"spec": {
|
|
58
|
+
"anyOf": [
|
|
59
|
+
{
|
|
109
60
|
"type": "object",
|
|
110
|
-
"required": [
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
},
|
|
118
|
-
"additionalProperties": false
|
|
119
|
-
},
|
|
120
|
-
"subscription": {
|
|
121
|
-
"type": "object",
|
|
122
|
-
"required": [
|
|
123
|
-
"filter"
|
|
124
|
-
],
|
|
125
|
-
"properties": {
|
|
126
|
-
"spaceKey": {
|
|
127
|
-
"type": "string",
|
|
128
|
-
"description": "a string",
|
|
129
|
-
"title": "string"
|
|
130
|
-
},
|
|
131
|
-
"filter": {
|
|
132
|
-
"type": "array",
|
|
133
|
-
"items": {
|
|
134
|
-
"type": "object",
|
|
135
|
-
"required": [
|
|
136
|
-
"type"
|
|
137
|
-
],
|
|
138
|
-
"properties": {
|
|
139
|
-
"type": {
|
|
140
|
-
"type": "string",
|
|
141
|
-
"description": "a string",
|
|
142
|
-
"title": "string"
|
|
143
|
-
},
|
|
144
|
-
"props": {
|
|
145
|
-
"type": "object",
|
|
146
|
-
"required": [],
|
|
147
|
-
"properties": {},
|
|
148
|
-
"additionalProperties": {
|
|
149
|
-
"$id": "/schemas/any",
|
|
150
|
-
"title": "any"
|
|
151
|
-
}
|
|
152
|
-
}
|
|
61
|
+
"required": [
|
|
62
|
+
"type",
|
|
63
|
+
"cron"
|
|
64
|
+
],
|
|
65
|
+
"properties": {
|
|
66
|
+
"type": {
|
|
67
|
+
"const": "timer"
|
|
153
68
|
},
|
|
154
|
-
"
|
|
155
|
-
|
|
69
|
+
"cron": {
|
|
70
|
+
"type": "string",
|
|
71
|
+
"description": "a string",
|
|
72
|
+
"title": "string"
|
|
73
|
+
}
|
|
74
|
+
},
|
|
75
|
+
"additionalProperties": false
|
|
156
76
|
},
|
|
157
|
-
|
|
77
|
+
{
|
|
158
78
|
"type": "object",
|
|
159
|
-
"required": [
|
|
79
|
+
"required": [
|
|
80
|
+
"type",
|
|
81
|
+
"method"
|
|
82
|
+
],
|
|
160
83
|
"properties": {
|
|
161
|
-
"
|
|
162
|
-
"
|
|
163
|
-
|
|
164
|
-
|
|
84
|
+
"type": {
|
|
85
|
+
"const": "webhook"
|
|
86
|
+
},
|
|
87
|
+
"method": {
|
|
88
|
+
"type": "string",
|
|
89
|
+
"description": "a string",
|
|
90
|
+
"title": "string"
|
|
165
91
|
},
|
|
166
|
-
"
|
|
92
|
+
"port": {
|
|
167
93
|
"type": "number",
|
|
168
94
|
"description": "a number",
|
|
169
95
|
"title": "number"
|
|
170
96
|
}
|
|
171
97
|
},
|
|
172
98
|
"additionalProperties": false
|
|
99
|
+
},
|
|
100
|
+
{
|
|
101
|
+
"type": "object",
|
|
102
|
+
"required": [
|
|
103
|
+
"type",
|
|
104
|
+
"url"
|
|
105
|
+
],
|
|
106
|
+
"properties": {
|
|
107
|
+
"type": {
|
|
108
|
+
"const": "websocket"
|
|
109
|
+
},
|
|
110
|
+
"url": {
|
|
111
|
+
"type": "string",
|
|
112
|
+
"description": "a string",
|
|
113
|
+
"title": "string"
|
|
114
|
+
},
|
|
115
|
+
"init": {
|
|
116
|
+
"type": "object",
|
|
117
|
+
"required": [],
|
|
118
|
+
"properties": {},
|
|
119
|
+
"additionalProperties": {
|
|
120
|
+
"$id": "/schemas/any",
|
|
121
|
+
"title": "any"
|
|
122
|
+
}
|
|
123
|
+
}
|
|
124
|
+
},
|
|
125
|
+
"additionalProperties": false
|
|
126
|
+
},
|
|
127
|
+
{
|
|
128
|
+
"type": "object",
|
|
129
|
+
"required": [
|
|
130
|
+
"type",
|
|
131
|
+
"filter"
|
|
132
|
+
],
|
|
133
|
+
"properties": {
|
|
134
|
+
"type": {
|
|
135
|
+
"const": "subscription"
|
|
136
|
+
},
|
|
137
|
+
"filter": {
|
|
138
|
+
"type": "array",
|
|
139
|
+
"items": {
|
|
140
|
+
"type": "object",
|
|
141
|
+
"required": [
|
|
142
|
+
"type"
|
|
143
|
+
],
|
|
144
|
+
"properties": {
|
|
145
|
+
"type": {
|
|
146
|
+
"type": "string",
|
|
147
|
+
"description": "a string",
|
|
148
|
+
"title": "string"
|
|
149
|
+
},
|
|
150
|
+
"props": {
|
|
151
|
+
"type": "object",
|
|
152
|
+
"required": [],
|
|
153
|
+
"properties": {},
|
|
154
|
+
"additionalProperties": {
|
|
155
|
+
"$id": "/schemas/any",
|
|
156
|
+
"title": "any"
|
|
157
|
+
}
|
|
158
|
+
}
|
|
159
|
+
},
|
|
160
|
+
"additionalProperties": false
|
|
161
|
+
}
|
|
162
|
+
},
|
|
163
|
+
"options": {
|
|
164
|
+
"type": "object",
|
|
165
|
+
"required": [],
|
|
166
|
+
"properties": {
|
|
167
|
+
"deep": {
|
|
168
|
+
"type": "boolean",
|
|
169
|
+
"description": "a boolean",
|
|
170
|
+
"title": "boolean"
|
|
171
|
+
},
|
|
172
|
+
"delay": {
|
|
173
|
+
"type": "number",
|
|
174
|
+
"description": "a number",
|
|
175
|
+
"title": "number"
|
|
176
|
+
}
|
|
177
|
+
},
|
|
178
|
+
"additionalProperties": false
|
|
179
|
+
}
|
|
180
|
+
},
|
|
181
|
+
"additionalProperties": false
|
|
173
182
|
}
|
|
174
|
-
|
|
175
|
-
"additionalProperties": false
|
|
183
|
+
]
|
|
176
184
|
}
|
|
177
185
|
},
|
|
178
186
|
"additionalProperties": false
|
|
179
187
|
}
|
|
180
188
|
}
|
|
181
189
|
},
|
|
182
|
-
"additionalProperties": false
|
|
190
|
+
"additionalProperties": false,
|
|
191
|
+
"$defs": {
|
|
192
|
+
"object": {
|
|
193
|
+
"$id": "/schemas/object",
|
|
194
|
+
"oneOf": [
|
|
195
|
+
{
|
|
196
|
+
"type": "object"
|
|
197
|
+
},
|
|
198
|
+
{
|
|
199
|
+
"type": "array"
|
|
200
|
+
}
|
|
201
|
+
],
|
|
202
|
+
"description": "an object in the TypeScript meaning, i.e. the `object` type",
|
|
203
|
+
"title": "object"
|
|
204
|
+
}
|
|
205
|
+
}
|
|
183
206
|
}
|
|
@@ -0,0 +1,105 @@
|
|
|
1
|
+
//
|
|
2
|
+
// Copyright 2023 DXOS.org
|
|
3
|
+
//
|
|
4
|
+
|
|
5
|
+
import { expect } from 'chai';
|
|
6
|
+
|
|
7
|
+
import { Trigger } from '@dxos/async';
|
|
8
|
+
import { type Client } from '@dxos/client';
|
|
9
|
+
import { TestBuilder } from '@dxos/client/testing';
|
|
10
|
+
import { Context } from '@dxos/context';
|
|
11
|
+
import { Filter } from '@dxos/echo-db';
|
|
12
|
+
import { create } from '@dxos/echo-schema';
|
|
13
|
+
import { describe, test } from '@dxos/test';
|
|
14
|
+
import { range } from '@dxos/util';
|
|
15
|
+
|
|
16
|
+
import { FunctionRegistry } from './function-registry';
|
|
17
|
+
import { createInitializedClients } from '../testing';
|
|
18
|
+
import { FunctionDef, type FunctionManifest } from '../types';
|
|
19
|
+
|
|
20
|
+
const testManifest: FunctionManifest = {
|
|
21
|
+
functions: [
|
|
22
|
+
{
|
|
23
|
+
uri: 'dxos.functions.test/hello',
|
|
24
|
+
route: '/hello',
|
|
25
|
+
handler: 'test',
|
|
26
|
+
},
|
|
27
|
+
],
|
|
28
|
+
};
|
|
29
|
+
|
|
30
|
+
describe('function registry', () => {
|
|
31
|
+
let ctx: Context;
|
|
32
|
+
let testBuilder: TestBuilder;
|
|
33
|
+
beforeEach(async () => {
|
|
34
|
+
ctx = new Context();
|
|
35
|
+
testBuilder = new TestBuilder();
|
|
36
|
+
});
|
|
37
|
+
afterEach(async () => {
|
|
38
|
+
await ctx.dispose();
|
|
39
|
+
await testBuilder.destroy();
|
|
40
|
+
});
|
|
41
|
+
|
|
42
|
+
describe('register', () => {
|
|
43
|
+
test('creates new functions', async () => {
|
|
44
|
+
const client = (await createInitializedClients(testBuilder))[0];
|
|
45
|
+
const registry = createRegistry(client);
|
|
46
|
+
const space = await client.spaces.create();
|
|
47
|
+
await registry.register(space, testManifest.functions);
|
|
48
|
+
const { objects: definitions } = await space.db.query(Filter.schema(FunctionDef)).run();
|
|
49
|
+
expect(definitions.length).to.eq(1);
|
|
50
|
+
expect(definitions[0].uri).to.eq(testManifest.functions?.[0]?.uri);
|
|
51
|
+
});
|
|
52
|
+
|
|
53
|
+
test('de-duplicates by function URI', async () => {
|
|
54
|
+
const client = (await createInitializedClients(testBuilder))[0];
|
|
55
|
+
const registry = createRegistry(client);
|
|
56
|
+
const space = await client.spaces.create();
|
|
57
|
+
const existing = space.db.add(create(FunctionDef, testManifest.functions![0]));
|
|
58
|
+
await registry.register(space, testManifest.functions);
|
|
59
|
+
const { objects: definitions } = await space.db.query(Filter.schema(FunctionDef)).run();
|
|
60
|
+
expect(definitions.length).to.eq(1);
|
|
61
|
+
expect(definitions[0].uri).to.eq(existing.uri);
|
|
62
|
+
});
|
|
63
|
+
});
|
|
64
|
+
|
|
65
|
+
describe('onFunctionsRegistered', () => {
|
|
66
|
+
test('called with all registered when opened', async () => {
|
|
67
|
+
const client = (await createInitializedClients(testBuilder))[0];
|
|
68
|
+
const registry = createRegistry(client);
|
|
69
|
+
const space = await client.spaces.create();
|
|
70
|
+
const definitions = range(3, () => create(FunctionDef, testManifest.functions![0]));
|
|
71
|
+
definitions.forEach((def) => space.db.add(def));
|
|
72
|
+
|
|
73
|
+
const functionRegistered = new Trigger<FunctionDef[]>();
|
|
74
|
+
registry.registered.on((fn) => {
|
|
75
|
+
functionRegistered.wake(fn.added);
|
|
76
|
+
});
|
|
77
|
+
void registry.open(ctx);
|
|
78
|
+
const functions = await functionRegistered.wait();
|
|
79
|
+
const expected = definitions.map((def) => def.uri).sort();
|
|
80
|
+
expect(functions.map((fn) => fn.uri).sort()).to.deep.eq(expected);
|
|
81
|
+
});
|
|
82
|
+
|
|
83
|
+
test('called when a new functions is added', async () => {
|
|
84
|
+
const client = (await createInitializedClients(testBuilder))[0];
|
|
85
|
+
const registry = createRegistry(client);
|
|
86
|
+
const space = await client.spaces.create();
|
|
87
|
+
|
|
88
|
+
const functionRegistered = new Trigger<FunctionDef>();
|
|
89
|
+
registry.registered.on((fn) => {
|
|
90
|
+
expect(fn.added.length).to.eq(1);
|
|
91
|
+
functionRegistered.wake(fn.added[0]);
|
|
92
|
+
});
|
|
93
|
+
await registry.open(ctx);
|
|
94
|
+
await registry.register(space, testManifest.functions);
|
|
95
|
+
const registered = await functionRegistered.wait();
|
|
96
|
+
expect(registered.uri).to.eq(testManifest.functions![0].uri);
|
|
97
|
+
});
|
|
98
|
+
});
|
|
99
|
+
|
|
100
|
+
const createRegistry = (client: Client) => {
|
|
101
|
+
const registry = new FunctionRegistry(client);
|
|
102
|
+
ctx.onDispose(() => registry.close());
|
|
103
|
+
return registry;
|
|
104
|
+
};
|
|
105
|
+
});
|
|
@@ -0,0 +1,90 @@
|
|
|
1
|
+
//
|
|
2
|
+
// Copyright 2024 DXOS.org
|
|
3
|
+
//
|
|
4
|
+
|
|
5
|
+
import { Event } from '@dxos/async';
|
|
6
|
+
import { type Client } from '@dxos/client';
|
|
7
|
+
import { create, Filter, type Space } from '@dxos/client/echo';
|
|
8
|
+
import { type Context, Resource } from '@dxos/context';
|
|
9
|
+
import { PublicKey } from '@dxos/keys';
|
|
10
|
+
import { log } from '@dxos/log';
|
|
11
|
+
import { ComplexMap, diff } from '@dxos/util';
|
|
12
|
+
|
|
13
|
+
import { FunctionDef, type FunctionManifest } from '../types';
|
|
14
|
+
|
|
15
|
+
export type FunctionsRegisteredEvent = {
|
|
16
|
+
space: Space;
|
|
17
|
+
added: FunctionDef[];
|
|
18
|
+
};
|
|
19
|
+
|
|
20
|
+
export class FunctionRegistry extends Resource {
|
|
21
|
+
private readonly _functionBySpaceKey = new ComplexMap<PublicKey, FunctionDef[]>(PublicKey.hash);
|
|
22
|
+
|
|
23
|
+
public readonly registered = new Event<FunctionsRegisteredEvent>();
|
|
24
|
+
|
|
25
|
+
constructor(private readonly _client: Client) {
|
|
26
|
+
super();
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
public getFunctions(space: Space): FunctionDef[] {
|
|
30
|
+
return this._functionBySpaceKey.get(space.key) ?? [];
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
/**
|
|
34
|
+
* Loads function definitions from the manifest into the space.
|
|
35
|
+
* We first load all the definitions from the space to deduplicate by functionId.
|
|
36
|
+
*/
|
|
37
|
+
public async register(space: Space, functions: FunctionManifest['functions']): Promise<void> {
|
|
38
|
+
log('register', { space: space.key, functions: functions?.length ?? 0 });
|
|
39
|
+
if (!functions?.length) {
|
|
40
|
+
return;
|
|
41
|
+
}
|
|
42
|
+
if (!space.db.graph.runtimeSchemaRegistry.hasSchema(FunctionDef)) {
|
|
43
|
+
space.db.graph.runtimeSchemaRegistry.registerSchema(FunctionDef);
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
// Sync definitions.
|
|
47
|
+
const { objects: existing } = await space.db.query(Filter.schema(FunctionDef)).run();
|
|
48
|
+
const { added } = diff(existing, functions, (a, b) => a.uri === b.uri);
|
|
49
|
+
// TODO(burdon): Update existing templates.
|
|
50
|
+
added.forEach((def) => space.db.add(create(FunctionDef, def)));
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
protected override async _open(): Promise<void> {
|
|
54
|
+
log.info('opening...');
|
|
55
|
+
const spacesSubscription = this._client.spaces.subscribe(async (spaces) => {
|
|
56
|
+
for (const space of spaces) {
|
|
57
|
+
if (this._functionBySpaceKey.has(space.key)) {
|
|
58
|
+
continue;
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
const registered: FunctionDef[] = [];
|
|
62
|
+
this._functionBySpaceKey.set(space.key, registered);
|
|
63
|
+
await space.waitUntilReady();
|
|
64
|
+
if (this._ctx.disposed) {
|
|
65
|
+
break;
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
// Subscribe to updates.
|
|
69
|
+
this._ctx.onDispose(
|
|
70
|
+
space.db.query(Filter.schema(FunctionDef)).subscribe(({ objects }) => {
|
|
71
|
+
const { added } = diff(registered, objects, (a, b) => a.uri === b.uri);
|
|
72
|
+
// TODO(burdon): Update and remove.
|
|
73
|
+
if (added.length > 0) {
|
|
74
|
+
registered.push(...added);
|
|
75
|
+
this.registered.emit({ space, added });
|
|
76
|
+
}
|
|
77
|
+
}),
|
|
78
|
+
);
|
|
79
|
+
}
|
|
80
|
+
});
|
|
81
|
+
|
|
82
|
+
// TODO(burdon): API: Normalize unsubscribe methods.
|
|
83
|
+
this._ctx.onDispose(() => spacesSubscription.unsubscribe());
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
protected override async _close(_: Context): Promise<void> {
|
|
87
|
+
log.info('closing...');
|
|
88
|
+
this._functionBySpaceKey.clear();
|
|
89
|
+
}
|
|
90
|
+
}
|
package/src/index.ts
CHANGED
|
@@ -5,12 +5,14 @@
|
|
|
5
5
|
import { expect } from 'chai';
|
|
6
6
|
import path from 'path';
|
|
7
7
|
|
|
8
|
-
import {
|
|
9
|
-
import { Client
|
|
8
|
+
import { waitForCondition } from '@dxos/async';
|
|
9
|
+
import { type Client } from '@dxos/client';
|
|
10
10
|
import { TestBuilder } from '@dxos/client/testing';
|
|
11
|
-
import { describe,
|
|
11
|
+
import { describe, test } from '@dxos/test';
|
|
12
12
|
|
|
13
13
|
import { DevServer } from './dev-server';
|
|
14
|
+
import { FunctionRegistry } from '../function';
|
|
15
|
+
import { createFunctionRuntime } from '../testing';
|
|
14
16
|
import { type FunctionManifest } from '../types';
|
|
15
17
|
|
|
16
18
|
describe('dev server', () => {
|
|
@@ -18,35 +20,10 @@ describe('dev server', () => {
|
|
|
18
20
|
let testBuilder: TestBuilder;
|
|
19
21
|
before(async () => {
|
|
20
22
|
testBuilder = new TestBuilder();
|
|
21
|
-
|
|
22
|
-
runtime: {
|
|
23
|
-
agent: {
|
|
24
|
-
plugins: [
|
|
25
|
-
{
|
|
26
|
-
id: 'dxos.org/agent/plugin/functions',
|
|
27
|
-
config: {
|
|
28
|
-
port: 8080,
|
|
29
|
-
},
|
|
30
|
-
},
|
|
31
|
-
],
|
|
32
|
-
},
|
|
33
|
-
},
|
|
34
|
-
});
|
|
35
|
-
|
|
36
|
-
const services = testBuilder.createLocalClientServices();
|
|
37
|
-
client = new Client({ config, services });
|
|
38
|
-
|
|
39
|
-
await client.initialize();
|
|
40
|
-
await client.halo.createIdentity();
|
|
41
|
-
testBuilder.ctx.onDispose(() => client.destroy());
|
|
42
|
-
|
|
43
|
-
// TODO(burdon): Better way to configure plugin? (Rationalize chess.test).
|
|
44
|
-
const functionsPlugin = new FunctionsPlugin();
|
|
45
|
-
await functionsPlugin.initialize({ client, clientServices: services });
|
|
46
|
-
await openAndClose(functionsPlugin);
|
|
47
|
-
|
|
23
|
+
client = await createFunctionRuntime(testBuilder);
|
|
48
24
|
expect(client.services.services.FunctionRegistryService).to.exist;
|
|
49
25
|
});
|
|
26
|
+
|
|
50
27
|
after(async () => {
|
|
51
28
|
await testBuilder.destroy();
|
|
52
29
|
});
|
|
@@ -55,18 +32,19 @@ describe('dev server', () => {
|
|
|
55
32
|
const manifest: FunctionManifest = {
|
|
56
33
|
functions: [
|
|
57
34
|
{
|
|
58
|
-
|
|
59
|
-
|
|
35
|
+
uri: 'example.com/function/test',
|
|
36
|
+
route: 'test',
|
|
60
37
|
handler: 'test',
|
|
61
38
|
},
|
|
62
39
|
],
|
|
63
40
|
};
|
|
64
41
|
|
|
65
|
-
const
|
|
66
|
-
|
|
42
|
+
const registry = new FunctionRegistry(client);
|
|
43
|
+
const server = new DevServer(client, registry, {
|
|
67
44
|
baseDir: path.join(__dirname, '../testing'),
|
|
68
45
|
});
|
|
69
|
-
await
|
|
46
|
+
const space = await client.spaces.create();
|
|
47
|
+
await registry.register(space, manifest.functions);
|
|
70
48
|
await server.start();
|
|
71
49
|
|
|
72
50
|
// TODO(burdon): Doesn't shut down cleanly.
|
|
@@ -74,6 +52,8 @@ describe('dev server', () => {
|
|
|
74
52
|
testBuilder.ctx.onDispose(() => server.stop());
|
|
75
53
|
expect(server).to.exist;
|
|
76
54
|
|
|
55
|
+
await waitForCondition({ condition: () => server.functions.length > 0 });
|
|
56
|
+
|
|
77
57
|
await server.invoke('test', {});
|
|
78
58
|
expect(server.stats.seq).to.eq(1);
|
|
79
59
|
});
|