@ricsam/r5d-worker 0.0.137 → 0.0.138

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 (236) hide show
  1. package/README.md +4 -94
  2. package/dist/cjs/package.json +1 -1
  3. package/dist/mjs/main.mjs +46 -7543
  4. package/dist/mjs/package.json +1 -1
  5. package/dist/mjs/personal/action-scheduler.mjs +31 -0
  6. package/dist/mjs/personal/client.mjs +215 -0
  7. package/dist/mjs/personal/runtime.mjs +328 -0
  8. package/dist/mjs/personal/tcp.mjs +217 -0
  9. package/dist/mjs/runtime/adapter.mjs +42 -0
  10. package/dist/mjs/runtime/client.mjs +95 -0
  11. package/dist/mjs/runtime/daemon.mjs +131 -0
  12. package/dist/mjs/runtime/executor.mjs +436 -0
  13. package/dist/mjs/runtime/index.mjs +15 -0
  14. package/dist/mjs/runtime/protocol.mjs +139 -0
  15. package/dist/mjs/runtime/pty-host.mjs +156 -0
  16. package/dist/mjs/runtime/pty.mjs +127 -0
  17. package/dist/mjs/runtime/releases/artifacts.mjs +201 -0
  18. package/dist/mjs/runtime/releases/grants.mjs +93 -0
  19. package/dist/mjs/runtime/releases/main.mjs +101 -0
  20. package/dist/mjs/runtime/releases/manager.mjs +541 -0
  21. package/dist/mjs/runtime/releases/process.mjs +88 -0
  22. package/dist/mjs/runtime/releases/retirement.mjs +18 -0
  23. package/dist/mjs/runtime/releases/rpc-client.mjs +184 -0
  24. package/dist/mjs/runtime/releases/rpc-main.mjs +213 -0
  25. package/dist/mjs/runtime/releases/rpc-protocol.mjs +103 -0
  26. package/dist/mjs/runtime/storage.mjs +156 -0
  27. package/dist/mjs/runtime/workspace/artifacts.mjs +121 -0
  28. package/dist/mjs/runtime/workspace/authority.mjs +1355 -0
  29. package/dist/mjs/runtime/workspace/contracts.mjs +60 -0
  30. package/dist/mjs/runtime/workspace/file-write.mjs +23 -0
  31. package/dist/mjs/runtime/workspace/files.mjs +308 -0
  32. package/dist/mjs/runtime/workspace/http-body.mjs +45 -0
  33. package/dist/mjs/runtime/workspace/storage-client.mjs +59 -0
  34. package/dist/mjs/runtime/workspace/storage-wire.mjs +53 -0
  35. package/dist/types/main.d.ts +0 -1167
  36. package/dist/types/personal/action-scheduler.d.ts +23 -0
  37. package/dist/types/personal/client.d.ts +14 -0
  38. package/dist/types/personal/runtime.d.ts +121 -0
  39. package/dist/types/personal/tcp.d.ts +14 -0
  40. package/dist/types/runtime/client.d.ts +3 -1
  41. package/dist/types/runtime/executor.d.ts +6 -1
  42. package/dist/types/runtime/protocol.d.ts +176 -4
  43. package/dist/types/runtime/pty.d.ts +1 -0
  44. package/dist/types/runtime/releases/artifacts.d.ts +51 -0
  45. package/dist/types/runtime/releases/grants.d.ts +16 -0
  46. package/dist/types/runtime/releases/manager.d.ts +145 -0
  47. package/dist/types/runtime/releases/process.d.ts +14 -0
  48. package/dist/types/runtime/releases/retirement.d.ts +15 -0
  49. package/dist/types/runtime/releases/rpc-client.d.ts +52 -0
  50. package/dist/types/runtime/releases/rpc-main.d.ts +10 -0
  51. package/dist/types/runtime/releases/rpc-protocol.d.ts +1139 -0
  52. package/dist/types/runtime/workspace/artifacts.d.ts +30 -0
  53. package/dist/types/runtime/workspace/authority.d.ts +338 -0
  54. package/dist/types/runtime/workspace/contracts.d.ts +86 -0
  55. package/dist/types/runtime/workspace/file-write.d.ts +14 -0
  56. package/dist/types/runtime/workspace/files.d.ts +21 -0
  57. package/dist/types/runtime/workspace/http-body.d.ts +9 -0
  58. package/dist/types/runtime/workspace/storage-client.d.ts +23 -0
  59. package/dist/types/runtime/workspace/storage-wire.d.ts +138 -0
  60. package/package.json +8 -6
  61. package/dist/cjs/atomic-rename.cjs +0 -303
  62. package/dist/cjs/browser-upload.cjs +0 -73
  63. package/dist/cjs/cli-update.cjs +0 -108
  64. package/dist/cjs/command-launcher.cjs +0 -423
  65. package/dist/cjs/control-command-policy.cjs +0 -177
  66. package/dist/cjs/git-blob-hash.cjs +0 -41
  67. package/dist/cjs/git-identity.cjs +0 -39
  68. package/dist/cjs/git-process-environment.cjs +0 -133
  69. package/dist/cjs/inline-output.cjs +0 -62
  70. package/dist/cjs/main.cjs +0 -7517
  71. package/dist/cjs/managed-paths.cjs +0 -215
  72. package/dist/cjs/plan-lint.cjs +0 -165
  73. package/dist/cjs/plan-parser.cjs +0 -127
  74. package/dist/cjs/plan-paths.cjs +0 -53
  75. package/dist/cjs/port-forward-client.cjs +0 -206
  76. package/dist/cjs/process-tree.cjs +0 -117
  77. package/dist/cjs/project-checkout-garbage.cjs +0 -219
  78. package/dist/cjs/project-mirror-fetch-policy.cjs +0 -82
  79. package/dist/cjs/project-mirror-refs-token.cjs +0 -85
  80. package/dist/cjs/project-workspace-state.cjs +0 -972
  81. package/dist/cjs/project-worktrees.cjs +0 -1713
  82. package/dist/cjs/pty-output-coalescer.cjs +0 -87
  83. package/dist/cjs/recovery-journal-protocol.cjs +0 -56
  84. package/dist/cjs/recovery-journal-runtime.cjs +0 -133
  85. package/dist/cjs/recovery-journal-thread.cjs +0 -9
  86. package/dist/cjs/recovery-journal.cjs +0 -742
  87. package/dist/cjs/recovery-output-window.cjs +0 -77
  88. package/dist/cjs/recovery-protocol.cjs +0 -31
  89. package/dist/cjs/recovery-store.cjs +0 -252
  90. package/dist/cjs/registry-auth.cjs +0 -310
  91. package/dist/cjs/repository-transition-policy.cjs +0 -49
  92. package/dist/cjs/runtime-version.cjs +0 -88
  93. package/dist/cjs/session-file-mutations.cjs +0 -61
  94. package/dist/cjs/supervisor.cjs +0 -147
  95. package/dist/cjs/three-way-merge.cjs +0 -346
  96. package/dist/cjs/working-tree-mirror.cjs +0 -1872
  97. package/dist/cjs/workspace-automatic-sync-policy.cjs +0 -79
  98. package/dist/cjs/workspace-branch-incarnation-policy.cjs +0 -37
  99. package/dist/cjs/workspace-command-sync-policy.cjs +0 -112
  100. package/dist/cjs/workspace-command-targets.cjs +0 -63
  101. package/dist/cjs/workspace-filesystem-executor-thread.cjs +0 -36
  102. package/dist/cjs/workspace-filesystem-executor.cjs +0 -327
  103. package/dist/cjs/workspace-filesystem-job-types.cjs +0 -144
  104. package/dist/cjs/workspace-filesystem-jobs.cjs +0 -59
  105. package/dist/cjs/workspace-git-sync.cjs +0 -3595
  106. package/dist/cjs/workspace-hydration-ledger.cjs +0 -83
  107. package/dist/cjs/workspace-hydration-merge.cjs +0 -448
  108. package/dist/cjs/workspace-hydration-recovery-state.cjs +0 -53
  109. package/dist/cjs/workspace-incident-state.cjs +0 -37
  110. package/dist/cjs/workspace-merge-projection.cjs +0 -628
  111. package/dist/cjs/workspace-mount-boundary.cjs +0 -71
  112. package/dist/cjs/workspace-mount-hold-fence.cjs +0 -120
  113. package/dist/cjs/workspace-mutation-gate.cjs +0 -127
  114. package/dist/cjs/workspace-path-move.cjs +0 -195
  115. package/dist/cjs/workspace-preserve-only-policy.cjs +0 -36
  116. package/dist/cjs/workspace-project-config-policy.cjs +0 -53
  117. package/dist/cjs/workspace-projection-ledger.cjs +0 -81
  118. package/dist/cjs/workspace-publication-evidence.cjs +0 -46
  119. package/dist/cjs/workspace-sync-coalescer.cjs +0 -58
  120. package/dist/mjs/atomic-rename.mjs +0 -261
  121. package/dist/mjs/browser-upload.mjs +0 -42
  122. package/dist/mjs/command-launcher.mjs +0 -393
  123. package/dist/mjs/control-command-policy.mjs +0 -146
  124. package/dist/mjs/git-blob-hash.mjs +0 -16
  125. package/dist/mjs/git-identity.mjs +0 -15
  126. package/dist/mjs/git-process-environment.mjs +0 -105
  127. package/dist/mjs/inline-output.mjs +0 -37
  128. package/dist/mjs/managed-paths.mjs +0 -174
  129. package/dist/mjs/plan-lint.mjs +0 -129
  130. package/dist/mjs/plan-parser.mjs +0 -94
  131. package/dist/mjs/plan-paths.mjs +0 -25
  132. package/dist/mjs/port-forward-client.mjs +0 -172
  133. package/dist/mjs/project-checkout-garbage.mjs +0 -178
  134. package/dist/mjs/project-mirror-fetch-policy.mjs +0 -56
  135. package/dist/mjs/project-mirror-refs-token.mjs +0 -53
  136. package/dist/mjs/project-workspace-state.mjs +0 -937
  137. package/dist/mjs/project-worktrees.mjs +0 -1657
  138. package/dist/mjs/pty-output-coalescer.mjs +0 -61
  139. package/dist/mjs/recovery-journal-protocol.mjs +0 -30
  140. package/dist/mjs/recovery-journal-runtime.mjs +0 -112
  141. package/dist/mjs/recovery-journal-thread.mjs +0 -8
  142. package/dist/mjs/recovery-journal.mjs +0 -694
  143. package/dist/mjs/recovery-output-window.mjs +0 -53
  144. package/dist/mjs/recovery-protocol.mjs +0 -6
  145. package/dist/mjs/recovery-store.mjs +0 -217
  146. package/dist/mjs/registry-auth.mjs +0 -269
  147. package/dist/mjs/repository-transition-policy.mjs +0 -22
  148. package/dist/mjs/runtime-version.mjs +0 -54
  149. package/dist/mjs/session-file-mutations.mjs +0 -37
  150. package/dist/mjs/supervisor.mjs +0 -114
  151. package/dist/mjs/three-way-merge.mjs +0 -318
  152. package/dist/mjs/working-tree-mirror.mjs +0 -1817
  153. package/dist/mjs/workspace-automatic-sync-policy.mjs +0 -48
  154. package/dist/mjs/workspace-branch-incarnation-policy.mjs +0 -13
  155. package/dist/mjs/workspace-command-sync-policy.mjs +0 -84
  156. package/dist/mjs/workspace-command-targets.mjs +0 -37
  157. package/dist/mjs/workspace-filesystem-executor-thread.mjs +0 -38
  158. package/dist/mjs/workspace-filesystem-executor.mjs +0 -287
  159. package/dist/mjs/workspace-filesystem-job-types.mjs +0 -116
  160. package/dist/mjs/workspace-filesystem-jobs.mjs +0 -55
  161. package/dist/mjs/workspace-git-sync.mjs +0 -3553
  162. package/dist/mjs/workspace-hydration-ledger.mjs +0 -58
  163. package/dist/mjs/workspace-hydration-merge.mjs +0 -414
  164. package/dist/mjs/workspace-hydration-recovery-state.mjs +0 -29
  165. package/dist/mjs/workspace-incident-state.mjs +0 -12
  166. package/dist/mjs/workspace-merge-projection.mjs +0 -594
  167. package/dist/mjs/workspace-mount-boundary.mjs +0 -37
  168. package/dist/mjs/workspace-mount-hold-fence.mjs +0 -95
  169. package/dist/mjs/workspace-mutation-gate.mjs +0 -103
  170. package/dist/mjs/workspace-path-move.mjs +0 -160
  171. package/dist/mjs/workspace-preserve-only-policy.mjs +0 -11
  172. package/dist/mjs/workspace-project-config-policy.mjs +0 -27
  173. package/dist/mjs/workspace-projection-ledger.mjs +0 -57
  174. package/dist/mjs/workspace-publication-evidence.mjs +0 -21
  175. package/dist/mjs/workspace-sync-coalescer.mjs +0 -34
  176. package/dist/types/atomic-rename.d.ts +0 -78
  177. package/dist/types/browser-upload.d.ts +0 -7
  178. package/dist/types/command-launcher.d.ts +0 -104
  179. package/dist/types/control-command-policy.d.ts +0 -53
  180. package/dist/types/git-blob-hash.d.ts +0 -10
  181. package/dist/types/git-identity.d.ts +0 -9
  182. package/dist/types/git-process-environment.d.ts +0 -9
  183. package/dist/types/inline-output.d.ts +0 -3
  184. package/dist/types/managed-paths.d.ts +0 -19
  185. package/dist/types/plan-lint.d.ts +0 -16
  186. package/dist/types/plan-parser.d.ts +0 -38
  187. package/dist/types/plan-paths.d.ts +0 -36
  188. package/dist/types/port-forward-client.d.ts +0 -8
  189. package/dist/types/project-checkout-garbage.d.ts +0 -86
  190. package/dist/types/project-mirror-fetch-policy.d.ts +0 -84
  191. package/dist/types/project-mirror-refs-token.d.ts +0 -53
  192. package/dist/types/project-workspace-state.d.ts +0 -188
  193. package/dist/types/project-worktrees.d.ts +0 -397
  194. package/dist/types/pty-output-coalescer.d.ts +0 -20
  195. package/dist/types/recovery-journal-protocol.d.ts +0 -35
  196. package/dist/types/recovery-journal-runtime.d.ts +0 -12
  197. package/dist/types/recovery-journal-stall-fixture.d.ts +0 -1
  198. package/dist/types/recovery-journal-thread.d.ts +0 -1
  199. package/dist/types/recovery-journal.d.ts +0 -248
  200. package/dist/types/recovery-output-window.d.ts +0 -19
  201. package/dist/types/recovery-protocol.d.ts +0 -59
  202. package/dist/types/recovery-store.d.ts +0 -52
  203. package/dist/types/registry-auth.d.ts +0 -47
  204. package/dist/types/repository-transition-policy.d.ts +0 -26
  205. package/dist/types/runtime-version.d.ts +0 -1
  206. package/dist/types/session-file-mutations.d.ts +0 -22
  207. package/dist/types/supervisor-daemonized-fixture.d.ts +0 -1
  208. package/dist/types/supervisor-launcher-cleanup-fixture.d.ts +0 -1
  209. package/dist/types/supervisor-signal-fixture.d.ts +0 -1
  210. package/dist/types/supervisor.d.ts +0 -23
  211. package/dist/types/three-way-merge.d.ts +0 -77
  212. package/dist/types/working-tree-mirror.d.ts +0 -424
  213. package/dist/types/workspace-automatic-sync-policy.d.ts +0 -57
  214. package/dist/types/workspace-branch-incarnation-policy.d.ts +0 -14
  215. package/dist/types/workspace-command-sync-policy.d.ts +0 -57
  216. package/dist/types/workspace-command-targets.d.ts +0 -37
  217. package/dist/types/workspace-filesystem-executor-thread.d.ts +0 -1
  218. package/dist/types/workspace-filesystem-executor.d.ts +0 -123
  219. package/dist/types/workspace-filesystem-job-types.d.ts +0 -302
  220. package/dist/types/workspace-filesystem-jobs.d.ts +0 -7
  221. package/dist/types/workspace-git-sync.d.ts +0 -514
  222. package/dist/types/workspace-hydration-ledger.d.ts +0 -76
  223. package/dist/types/workspace-hydration-merge.d.ts +0 -103
  224. package/dist/types/workspace-hydration-recovery-state.d.ts +0 -10
  225. package/dist/types/workspace-incident-state.d.ts +0 -19
  226. package/dist/types/workspace-merge-projection.d.ts +0 -69
  227. package/dist/types/workspace-mount-boundary.d.ts +0 -10
  228. package/dist/types/workspace-mount-hold-fence.d.ts +0 -42
  229. package/dist/types/workspace-mutation-gate.d.ts +0 -42
  230. package/dist/types/workspace-path-move.d.ts +0 -21
  231. package/dist/types/workspace-preserve-only-policy.d.ts +0 -15
  232. package/dist/types/workspace-project-config-policy.d.ts +0 -48
  233. package/dist/types/workspace-projection-ledger.d.ts +0 -59
  234. package/dist/types/workspace-publication-evidence.d.ts +0 -17
  235. package/dist/types/workspace-sync-coalescer.d.ts +0 -28
  236. /package/dist/types/{credential-authority-lock-fixture.d.ts → runtime/releases/main.d.ts} +0 -0
@@ -1,81 +0,0 @@
1
- "use strict";
2
- var __defProp = Object.defineProperty;
3
- var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
4
- var __getOwnPropNames = Object.getOwnPropertyNames;
5
- var __hasOwnProp = Object.prototype.hasOwnProperty;
6
- var __export = (target, all) => {
7
- for (var name in all)
8
- __defProp(target, name, { get: all[name], enumerable: true });
9
- };
10
- var __copyProps = (to, from, except, desc) => {
11
- if (from && typeof from === "object" || typeof from === "function") {
12
- for (let key of __getOwnPropNames(from))
13
- if (!__hasOwnProp.call(to, key) && key !== except)
14
- __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
15
- }
16
- return to;
17
- };
18
- var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
19
- var workspace_projection_ledger_exports = {};
20
- __export(workspace_projection_ledger_exports, {
21
- WorkspaceProjectionLedger: () => WorkspaceProjectionLedger
22
- });
23
- module.exports = __toCommonJS(workspace_projection_ledger_exports);
24
- const RETAINED_OUTCOMES = /* @__PURE__ */ new Set(["no_change", "updated", "published", "large_diff_blocked"]);
25
- class WorkspaceProjectionLedger {
26
- projectedTokens = /* @__PURE__ */ new Map();
27
- lastCycle = null;
28
- static recordKey(mount) {
29
- return `${mount.hydrationIncarnationKey}\0${mount.id}`;
30
- }
31
- get lastCycleResult() {
32
- return this.lastCycle;
33
- }
34
- lastProjectedToken(mount) {
35
- return this.projectedTokens.get(WorkspaceProjectionLedger.recordKey(mount));
36
- }
37
- /**
38
- * Record a completed cycle. `projectedMutationTokens` names the token each
39
- * active mount carried when the cycle projected it; a mount absent from it
40
- * keeps its earlier record. Any outcome that leaves the outer clone without
41
- * a trustworthy projection clears the ledger.
42
- */
43
- recordCycle(input) {
44
- if (!RETAINED_OUTCOMES.has(input.result.outcome)) {
45
- this.reset();
46
- return;
47
- }
48
- const mountsById = new Map(input.mounts.map((mount) => [mount.id, mount]));
49
- for (const [mountId, token] of Object.entries(input.projectedMutationTokens ?? {})) {
50
- const mount = mountsById.get(mountId);
51
- if (mount) this.projectedTokens.set(WorkspaceProjectionLedger.recordKey(mount), token);
52
- }
53
- this.lastCycle = input.result;
54
- }
55
- reset() {
56
- this.projectedTokens.clear();
57
- this.lastCycle = null;
58
- }
59
- /**
60
- * The previous cycle's result when every request targets a configured
61
- * mount and no mount's token moved since its recorded projection. A request
62
- * without a target (a workspace-rooted command may touch any checkout), a
63
- * mount without a token (a pending deletion), or pending deletion work all
64
- * require a real cycle.
65
- */
66
- answerFromLastCycle(input) {
67
- if (!this.lastCycle || input.pendingDeletions || input.targetMountIds.length === 0) return null;
68
- const mountIds = new Set(input.mounts.map(({ id }) => id));
69
- if (!input.targetMountIds.every((mountId) => mountId !== null && mountIds.has(mountId))) return null;
70
- for (const mount of input.mounts) {
71
- if (!mount.mutationToken) return null;
72
- const recorded = this.projectedTokens.get(WorkspaceProjectionLedger.recordKey(mount));
73
- if (recorded === void 0 || recorded !== mount.mutationToken()) return null;
74
- }
75
- return this.lastCycle;
76
- }
77
- }
78
- // Annotate the CommonJS export names for ESM import in node:
79
- 0 && (module.exports = {
80
- WorkspaceProjectionLedger
81
- });
@@ -1,46 +0,0 @@
1
- "use strict";
2
- var __defProp = Object.defineProperty;
3
- var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
4
- var __getOwnPropNames = Object.getOwnPropertyNames;
5
- var __hasOwnProp = Object.prototype.hasOwnProperty;
6
- var __export = (target, all) => {
7
- for (var name in all)
8
- __defProp(target, name, { get: all[name], enumerable: true });
9
- };
10
- var __copyProps = (to, from, except, desc) => {
11
- if (from && typeof from === "object" || typeof from === "function") {
12
- for (let key of __getOwnPropNames(from))
13
- if (!__hasOwnProp.call(to, key) && key !== except)
14
- __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
15
- }
16
- return to;
17
- };
18
- var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
19
- var workspace_publication_evidence_exports = {};
20
- __export(workspace_publication_evidence_exports, {
21
- activeProjectBranchNames: () => activeProjectBranchNames,
22
- activeProjectBranchPublicationEvidence: () => activeProjectBranchPublicationEvidence
23
- });
24
- module.exports = __toCommonJS(workspace_publication_evidence_exports);
25
- function projectBranchMountId(projectId, branchName) {
26
- return `project:${projectId}:${encodeURIComponent(branchName)}`;
27
- }
28
- function activeProjectBranchNames(projectId, branchNames, activeMountIds) {
29
- const active = new Set(activeMountIds);
30
- return [...branchNames].filter((branchName) => active.has(projectBranchMountId(projectId, branchName))).sort((left, right) => left.localeCompare(right));
31
- }
32
- function activeProjectBranchPublicationEvidence(projects, activeMountIds) {
33
- const active = new Set(activeMountIds);
34
- return projects.flatMap(
35
- (project) => project.executionDisabled || project.mirrorWritesDisabled ? [] : project.branches.flatMap(
36
- (branch) => active.has(projectBranchMountId(project.projectId, branch.branchName)) ? [{ branchId: branch.branchId, projectId: project.projectId, branchName: branch.branchName }] : []
37
- )
38
- ).sort(
39
- (left, right) => left.projectId.localeCompare(right.projectId) || left.branchName.localeCompare(right.branchName) || left.branchId.localeCompare(right.branchId)
40
- );
41
- }
42
- // Annotate the CommonJS export names for ESM import in node:
43
- 0 && (module.exports = {
44
- activeProjectBranchNames,
45
- activeProjectBranchPublicationEvidence
46
- });
@@ -1,58 +0,0 @@
1
- "use strict";
2
- var __defProp = Object.defineProperty;
3
- var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
4
- var __getOwnPropNames = Object.getOwnPropertyNames;
5
- var __hasOwnProp = Object.prototype.hasOwnProperty;
6
- var __export = (target, all) => {
7
- for (var name in all)
8
- __defProp(target, name, { get: all[name], enumerable: true });
9
- };
10
- var __copyProps = (to, from, except, desc) => {
11
- if (from && typeof from === "object" || typeof from === "function") {
12
- for (let key of __getOwnPropNames(from))
13
- if (!__hasOwnProp.call(to, key) && key !== except)
14
- __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
15
- }
16
- return to;
17
- };
18
- var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
19
- var workspace_sync_coalescer_exports = {};
20
- __export(workspace_sync_coalescer_exports, {
21
- WorkspaceSyncCoalescer: () => WorkspaceSyncCoalescer
22
- });
23
- module.exports = __toCommonJS(workspace_sync_coalescer_exports);
24
- class WorkspaceSyncCoalescer {
25
- constructor(options) {
26
- this.options = options;
27
- }
28
- options;
29
- pendingBatch = null;
30
- batchesStarted = 0;
31
- /** Requests attached to the batch that has not started yet. */
32
- get queuedRequestCount() {
33
- return this.pendingBatch?.requests.length ?? 0;
34
- }
35
- /** Batches whose body has been entered, whether or not they ran a cycle. */
36
- get startedBatchCount() {
37
- return this.batchesStarted;
38
- }
39
- request(request) {
40
- const queued = this.pendingBatch;
41
- if (queued) {
42
- queued.requests.push(request);
43
- return queued.settlement;
44
- }
45
- const batch = { requests: [request], settlement: Promise.resolve() };
46
- this.pendingBatch = batch;
47
- batch.settlement = this.options.runExclusive(async () => {
48
- if (this.pendingBatch === batch) this.pendingBatch = null;
49
- this.batchesStarted += 1;
50
- return await this.options.runBatch(batch.requests);
51
- });
52
- return batch.settlement;
53
- }
54
- }
55
- // Annotate the CommonJS export names for ESM import in node:
56
- 0 && (module.exports = {
57
- WorkspaceSyncCoalescer
58
- });
@@ -1,261 +0,0 @@
1
- import fs from "node:fs";
2
- import os from "node:os";
3
- import path from "node:path";
4
- import { randomUUID } from "node:crypto";
5
- class AtomicRenameError extends Error {
6
- constructor(syscall, code, errno, path2, dest) {
7
- super(`${code}: ${syscall} failed, ${path2} -> ${dest}`);
8
- this.syscall = syscall;
9
- this.code = code;
10
- this.errno = errno;
11
- this.path = path2;
12
- this.dest = dest;
13
- this.name = "AtomicRenameError";
14
- }
15
- syscall;
16
- code;
17
- errno;
18
- path;
19
- dest;
20
- }
21
- const UNSUPPORTED_CODES = /* @__PURE__ */ new Set(["EINVAL", "ENOSYS", "ENOTSUP", "EOPNOTSUPP", "EPERM"]);
22
- function isAtomicRenameUnsupported(error) {
23
- return error instanceof AtomicRenameError && UNSUPPORTED_CODES.has(error.code);
24
- }
25
- const LINUX_AT_FDCWD = -100;
26
- const LINUX_RENAME_NOREPLACE = 1;
27
- const LINUX_RENAME_EXCHANGE = 2;
28
- const DARWIN_RENAME_SWAP = 2;
29
- const DARWIN_RENAME_EXCL = 4;
30
- const LINUX_SYS_RENAMEAT2 = { x64: 316, arm64: 276 };
31
- const PROBE_PREFIX = ".r5d-atomic-rename-probe-";
32
- let loaded = null;
33
- let override = null;
34
- const errnoNames = /* @__PURE__ */ new Map();
35
- for (const [name, value] of Object.entries(os.constants.errno)) errnoNames.set(value, name);
36
- function errnoCode(errno) {
37
- return errnoNames.get(errno) ?? `E${errno}`;
38
- }
39
- function cString(value) {
40
- return Buffer.from(`${value}\0`, "utf8");
41
- }
42
- function loadNative() {
43
- if (loaded) return loaded;
44
- loaded = { calls: null, detail: "not attempted" };
45
- try {
46
- const ffi = require("bun:ffi");
47
- const { dlopen, FFIType, ptr, read } = ffi;
48
- if (process.platform === "darwin") {
49
- const lib = dlopen("libSystem.B.dylib", {
50
- renamex_np: { args: [FFIType.ptr, FFIType.ptr, FFIType.u32], returns: FFIType.i32 },
51
- __error: { args: [], returns: FFIType.ptr }
52
- });
53
- loaded = {
54
- calls: {
55
- rename2: (from, to, flags) => {
56
- const fromBuffer = cString(from);
57
- const toBuffer = cString(to);
58
- return lib.symbols.renamex_np(ptr(fromBuffer), ptr(toBuffer), flags);
59
- },
60
- errno: () => read.i32(lib.symbols.__error(), 0),
61
- exchangeFlag: DARWIN_RENAME_SWAP,
62
- noReplaceFlag: DARWIN_RENAME_EXCL,
63
- backend: "renamex_np"
64
- }
65
- };
66
- return loaded;
67
- }
68
- if (process.platform === "linux") {
69
- const errnoLib = dlopen("libc.so.6", { __errno_location: { args: [], returns: FFIType.ptr } });
70
- const errno = () => read.i32(errnoLib.symbols.__errno_location(), 0);
71
- try {
72
- const lib = dlopen("libc.so.6", {
73
- renameat2: { args: [FFIType.i32, FFIType.ptr, FFIType.i32, FFIType.ptr, FFIType.u32], returns: FFIType.i32 }
74
- });
75
- loaded = {
76
- calls: {
77
- rename2: (from, to, flags) => {
78
- const fromBuffer = cString(from);
79
- const toBuffer = cString(to);
80
- return lib.symbols.renameat2(LINUX_AT_FDCWD, ptr(fromBuffer), LINUX_AT_FDCWD, ptr(toBuffer), flags);
81
- },
82
- errno,
83
- exchangeFlag: LINUX_RENAME_EXCHANGE,
84
- noReplaceFlag: LINUX_RENAME_NOREPLACE,
85
- backend: "renameat2"
86
- }
87
- };
88
- return loaded;
89
- } catch (error) {
90
- const number = LINUX_SYS_RENAMEAT2[process.arch];
91
- if (number === void 0) {
92
- loaded = { calls: null, detail: `renameat2 symbol unavailable and no syscall number for ${process.arch}: ${String(error)}` };
93
- return loaded;
94
- }
95
- const lib = dlopen("libc.so.6", {
96
- syscall: {
97
- args: [FFIType.i64, FFIType.i64, FFIType.i64, FFIType.i64, FFIType.i64, FFIType.i64],
98
- returns: FFIType.i64
99
- }
100
- });
101
- loaded = {
102
- calls: {
103
- rename2: (from, to, flags) => {
104
- const fromBuffer = cString(from);
105
- const toBuffer = cString(to);
106
- return Number(
107
- lib.symbols.syscall(number, LINUX_AT_FDCWD, Number(ptr(fromBuffer)), LINUX_AT_FDCWD, Number(ptr(toBuffer)), flags)
108
- );
109
- },
110
- errno,
111
- exchangeFlag: LINUX_RENAME_EXCHANGE,
112
- noReplaceFlag: LINUX_RENAME_NOREPLACE,
113
- backend: "syscall"
114
- }
115
- };
116
- return loaded;
117
- }
118
- }
119
- loaded = { calls: null, detail: `no atomic exchange primitive on ${process.platform}` };
120
- } catch (error) {
121
- loaded = { calls: null, detail: `bun:ffi unavailable: ${error instanceof Error ? error.message : String(error)}` };
122
- }
123
- return loaded;
124
- }
125
- function applyOverride(support) {
126
- if (override?.exchange !== void 0) support.exchange = override.exchange;
127
- if (override?.noReplace !== void 0) support.noReplace = override.noReplace;
128
- return support;
129
- }
130
- function atomicRenameSupport() {
131
- const native = loadNative();
132
- return applyOverride(
133
- native.calls ? { platform: process.platform, exchange: native.calls.backend, noReplace: native.calls.backend } : { platform: process.platform, exchange: "unavailable", noReplace: "link", detail: native.detail }
134
- );
135
- }
136
- function overrideAtomicRenameSupportForTests(value) {
137
- override = value;
138
- }
139
- function resetAtomicRenameProbesForTests() {
140
- probes.clear();
141
- }
142
- function call(native, syscall, from, to, flags) {
143
- if (native.rename2(from, to, flags) === 0) return;
144
- const errno = native.errno();
145
- throw new AtomicRenameError(syscall, errnoCode(errno), errno, from, to);
146
- }
147
- function exchangeWith(support, a, b) {
148
- const native = loadNative().calls;
149
- if (support.exchange === "unavailable" || !native) {
150
- throw new AtomicRenameError("exchange", "ENOSYS", os.constants.errno.ENOSYS, a, b);
151
- }
152
- call(native, support.exchange, a, b, native.exchangeFlag);
153
- }
154
- function renameNoReplaceWith(support, from, to) {
155
- const native = loadNative().calls;
156
- if (support.noReplace !== "link" && native) {
157
- call(native, support.noReplace, from, to, native.noReplaceFlag);
158
- return;
159
- }
160
- const source = fs.lstatSync(from);
161
- if (!source.isFile()) throw new AtomicRenameError("link", "ENOTSUP", os.constants.errno.ENOTSUP, from, to);
162
- try {
163
- fs.linkSync(from, to);
164
- } catch (error) {
165
- const code = error.code ?? "EIO";
166
- throw new AtomicRenameError("link", code, error.errno ?? 0, from, to);
167
- }
168
- fs.unlinkSync(from);
169
- }
170
- function exchangePaths(a, b) {
171
- exchangeWith(atomicRenameSupport(), a, b);
172
- }
173
- function renameNoReplace(from, to) {
174
- renameNoReplaceWith(atomicRenameSupport(), from, to);
175
- }
176
- const probes = /* @__PURE__ */ new Map();
177
- function withoutTemporaries(directory, run) {
178
- const token = randomUUID();
179
- const a = path.join(directory, `${PROBE_PREFIX}${token}-a`);
180
- const b = path.join(directory, `${PROBE_PREFIX}${token}-b`);
181
- try {
182
- run(a, b);
183
- } finally {
184
- fs.rmSync(a, { force: true });
185
- fs.rmSync(b, { force: true });
186
- }
187
- }
188
- function createProbeFile(filePath, content) {
189
- const descriptor = fs.openSync(filePath, fs.constants.O_WRONLY | fs.constants.O_CREAT | fs.constants.O_EXCL, 384);
190
- try {
191
- fs.writeSync(descriptor, content);
192
- return fs.fstatSync(descriptor);
193
- } finally {
194
- fs.closeSync(descriptor);
195
- }
196
- }
197
- function probeAtomicRenameSupport(directory) {
198
- const native = atomicRenameSupport();
199
- const dev = fs.lstatSync(directory).dev;
200
- const cached = probes.get(dev);
201
- if (cached) return applyOverride({ ...cached });
202
- const probed = { ...native };
203
- if (native.exchange !== "unavailable") {
204
- withoutTemporaries(directory, (a, b) => {
205
- const statA = createProbeFile(a, "a");
206
- const statB = createProbeFile(b, "b");
207
- let swapped = false;
208
- let detail;
209
- try {
210
- exchangeWith(native, a, b);
211
- const afterA = fs.lstatSync(a);
212
- const afterB = fs.lstatSync(b);
213
- swapped = afterA.ino === statB.ino && afterB.ino === statA.ino;
214
- if (!swapped) detail = `exchange flag ignored by the filesystem holding ${directory}`;
215
- } catch (error) {
216
- detail = `exchange rejected by the filesystem holding ${directory}: ${error instanceof Error ? error.message : String(error)}`;
217
- }
218
- if (!swapped) {
219
- probed.exchange = "unavailable";
220
- probed.detail = detail;
221
- }
222
- });
223
- }
224
- if (native.noReplace !== "link") {
225
- withoutTemporaries(directory, (a, b) => {
226
- createProbeFile(a, "a");
227
- createProbeFile(b, "b");
228
- let refused = false;
229
- try {
230
- renameNoReplaceWith(native, a, b);
231
- } catch (error) {
232
- refused = error instanceof AtomicRenameError && error.code === "EEXIST";
233
- }
234
- if (!refused) {
235
- probed.noReplace = "link";
236
- probed.detail = `${probed.detail ? `${probed.detail}; ` : ""}no-replace flag ignored by the filesystem holding ${directory}`;
237
- }
238
- });
239
- }
240
- probes.set(dev, probed);
241
- return applyOverride({ ...probed });
242
- }
243
- function atomicRenamePrimitivesFor(directory) {
244
- const support = probeAtomicRenameSupport(directory);
245
- return {
246
- support,
247
- exchange: (a, b) => exchangeWith(support, a, b),
248
- renameNoReplace: (from, to) => renameNoReplaceWith(support, from, to)
249
- };
250
- }
251
- export {
252
- AtomicRenameError,
253
- atomicRenamePrimitivesFor,
254
- atomicRenameSupport,
255
- exchangePaths,
256
- isAtomicRenameUnsupported,
257
- overrideAtomicRenameSupportForTests,
258
- probeAtomicRenameSupport,
259
- renameNoReplace,
260
- resetAtomicRenameProbesForTests
261
- };
@@ -1,42 +0,0 @@
1
- import fs from "node:fs/promises";
2
- import { constants } from "node:fs";
3
- import os from "node:os";
4
- import path from "node:path";
5
- import {
6
- BROWSER_UPLOAD_CHUNK_BYTES,
7
- validateUploadFile
8
- } from "@ricsam/r5d-api/browser-upload";
9
- async function readBrowserUploadChunk(input, context) {
10
- if (typeof input.filePath !== "string" || !input.filePath.trim() || input.filePath.includes("\0"))
11
- throw new Error("Upload requires a file path.");
12
- if (!Number.isSafeInteger(input.offset) || input.offset < 0) throw new Error("Invalid upload read offset.");
13
- if (input.offset > 0 && !input.version) throw new Error("Upload continuation requires a file version.");
14
- const expanded = input.filePath.replace(/\$\{R5D_ROOT\}|\$R5D_ROOT\b/g, () => context.rootDir).replace(/\$\{R5D_SESSION_ID\}|\$R5D_SESSION_ID\b/g, () => context.sessionId).replace(/^~\//, () => `${os.homedir()}/`);
15
- const filePath = path.resolve(context.cwd, expanded);
16
- const handle = await fs.open(filePath, constants.O_RDONLY | constants.O_NONBLOCK);
17
- try {
18
- const stat = await handle.stat({ bigint: true });
19
- if (!stat.isFile()) throw new Error(`Upload source is not a regular file: ${input.filePath}`);
20
- const metadata = validateUploadFile({ filename: path.basename(filePath), size: Number(stat.size) });
21
- const versionOf = (s) => `${s.dev}:${s.ino}:${s.size}:${s.mtimeNs}:${s.ctimeNs}`;
22
- const version = versionOf(stat);
23
- if (input.version !== void 0 && input.version !== version)
24
- throw new Error(`Upload source changed while being transferred: ${input.filePath}`);
25
- if (input.offset > metadata.size) throw new Error("Upload offset is past the end of the file.");
26
- const bytes = Buffer.alloc(input.metadataOnly === true ? 0 : Math.min(BROWSER_UPLOAD_CHUNK_BYTES, metadata.size - input.offset));
27
- let read = 0;
28
- while (read < bytes.length) {
29
- const { bytesRead } = await handle.read(bytes, read, bytes.length - read, input.offset + read);
30
- if (!bytesRead) throw new Error(`Upload source was truncated: ${input.filePath}`);
31
- read += bytesRead;
32
- }
33
- if (versionOf(await handle.stat({ bigint: true })) !== version)
34
- throw new Error(`Upload source changed while being read: ${input.filePath}`);
35
- return { type: "browser_upload_read", ...metadata, version, offset: input.offset, base64: bytes.toString("base64") };
36
- } finally {
37
- await handle.close();
38
- }
39
- }
40
- export {
41
- readBrowserUploadChunk
42
- };