@hyperscale0/hsx 2.4.1 → 3.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.
- package/CHANGELOG.md +2 -408
- package/README.md +3 -92
- package/dist/src/ast.d.ts +99 -310
- package/dist/src/ast.d.ts.map +1 -1
- package/dist/src/ast.js +16 -69
- package/dist/src/ast.js.map +1 -1
- package/dist/src/cli.d.ts +6 -19
- package/dist/src/cli.d.ts.map +1 -1
- package/dist/src/cli.js +76 -315
- package/dist/src/cli.js.map +1 -1
- package/dist/src/compile.d.ts +23 -73
- package/dist/src/compile.d.ts.map +1 -1
- package/dist/src/compile.js +1113 -148
- package/dist/src/compile.js.map +1 -1
- package/dist/src/cost.d.ts +8 -77
- package/dist/src/cost.d.ts.map +1 -1
- package/dist/src/cost.js +13 -422
- package/dist/src/cost.js.map +1 -1
- package/dist/src/format.d.ts +8 -7
- package/dist/src/format.d.ts.map +1 -1
- package/dist/src/format.js +9 -175
- package/dist/src/format.js.map +1 -1
- package/dist/src/headers.d.ts +35 -0
- package/dist/src/headers.d.ts.map +1 -0
- package/dist/src/headers.js +108 -0
- package/dist/src/headers.js.map +1 -0
- package/dist/src/index.d.ts +6 -12
- package/dist/src/index.d.ts.map +1 -1
- package/dist/src/index.js +4 -9
- package/dist/src/index.js.map +1 -1
- package/dist/src/lex.d.ts +8 -28
- package/dist/src/lex.d.ts.map +1 -1
- package/dist/src/lex.js +88 -146
- package/dist/src/lex.js.map +1 -1
- package/dist/src/parse.d.ts +4 -17
- package/dist/src/parse.d.ts.map +1 -1
- package/dist/src/parse.js +402 -1040
- package/dist/src/parse.js.map +1 -1
- package/dist/src/std-bundle.d.ts.map +1 -1
- package/dist/src/std-bundle.js +12 -20
- package/dist/src/std-bundle.js.map +1 -1
- package/dist/src/std-library.d.ts +1 -1
- package/dist/src/std-library.d.ts.map +1 -1
- package/dist/src/std-library.js +1 -5
- package/dist/src/std-library.js.map +1 -1
- package/dist/src/tunables.d.ts +7 -0
- package/dist/src/tunables.d.ts.map +1 -0
- package/dist/src/tunables.js +26 -0
- package/dist/src/tunables.js.map +1 -0
- package/dist/src/version.d.ts +2 -4
- package/dist/src/version.d.ts.map +1 -1
- package/dist/src/version.js +2 -4
- package/dist/src/version.js.map +1 -1
- package/docs/README.md +179 -41
- package/docs/headers.md +44 -0
- package/examples/cost-table.json +99 -751
- package/examples/library.hsx +59 -0
- package/package.json +9 -17
- package/src/ast.ts +82 -441
- package/src/cli.ts +77 -362
- package/src/compile.ts +1535 -247
- package/src/cost.ts +28 -671
- package/src/format.ts +12 -256
- package/src/headers.ts +126 -0
- package/src/index.ts +7 -39
- package/src/lex.ts +99 -195
- package/src/parse.ts +403 -1209
- package/src/std-bundle.ts +12 -20
- package/src/std-library.ts +2 -7
- package/src/tunables.ts +31 -0
- package/src/version.ts +2 -5
- package/std/approvals.hsx +17 -0
- package/std/cards.hsx +63 -0
- package/std/collections.hsx +31 -0
- package/std/escrow.hsx +43 -0
- package/std/financing.hsx +372 -0
- package/std/insurance.hsx +59 -0
- package/std/lending.hsx +115 -0
- package/std/marketplace.hsx +24 -0
- package/std/money.hsx +195 -0
- package/std/savings.hsx +44 -0
- package/std/travel.hsx +98 -0
- package/std/wallet.hsx +41 -0
- package/dist/src/diagnostics.d.ts +0 -13
- package/dist/src/diagnostics.d.ts.map +0 -1
- package/dist/src/diagnostics.js +0 -587
- package/dist/src/diagnostics.js.map +0 -1
- package/dist/src/emit.d.ts +0 -51
- package/dist/src/emit.d.ts.map +0 -1
- package/dist/src/emit.js +0 -192
- package/dist/src/emit.js.map +0 -1
- package/dist/src/entry-overrides.d.ts +0 -58
- package/dist/src/entry-overrides.d.ts.map +0 -1
- package/dist/src/entry-overrides.js +0 -284
- package/dist/src/entry-overrides.js.map +0 -1
- package/dist/src/ir.d.ts +0 -73
- package/dist/src/ir.d.ts.map +0 -1
- package/dist/src/ir.js +0 -15
- package/dist/src/ir.js.map +0 -1
- package/dist/src/limits.d.ts +0 -23
- package/dist/src/limits.d.ts.map +0 -1
- package/dist/src/limits.js +0 -23
- package/dist/src/limits.js.map +0 -1
- package/dist/src/lsp/server.d.ts +0 -32
- package/dist/src/lsp/server.d.ts.map +0 -1
- package/dist/src/lsp/server.js +0 -391
- package/dist/src/lsp/server.js.map +0 -1
- package/dist/src/modules.d.ts +0 -38
- package/dist/src/modules.d.ts.map +0 -1
- package/dist/src/modules.js +0 -372
- package/dist/src/modules.js.map +0 -1
- package/dist/src/typecheck.d.ts +0 -8
- package/dist/src/typecheck.d.ts.map +0 -1
- package/dist/src/typecheck.js +0 -4160
- package/dist/src/typecheck.js.map +0 -1
- package/docs/guide/01-first-program.md +0 -24
- package/docs/guide/02-money.md +0 -25
- package/docs/guide/03-instruments.md +0 -93
- package/docs/guide/04-lifecycles.md +0 -40
- package/docs/guide/05-fees-and-splits.md +0 -45
- package/docs/guide/06-schedules.md +0 -26
- package/docs/guide/07-composition.md +0 -52
- package/docs/guide/08-writing-a-module.md +0 -85
- package/docs/guide/09-cost.md +0 -24
- package/docs/guide/10-diagnostics.md +0 -27
- package/docs/llms-full.txt +0 -3684
- package/docs/llms.txt +0 -44
- package/docs/piece-plans.md +0 -120
- package/docs/playground.md +0 -55
- package/docs/reference/cli.md +0 -36
- package/docs/reference/diagnostics.md +0 -901
- package/docs/reference/grammar.md +0 -38
- package/docs/reference/std/advance.md +0 -112
- package/docs/reference/std/cancellable_booking.md +0 -159
- package/docs/reference/std/captured_payment.md +0 -115
- package/docs/reference/std/conditional_disbursement.md +0 -101
- package/docs/reference/std/credit_facility.md +0 -108
- package/docs/reference/std/held_payment.md +0 -173
- package/docs/reference/std/instant_transfer.md +0 -97
- package/docs/reference/std/metered.md +0 -89
- package/docs/reference/std/pooled_split.md +0 -95
- package/docs/reference/std/premium_forward.md +0 -119
- package/docs/reference/std/reconciled_payout.md +0 -103
- package/docs/reference/std/rotating_pool.md +0 -130
- package/docs/reference/std/scheduled.md +0 -136
- package/docs/reference/std/security_deposit.md +0 -138
- package/docs/reference/std/settlement_batch.md +0 -123
- package/docs/reference/std/swap.md +0 -133
- package/docs/reference/std/threshold_pool.md +0 -138
- package/docs/reference/std/weighted_distribution.md +0 -135
- package/docs/reference/types.md +0 -61
- package/docs/reference/udl-output.md +0 -13
- package/examples/01-first-program/README.md +0 -45
- package/examples/01-first-program/tip-jar.hsx +0 -17
- package/examples/02-imports-and-modules/README.md +0 -96
- package/examples/02-imports-and-modules/photo-booth.hsx +0 -37
- package/examples/03-diagnostics/README.md +0 -68
- package/examples/03-diagnostics/corner-shop-fixed.hsx +0 -22
- package/examples/03-diagnostics/corner-shop.hsx +0 -19
- package/examples/04-complete-product/README.md +0 -84
- package/examples/04-complete-product/study-hall.hsx +0 -67
- package/examples/05-authored-instrument/README.md +0 -5
- package/examples/05-authored-instrument/payment.hsx +0 -37
- package/examples/05-watch-club/README.md +0 -6
- package/examples/05-watch-club/watch-club.hsx +0 -123
- package/examples/README.md +0 -48
- package/examples/advance/README.md +0 -3
- package/examples/advance/advance.hsx +0 -13
- package/examples/advance/advance.udl +0 -367
- package/examples/cancellable_booking/README.md +0 -3
- package/examples/cancellable_booking/cancellable_booking.hsx +0 -14
- package/examples/cancellable_booking/cancellable_booking.udl +0 -413
- package/examples/captured_payment/README.md +0 -3
- package/examples/captured_payment/captured_payment.hsx +0 -17
- package/examples/captured_payment/captured_payment.udl +0 -686
- package/examples/conditional_disbursement/README.md +0 -3
- package/examples/conditional_disbursement/conditional_disbursement.hsx +0 -15
- package/examples/conditional_disbursement/conditional_disbursement.udl +0 -418
- package/examples/credit_facility/README.md +0 -3
- package/examples/credit_facility/credit_facility.hsx +0 -24
- package/examples/credit_facility/credit_facility.udl +0 -1396
- package/examples/held_payment/README.md +0 -3
- package/examples/held_payment/held_payment.hsx +0 -13
- package/examples/held_payment/held_payment.udl +0 -569
- package/examples/instant_transfer/README.md +0 -3
- package/examples/instant_transfer/instant_transfer.hsx +0 -16
- package/examples/instant_transfer/instant_transfer.udl +0 -376
- package/examples/metered/README.md +0 -3
- package/examples/metered/metered.hsx +0 -13
- package/examples/metered/metered.udl +0 -253
- package/examples/pooled_split/README.md +0 -3
- package/examples/pooled_split/pooled_split.hsx +0 -15
- package/examples/pooled_split/pooled_split.udl +0 -432
- package/examples/premium_forward/README.md +0 -3
- package/examples/premium_forward/premium_forward.hsx +0 -19
- package/examples/premium_forward/premium_forward.udl +0 -604
- package/examples/reconciled_payout/README.md +0 -3
- package/examples/reconciled_payout/reconciled_payout.hsx +0 -13
- package/examples/reconciled_payout/reconciled_payout.udl +0 -312
- package/examples/rotating_pool/README.md +0 -3
- package/examples/rotating_pool/rotating_pool.hsx +0 -18
- package/examples/rotating_pool/rotating_pool.udl +0 -4370
- package/examples/scheduled/README.md +0 -3
- package/examples/scheduled/scheduled.hsx +0 -12
- package/examples/scheduled/scheduled.udl +0 -355
- package/examples/security_deposit/README.md +0 -3
- package/examples/security_deposit/security_deposit.hsx +0 -21
- package/examples/security_deposit/security_deposit.udl +0 -320
- package/examples/settlement_batch/README.md +0 -3
- package/examples/settlement_batch/settlement_batch.hsx +0 -19
- package/examples/settlement_batch/settlement_batch.udl +0 -757
- package/examples/swap/README.md +0 -3
- package/examples/swap/swap.hsx +0 -19
- package/examples/swap/swap.udl +0 -892
- package/examples/threshold_pool/README.md +0 -3
- package/examples/threshold_pool/threshold_pool.hsx +0 -16
- package/examples/threshold_pool/threshold_pool.udl +0 -680
- package/examples/weighted_distribution/README.md +0 -3
- package/examples/weighted_distribution/weighted_distribution.hsx +0 -20
- package/examples/weighted_distribution/weighted_distribution.udl +0 -348
- package/skills/hsx/SKILL.md +0 -449
- package/src/diagnostics.ts +0 -620
- package/src/emit.ts +0 -282
- package/src/entry-overrides.ts +0 -428
- package/src/ir.ts +0 -113
- package/src/limits.ts +0 -22
- package/src/lsp/server.ts +0 -460
- package/src/modules.ts +0 -452
- package/src/typecheck.ts +0 -5515
- package/std/SEMANTICS.md +0 -44
- package/std/money_flows/advance.hsx +0 -235
- package/std/money_flows/cancellable_booking.hsx +0 -402
- package/std/money_flows/captured_payment.hsx +0 -220
- package/std/money_flows/conditional_disbursement.hsx +0 -226
- package/std/money_flows/credit_facility.hsx +0 -214
- package/std/money_flows/held_payment.hsx +0 -812
- package/std/money_flows/index.hsx +0 -4
- package/std/money_flows/instant_transfer.hsx +0 -231
- package/std/money_flows/metered.hsx +0 -104
- package/std/money_flows/pooled_split.hsx +0 -109
- package/std/money_flows/premium_forward.hsx +0 -307
- package/std/money_flows/reconciled_payout.hsx +0 -119
- package/std/money_flows/rotating_pool.hsx +0 -305
- package/std/money_flows/scheduled.hsx +0 -599
- package/std/money_flows/security_deposit.hsx +0 -248
- package/std/money_flows/settlement_batch.hsx +0 -173
- package/std/money_flows/swap.hsx +0 -1192
- package/std/money_flows/threshold_pool.hsx +0 -307
- package/std/money_flows/weighted_distribution.hsx +0 -237
package/src/ir.ts
DELETED
|
@@ -1,113 +0,0 @@
|
|
|
1
|
-
import type { Span } from "./ast.ts";
|
|
2
|
-
import type {
|
|
3
|
-
resolveUdlActionPlans,
|
|
4
|
-
UdlEffectKind,
|
|
5
|
-
UdlIssueCode,
|
|
6
|
-
} from "@hyperscale0/udl";
|
|
7
|
-
|
|
8
|
-
export type JsonValue =
|
|
9
|
-
| boolean
|
|
10
|
-
| number
|
|
11
|
-
| string
|
|
12
|
-
| null
|
|
13
|
-
| readonly JsonValue[]
|
|
14
|
-
| { readonly [key: string]: JsonValue };
|
|
15
|
-
|
|
16
|
-
export const HSX_TYPE_KINDS = [
|
|
17
|
-
"account",
|
|
18
|
-
"boolean",
|
|
19
|
-
"bps",
|
|
20
|
-
"condition",
|
|
21
|
-
"date",
|
|
22
|
-
"integer",
|
|
23
|
-
"money",
|
|
24
|
-
"party",
|
|
25
|
-
"percent",
|
|
26
|
-
"ref",
|
|
27
|
-
"text",
|
|
28
|
-
"unknown",
|
|
29
|
-
] as const;
|
|
30
|
-
|
|
31
|
-
export interface HsxType {
|
|
32
|
-
readonly currency?: string;
|
|
33
|
-
/** Positive safe integer minor units fixed by money(CUR, amount). */
|
|
34
|
-
readonly fixedAmount?: string;
|
|
35
|
-
readonly kind: (typeof HSX_TYPE_KINDS)[number];
|
|
36
|
-
readonly target?: string;
|
|
37
|
-
}
|
|
38
|
-
|
|
39
|
-
export interface TypedField {
|
|
40
|
-
readonly name: string;
|
|
41
|
-
readonly origin: Span;
|
|
42
|
-
readonly required: boolean;
|
|
43
|
-
readonly schema: Readonly<Record<string, JsonValue>>;
|
|
44
|
-
readonly type: HsxType;
|
|
45
|
-
}
|
|
46
|
-
|
|
47
|
-
export interface TypedAction {
|
|
48
|
-
readonly effects: Readonly<
|
|
49
|
-
Partial<
|
|
50
|
-
Record<
|
|
51
|
-
UdlEffectKind,
|
|
52
|
-
readonly {
|
|
53
|
-
readonly signature: string;
|
|
54
|
-
readonly source: string;
|
|
55
|
-
readonly channel?: string;
|
|
56
|
-
readonly role?: string;
|
|
57
|
-
}[]
|
|
58
|
-
>
|
|
59
|
-
>
|
|
60
|
-
>;
|
|
61
|
-
readonly name: string;
|
|
62
|
-
readonly origin: Span;
|
|
63
|
-
readonly slots: Readonly<Record<string, JsonValue>>;
|
|
64
|
-
}
|
|
65
|
-
|
|
66
|
-
export type ResolvedActionPlan = ReturnType<
|
|
67
|
-
typeof resolveUdlActionPlans
|
|
68
|
-
>["plans"][number];
|
|
69
|
-
export type ResolvedProgramActionPlan = ResolvedActionPlan & {
|
|
70
|
-
readonly instrument: string;
|
|
71
|
-
};
|
|
72
|
-
|
|
73
|
-
export interface TypedInstrument {
|
|
74
|
-
readonly actionPlans?: readonly ResolvedActionPlan[];
|
|
75
|
-
readonly actions: readonly TypedAction[];
|
|
76
|
-
readonly fields: readonly TypedField[];
|
|
77
|
-
readonly id: string;
|
|
78
|
-
readonly origin: Span;
|
|
79
|
-
readonly slots: Readonly<Record<string, JsonValue>>;
|
|
80
|
-
}
|
|
81
|
-
|
|
82
|
-
export interface TypedSubject {
|
|
83
|
-
readonly declaredValue: "none" | "optional" | "required";
|
|
84
|
-
readonly kind: string;
|
|
85
|
-
readonly origin: Span;
|
|
86
|
-
readonly schema: Readonly<Record<string, JsonValue>>;
|
|
87
|
-
readonly title: string;
|
|
88
|
-
readonly version: number;
|
|
89
|
-
}
|
|
90
|
-
|
|
91
|
-
export interface TypedProgram {
|
|
92
|
-
readonly instruments: readonly TypedInstrument[];
|
|
93
|
-
readonly kind: "typed_program";
|
|
94
|
-
readonly name: string;
|
|
95
|
-
readonly origin: Span;
|
|
96
|
-
readonly subjects: readonly TypedSubject[];
|
|
97
|
-
readonly title: string;
|
|
98
|
-
}
|
|
99
|
-
|
|
100
|
-
export interface GeneralDiagnostic {
|
|
101
|
-
readonly path?: string;
|
|
102
|
-
readonly udlCode?: UdlIssueCode;
|
|
103
|
-
readonly code: string;
|
|
104
|
-
readonly fix: string;
|
|
105
|
-
readonly message: string;
|
|
106
|
-
readonly severity: "error" | "warning";
|
|
107
|
-
readonly span: Span;
|
|
108
|
-
}
|
|
109
|
-
|
|
110
|
-
export interface GeneralCheckResult {
|
|
111
|
-
readonly diagnostics: readonly GeneralDiagnostic[];
|
|
112
|
-
readonly program?: TypedProgram;
|
|
113
|
-
}
|
package/src/limits.ts
DELETED
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* What the compiler refuses to read, as opposed to what it refuses to emit.
|
|
3
|
-
* These bounds cap the input side an attacker controls.
|
|
4
|
-
*
|
|
5
|
-
* Both numbers are set against the 34 real programs this compiler is tested
|
|
6
|
-
* on. The deepest nests 5 levels; the largest is 13,934 bytes.
|
|
7
|
-
*/
|
|
8
|
-
export const HSX_LIMITS = Object.freeze({
|
|
9
|
-
/** Shared ceiling for finite comprehensions and action-call expansion. */
|
|
10
|
-
maxExpansions: 256,
|
|
11
|
-
/**
|
|
12
|
-
* How deep the recursive-descent productions may nest. Measured on this
|
|
13
|
-
* machine, the parser exhausted the call stack at 9,217 nested blocks and
|
|
14
|
-
* threw a RangeError out of `compile`, which SECURITY.md promises never
|
|
15
|
-
* happens. The crash point moves with whatever stack the process has left,
|
|
16
|
-
* so the ceiling is declared here instead of discovered at runtime. 64 is
|
|
17
|
-
* 12x the deepest real program and 144x below that measured crash.
|
|
18
|
-
*/
|
|
19
|
-
maxNestingDepth: 64,
|
|
20
|
-
/** 18x the largest real HSX program. */
|
|
21
|
-
maxSourceBytes: 256 * 1_024,
|
|
22
|
-
});
|
package/src/lsp/server.ts
DELETED
|
@@ -1,460 +0,0 @@
|
|
|
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
|
-
}
|