@hyperscale0/hsx 1.0.0-beta.1 → 1.0.0-rc.1
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/CHANGELOG.md +41 -9
- package/LICENSING.md +3 -3
- package/README.md +37 -149
- package/TRADEMARKS.md +4 -4
- package/dist/src/ast.d.ts +129 -10
- package/dist/src/ast.d.ts.map +1 -1
- package/dist/src/cli.d.ts +2 -1
- package/dist/src/cli.d.ts.map +1 -1
- package/dist/src/cli.js +148 -12
- package/dist/src/cli.js.map +1 -1
- package/dist/src/compile.d.ts +41 -4
- package/dist/src/compile.d.ts.map +1 -1
- package/dist/src/compile.js +82 -15
- package/dist/src/compile.js.map +1 -1
- package/dist/src/cost.d.ts +78 -0
- package/dist/src/cost.d.ts.map +1 -0
- package/dist/src/cost.js +369 -0
- package/dist/src/cost.js.map +1 -0
- package/dist/src/diagnostics.d.ts +11 -0
- package/dist/src/diagnostics.d.ts.map +1 -0
- package/dist/src/diagnostics.js +420 -0
- package/dist/src/diagnostics.js.map +1 -0
- package/dist/src/emit.d.ts +35 -0
- package/dist/src/emit.d.ts.map +1 -0
- package/dist/src/emit.js +359 -0
- package/dist/src/emit.js.map +1 -0
- package/dist/src/entry-overrides.d.ts +17 -3
- package/dist/src/entry-overrides.d.ts.map +1 -1
- package/dist/src/entry-overrides.js +180 -35
- package/dist/src/entry-overrides.js.map +1 -1
- package/dist/src/format.d.ts +10 -0
- package/dist/src/format.d.ts.map +1 -0
- package/dist/src/format.js +183 -0
- package/dist/src/format.js.map +1 -0
- package/dist/src/index.d.ts +10 -4
- package/dist/src/index.d.ts.map +1 -1
- package/dist/src/index.js +8 -3
- package/dist/src/index.js.map +1 -1
- package/dist/src/ir.d.ts +66 -0
- package/dist/src/ir.d.ts.map +1 -0
- package/dist/src/ir.js +15 -0
- package/dist/src/ir.js.map +1 -0
- package/dist/src/lex.d.ts +9 -1
- package/dist/src/lex.d.ts.map +1 -1
- package/dist/src/lex.js +50 -4
- package/dist/src/lex.js.map +1 -1
- package/dist/src/limits.d.ts +2 -3
- package/dist/src/limits.d.ts.map +1 -1
- package/dist/src/limits.js +2 -3
- package/dist/src/limits.js.map +1 -1
- package/dist/src/modules.d.ts +36 -0
- package/dist/src/modules.d.ts.map +1 -0
- package/dist/src/modules.js +372 -0
- package/dist/src/modules.js.map +1 -0
- package/dist/src/parse.d.ts.map +1 -1
- package/dist/src/parse.js +590 -17
- package/dist/src/parse.js.map +1 -1
- package/dist/src/typecheck.d.ts +8 -0
- package/dist/src/typecheck.d.ts.map +1 -0
- package/dist/src/typecheck.js +2958 -0
- package/dist/src/typecheck.js.map +1 -0
- package/dist/src/version.d.ts +4 -15
- package/dist/src/version.d.ts.map +1 -1
- package/dist/src/version.js +4 -15
- package/dist/src/version.js.map +1 -1
- package/docs/README.md +23 -0
- package/docs/guide/01-first-program.md +24 -0
- package/docs/guide/02-money.md +25 -0
- package/docs/guide/03-instruments.md +22 -0
- package/docs/guide/04-lifecycles.md +25 -0
- package/docs/guide/05-fees-and-splits.md +45 -0
- package/docs/guide/06-schedules.md +22 -0
- package/docs/guide/07-composition.md +46 -0
- package/docs/guide/08-writing-a-module.md +26 -0
- package/docs/guide/09-cost.md +24 -0
- package/docs/guide/10-diagnostics.md +27 -0
- package/docs/llms-full.txt +1738 -0
- package/docs/llms.txt +45 -0
- package/docs/reference/cli.md +33 -0
- package/docs/reference/diagnostics.md +619 -0
- package/docs/reference/grammar.md +39 -0
- package/docs/reference/std/advance.md +35 -0
- package/docs/reference/std/cancellable_booking.md +35 -0
- package/docs/reference/std/captured_payment.md +43 -0
- package/docs/reference/std/conditional_disbursement.md +33 -0
- package/docs/reference/std/credit_facility.md +35 -0
- package/docs/reference/std/held_payment.md +64 -0
- package/docs/reference/std/instant_transfer.md +30 -0
- package/docs/reference/std/metered.md +27 -0
- package/docs/reference/std/pooled_split.md +26 -0
- package/docs/reference/std/premium_forward.md +39 -0
- package/docs/reference/std/reconciled_payout.md +33 -0
- package/docs/reference/std/recurring_collection.md +25 -0
- package/docs/reference/std/rotating_pool.md +42 -0
- package/docs/reference/std/scheduled.md +51 -0
- package/docs/reference/std/security_deposit.md +46 -0
- package/docs/reference/std/settlement_batch.md +42 -0
- package/docs/reference/std/swap.md +46 -0
- package/docs/reference/std/threshold_pool.md +47 -0
- package/docs/reference/std/weighted_distribution.md +39 -0
- package/docs/reference/types.md +20 -0
- package/docs/reference/udl-output.md +14 -0
- package/docs/sessions/2026-09-02-two-instruments.hsx +21 -0
- package/docs/sessions/2026-09-02-two-instruments.md +41 -0
- package/examples/01-first-program/README.md +45 -0
- package/examples/01-first-program/tip-jar.hsx +17 -0
- package/examples/02-imports-and-archetypes/README.md +99 -0
- package/examples/02-imports-and-archetypes/photo-booth.hsx +37 -0
- package/examples/03-diagnostics/README.md +68 -0
- package/examples/03-diagnostics/corner-shop-fixed.hsx +22 -0
- package/examples/03-diagnostics/corner-shop.hsx +19 -0
- package/examples/04-complete-product/README.md +87 -0
- package/examples/04-complete-product/study-hall.hsx +67 -0
- package/examples/05-watch-club/README.md +9 -0
- package/examples/05-watch-club/watch-club.hsx +124 -0
- package/examples/README.md +18 -0
- package/examples/advance/README.md +3 -0
- package/examples/advance/advance.hsx +13 -0
- package/examples/advance/advance.udl +339 -0
- package/examples/cancellable_booking/README.md +3 -0
- package/examples/cancellable_booking/cancellable_booking.hsx +14 -0
- package/examples/cancellable_booking/cancellable_booking.udl +391 -0
- package/examples/captured_payment/README.md +3 -0
- package/examples/captured_payment/captured_payment.hsx +21 -0
- package/examples/captured_payment/captured_payment.udl +677 -0
- package/examples/conditional_disbursement/README.md +3 -0
- package/examples/conditional_disbursement/conditional_disbursement.hsx +17 -0
- package/examples/conditional_disbursement/conditional_disbursement.udl +412 -0
- package/examples/cost-table.json +386 -0
- package/examples/credit_facility/README.md +3 -0
- package/examples/credit_facility/credit_facility.hsx +27 -0
- package/examples/credit_facility/credit_facility.udl +1373 -0
- package/examples/held_payment/README.md +3 -0
- package/examples/held_payment/held_payment.hsx +13 -0
- package/examples/held_payment/held_payment.udl +507 -0
- package/examples/instant_transfer/README.md +3 -0
- package/examples/instant_transfer/instant_transfer.hsx +16 -0
- package/examples/instant_transfer/instant_transfer.udl +364 -0
- package/examples/metered/README.md +3 -0
- package/examples/metered/metered.hsx +13 -0
- package/examples/metered/metered.udl +247 -0
- package/examples/pooled_split/README.md +3 -0
- package/examples/pooled_split/pooled_split.hsx +15 -0
- package/examples/pooled_split/pooled_split.udl +425 -0
- package/examples/premium_forward/README.md +3 -0
- package/examples/premium_forward/premium_forward.hsx +19 -0
- package/examples/premium_forward/premium_forward.udl +594 -0
- package/examples/reconciled_payout/README.md +3 -0
- package/examples/reconciled_payout/reconciled_payout.hsx +13 -0
- package/examples/reconciled_payout/reconciled_payout.udl +303 -0
- package/examples/recurring_collection/README.md +3 -0
- package/examples/recurring_collection/recurring_collection.hsx +21 -0
- package/examples/recurring_collection/recurring_collection.udl +1130 -0
- package/examples/rotating_pool/README.md +3 -0
- package/examples/rotating_pool/rotating_pool.hsx +18 -0
- package/examples/rotating_pool/rotating_pool.udl +4352 -0
- package/examples/scheduled/README.md +3 -0
- package/examples/scheduled/scheduled.hsx +12 -0
- package/examples/scheduled/scheduled.udl +335 -0
- package/examples/security_deposit/README.md +3 -0
- package/examples/security_deposit/security_deposit.hsx +21 -0
- package/examples/security_deposit/security_deposit.udl +293 -0
- package/examples/settlement_batch/README.md +3 -0
- package/examples/settlement_batch/settlement_batch.hsx +19 -0
- package/examples/settlement_batch/settlement_batch.udl +753 -0
- package/examples/swap/README.md +3 -0
- package/examples/swap/swap.hsx +19 -0
- package/examples/swap/swap.udl +876 -0
- package/examples/threshold_pool/README.md +3 -0
- package/examples/threshold_pool/threshold_pool.hsx +16 -0
- package/examples/threshold_pool/threshold_pool.udl +667 -0
- package/examples/weighted_distribution/README.md +3 -0
- package/examples/weighted_distribution/weighted_distribution.hsx +20 -0
- package/examples/weighted_distribution/weighted_distribution.udl +337 -0
- package/package.json +19 -6
- package/skills/hsx/SKILL.md +483 -0
- package/src/ast.ts +163 -9
- package/src/cli.ts +164 -12
- package/src/compile.ts +160 -20
- package/src/cost.ts +579 -0
- package/src/diagnostics.ts +442 -0
- package/src/emit.ts +447 -0
- package/src/entry-overrides.ts +263 -48
- package/src/format.ts +261 -0
- package/src/index.ts +32 -4
- package/src/ir.ts +99 -0
- package/src/lex.ts +59 -4
- package/src/limits.ts +2 -3
- package/src/modules.ts +444 -0
- package/src/parse.ts +655 -21
- package/src/typecheck.ts +3876 -0
- package/src/version.ts +4 -16
- package/std/SEMANTICS.md +130 -0
- package/std/settlements/advance.hsx +177 -0
- package/std/settlements/cancellable_booking.hsx +87 -0
- package/std/settlements/captured_payment.hsx +144 -0
- package/std/settlements/conditional_disbursement.hsx +185 -0
- package/std/settlements/credit_facility.hsx +167 -0
- package/std/settlements/held_payment.hsx +578 -0
- package/std/settlements/index.hsx +3 -0
- package/std/settlements/instant_transfer.hsx +190 -0
- package/std/settlements/metered.hsx +67 -0
- package/std/settlements/pooled_split.hsx +68 -0
- package/std/settlements/premium_forward.hsx +257 -0
- package/std/settlements/reconciled_payout.hsx +77 -0
- package/std/settlements/recurring_collection.hsx +27 -0
- package/std/settlements/rotating_pool.hsx +252 -0
- package/std/settlements/scheduled.hsx +641 -0
- package/std/settlements/security_deposit.hsx +166 -0
- package/std/settlements/settlement_batch.hsx +122 -0
- package/std/settlements/swap.hsx +1114 -0
- package/std/settlements/threshold_pool.hsx +221 -0
- package/std/settlements/weighted_distribution.hsx +141 -0
- package/dist/src/archetypes.d.ts +0 -17
- package/dist/src/archetypes.d.ts.map +0 -1
- package/dist/src/archetypes.js +0 -327
- package/dist/src/archetypes.js.map +0 -1
- package/dist/src/check.d.ts +0 -12
- package/dist/src/check.d.ts.map +0 -1
- package/dist/src/check.js +0 -1910
- package/dist/src/check.js.map +0 -1
- package/dist/src/lower.d.ts +0 -146
- package/dist/src/lower.d.ts.map +0 -1
- package/dist/src/lower.js +0 -4570
- package/dist/src/lower.js.map +0 -1
- package/dist/src/model.d.ts +0 -467
- package/dist/src/model.d.ts.map +0 -1
- package/dist/src/model.js +0 -15
- package/dist/src/model.js.map +0 -1
- package/spec/hsx-ir.schema.json +0 -920
- package/src/archetypes.ts +0 -340
- package/src/check.ts +0 -2938
- package/src/lower.ts +0 -5416
- package/src/model.ts +0 -519
package/src/ir.ts
ADDED
|
@@ -0,0 +1,99 @@
|
|
|
1
|
+
import type { Span } from "./ast.ts";
|
|
2
|
+
import type { UdlEffectKind } from "@hyperscale0/udl";
|
|
3
|
+
|
|
4
|
+
export type JsonValue =
|
|
5
|
+
| boolean
|
|
6
|
+
| number
|
|
7
|
+
| string
|
|
8
|
+
| null
|
|
9
|
+
| readonly JsonValue[]
|
|
10
|
+
| { readonly [key: string]: JsonValue };
|
|
11
|
+
|
|
12
|
+
export const HSX_TYPE_KINDS = [
|
|
13
|
+
"account",
|
|
14
|
+
"boolean",
|
|
15
|
+
"bps",
|
|
16
|
+
"condition",
|
|
17
|
+
"date",
|
|
18
|
+
"integer",
|
|
19
|
+
"money",
|
|
20
|
+
"party",
|
|
21
|
+
"percent",
|
|
22
|
+
"ref",
|
|
23
|
+
"text",
|
|
24
|
+
"unknown",
|
|
25
|
+
] as const;
|
|
26
|
+
|
|
27
|
+
export interface HsxType {
|
|
28
|
+
readonly currency?: string;
|
|
29
|
+
/** Positive safe integer minor units fixed by money(CUR, amount). */
|
|
30
|
+
readonly fixedAmount?: string;
|
|
31
|
+
readonly kind: (typeof HSX_TYPE_KINDS)[number];
|
|
32
|
+
readonly target?: string;
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
export interface TypedField {
|
|
36
|
+
readonly name: string;
|
|
37
|
+
readonly origin: Span;
|
|
38
|
+
readonly required: boolean;
|
|
39
|
+
readonly schema: Readonly<Record<string, JsonValue>>;
|
|
40
|
+
readonly type: HsxType;
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
export interface TypedAction {
|
|
44
|
+
readonly effects: Readonly<
|
|
45
|
+
Partial<
|
|
46
|
+
Record<
|
|
47
|
+
UdlEffectKind,
|
|
48
|
+
readonly {
|
|
49
|
+
readonly signature: string;
|
|
50
|
+
readonly source: string;
|
|
51
|
+
readonly channel?: string;
|
|
52
|
+
readonly role?: string;
|
|
53
|
+
}[]
|
|
54
|
+
>
|
|
55
|
+
>
|
|
56
|
+
>;
|
|
57
|
+
readonly name: string;
|
|
58
|
+
readonly origin: Span;
|
|
59
|
+
readonly slots: Readonly<Record<string, JsonValue>>;
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
export interface TypedInstrument {
|
|
63
|
+
readonly actions: readonly TypedAction[];
|
|
64
|
+
readonly fields: readonly TypedField[];
|
|
65
|
+
readonly id: string;
|
|
66
|
+
readonly origin: Span;
|
|
67
|
+
readonly slots: Readonly<Record<string, JsonValue>>;
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
export interface TypedSubject {
|
|
71
|
+
readonly declaredValue: "none" | "optional" | "required";
|
|
72
|
+
readonly kind: string;
|
|
73
|
+
readonly origin: Span;
|
|
74
|
+
readonly schema: Readonly<Record<string, JsonValue>>;
|
|
75
|
+
readonly title: string;
|
|
76
|
+
readonly version: number;
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
export interface TypedProgram {
|
|
80
|
+
readonly instruments: readonly TypedInstrument[];
|
|
81
|
+
readonly kind: "typed_program";
|
|
82
|
+
readonly name: string;
|
|
83
|
+
readonly origin: Span;
|
|
84
|
+
readonly subjects: readonly TypedSubject[];
|
|
85
|
+
readonly title: string;
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
export interface GeneralDiagnostic {
|
|
89
|
+
readonly code: string;
|
|
90
|
+
readonly fix: string;
|
|
91
|
+
readonly message: string;
|
|
92
|
+
readonly severity: "error" | "warning";
|
|
93
|
+
readonly span: Span;
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
export interface GeneralCheckResult {
|
|
97
|
+
readonly diagnostics: readonly GeneralDiagnostic[];
|
|
98
|
+
readonly program?: TypedProgram;
|
|
99
|
+
}
|
package/src/lex.ts
CHANGED
|
@@ -17,13 +17,29 @@ type TokenKind =
|
|
|
17
17
|
| "string";
|
|
18
18
|
|
|
19
19
|
export const KEYWORDS = [
|
|
20
|
+
"action",
|
|
21
|
+
"as",
|
|
20
22
|
"asset",
|
|
23
|
+
"commit",
|
|
24
|
+
"const",
|
|
25
|
+
"expect",
|
|
26
|
+
"expose",
|
|
27
|
+
"expires",
|
|
28
|
+
"export",
|
|
21
29
|
"from",
|
|
22
30
|
"import",
|
|
31
|
+
"instrument",
|
|
32
|
+
"module",
|
|
23
33
|
"party",
|
|
24
34
|
"port",
|
|
25
35
|
"program",
|
|
36
|
+
"quote",
|
|
37
|
+
"rate",
|
|
38
|
+
"reconcile",
|
|
26
39
|
"settlement",
|
|
40
|
+
"subject",
|
|
41
|
+
"type",
|
|
42
|
+
"use",
|
|
27
43
|
] as const;
|
|
28
44
|
|
|
29
45
|
export interface Token {
|
|
@@ -35,7 +51,31 @@ export interface Token {
|
|
|
35
51
|
readonly value: string;
|
|
36
52
|
}
|
|
37
53
|
|
|
38
|
-
|
|
54
|
+
/** Source trivia retained for tools that must reproduce author comments. */
|
|
55
|
+
export interface CommentTrivia {
|
|
56
|
+
readonly kind: "line_comment";
|
|
57
|
+
readonly span: Span;
|
|
58
|
+
readonly text: string;
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
export const PUNCT = [
|
|
62
|
+
"{",
|
|
63
|
+
"}",
|
|
64
|
+
"(",
|
|
65
|
+
")",
|
|
66
|
+
"[",
|
|
67
|
+
"]",
|
|
68
|
+
":",
|
|
69
|
+
",",
|
|
70
|
+
";",
|
|
71
|
+
"=",
|
|
72
|
+
"|",
|
|
73
|
+
".",
|
|
74
|
+
"<",
|
|
75
|
+
">",
|
|
76
|
+
"?",
|
|
77
|
+
] as const;
|
|
78
|
+
const PUNCT_SET: ReadonlySet<string> = new Set(PUNCT);
|
|
39
79
|
const KEYWORD_SET: ReadonlySet<string> = new Set(KEYWORDS);
|
|
40
80
|
|
|
41
81
|
// Case conventions (snake_case declarations, uppercase currency codes) are
|
|
@@ -45,12 +85,14 @@ const isIdentPart = (ch: string): boolean => /[A-Za-z0-9_]/.test(ch);
|
|
|
45
85
|
const isDigit = (ch: string): boolean => ch >= "0" && ch <= "9";
|
|
46
86
|
|
|
47
87
|
export interface LexResult {
|
|
88
|
+
readonly comments: readonly CommentTrivia[];
|
|
48
89
|
readonly diagnostics: readonly Diagnostic[];
|
|
49
90
|
readonly tokens: readonly Token[];
|
|
50
91
|
}
|
|
51
92
|
|
|
52
93
|
export function lex(source: string): LexResult {
|
|
53
94
|
const tokens: Token[] = [];
|
|
95
|
+
const comments: CommentTrivia[] = [];
|
|
54
96
|
const diagnostics: Diagnostic[] = [];
|
|
55
97
|
let index = 0;
|
|
56
98
|
|
|
@@ -67,17 +109,30 @@ export function lex(source: string): LexResult {
|
|
|
67
109
|
}
|
|
68
110
|
|
|
69
111
|
if (ch === "/" && source[index + 1] === "/") {
|
|
112
|
+
const start = index;
|
|
70
113
|
while (index < source.length && source[index] !== "\n") index += 1;
|
|
114
|
+
comments.push({
|
|
115
|
+
kind: "line_comment",
|
|
116
|
+
span: { end: index, start },
|
|
117
|
+
text: source.slice(start, index),
|
|
118
|
+
});
|
|
71
119
|
continue;
|
|
72
120
|
}
|
|
73
121
|
|
|
74
|
-
if (
|
|
122
|
+
if (PUNCT_SET.has(ch)) {
|
|
75
123
|
const start = index;
|
|
76
124
|
index += 1;
|
|
77
125
|
push("punct", start, ch);
|
|
78
126
|
continue;
|
|
79
127
|
}
|
|
80
128
|
|
|
129
|
+
if (ch === "-" && source[index + 1] === ">") {
|
|
130
|
+
const start = index;
|
|
131
|
+
index += 2;
|
|
132
|
+
push("punct", start, "->");
|
|
133
|
+
continue;
|
|
134
|
+
}
|
|
135
|
+
|
|
81
136
|
if (ch === '"') {
|
|
82
137
|
const start = index;
|
|
83
138
|
index += 1;
|
|
@@ -139,7 +194,7 @@ export function lex(source: string): LexResult {
|
|
|
139
194
|
while (
|
|
140
195
|
index < source.length &&
|
|
141
196
|
!/[\sA-Za-z0-9_"]/.test(source[index] as string) &&
|
|
142
|
-
!
|
|
197
|
+
!PUNCT_SET.has(source[index] as string) &&
|
|
143
198
|
!(source[index] === "/" && source[index + 1] === "/")
|
|
144
199
|
) {
|
|
145
200
|
index += 1;
|
|
@@ -157,5 +212,5 @@ export function lex(source: string): LexResult {
|
|
|
157
212
|
text: "",
|
|
158
213
|
value: "",
|
|
159
214
|
});
|
|
160
|
-
return { diagnostics, tokens };
|
|
215
|
+
return { comments, diagnostics, tokens };
|
|
161
216
|
}
|
package/src/limits.ts
CHANGED
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* What the compiler refuses to read, as opposed to what it refuses to emit.
|
|
3
|
-
*
|
|
4
|
-
* which is the side an attacker controls.
|
|
3
|
+
* These bounds cap the input side an attacker controls.
|
|
5
4
|
*
|
|
6
5
|
* Both numbers are set against the 34 real programs this compiler is tested
|
|
7
6
|
* on. The deepest nests 5 levels; the largest is 13,934 bytes.
|
|
@@ -16,6 +15,6 @@ export const HSX_LIMITS = Object.freeze({
|
|
|
16
15
|
* 12x the deepest real program and 144x below that measured crash.
|
|
17
16
|
*/
|
|
18
17
|
maxNestingDepth: 64,
|
|
19
|
-
/**
|
|
18
|
+
/** 18x the largest real HSX program. */
|
|
20
19
|
maxSourceBytes: 256 * 1_024,
|
|
21
20
|
});
|
package/src/modules.ts
ADDED
|
@@ -0,0 +1,444 @@
|
|
|
1
|
+
import { existsSync, readFileSync } from "node:fs";
|
|
2
|
+
import type { UdlDocument } from "@hyperscale0/udl";
|
|
3
|
+
import type {
|
|
4
|
+
ApplicationScopeDecl,
|
|
5
|
+
Decl,
|
|
6
|
+
Expr,
|
|
7
|
+
ImportDecl,
|
|
8
|
+
InstrumentApplyDecl,
|
|
9
|
+
Program,
|
|
10
|
+
} from "./ast.ts";
|
|
11
|
+
import { lineColIn, lineIndex } from "./ast.ts";
|
|
12
|
+
import { parseProgram } from "./parse.ts";
|
|
13
|
+
|
|
14
|
+
export interface ModuleSource {
|
|
15
|
+
readonly name: string;
|
|
16
|
+
readonly source: string;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
export interface HsxCompilerHost {
|
|
20
|
+
readonly moduleName?: string;
|
|
21
|
+
/** Published canonical UDL available to `use` declarations. */
|
|
22
|
+
readonly publishedCatalog?: UdlDocument;
|
|
23
|
+
readonly resolveModule?: (
|
|
24
|
+
specifier: string,
|
|
25
|
+
from: string,
|
|
26
|
+
) => ModuleSource | undefined;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
export interface ModuleIssue {
|
|
30
|
+
readonly code: string;
|
|
31
|
+
readonly fix: string;
|
|
32
|
+
readonly message: string;
|
|
33
|
+
readonly span: { readonly end: number; readonly start: number };
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
export interface ModuleOrigin {
|
|
37
|
+
readonly column: number;
|
|
38
|
+
readonly line: number;
|
|
39
|
+
readonly moduleName: string;
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
export type ModuleResolution =
|
|
43
|
+
| { readonly issues: readonly ModuleIssue[]; readonly ok: false }
|
|
44
|
+
| {
|
|
45
|
+
readonly ok: true;
|
|
46
|
+
readonly origins: ReadonlyMap<object, ModuleOrigin>;
|
|
47
|
+
readonly program: Program;
|
|
48
|
+
};
|
|
49
|
+
|
|
50
|
+
const moduleBudget = 64;
|
|
51
|
+
|
|
52
|
+
export function resolveProgramModules(
|
|
53
|
+
program: Program,
|
|
54
|
+
host: HsxCompilerHost = {},
|
|
55
|
+
): ModuleResolution {
|
|
56
|
+
const loaded = new Map<string, Program>();
|
|
57
|
+
const resolving = new Set<string>();
|
|
58
|
+
const seenModules = new Set<string>();
|
|
59
|
+
const issues: ModuleIssue[] = [];
|
|
60
|
+
const origins = new Map<object, ModuleOrigin>();
|
|
61
|
+
|
|
62
|
+
const resolveImports = (current: Program, from: string): Program => {
|
|
63
|
+
const appended: Decl[] = [];
|
|
64
|
+
const appendedKeys = new Set<string>();
|
|
65
|
+
const exportSourceByName = new Map<string, string>();
|
|
66
|
+
const imports = current.decls.filter(
|
|
67
|
+
(decl): decl is ImportDecl => decl.kind === "import",
|
|
68
|
+
);
|
|
69
|
+
for (const declaration of imports) {
|
|
70
|
+
const requested = declaration.names.map((name) => name.name);
|
|
71
|
+
const sources = standardSources(declaration.from.value, requested);
|
|
72
|
+
const custom =
|
|
73
|
+
sources.length === 0
|
|
74
|
+
? host.resolveModule?.(declaration.from.value, from)
|
|
75
|
+
: undefined;
|
|
76
|
+
const modules = custom ? [custom] : sources;
|
|
77
|
+
if (modules.length === 0) {
|
|
78
|
+
issues.push({
|
|
79
|
+
code: "HSX1006",
|
|
80
|
+
fix: "correct the module specifier or provide a deterministic module resolver",
|
|
81
|
+
message: `module ${declaration.from.value} cannot be resolved`,
|
|
82
|
+
span: declaration.from.span,
|
|
83
|
+
});
|
|
84
|
+
continue;
|
|
85
|
+
}
|
|
86
|
+
const resolvedNames = new Set<string>();
|
|
87
|
+
for (const module of modules) {
|
|
88
|
+
let moduleProgram = loaded.get(module.name);
|
|
89
|
+
if (!moduleProgram) {
|
|
90
|
+
if (resolving.has(module.name)) {
|
|
91
|
+
issues.push({
|
|
92
|
+
code: "HSX1006",
|
|
93
|
+
fix: "remove the cyclic module import",
|
|
94
|
+
message: `module graph has a cycle through ${module.name}`,
|
|
95
|
+
span: declaration.span,
|
|
96
|
+
});
|
|
97
|
+
continue;
|
|
98
|
+
}
|
|
99
|
+
resolving.add(module.name);
|
|
100
|
+
seenModules.add(module.name);
|
|
101
|
+
if (seenModules.size > moduleBudget) {
|
|
102
|
+
issues.push({
|
|
103
|
+
code: "HSX1006",
|
|
104
|
+
fix: `import no more than ${moduleBudget} modules`,
|
|
105
|
+
message: `the module graph exceeds ${moduleBudget} modules`,
|
|
106
|
+
span: declaration.span,
|
|
107
|
+
});
|
|
108
|
+
resolving.delete(module.name);
|
|
109
|
+
continue;
|
|
110
|
+
}
|
|
111
|
+
const parsed = parseProgram(module.source);
|
|
112
|
+
if (parsed.diagnostics.length > 0) {
|
|
113
|
+
issues.push({
|
|
114
|
+
code: "HSX1006",
|
|
115
|
+
fix: `fix the parse error in module ${module.name}`,
|
|
116
|
+
message: `module ${module.name} does not parse: ${parsed.diagnostics[0]?.message ?? "unknown parse error"}`,
|
|
117
|
+
span: declaration.from.span,
|
|
118
|
+
});
|
|
119
|
+
resolving.delete(module.name);
|
|
120
|
+
continue;
|
|
121
|
+
}
|
|
122
|
+
recordModuleOrigins(parsed.program, module, origins);
|
|
123
|
+
moduleProgram = resolveImports(parsed.program, module.name);
|
|
124
|
+
loaded.set(module.name, moduleProgram);
|
|
125
|
+
resolving.delete(module.name);
|
|
126
|
+
}
|
|
127
|
+
for (const decl of moduleProgram.decls) {
|
|
128
|
+
if (
|
|
129
|
+
(decl.kind !== "instrument" &&
|
|
130
|
+
decl.kind !== "instrument_apply" &&
|
|
131
|
+
decl.kind !== "type" &&
|
|
132
|
+
decl.kind !== "const") ||
|
|
133
|
+
!("exported" in decl) ||
|
|
134
|
+
!decl.exported ||
|
|
135
|
+
!requested.includes(decl.name.name)
|
|
136
|
+
)
|
|
137
|
+
continue;
|
|
138
|
+
resolvedNames.add(decl.name.name);
|
|
139
|
+
const carried =
|
|
140
|
+
decl.kind === "instrument_apply" || decl.kind === "instrument"
|
|
141
|
+
? withDeclarationScope(decl, moduleProgram)
|
|
142
|
+
: decl;
|
|
143
|
+
const priorSource = exportSourceByName.get(decl.name.name);
|
|
144
|
+
if (priorSource && priorSource !== module.name) {
|
|
145
|
+
issues.push({
|
|
146
|
+
code: "HSX1006",
|
|
147
|
+
fix: "import the name from exactly one module",
|
|
148
|
+
message: `imported name ${decl.name.name} is exported by more than one module`,
|
|
149
|
+
span: declaration.span,
|
|
150
|
+
});
|
|
151
|
+
continue;
|
|
152
|
+
}
|
|
153
|
+
exportSourceByName.set(decl.name.name, module.name);
|
|
154
|
+
const key = `${decl.kind}:${decl.name.name}`;
|
|
155
|
+
if (appendedKeys.has(key)) continue;
|
|
156
|
+
appendedKeys.add(key);
|
|
157
|
+
appended.push(carried);
|
|
158
|
+
}
|
|
159
|
+
}
|
|
160
|
+
for (const name of declaration.names) {
|
|
161
|
+
if (resolvedNames.has(name.name)) continue;
|
|
162
|
+
issues.push({
|
|
163
|
+
code: "HSX1006",
|
|
164
|
+
fix: "import a name that the module exports",
|
|
165
|
+
message: `module ${declaration.from.value} does not export ${name.name}`,
|
|
166
|
+
span: name.span,
|
|
167
|
+
});
|
|
168
|
+
}
|
|
169
|
+
}
|
|
170
|
+
const importerDeclarations = new Map(
|
|
171
|
+
current.decls.flatMap((decl) =>
|
|
172
|
+
decl.kind === "party" || decl.kind === "port"
|
|
173
|
+
? [[decl.name.name, decl] as const]
|
|
174
|
+
: [],
|
|
175
|
+
),
|
|
176
|
+
);
|
|
177
|
+
for (const decl of appended) {
|
|
178
|
+
if (
|
|
179
|
+
(decl.kind !== "instrument_apply" && decl.kind !== "instrument") ||
|
|
180
|
+
!decl.declarationScope
|
|
181
|
+
)
|
|
182
|
+
continue;
|
|
183
|
+
for (const local of decl.declarationScope) {
|
|
184
|
+
const importerDeclaration = importerDeclarations.get(local.name.name);
|
|
185
|
+
if (!importerDeclaration) continue;
|
|
186
|
+
if (sameDeclaration(local, importerDeclaration)) continue;
|
|
187
|
+
const importedKind =
|
|
188
|
+
decl.kind === "instrument_apply" ? "application" : "instrument";
|
|
189
|
+
issues.push({
|
|
190
|
+
code: "HSX1009",
|
|
191
|
+
fix: `rename the importer-owned ${local.name.name} declaration`,
|
|
192
|
+
message: `imported ${importedKind} ${decl.name.name} carries module-local ${local.kind} ${local.name.name}, which collides with an importer-owned declaration`,
|
|
193
|
+
span: importerDeclaration.span,
|
|
194
|
+
});
|
|
195
|
+
}
|
|
196
|
+
}
|
|
197
|
+
return { ...current, decls: [...current.decls, ...appended] };
|
|
198
|
+
};
|
|
199
|
+
|
|
200
|
+
const resolved = resolveImports(program, host.moduleName ?? "main");
|
|
201
|
+
return issues.length > 0
|
|
202
|
+
? { issues, ok: false }
|
|
203
|
+
: { ok: true, origins, program: resolved };
|
|
204
|
+
}
|
|
205
|
+
|
|
206
|
+
function recordModuleOrigins(
|
|
207
|
+
program: Program,
|
|
208
|
+
module: ModuleSource,
|
|
209
|
+
origins: Map<object, ModuleOrigin>,
|
|
210
|
+
): void {
|
|
211
|
+
const lines = lineIndex(module.source);
|
|
212
|
+
const seen = new Set<object>();
|
|
213
|
+
const visit = (value: unknown): void => {
|
|
214
|
+
if (!value || typeof value !== "object" || seen.has(value)) return;
|
|
215
|
+
seen.add(value);
|
|
216
|
+
if ("span" in value) {
|
|
217
|
+
const span = value.span;
|
|
218
|
+
if (
|
|
219
|
+
span &&
|
|
220
|
+
typeof span === "object" &&
|
|
221
|
+
"start" in span &&
|
|
222
|
+
typeof span.start === "number"
|
|
223
|
+
) {
|
|
224
|
+
const position = lineColIn(lines, span.start);
|
|
225
|
+
origins.set(span, {
|
|
226
|
+
column: position.column,
|
|
227
|
+
line: position.line,
|
|
228
|
+
moduleName: module.name,
|
|
229
|
+
});
|
|
230
|
+
}
|
|
231
|
+
}
|
|
232
|
+
for (const child of Object.values(value)) {
|
|
233
|
+
if (Array.isArray(child)) child.forEach(visit);
|
|
234
|
+
else visit(child);
|
|
235
|
+
}
|
|
236
|
+
};
|
|
237
|
+
visit(program);
|
|
238
|
+
}
|
|
239
|
+
|
|
240
|
+
function withDeclarationScope(
|
|
241
|
+
application: InstrumentApplyDecl | Extract<Decl, { kind: "instrument" }>,
|
|
242
|
+
moduleProgram: Program,
|
|
243
|
+
): InstrumentApplyDecl | Extract<Decl, { kind: "instrument" }> {
|
|
244
|
+
const declarations = new Map<string, ApplicationScopeDecl[]>();
|
|
245
|
+
for (const decl of moduleProgram.decls) {
|
|
246
|
+
if (!isApplicationScopeDecl(decl)) continue;
|
|
247
|
+
const named = declarations.get(decl.name.name) ?? [];
|
|
248
|
+
named.push(decl);
|
|
249
|
+
declarations.set(decl.name.name, named);
|
|
250
|
+
if (decl.kind === "instrument" && decl.declarationScope) {
|
|
251
|
+
for (const local of decl.declarationScope) {
|
|
252
|
+
const localNamed = declarations.get(local.name.name) ?? [];
|
|
253
|
+
localNamed.push(local);
|
|
254
|
+
declarations.set(local.name.name, localNamed);
|
|
255
|
+
}
|
|
256
|
+
}
|
|
257
|
+
}
|
|
258
|
+
const scope: ApplicationScopeDecl[] = [];
|
|
259
|
+
const seen = new Set<ApplicationScopeDecl>();
|
|
260
|
+
const pending: Decl[] = [application];
|
|
261
|
+
while (pending.length > 0) {
|
|
262
|
+
const source = pending.pop();
|
|
263
|
+
if (!source) continue;
|
|
264
|
+
const references = declarationReferences(source);
|
|
265
|
+
for (const name of references.names) {
|
|
266
|
+
for (const declaration of declarations.get(name) ?? []) {
|
|
267
|
+
if (
|
|
268
|
+
(declaration.kind === "party" && !references.parties.has(name)) ||
|
|
269
|
+
(declaration.kind === "port" && !references.ports.has(name))
|
|
270
|
+
)
|
|
271
|
+
continue;
|
|
272
|
+
if (seen.has(declaration)) continue;
|
|
273
|
+
seen.add(declaration);
|
|
274
|
+
scope.push(declaration);
|
|
275
|
+
pending.push(declaration);
|
|
276
|
+
}
|
|
277
|
+
}
|
|
278
|
+
}
|
|
279
|
+
return { ...application, declarationScope: scope };
|
|
280
|
+
}
|
|
281
|
+
|
|
282
|
+
function isApplicationScopeDecl(decl: Decl): decl is ApplicationScopeDecl {
|
|
283
|
+
return (
|
|
284
|
+
decl.kind === "const" ||
|
|
285
|
+
decl.kind === "instrument" ||
|
|
286
|
+
decl.kind === "party" ||
|
|
287
|
+
decl.kind === "port" ||
|
|
288
|
+
decl.kind === "type"
|
|
289
|
+
);
|
|
290
|
+
}
|
|
291
|
+
|
|
292
|
+
function declarationReferences(decl: Decl): {
|
|
293
|
+
readonly names: ReadonlySet<string>;
|
|
294
|
+
readonly parties: ReadonlySet<string>;
|
|
295
|
+
readonly ports: ReadonlySet<string>;
|
|
296
|
+
} {
|
|
297
|
+
const names = new Set<string>();
|
|
298
|
+
const parties = new Set<string>();
|
|
299
|
+
const ports = new Set<string>();
|
|
300
|
+
if (decl.kind === "instrument_apply") {
|
|
301
|
+
collectExprNames(decl.application, names, ports);
|
|
302
|
+
for (const argument of decl.application.args) {
|
|
303
|
+
collectApplicationPartyNames(argument, parties);
|
|
304
|
+
}
|
|
305
|
+
if (decl.metadata) collectExprNames(decl.metadata, names, ports);
|
|
306
|
+
}
|
|
307
|
+
if (decl.kind === "instrument") {
|
|
308
|
+
for (const parameter of decl.parameters)
|
|
309
|
+
collectExprNames(parameter.type, names, ports);
|
|
310
|
+
collectExprNames(decl.body, names, ports);
|
|
311
|
+
for (const parameter of [...decl.parameters, ...decl.typeParameters]) {
|
|
312
|
+
names.delete(parameter.name.name);
|
|
313
|
+
parties.delete(parameter.name.name);
|
|
314
|
+
ports.delete(parameter.name.name);
|
|
315
|
+
}
|
|
316
|
+
}
|
|
317
|
+
if (decl.kind === "const") {
|
|
318
|
+
if (decl.type) collectExprNames(decl.type, names, ports);
|
|
319
|
+
collectExprNames(decl.value, names, ports);
|
|
320
|
+
}
|
|
321
|
+
if (decl.kind === "type") collectExprNames(decl.value, names, ports);
|
|
322
|
+
if (decl.kind === "party" && decl.attrs)
|
|
323
|
+
collectExprNames(decl.attrs, names, ports);
|
|
324
|
+
if (decl.kind === "port") collectExprNames(decl.body, names, ports);
|
|
325
|
+
if (decl.kind === "instrument_apply" || isApplicationScopeDecl(decl)) {
|
|
326
|
+
names.delete(decl.name.name);
|
|
327
|
+
parties.delete(decl.name.name);
|
|
328
|
+
ports.delete(decl.name.name);
|
|
329
|
+
}
|
|
330
|
+
return { names, parties, ports };
|
|
331
|
+
}
|
|
332
|
+
|
|
333
|
+
function collectExprNames(
|
|
334
|
+
expr: Expr,
|
|
335
|
+
names: Set<string>,
|
|
336
|
+
ports: Set<string>,
|
|
337
|
+
): void {
|
|
338
|
+
if (expr.kind === "ident") names.add(expr.name);
|
|
339
|
+
if (expr.kind === "string") {
|
|
340
|
+
for (const match of expr.value.matchAll(/\{([A-Za-z][A-Za-z0-9_]*)\}/g)) {
|
|
341
|
+
if (match[1]) names.add(match[1]);
|
|
342
|
+
}
|
|
343
|
+
}
|
|
344
|
+
if (expr.kind === "money") names.add(expr.currency.name);
|
|
345
|
+
if (expr.kind === "path") {
|
|
346
|
+
for (const part of expr.parts) names.add(part.name);
|
|
347
|
+
}
|
|
348
|
+
if (expr.kind === "type_apply") {
|
|
349
|
+
names.add(expr.callee.name);
|
|
350
|
+
for (const argument of expr.args) collectExprNames(argument, names, ports);
|
|
351
|
+
}
|
|
352
|
+
if (expr.kind === "apply") {
|
|
353
|
+
collectExprNames(expr.callee, names, ports);
|
|
354
|
+
for (const argument of [...expr.typeArgs, ...expr.args]) {
|
|
355
|
+
collectExprNames(argument, names, ports);
|
|
356
|
+
}
|
|
357
|
+
}
|
|
358
|
+
if (expr.kind === "call") {
|
|
359
|
+
names.add(expr.callee.name);
|
|
360
|
+
for (const argument of expr.args) collectExprNames(argument, names, ports);
|
|
361
|
+
}
|
|
362
|
+
if (expr.kind === "binding") collectExprNames(expr.type, names, ports);
|
|
363
|
+
if (expr.kind === "decided_amount") collectExprNames(expr.body, names, ports);
|
|
364
|
+
if (expr.kind === "port_ref") {
|
|
365
|
+
names.add(expr.name.name);
|
|
366
|
+
ports.add(expr.name.name);
|
|
367
|
+
}
|
|
368
|
+
if (expr.kind === "settlement_ref") {
|
|
369
|
+
names.add(expr.owner.name);
|
|
370
|
+
names.add(expr.member.name);
|
|
371
|
+
}
|
|
372
|
+
if (expr.kind === "list") {
|
|
373
|
+
for (const item of expr.items) collectExprNames(item, names, ports);
|
|
374
|
+
}
|
|
375
|
+
if (expr.kind !== "block") return;
|
|
376
|
+
for (const entry of expr.entries) {
|
|
377
|
+
collectTemplatedNameReferences(entry.key.name, names);
|
|
378
|
+
for (const qualifier of entry.qualifiers) {
|
|
379
|
+
collectTemplatedNameReferences(qualifier.name, names);
|
|
380
|
+
}
|
|
381
|
+
if (entry.iteration) collectExprNames(entry.iteration.bound, names, ports);
|
|
382
|
+
collectExprNames(entry.value, names, ports);
|
|
383
|
+
if (entry.iteration) names.delete(entry.iteration.binding.name);
|
|
384
|
+
}
|
|
385
|
+
}
|
|
386
|
+
|
|
387
|
+
function collectApplicationPartyNames(expr: Expr, names: Set<string>): void {
|
|
388
|
+
if (expr.kind === "ident") names.add(expr.name);
|
|
389
|
+
if (expr.kind === "binding") collectApplicationPartyNames(expr.type, names);
|
|
390
|
+
if (expr.kind === "list") {
|
|
391
|
+
for (const item of expr.items) collectApplicationPartyNames(item, names);
|
|
392
|
+
}
|
|
393
|
+
}
|
|
394
|
+
|
|
395
|
+
function sameDeclaration(left: Decl, right: Decl): boolean {
|
|
396
|
+
return (
|
|
397
|
+
left.kind === right.kind &&
|
|
398
|
+
JSON.stringify(canonicalDeclaration(left)) ===
|
|
399
|
+
JSON.stringify(canonicalDeclaration(right))
|
|
400
|
+
);
|
|
401
|
+
}
|
|
402
|
+
|
|
403
|
+
function canonicalDeclaration(value: unknown): unknown {
|
|
404
|
+
if (Array.isArray(value)) return value.map(canonicalDeclaration);
|
|
405
|
+
if (value === null || typeof value !== "object") return value;
|
|
406
|
+
return Object.fromEntries(
|
|
407
|
+
Object.entries(value as Record<string, unknown>)
|
|
408
|
+
.filter(([key]) => key !== "span" && key !== "declarationScope")
|
|
409
|
+
.sort(([left], [right]) => left.localeCompare(right))
|
|
410
|
+
.map(([key, child]) => [key, canonicalDeclaration(child)]),
|
|
411
|
+
);
|
|
412
|
+
}
|
|
413
|
+
|
|
414
|
+
function collectTemplatedNameReferences(
|
|
415
|
+
name: string,
|
|
416
|
+
names: Set<string>,
|
|
417
|
+
): void {
|
|
418
|
+
for (const match of name.matchAll(/\[([A-Za-z][A-Za-z0-9_]*)\]/g)) {
|
|
419
|
+
if (match[1]) names.add(match[1]);
|
|
420
|
+
}
|
|
421
|
+
}
|
|
422
|
+
|
|
423
|
+
function standardSources(
|
|
424
|
+
specifier: string,
|
|
425
|
+
names: readonly string[],
|
|
426
|
+
): ModuleSource[] {
|
|
427
|
+
if (specifier !== "std/settlements") return [];
|
|
428
|
+
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
|
|
436
|
+
? [
|
|
437
|
+
{
|
|
438
|
+
name: `std.settlements.${name}`,
|
|
439
|
+
source: readFileSync(url, "utf8"),
|
|
440
|
+
},
|
|
441
|
+
]
|
|
442
|
+
: [];
|
|
443
|
+
});
|
|
444
|
+
}
|