querysub 0.474.0 → 0.475.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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "querysub",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.475.0",
|
|
4
4
|
"main": "index.js",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"note1": "note on node-forge fork, see https://github.com/digitalbazaar/forge/issues/744 for details",
|
|
@@ -23,7 +23,8 @@
|
|
|
23
23
|
"mcp": "yarn typenode ./src/diagnostics/logs/IndexedLogs/MCPIndexedLogsEntry.ts",
|
|
24
24
|
"mc": "yarn typenode ./src/diagnostics/logs/IndexedLogs/MCPIndexedLogsEntry.ts --cwd D:/repos/qs-cyoa/",
|
|
25
25
|
"mcp2": "yarn typenode ./src/diagnostics/debugger/mcp-server.ts",
|
|
26
|
-
"mc2": "yarn typenode ./src/diagnostics/debugger/mcp-server.ts --cwd D:/repos/qs-cyoa/"
|
|
26
|
+
"mc2": "yarn typenode ./src/diagnostics/debugger/mcp-server.ts --cwd D:/repos/qs-cyoa/",
|
|
27
|
+
"ssh-a-claude": "ssh root@a.querysubtest.com"
|
|
27
28
|
},
|
|
28
29
|
"bin": {
|
|
29
30
|
"deploy": "./bin/deploy.js",
|
|
@@ -1957,6 +1957,10 @@ export class PathValueProxyWatcher {
|
|
|
1957
1957
|
public runOnce<Result = void>(
|
|
1958
1958
|
options: Omit<WatcherOptions<Result>, "onResultUpdated" | "onWriteCommitted">
|
|
1959
1959
|
): Result {
|
|
1960
|
+
// TODO: This is a recent change. We maybe should apply the user pass and options. However, we definitely don't want to call create watcher as that will apply our additional options, making it temporary, where this might actually be run inside of a non-temporary watcher like a render function. Which finally will break on commit finish because it'll think it's in a temporary function and subscribe to the wrong callback.
|
|
1961
|
+
if (this.inWatcher()) {
|
|
1962
|
+
return options.watchFunction();
|
|
1963
|
+
}
|
|
1960
1964
|
let result: { result: Result } | { error: string } | undefined;
|
|
1961
1965
|
let watcher = this.createWatcher({
|
|
1962
1966
|
...options,
|
package/src/4-deploy/git.ts
CHANGED
|
@@ -126,18 +126,52 @@ export const setGitRef = measureWrap(async function setGitRef(config: {
|
|
|
126
126
|
gitRef: string;
|
|
127
127
|
}) {
|
|
128
128
|
await fs.promises.mkdir(config.gitFolder, { recursive: true });
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
129
|
+
// ssh-keyscan is a network call; a transient failure here must not abort the sync. The host key is normally already in known_hosts from machine setup, and callers only escalate to clobbering the checkout on *repo* failures — not on a momentary inability to refresh a host key.
|
|
130
|
+
try {
|
|
131
|
+
let hostKey = await runPromise(`ssh-keyscan -t rsa bitbucket.org`);
|
|
132
|
+
hostKey = hostKey.split("\n").filter(x => !x.startsWith("#")).join("\n");
|
|
133
|
+
let knownHostsPath = os.homedir() + "/.ssh/known_hosts";
|
|
134
|
+
if (hostKey && (!fs.existsSync(knownHostsPath) || !fs.readFileSync(knownHostsPath).toString().includes(hostKey))) {
|
|
135
|
+
fs.appendFileSync(knownHostsPath, "\n" + hostKey + "\n");
|
|
136
|
+
}
|
|
137
|
+
} catch (e: any) {
|
|
138
|
+
console.warn(`ssh-keyscan for bitbucket.org failed, continuing: ${e.stack ?? e}`);
|
|
134
139
|
}
|
|
135
140
|
|
|
136
141
|
await runPromise(`git remote update`, { cwd: config.gitFolder });
|
|
137
142
|
await runPromise(`git add --all`, { cwd: config.gitFolder });
|
|
138
|
-
|
|
143
|
+
// nothrow: on a freshly re-initialized repo (rebuildGitFolder) there is no initial commit yet, so `git stash` errors. That's harmless — the `git reset --hard` below is what actually forces the working tree to the target ref.
|
|
144
|
+
await runPromise(`git stash`, { cwd: config.gitFolder, nothrow: true });
|
|
139
145
|
await runPromise(`git fetch --all`, { cwd: config.gitFolder });
|
|
140
146
|
await runPromise(`git reset --hard ${config.gitRef}`, { cwd: config.gitFolder });
|
|
141
147
|
// Allows us to remove deleted objects from storage, ex, if we accidentally commit a 1GB, this deletes it, so we don't have to fix each server individually. Also I think the repo breaks if we go too long without pruning it?
|
|
142
148
|
await runPromise(`git prune`, { cwd: config.gitFolder });
|
|
149
|
+
});
|
|
150
|
+
|
|
151
|
+
/** Recovers a broken repo WITHOUT disturbing the working-tree files. We delete only .git, re-init, re-add the remote, then let setGitRef's `git reset --hard` reconcile the tracked files to the ref. Untracked / gitignored files (notably node_modules, which is expensive to reinstall and may be open in a running service) are left exactly as they are. When the directory is empty this produces the same result as a fresh clone. */
|
|
152
|
+
export const rebuildGitFolder = measureWrap(async function rebuildGitFolder(config: {
|
|
153
|
+
gitFolder: string;
|
|
154
|
+
repoUrl: string;
|
|
155
|
+
gitRef: string;
|
|
156
|
+
}) {
|
|
157
|
+
await fs.promises.mkdir(config.gitFolder, { recursive: true });
|
|
158
|
+
await fs.promises.rm(config.gitFolder + ".git", { recursive: true, force: true });
|
|
159
|
+
await runPromise(`git init`, { cwd: config.gitFolder });
|
|
160
|
+
await runPromise(`git remote add origin ${config.repoUrl}`, { cwd: config.gitFolder });
|
|
161
|
+
await setGitRef({ gitFolder: config.gitFolder, gitRef: config.gitRef });
|
|
162
|
+
});
|
|
163
|
+
|
|
164
|
+
/** Last-resort recovery for a working tree git can't reconcile (rebuildGitFolder failed). Clones fresh into a sibling temp directory and swaps it in only after the clone and ref-set succeed, so a failed/interrupted clone can never leave the live folder empty — the failure mode that previously stranded running services with a deleted node_modules. This necessarily discards node_modules; the caller reinstalls it. */
|
|
165
|
+
export const nuclearReclone = measureWrap(async function nuclearReclone(config: {
|
|
166
|
+
gitFolder: string;
|
|
167
|
+
repoUrl: string;
|
|
168
|
+
gitRef: string;
|
|
169
|
+
}) {
|
|
170
|
+
let target = config.gitFolder.replace(/[\/\\]+$/, "");
|
|
171
|
+
let tempDir = target + ".reclone-" + Date.now();
|
|
172
|
+
await fs.promises.rm(tempDir, { recursive: true, force: true });
|
|
173
|
+
await runPromise(`git clone ${config.repoUrl} ${tempDir}`);
|
|
174
|
+
await setGitRef({ gitFolder: tempDir + "/", gitRef: config.gitRef });
|
|
175
|
+
await fs.promises.rm(target, { recursive: true, force: true });
|
|
176
|
+
await fs.promises.rename(tempDir, target);
|
|
143
177
|
});
|
|
@@ -13,12 +13,12 @@ import { formatTime } from "socket-function/src/formatting/format";
|
|
|
13
13
|
import { sort, timeInMinute, timeInSecond } from "socket-function/src/misc";
|
|
14
14
|
import { isDefined } from "../misc";
|
|
15
15
|
import { logLoadTime } from "../logModuleLoadTimes";
|
|
16
|
-
import { delay, runInSerial, runInfinitePoll, runInfinitePollCallAtStart } from "socket-function/src/batching";
|
|
16
|
+
import { delay, retryFunctional, runInSerial, runInfinitePoll, runInfinitePollCallAtStart } from "socket-function/src/batching";
|
|
17
17
|
import os from "os";
|
|
18
18
|
import fs from "fs";
|
|
19
19
|
import { spawn, ChildProcess } from "child_process";
|
|
20
20
|
import { lazy } from "socket-function/src/caching";
|
|
21
|
-
import { getGitRefLive, getGitURLLive, setGitRef } from "../4-deploy/git";
|
|
21
|
+
import { getGitRefLive, getGitURLLive, setGitRef, rebuildGitFolder, nuclearReclone } from "../4-deploy/git";
|
|
22
22
|
import { blue, green, magenta, red } from "socket-function/src/formatting/logColors";
|
|
23
23
|
import { shutdown } from "../diagnostics/periodic";
|
|
24
24
|
import { onServiceConfigChange, triggerRollingUpdate } from "./machineController";
|
|
@@ -607,24 +607,53 @@ const killScreen = measureWrap(async function killScreen(config: {
|
|
|
607
607
|
await runPromise(`${prefix}tmux kill-session -t ${config.screenName}`);
|
|
608
608
|
await removeOldNodeId(config.screenName);
|
|
609
609
|
});
|
|
610
|
+
// When a present repo fails to sync, retry a few times with backoff before deciding it is actually broken — most failures are transient network blips (ssh-keyscan / fetch), and reacting to those by clobbering the checkout is what stranded running services (they kept running but crashed on the next lazy `require("ws")` once node_modules was gone).
|
|
611
|
+
const GIT_SYNC_MAX_RETRIES = 4;
|
|
612
|
+
const GIT_SYNC_RETRY_MIN_DELAY = timeInSecond * 2;
|
|
613
|
+
const GIT_SYNC_RETRY_MAX_DELAY = timeInSecond * 30;
|
|
614
|
+
|
|
610
615
|
const ensureGitSynced = measureWrap(async function ensureGitSynced(config: {
|
|
611
|
-
//
|
|
612
|
-
// - Maybe ask the AI the best way to forcefully switch a git repo.
|
|
616
|
+
// Forces the checkout at gitFolder to gitRef. Escalates through increasingly destructive recoveries, but only ever destroys the working tree as an absolute last resort — a network blip must never wipe node_modules out from under a running service.
|
|
613
617
|
gitFolder: string;
|
|
614
618
|
repoUrl: string;
|
|
615
619
|
gitRef: string;
|
|
616
620
|
}) {
|
|
617
|
-
|
|
618
|
-
|
|
619
|
-
|
|
621
|
+
let hasGit = await fsExistsAsync(config.gitFolder + ".git");
|
|
622
|
+
|
|
623
|
+
// Repo present: sync to the ref, retrying transient failures with backoff. We do NOT clobber the checkout just because a network call blipped.
|
|
624
|
+
if (hasGit) {
|
|
625
|
+
try {
|
|
626
|
+
await retryFunctional(() => setGitRef(config), {
|
|
627
|
+
maxRetries: GIT_SYNC_MAX_RETRIES,
|
|
628
|
+
minDelay: GIT_SYNC_RETRY_MIN_DELAY,
|
|
629
|
+
maxDelay: GIT_SYNC_RETRY_MAX_DELAY,
|
|
630
|
+
})();
|
|
631
|
+
return;
|
|
632
|
+
} catch (e: any) {
|
|
633
|
+
console.error(`Failed to sync git ref after ${GIT_SYNC_MAX_RETRIES} retries; rebuilding .git in place next (working tree, incl. node_modules, is preserved).`, {
|
|
634
|
+
gitFolder: config.gitFolder,
|
|
635
|
+
repoUrl: config.repoUrl,
|
|
636
|
+
gitRef: config.gitRef,
|
|
637
|
+
error: e?.stack ?? String(e),
|
|
638
|
+
});
|
|
620
639
|
}
|
|
621
|
-
|
|
640
|
+
}
|
|
641
|
+
|
|
642
|
+
// Repo missing, or present-but-unsyncable: rebuild just the .git metadata and let `git reset --hard` reconcile the tracked files. The working-tree files (node_modules) are left untouched. Equivalent to a clone when the folder is empty.
|
|
643
|
+
try {
|
|
644
|
+
await rebuildGitFolder(config);
|
|
645
|
+
return;
|
|
622
646
|
} catch (e: any) {
|
|
623
|
-
console.
|
|
624
|
-
|
|
625
|
-
|
|
626
|
-
|
|
647
|
+
console.error(`Rebuilding .git in place failed; falling back to a full delete + clone (this wipes node_modules, which the caller reinstalls).`, {
|
|
648
|
+
gitFolder: config.gitFolder,
|
|
649
|
+
repoUrl: config.repoUrl,
|
|
650
|
+
gitRef: config.gitRef,
|
|
651
|
+
error: e?.stack ?? String(e),
|
|
652
|
+
});
|
|
627
653
|
}
|
|
654
|
+
|
|
655
|
+
// Nuclear: the working tree itself is unusable. Clone fresh (into a temp dir, swapped in only on success).
|
|
656
|
+
await nuclearReclone(config);
|
|
628
657
|
});
|
|
629
658
|
|
|
630
659
|
|
|
@@ -710,8 +739,10 @@ const resyncServicesBase = runInSerial(measureWrap(async function resyncServices
|
|
|
710
739
|
gitRef: config.parameters.gitRef,
|
|
711
740
|
});
|
|
712
741
|
let afterGitRef = await getGitRefLive(gitFolder);
|
|
713
|
-
|
|
714
|
-
|
|
742
|
+
// Reinstall when the ref changed OR node_modules is missing. The latter is the real fix for the "Cannot find module 'ws'" crash: a recovery re-clone can land on the same commit, so a ref-only check would skip the install and leave the service with no node_modules. Restoring node_modules also self-heals an already-running process, since a failed `require` is never cached and the next reconnect re-resolves it.
|
|
743
|
+
let nodeModulesMissing = !await fsExistsAsync(gitFolder + "node_modules");
|
|
744
|
+
if (afterGitRef !== prevGitRef || nodeModulesMissing) {
|
|
745
|
+
console.log(green(`Yarn installing for ${magenta(screenName)} (ref ${prevGitRef} -> ${afterGitRef}, nodeModulesMissing=${nodeModulesMissing})`));
|
|
715
746
|
await runPromise(`yarn install`, { cwd: gitFolder });
|
|
716
747
|
}
|
|
717
748
|
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { atomic, atomicObjectWrite, atomicObjectWriteNoFreeze, doAtomicWrites, isTransparentValue, proxyWatcher, specialObjectWriteValue } from "../../src/2-proxy/PathValueProxyWatcher";
|
|
1
|
+
import { atomic, atomicObjectWrite, atomicObjectWriteNoFreeze, doAtomicWrites, doProxyOptions, isTransparentValue, proxyWatcher, specialObjectWriteValue } from "../../src/2-proxy/PathValueProxyWatcher";
|
|
2
2
|
import { Querysub } from "../../src/4-querysub/Querysub";
|
|
3
3
|
import { SocketFunction } from "socket-function/SocketFunction";
|
|
4
4
|
import { FullCallType, SocketRegistered } from "socket-function/SocketFunctionTypes";
|
|
@@ -91,6 +91,25 @@ const writeWatchers = new Map<string, {
|
|
|
91
91
|
fncName: string;
|
|
92
92
|
}[]>();
|
|
93
93
|
|
|
94
|
+
export function asyncCache<T>(fnc: () => Promise<T>): (...args: any[]) => T | undefined {
|
|
95
|
+
return getSyncedController({
|
|
96
|
+
nodes: {
|
|
97
|
+
"": {
|
|
98
|
+
fnc,
|
|
99
|
+
},
|
|
100
|
+
},
|
|
101
|
+
})("").fnc;
|
|
102
|
+
}
|
|
103
|
+
export function asyncCacheObj<T>(fncs: T): {
|
|
104
|
+
[key in keyof T]: T[key] extends (...args: any[]) => Promise<infer Return> ? (...args: any[]) => Return | undefined : never;
|
|
105
|
+
} {
|
|
106
|
+
return getSyncedController({
|
|
107
|
+
nodes: {
|
|
108
|
+
"": fncs as any,
|
|
109
|
+
},
|
|
110
|
+
})("") as any;
|
|
111
|
+
}
|
|
112
|
+
|
|
94
113
|
export function getSyncedController<T extends {
|
|
95
114
|
nodes: {
|
|
96
115
|
[key: string]: {
|
|
@@ -274,12 +293,15 @@ export function getSyncedController<T extends {
|
|
|
274
293
|
});
|
|
275
294
|
// We have to wait until we actually commit before making the call. Otherwise, if this commit is rejected because we need to do synchronized values, we'll call the function twice.
|
|
276
295
|
let fnc = controller.nodes[nodeId][fncName] as any;
|
|
296
|
+
console.log(`Triggering call ${fncName} with args ${JSON.stringify(args)}`);
|
|
277
297
|
Querysub.onCommitFinished(() => {
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
298
|
+
console.log(`Commit finished for call ${fncName} with args ${JSON.stringify(args)}`);
|
|
299
|
+
// Doesn't on commit finished also implicitly mean we're all synced? Pretty sure that isAll synced is making things break.
|
|
300
|
+
//if (Querysub.isAllSynced()) {
|
|
301
|
+
void Promise.resolve().then(() => {
|
|
302
|
+
doPromiseCall();
|
|
303
|
+
});
|
|
304
|
+
//}
|
|
283
305
|
});
|
|
284
306
|
function doPromiseCall() {
|
|
285
307
|
let promise = fnc(...args) as Promise<unknown>;
|
|
@@ -347,7 +369,10 @@ export function getSyncedController<T extends {
|
|
|
347
369
|
}
|
|
348
370
|
}
|
|
349
371
|
}
|
|
372
|
+
// Force it to commit, so even if we aren't synced, it runs.
|
|
373
|
+
//doProxyOptions({ commitAllRuns: true }, () => {
|
|
350
374
|
call(...args);
|
|
375
|
+
//});
|
|
351
376
|
// Assign to itself, to preset the type assumptions typescript makes (otherwise we get an error below)
|
|
352
377
|
obj = obj as any;
|
|
353
378
|
if (config?.cachePromiseCalls) {
|