@hyperscale0/hsx 1.0.0-rc.1 → 2.0.0

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.
Files changed (188) hide show
  1. package/CHANGELOG.md +32 -4
  2. package/README.md +58 -36
  3. package/bin/hsx.ts +2 -0
  4. package/dist/bin/hsx.js +2 -0
  5. package/dist/bin/hsx.js.map +1 -1
  6. package/dist/src/ast.d.ts +10 -2
  7. package/dist/src/ast.d.ts.map +1 -1
  8. package/dist/src/ast.js +24 -0
  9. package/dist/src/ast.js.map +1 -1
  10. package/dist/src/cli.d.ts +3 -1
  11. package/dist/src/cli.d.ts.map +1 -1
  12. package/dist/src/cli.js +25 -5
  13. package/dist/src/cli.js.map +1 -1
  14. package/dist/src/compile.d.ts +9 -5
  15. package/dist/src/compile.d.ts.map +1 -1
  16. package/dist/src/compile.js +9 -3
  17. package/dist/src/compile.js.map +1 -1
  18. package/dist/src/cost.d.ts +3 -1
  19. package/dist/src/cost.d.ts.map +1 -1
  20. package/dist/src/cost.js +124 -94
  21. package/dist/src/cost.js.map +1 -1
  22. package/dist/src/diagnostics.d.ts.map +1 -1
  23. package/dist/src/diagnostics.js +89 -5
  24. package/dist/src/diagnostics.js.map +1 -1
  25. package/dist/src/emit.d.ts +4 -3
  26. package/dist/src/emit.d.ts.map +1 -1
  27. package/dist/src/emit.js +28 -233
  28. package/dist/src/emit.js.map +1 -1
  29. package/dist/src/format.js.map +1 -1
  30. package/dist/src/index.d.ts +4 -3
  31. package/dist/src/index.d.ts.map +1 -1
  32. package/dist/src/index.js +3 -1
  33. package/dist/src/index.js.map +1 -1
  34. package/dist/src/ir.d.ts.map +1 -1
  35. package/dist/src/lex.d.ts.map +1 -1
  36. package/dist/src/lsp/server.d.ts +32 -0
  37. package/dist/src/lsp/server.d.ts.map +1 -0
  38. package/dist/src/lsp/server.js +391 -0
  39. package/dist/src/lsp/server.js.map +1 -0
  40. package/dist/src/modules.d.ts +2 -0
  41. package/dist/src/modules.d.ts.map +1 -1
  42. package/dist/src/modules.js +14 -14
  43. package/dist/src/modules.js.map +1 -1
  44. package/dist/src/parse.js +3 -3
  45. package/dist/src/parse.js.map +1 -1
  46. package/dist/src/std-bundle.d.ts +2 -0
  47. package/dist/src/std-bundle.d.ts.map +1 -0
  48. package/dist/src/std-bundle.js +88 -0
  49. package/dist/src/std-bundle.js.map +1 -0
  50. package/dist/src/std-library.d.ts +5 -0
  51. package/dist/src/std-library.d.ts.map +1 -0
  52. package/dist/src/std-library.js +9 -0
  53. package/dist/src/std-library.js.map +1 -0
  54. package/dist/src/typecheck.d.ts.map +1 -1
  55. package/dist/src/typecheck.js +859 -156
  56. package/dist/src/typecheck.js.map +1 -1
  57. package/dist/src/version.d.ts +1 -1
  58. package/dist/src/version.d.ts.map +1 -1
  59. package/dist/src/version.js +1 -1
  60. package/dist/src/version.js.map +1 -1
  61. package/docs/README.md +12 -0
  62. package/docs/assets/hsx.svg +18 -0
  63. package/docs/guide/01-first-program.md +2 -2
  64. package/docs/guide/02-money.md +1 -1
  65. package/docs/guide/03-instruments.md +44 -3
  66. package/docs/guide/04-lifecycles.md +18 -3
  67. package/docs/guide/05-fees-and-splits.md +2 -2
  68. package/docs/guide/06-schedules.md +1 -1
  69. package/docs/guide/07-composition.md +8 -2
  70. package/docs/guide/08-writing-a-module.md +13 -2
  71. package/docs/guide/09-cost.md +3 -3
  72. package/docs/guide/10-diagnostics.md +1 -1
  73. package/docs/llms-full.txt +458 -194
  74. package/docs/llms.txt +2 -2
  75. package/docs/playground.md +55 -0
  76. package/docs/reference/cli.md +5 -3
  77. package/docs/reference/diagnostics.md +223 -37
  78. package/docs/reference/grammar.md +2 -2
  79. package/docs/reference/std/advance.md +2 -2
  80. package/docs/reference/std/cancellable_booking.md +10 -10
  81. package/docs/reference/std/captured_payment.md +14 -14
  82. package/docs/reference/std/conditional_disbursement.md +3 -3
  83. package/docs/reference/std/credit_facility.md +2 -2
  84. package/docs/reference/std/held_payment.md +37 -33
  85. package/docs/reference/std/instant_transfer.md +8 -8
  86. package/docs/reference/std/metered.md +2 -2
  87. package/docs/reference/std/pooled_split.md +2 -2
  88. package/docs/reference/std/premium_forward.md +13 -13
  89. package/docs/reference/std/reconciled_payout.md +2 -2
  90. package/docs/reference/std/recurring_collection.md +2 -2
  91. package/docs/reference/std/rotating_pool.md +2 -2
  92. package/docs/reference/std/scheduled.md +18 -18
  93. package/docs/reference/std/security_deposit.md +14 -14
  94. package/docs/reference/std/settlement_batch.md +2 -2
  95. package/docs/reference/std/swap.md +18 -18
  96. package/docs/reference/std/threshold_pool.md +2 -2
  97. package/docs/reference/std/weighted_distribution.md +2 -2
  98. package/docs/reference/types.md +1 -1
  99. package/docs/reference/udl-output.md +2 -3
  100. package/examples/01-first-program/README.md +1 -1
  101. package/examples/01-first-program/tip-jar.hsx +1 -1
  102. package/examples/02-imports-and-archetypes/README.md +1 -4
  103. package/examples/02-imports-and-archetypes/photo-booth.hsx +1 -1
  104. package/examples/03-diagnostics/corner-shop-fixed.hsx +1 -1
  105. package/examples/03-diagnostics/corner-shop.hsx +1 -1
  106. package/examples/04-complete-product/README.md +0 -3
  107. package/examples/04-complete-product/study-hall.hsx +1 -1
  108. package/examples/05-watch-club/README.md +0 -3
  109. package/examples/05-watch-club/watch-club.hsx +1 -1
  110. package/examples/README.md +35 -4
  111. package/examples/advance/advance.hsx +1 -1
  112. package/examples/advance/advance.udl +10 -5
  113. package/examples/cancellable_booking/cancellable_booking.hsx +1 -1
  114. package/examples/cancellable_booking/cancellable_booking.udl +3 -1
  115. package/examples/captured_payment/captured_payment.hsx +1 -1
  116. package/examples/captured_payment/captured_payment.udl +4 -1
  117. package/examples/conditional_disbursement/conditional_disbursement.hsx +1 -1
  118. package/examples/conditional_disbursement/conditional_disbursement.udl +5 -3
  119. package/examples/cost-table.json +1602 -382
  120. package/examples/credit_facility/credit_facility.hsx +1 -1
  121. package/examples/credit_facility/credit_facility.udl +16 -9
  122. package/examples/held_payment/held_payment.hsx +1 -1
  123. package/examples/held_payment/held_payment.udl +38 -3
  124. package/examples/instant_transfer/instant_transfer.hsx +1 -1
  125. package/examples/instant_transfer/instant_transfer.udl +11 -5
  126. package/examples/metered/metered.hsx +1 -1
  127. package/examples/metered/metered.udl +4 -2
  128. package/examples/pooled_split/pooled_split.hsx +1 -1
  129. package/examples/pooled_split/pooled_split.udl +6 -3
  130. package/examples/premium_forward/premium_forward.hsx +1 -1
  131. package/examples/premium_forward/premium_forward.udl +10 -4
  132. package/examples/reconciled_payout/reconciled_payout.hsx +1 -1
  133. package/examples/reconciled_payout/reconciled_payout.udl +4 -2
  134. package/examples/recurring_collection/recurring_collection.hsx +1 -1
  135. package/examples/recurring_collection/recurring_collection.udl +12 -7
  136. package/examples/rotating_pool/rotating_pool.hsx +1 -1
  137. package/examples/rotating_pool/rotating_pool.udl +14 -4
  138. package/examples/scheduled/scheduled.hsx +1 -1
  139. package/examples/scheduled/scheduled.udl +9 -4
  140. package/examples/security_deposit/security_deposit.hsx +1 -1
  141. package/examples/security_deposit/security_deposit.udl +17 -3
  142. package/examples/settlement_batch/settlement_batch.hsx +1 -1
  143. package/examples/swap/swap.hsx +1 -1
  144. package/examples/swap/swap.udl +12 -6
  145. package/examples/threshold_pool/threshold_pool.hsx +1 -1
  146. package/examples/threshold_pool/threshold_pool.udl +4 -2
  147. package/examples/weighted_distribution/weighted_distribution.hsx +1 -1
  148. package/examples/weighted_distribution/weighted_distribution.udl +4 -2
  149. package/package.json +15 -6
  150. package/skills/hsx/SKILL.md +26 -26
  151. package/src/ast.ts +34 -2
  152. package/src/cli.ts +32 -13
  153. package/src/compile.ts +15 -7
  154. package/src/cost.ts +176 -104
  155. package/src/diagnostics.ts +89 -4
  156. package/src/emit.ts +34 -266
  157. package/src/index.ts +10 -7
  158. package/src/lsp/server.ts +460 -0
  159. package/src/modules.ts +21 -13
  160. package/src/parse.ts +3 -3
  161. package/src/std-bundle.ts +91 -0
  162. package/src/std-library.ts +12 -0
  163. package/src/typecheck.ts +1147 -235
  164. package/src/version.ts +1 -1
  165. package/std/SEMANTICS.md +12 -3
  166. package/std/{settlements → money_flows}/advance.hsx +1 -1
  167. package/std/{settlements → money_flows}/cancellable_booking.hsx +4 -3
  168. package/std/{settlements → money_flows}/captured_payment.hsx +35 -6
  169. package/std/{settlements → money_flows}/conditional_disbursement.hsx +17 -16
  170. package/std/{settlements → money_flows}/credit_facility.hsx +1 -2
  171. package/std/{settlements → money_flows}/held_payment.hsx +59 -25
  172. package/std/money_flows/index.hsx +3 -0
  173. package/std/{settlements → money_flows}/instant_transfer.hsx +2 -3
  174. package/std/{settlements → money_flows}/metered.hsx +1 -1
  175. package/std/{settlements → money_flows}/pooled_split.hsx +3 -3
  176. package/std/{settlements → money_flows}/premium_forward.hsx +22 -23
  177. package/std/{settlements → money_flows}/reconciled_payout.hsx +3 -3
  178. package/std/{settlements → money_flows}/recurring_collection.hsx +1 -1
  179. package/std/{settlements → money_flows}/rotating_pool.hsx +8 -6
  180. package/std/{settlements → money_flows}/scheduled.hsx +22 -27
  181. package/std/{settlements → money_flows}/security_deposit.hsx +38 -14
  182. package/std/{settlements → money_flows}/settlement_batch.hsx +3 -3
  183. package/std/{settlements → money_flows}/swap.hsx +41 -16
  184. package/std/{settlements → money_flows}/threshold_pool.hsx +5 -5
  185. package/std/{settlements → money_flows}/weighted_distribution.hsx +6 -6
  186. package/docs/sessions/2026-09-02-two-instruments.hsx +0 -21
  187. package/docs/sessions/2026-09-02-two-instruments.md +0 -41
  188. package/std/settlements/index.hsx +0 -3
@@ -0,0 +1,460 @@
1
+ import { existsSync, readFileSync, statSync } from "node:fs";
2
+ import { dirname, isAbsolute, resolve } from "node:path";
3
+ import { fileURLToPath } from "node:url";
4
+ import { lineIndex, type LineIndex } from "../ast.ts";
5
+ import { format } from "../format.ts";
6
+ import type { HsxCompilerHost, ModuleSource } from "../modules.ts";
7
+ import { resolveProgramModules } from "../modules.ts";
8
+ import { parseProgram } from "../parse.ts";
9
+ import { checkGeneralProgram } from "../typecheck.ts";
10
+
11
+ export interface LspPosition {
12
+ readonly character: number;
13
+ readonly line: number;
14
+ }
15
+
16
+ export interface LspRange {
17
+ readonly end: LspPosition;
18
+ readonly start: LspPosition;
19
+ }
20
+
21
+ export interface LspDiagnostic {
22
+ readonly code?: string;
23
+ readonly message: string;
24
+ readonly range: LspRange;
25
+ readonly severity: 1 | 2;
26
+ readonly source: "hsx";
27
+ }
28
+
29
+ export interface LspServerOptions {
30
+ readonly host?: HsxCompilerHost;
31
+ readonly onExit?: (code: number) => void;
32
+ }
33
+
34
+ export interface LspServer {
35
+ readonly stop: () => void;
36
+ }
37
+
38
+ export function offsetToPosition(
39
+ index: LineIndex,
40
+ offset: number,
41
+ ): LspPosition {
42
+ const clamped = Math.max(0, Math.min(offset, index.length));
43
+ let low = 0;
44
+ let high = index.starts.length - 1;
45
+ while (low < high) {
46
+ const middle = Math.floor((low + high + 1) / 2);
47
+ if ((index.starts[middle] as number) <= clamped) low = middle;
48
+ else high = middle - 1;
49
+ }
50
+ const lineStart = index.starts[low] as number;
51
+ return {
52
+ character: clamped - lineStart,
53
+ line: low,
54
+ };
55
+ }
56
+
57
+ export function spanToRange(
58
+ index: LineIndex,
59
+ span: { readonly end: number; readonly start: number },
60
+ ): LspRange {
61
+ return {
62
+ end: offsetToPosition(index, Math.max(span.start, span.end)),
63
+ start: offsetToPosition(index, span.start),
64
+ };
65
+ }
66
+
67
+ export function createHostForUri(
68
+ uri: string,
69
+ fallbackHost?: HsxCompilerHost,
70
+ ): HsxCompilerHost {
71
+ let docDir: string | undefined;
72
+ try {
73
+ if (uri.startsWith("file://")) {
74
+ docDir = dirname(fileURLToPath(uri));
75
+ }
76
+ } catch {
77
+ docDir = undefined;
78
+ }
79
+
80
+ return {
81
+ resolveModule(specifier: string, from: string): ModuleSource | undefined {
82
+ if (fallbackHost?.resolveModule) {
83
+ const custom = fallbackHost.resolveModule(specifier, from);
84
+ if (custom) return custom;
85
+ }
86
+ if (!docDir) return undefined;
87
+ const baseDir = from
88
+ ? isAbsolute(from)
89
+ ? dirname(from)
90
+ : resolve(docDir, dirname(from))
91
+ : docDir;
92
+ const candidates = [
93
+ resolve(baseDir, specifier),
94
+ resolve(baseDir, `${specifier}.hsx`),
95
+ resolve(docDir, specifier),
96
+ resolve(docDir, `${specifier}.hsx`),
97
+ ];
98
+ for (const candidate of candidates) {
99
+ if (existsSync(candidate)) {
100
+ try {
101
+ const stat = statSync(candidate);
102
+ if (stat.isFile()) {
103
+ return {
104
+ name: candidate,
105
+ source: readFileSync(candidate, "utf8"),
106
+ };
107
+ }
108
+ } catch {
109
+ // Ignore filesystem errors and check subsequent candidates.
110
+ }
111
+ }
112
+ }
113
+ return undefined;
114
+ },
115
+ };
116
+ }
117
+
118
+ interface JsonRpcMessage {
119
+ readonly id?: number | string;
120
+ readonly jsonrpc: "2.0";
121
+ readonly method?: string;
122
+ readonly params?: any;
123
+ }
124
+
125
+ export function startLspServer(
126
+ input: NodeJS.ReadableStream,
127
+ output: NodeJS.WritableStream,
128
+ options: LspServerOptions = {},
129
+ ): LspServer {
130
+ const documents = new Map<string, string>();
131
+ let isInitialized = false;
132
+ let isShutdown = false;
133
+ let buffer = Buffer.alloc(0);
134
+
135
+ const send = (message: unknown): void => {
136
+ const json = JSON.stringify(message);
137
+ const bytes = Buffer.from(json, "utf8");
138
+ output.write(`Content-Length: ${bytes.length}\r\n\r\n${json}`);
139
+ };
140
+
141
+ const validateAndPublish = (uri: string, source: string): void => {
142
+ const lineIdx = lineIndex(source);
143
+ const diagnostics: LspDiagnostic[] = [];
144
+
145
+ const parsed = parseProgram(source);
146
+ for (const diag of parsed.diagnostics) {
147
+ diagnostics.push({
148
+ ...(diag.code ? { code: diag.code } : {}),
149
+ message: diag.message,
150
+ range: spanToRange(lineIdx, diag.span),
151
+ severity: 1,
152
+ source: "hsx",
153
+ });
154
+ }
155
+
156
+ if (parsed.diagnostics.length === 0) {
157
+ const host = createHostForUri(uri, options.host);
158
+ const resolved = resolveProgramModules(parsed.program, host);
159
+ if (!resolved.ok) {
160
+ for (const issue of resolved.issues) {
161
+ diagnostics.push({
162
+ code: issue.code,
163
+ message: issue.message,
164
+ range: spanToRange(lineIdx, issue.span),
165
+ severity: 1,
166
+ source: "hsx",
167
+ });
168
+ }
169
+ } else {
170
+ const checked = checkGeneralProgram(resolved.program);
171
+ for (const diag of checked.diagnostics) {
172
+ if (!resolved.origins.has(diag.span)) {
173
+ diagnostics.push({
174
+ code: diag.code,
175
+ message: diag.message,
176
+ range: spanToRange(lineIdx, diag.span),
177
+ severity: diag.severity === "warning" ? 2 : 1,
178
+ source: "hsx",
179
+ });
180
+ }
181
+ }
182
+ }
183
+ }
184
+
185
+ send({
186
+ jsonrpc: "2.0",
187
+ method: "textDocument/publishDiagnostics",
188
+ params: {
189
+ diagnostics,
190
+ uri,
191
+ },
192
+ });
193
+ };
194
+
195
+ const handleMessage = (msg: JsonRpcMessage): void => {
196
+ const { id, method, params } = msg;
197
+
198
+ // Requests (id is present)
199
+ if (id !== undefined) {
200
+ if (isShutdown) {
201
+ send({
202
+ error: {
203
+ code: -32600,
204
+ message: "Invalid request: server is shutting down",
205
+ },
206
+ id,
207
+ jsonrpc: "2.0",
208
+ });
209
+ return;
210
+ }
211
+
212
+ if (!isInitialized) {
213
+ if (method !== "initialize") {
214
+ send({
215
+ error: {
216
+ code: -32002,
217
+ message: "Server not initialized",
218
+ },
219
+ id,
220
+ jsonrpc: "2.0",
221
+ });
222
+ return;
223
+ }
224
+
225
+ isInitialized = true;
226
+ send({
227
+ id,
228
+ jsonrpc: "2.0",
229
+ result: {
230
+ capabilities: {
231
+ documentFormattingProvider: true,
232
+ textDocumentSync: 1,
233
+ },
234
+ serverInfo: {
235
+ name: "hsx-lsp",
236
+ version: "1.0.0",
237
+ },
238
+ },
239
+ });
240
+ return;
241
+ }
242
+
243
+ if (method === "initialize") {
244
+ send({
245
+ id,
246
+ jsonrpc: "2.0",
247
+ result: {
248
+ capabilities: {
249
+ documentFormattingProvider: true,
250
+ textDocumentSync: 1,
251
+ },
252
+ serverInfo: {
253
+ name: "hsx-lsp",
254
+ version: "1.0.0",
255
+ },
256
+ },
257
+ });
258
+ return;
259
+ }
260
+
261
+ if (method === "shutdown") {
262
+ isShutdown = true;
263
+ send({
264
+ id,
265
+ jsonrpc: "2.0",
266
+ result: null,
267
+ });
268
+ return;
269
+ }
270
+
271
+ if (method === "textDocument/formatting") {
272
+ const uri = params?.textDocument?.uri;
273
+ const source = uri ? documents.get(uri) : undefined;
274
+ if (!source) {
275
+ send({ id, jsonrpc: "2.0", result: null });
276
+ return;
277
+ }
278
+ const formatted = format(source);
279
+ if (!formatted.ok) {
280
+ send({ id, jsonrpc: "2.0", result: null });
281
+ return;
282
+ }
283
+ if (formatted.formatted === source) {
284
+ send({ id, jsonrpc: "2.0", result: [] });
285
+ return;
286
+ }
287
+ const lines = lineIndex(source);
288
+ send({
289
+ id,
290
+ jsonrpc: "2.0",
291
+ result: [
292
+ {
293
+ newText: formatted.formatted,
294
+ range: {
295
+ end: offsetToPosition(lines, source.length),
296
+ start: { character: 0, line: 0 },
297
+ },
298
+ },
299
+ ],
300
+ });
301
+ return;
302
+ }
303
+
304
+ send({
305
+ error: {
306
+ code: -32601,
307
+ message: `Method not found: ${method ?? "unknown"}`,
308
+ },
309
+ id,
310
+ jsonrpc: "2.0",
311
+ });
312
+ return;
313
+ }
314
+
315
+ // Notifications (id is undefined)
316
+ if (method === "exit") {
317
+ const code = isShutdown ? 0 : 1;
318
+ if (options.onExit) {
319
+ options.onExit(code);
320
+ } else {
321
+ process.exit(code);
322
+ }
323
+ return;
324
+ }
325
+
326
+ if (isShutdown || !isInitialized) {
327
+ return;
328
+ }
329
+
330
+ if (method === "initialized") {
331
+ return;
332
+ }
333
+
334
+ if (method === "textDocument/didOpen") {
335
+ const doc = params?.textDocument;
336
+ if (doc?.uri && typeof doc.text === "string") {
337
+ documents.set(doc.uri, doc.text);
338
+ validateAndPublish(doc.uri, doc.text);
339
+ }
340
+ return;
341
+ }
342
+
343
+ if (method === "textDocument/didChange") {
344
+ const uri = params?.textDocument?.uri;
345
+ const changes = params?.contentChanges;
346
+ if (!uri || !Array.isArray(changes) || changes.length === 0) {
347
+ // Empty contentChanges keeps the document and republishes nothing.
348
+ return;
349
+ }
350
+ // Full sync only; an incremental entry would replace the document with a fragment.
351
+ const hasIncremental = changes.some(
352
+ (change: any) =>
353
+ change && typeof change === "object" && "range" in change,
354
+ );
355
+ if (hasIncremental) {
356
+ return;
357
+ }
358
+ const lastChange = changes[changes.length - 1];
359
+ if (lastChange && typeof lastChange.text === "string") {
360
+ documents.set(uri, lastChange.text);
361
+ validateAndPublish(uri, lastChange.text);
362
+ }
363
+ return;
364
+ }
365
+
366
+ if (method === "textDocument/didClose") {
367
+ const uri = params?.textDocument?.uri;
368
+ if (uri) {
369
+ documents.delete(uri);
370
+ send({
371
+ jsonrpc: "2.0",
372
+ method: "textDocument/publishDiagnostics",
373
+ params: {
374
+ diagnostics: [],
375
+ uri,
376
+ },
377
+ });
378
+ }
379
+ return;
380
+ }
381
+ };
382
+
383
+ const processBuffer = (): void => {
384
+ while (true) {
385
+ const headerEnd = buffer.indexOf("\r\n\r\n");
386
+ if (headerEnd === -1) break;
387
+ const headerText = buffer.subarray(0, headerEnd).toString("ascii");
388
+ const match = /content-length:\s*(\d+)/i.exec(headerText);
389
+ if (!match) {
390
+ buffer = buffer.subarray(headerEnd + 4);
391
+ continue;
392
+ }
393
+ const contentLength = parseInt(match[1] as string, 10);
394
+ if (Number.isNaN(contentLength) || contentLength < 0) {
395
+ buffer = buffer.subarray(headerEnd + 4);
396
+ continue;
397
+ }
398
+ const totalLength = headerEnd + 4 + contentLength;
399
+ if (buffer.length < totalLength) {
400
+ break;
401
+ }
402
+ const bodyBytes = buffer.subarray(headerEnd + 4, totalLength);
403
+ buffer = buffer.subarray(totalLength);
404
+ const bodyStr = bodyBytes.toString("utf8");
405
+ try {
406
+ const msg = JSON.parse(bodyStr) as JsonRpcMessage;
407
+ handleMessage(msg);
408
+ } catch {
409
+ // Ignore unparseable JSON payload.
410
+ }
411
+ }
412
+ };
413
+
414
+ const flushPending = (): void => {
415
+ const headerEnd = buffer.indexOf("\r\n\r\n");
416
+ if (headerEnd !== -1) {
417
+ const bodyStr = buffer
418
+ .subarray(headerEnd + 4)
419
+ .toString("utf8")
420
+ .trim();
421
+ if (bodyStr.length > 0) {
422
+ try {
423
+ const msg = JSON.parse(bodyStr) as JsonRpcMessage;
424
+ handleMessage(msg);
425
+ } catch {
426
+ // Ignore unparseable body.
427
+ }
428
+ }
429
+ }
430
+ };
431
+
432
+ const onData = (chunk: Buffer | string): void => {
433
+ const incoming =
434
+ typeof chunk === "string" ? Buffer.from(chunk, "utf8") : chunk;
435
+ buffer = Buffer.concat([buffer, incoming]);
436
+ processBuffer();
437
+ };
438
+
439
+ const onEnd = (): void => {
440
+ processBuffer();
441
+ if (buffer.length > 0) {
442
+ flushPending();
443
+ }
444
+ if (options.onExit) {
445
+ options.onExit(0);
446
+ } else {
447
+ process.exit(0);
448
+ }
449
+ };
450
+
451
+ input.on("data", onData);
452
+ input.on("end", onEnd);
453
+
454
+ return {
455
+ stop(): void {
456
+ input.removeListener("data", onData);
457
+ input.removeListener("end", onEnd);
458
+ },
459
+ };
460
+ }
package/src/modules.ts CHANGED
@@ -1,4 +1,3 @@
1
- import { existsSync, readFileSync } from "node:fs";
2
1
  import type { UdlDocument } from "@hyperscale0/udl";
3
2
  import type {
4
3
  ApplicationScopeDecl,
@@ -10,6 +9,7 @@ import type {
10
9
  } from "./ast.ts";
11
10
  import { lineColIn, lineIndex } from "./ast.ts";
12
11
  import { parseProgram } from "./parse.ts";
12
+ import { bundledStandardLibrary, type StandardLibrary } from "./std-library.ts";
13
13
 
14
14
  export interface ModuleSource {
15
15
  readonly name: string;
@@ -24,6 +24,7 @@ export interface HsxCompilerHost {
24
24
  specifier: string,
25
25
  from: string,
26
26
  ) => ModuleSource | undefined;
27
+ readonly standardLibrary?: StandardLibrary;
27
28
  }
28
29
 
29
30
  export interface ModuleIssue {
@@ -68,7 +69,12 @@ export function resolveProgramModules(
68
69
  );
69
70
  for (const declaration of imports) {
70
71
  const requested = declaration.names.map((name) => name.name);
71
- const sources = standardSources(declaration.from.value, requested);
72
+ const stdLib = host.standardLibrary ?? bundledStandardLibrary;
73
+ const sources = standardSources(
74
+ stdLib,
75
+ declaration.from.value,
76
+ requested,
77
+ );
72
78
  const custom =
73
79
  sources.length === 0
74
80
  ? host.resolveModule?.(declaration.from.value, from)
@@ -321,7 +327,13 @@ function declarationReferences(decl: Decl): {
321
327
  if (decl.kind === "type") collectExprNames(decl.value, names, ports);
322
328
  if (decl.kind === "party" && decl.attrs)
323
329
  collectExprNames(decl.attrs, names, ports);
324
- if (decl.kind === "port") collectExprNames(decl.body, names, ports);
330
+ if (decl.kind === "port") {
331
+ collectExprNames(decl.body, names, ports);
332
+ const allowed = decl.body.entries.find(
333
+ (entry) => entry.key.name === "allowed",
334
+ );
335
+ if (allowed) collectApplicationPartyNames(allowed.value, parties);
336
+ }
325
337
  if (decl.kind === "instrument_apply" || isApplicationScopeDecl(decl)) {
326
338
  names.delete(decl.name.name);
327
339
  parties.delete(decl.name.name);
@@ -421,22 +433,18 @@ function collectTemplatedNameReferences(
421
433
  }
422
434
 
423
435
  function standardSources(
436
+ standardLibrary: StandardLibrary,
424
437
  specifier: string,
425
438
  names: readonly string[],
426
439
  ): ModuleSource[] {
427
- if (specifier !== "std/settlements") return [];
440
+ if (specifier !== "std/money_flows") return [];
428
441
  return names.flatMap((name) => {
429
- const relative = `settlements/${name}.hsx`;
430
- const candidates = [
431
- new URL(`../std/${relative}`, import.meta.url),
432
- new URL(`../../std/${relative}`, import.meta.url),
433
- ];
434
- const url = candidates.find((candidate) => existsSync(candidate));
435
- return url
442
+ const source = standardLibrary.source(specifier, name);
443
+ return source !== undefined
436
444
  ? [
437
445
  {
438
- name: `std.settlements.${name}`,
439
- source: readFileSync(url, "utf8"),
446
+ name: `std.money_flows.${name}`,
447
+ source,
440
448
  },
441
449
  ]
442
450
  : [];
package/src/parse.ts CHANGED
@@ -367,7 +367,7 @@ class Parser {
367
367
  if (
368
368
  !this.expectPunct(
369
369
  "{",
370
- 'import lists its names in braces: import { held_payment } from "std/settlements"',
370
+ 'import lists its names in braces: import { held_payment } from "std/money_flows"',
371
371
  )
372
372
  ) {
373
373
  return undefined;
@@ -385,7 +385,7 @@ class Parser {
385
385
  if (!this.at("keyword") || this.peek().text !== "from") {
386
386
  this.error(
387
387
  this.peek().span,
388
- 'import needs from: import { held_payment } from "std/settlements"',
388
+ 'import needs from: import { held_payment } from "std/money_flows"',
389
389
  );
390
390
  return undefined;
391
391
  }
@@ -393,7 +393,7 @@ class Parser {
393
393
  if (!this.at("string")) {
394
394
  this.error(
395
395
  this.peek().span,
396
- 'the import source must be a quoted module name like "std/settlements"',
396
+ 'the import source must be a quoted module name like "std/money_flows"',
397
397
  );
398
398
  return undefined;
399
399
  }