neon 2.1.2 → 2.29.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/LICENSE.md +178 -0
- package/README.md +601 -0
- package/dist/analytics.js +156 -0
- package/dist/api.js +665 -0
- package/dist/auth.js +127 -0
- package/dist/callback.html +51 -0
- package/dist/cli.js +9 -0
- package/dist/commands/auth.js +214 -0
- package/dist/commands/bootstrap.js +481 -0
- package/dist/commands/branches.js +481 -0
- package/dist/commands/bucket.js +543 -0
- package/dist/commands/checkout.js +289 -0
- package/dist/commands/config.js +544 -0
- package/dist/commands/connection_string.js +172 -0
- package/dist/commands/data_api.js +285 -0
- package/dist/commands/databases.js +82 -0
- package/dist/commands/deploy.js +26 -0
- package/dist/commands/dev.js +698 -0
- package/dist/commands/env.js +166 -0
- package/dist/commands/functions.js +373 -0
- package/dist/commands/index.js +54 -0
- package/dist/commands/init.js +73 -0
- package/dist/commands/ip_allow.js +137 -0
- package/dist/commands/link.js +1121 -0
- package/dist/commands/neon_auth.js +1028 -0
- package/dist/commands/operations.js +28 -0
- package/dist/commands/orgs.js +24 -0
- package/dist/commands/projects.js +372 -0
- package/dist/commands/psql.js +62 -0
- package/dist/commands/roles.js +65 -0
- package/dist/commands/schema_diff.js +151 -0
- package/dist/commands/set_context.js +29 -0
- package/dist/commands/status.js +40 -0
- package/dist/commands/user.js +15 -0
- package/dist/commands/vpc_endpoints.js +134 -0
- package/dist/config.js +11 -0
- package/dist/config_format.js +72 -0
- package/dist/context.js +177 -0
- package/dist/current_branch_fast_path.js +55 -0
- package/dist/dev/env.js +240 -0
- package/dist/dev/functions.js +70 -0
- package/dist/dev/inputs.js +63 -0
- package/dist/dev/runtime.js +146 -0
- package/dist/env.js +36 -0
- package/dist/env_file.js +159 -0
- package/dist/errors.js +80 -0
- package/dist/functions_api.js +44 -0
- package/dist/help.js +146 -0
- package/dist/index.js +234 -0
- package/dist/log.js +18 -0
- package/dist/parameters.gen.js +480 -0
- package/dist/pkg.js +25 -0
- package/dist/psql/cli.js +53 -0
- package/dist/psql/command/cmd_cond.js +437 -0
- package/dist/psql/command/cmd_connect.js +820 -0
- package/dist/psql/command/cmd_copy.js +1035 -0
- package/dist/psql/command/cmd_describe.js +1815 -0
- package/dist/psql/command/cmd_format.js +922 -0
- package/dist/psql/command/cmd_io.js +2193 -0
- package/dist/psql/command/cmd_lo.js +393 -0
- package/dist/psql/command/cmd_meta.js +970 -0
- package/dist/psql/command/cmd_misc.js +187 -0
- package/dist/psql/command/cmd_pipeline.js +1148 -0
- package/dist/psql/command/cmd_restrict.js +171 -0
- package/dist/psql/command/cmd_show.js +766 -0
- package/dist/psql/command/dispatch.js +343 -0
- package/dist/psql/command/inputQueue.js +42 -0
- package/dist/psql/command/shared.js +71 -0
- package/dist/psql/complete/filenames.js +139 -0
- package/dist/psql/complete/index.js +104 -0
- package/dist/psql/complete/matcher.js +315 -0
- package/dist/psql/complete/psqlVars.js +247 -0
- package/dist/psql/complete/queries.js +493 -0
- package/dist/psql/complete/rules.js +2424 -0
- package/dist/psql/core/common.js +1253 -0
- package/dist/psql/core/help.js +576 -0
- package/dist/psql/core/mainloop.js +1360 -0
- package/dist/psql/core/prompt.js +440 -0
- package/dist/psql/core/settings.js +684 -0
- package/dist/psql/core/sqlHelp.js +1066 -0
- package/dist/psql/core/startup.js +846 -0
- package/dist/psql/core/syncVars.js +116 -0
- package/dist/psql/core/variables.js +287 -0
- package/dist/psql/describe/formatters.js +1290 -0
- package/dist/psql/describe/processNamePattern.js +270 -0
- package/dist/psql/describe/queries.js +2378 -0
- package/dist/psql/describe/versionGate.js +43 -0
- package/dist/psql/index.js +2030 -0
- package/dist/psql/io/history.js +299 -0
- package/dist/psql/io/input.js +120 -0
- package/dist/psql/io/lineEditor/buffer.js +325 -0
- package/dist/psql/io/lineEditor/complete.js +227 -0
- package/dist/psql/io/lineEditor/filename.js +159 -0
- package/dist/psql/io/lineEditor/index.js +894 -0
- package/dist/psql/io/lineEditor/keymap.js +745 -0
- package/dist/psql/io/lineEditor/vt100.js +363 -0
- package/dist/psql/io/pgpass.js +202 -0
- package/dist/psql/io/pgservice.js +194 -0
- package/dist/psql/io/psqlrc.js +422 -0
- package/dist/psql/print/aligned.js +1765 -0
- package/dist/psql/print/asciidoc.js +248 -0
- package/dist/psql/print/crosstab.js +463 -0
- package/dist/psql/print/csv.js +95 -0
- package/dist/psql/print/html.js +258 -0
- package/dist/psql/print/json.js +96 -0
- package/dist/psql/print/latex.js +396 -0
- package/dist/psql/print/pager.js +267 -0
- package/dist/psql/print/troff.js +258 -0
- package/dist/psql/print/unaligned.js +119 -0
- package/dist/psql/print/units.js +135 -0
- package/dist/psql/scanner/slash.js +515 -0
- package/dist/psql/scanner/sql.js +914 -0
- package/dist/psql/scanner/stringutils.js +394 -0
- package/dist/psql/types/backslash.js +1 -0
- package/dist/psql/types/connection.js +1 -0
- package/dist/psql/types/index.js +7 -0
- package/dist/psql/types/printer.js +1 -0
- package/dist/psql/types/repl.js +1 -0
- package/dist/psql/types/scanner.js +24 -0
- package/dist/psql/types/settings.js +1 -0
- package/dist/psql/types/variables.js +1 -0
- package/dist/psql/wire/connection.js +2858 -0
- package/dist/psql/wire/copy.js +108 -0
- package/dist/psql/wire/notify.js +59 -0
- package/dist/psql/wire/pipeline.js +521 -0
- package/dist/psql/wire/protocol.js +466 -0
- package/dist/psql/wire/sasl.js +296 -0
- package/dist/psql/wire/tls.js +602 -0
- package/dist/storage_api.js +147 -0
- package/dist/test_utils/fixtures.js +122 -0
- package/dist/test_utils/oauth_server.js +9 -0
- package/dist/types.js +1 -0
- package/dist/utils/api_enums.js +33 -0
- package/dist/utils/auth.js +5 -0
- package/dist/utils/branch_notice.js +22 -0
- package/dist/utils/branch_picker.js +103 -0
- package/dist/utils/compute_units.js +28 -0
- package/dist/utils/enrichers.js +161 -0
- package/dist/utils/esbuild.js +158 -0
- package/dist/utils/formats.js +18 -0
- package/dist/utils/middlewares.js +20 -0
- package/dist/utils/package_manager.js +68 -0
- package/dist/utils/point_in_time.js +56 -0
- package/dist/utils/psql.js +120 -0
- package/dist/utils/string.js +5 -0
- package/dist/utils/ui.js +59 -0
- package/dist/utils/zip.js +4 -0
- package/dist/writer.js +97 -0
- package/package.json +117 -14
- package/.jshintrc +0 -3
- package/CHANGELOG.markdown +0 -22
- package/LICENSE +0 -21
- package/README.markdown +0 -76
- package/bower.json +0 -23
- package/license.txt +0 -9
- package/neon.js +0 -234
- package/stdlib/bubbling_support.js +0 -32
- package/stdlib/custom_event.js +0 -54
- package/stdlib/custom_event_support.js +0 -195
- package/stdlib/index.js +0 -7
- package/stdlib/node_support.js +0 -123
- package/stdlib/widget.js +0 -340
- package/test/neon_browser.html +0 -11
- package/test/neon_stdlib_browser.html +0 -15
- package/test/neon_stdlib_test.js +0 -84
- package/test/neon_test.js +0 -64
|
@@ -0,0 +1,108 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* COPY streaming adapter (WP-16).
|
|
3
|
+
*
|
|
4
|
+
* The wire-level work — driving CopyData / CopyDone / CopyFail through the
|
|
5
|
+
* v3 protocol — lives in `./connection.ts` directly (PgConnection exposes
|
|
6
|
+
* `startCopyIn` and `startCopyOut`). This module is a thin convenience layer
|
|
7
|
+
* that re-exports the public types and offers a single helper that callers
|
|
8
|
+
* can use without learning the connection-level state machine:
|
|
9
|
+
*
|
|
10
|
+
* const tag = await copyFromStream(conn, "COPY t FROM STDIN", readable);
|
|
11
|
+
* // tag → "COPY 17"
|
|
12
|
+
*
|
|
13
|
+
* for await (const chunk of (await conn.startCopyOut("COPY t TO STDOUT"))) {
|
|
14
|
+
* writable.write(chunk);
|
|
15
|
+
* }
|
|
16
|
+
*
|
|
17
|
+
* Why PgConnection owns the protocol state and not this module: the COPY
|
|
18
|
+
* state machine is a *mode switch* on the same socket — CopyInResponse /
|
|
19
|
+
* CopyOutResponse / CopyDone / CommandComplete are interleaved with normal
|
|
20
|
+
* backend messages and have to be routed through the same MessageParser.
|
|
21
|
+
* Putting that here would require either exposing connection internals
|
|
22
|
+
* (private fields, message dispatch) or duplicating the parser, both worse
|
|
23
|
+
* than the in-place implementation.
|
|
24
|
+
*
|
|
25
|
+
* For the `\copy` parser/runner (cmd_copy.ts), this file is just the
|
|
26
|
+
* doorbell — call `connection.startCopyIn(sql)` to get a `CopyInStream`, then
|
|
27
|
+
* pipe a Readable into it via `pumpReadable()`.
|
|
28
|
+
*/
|
|
29
|
+
import { Buffer } from "node:buffer";
|
|
30
|
+
/**
|
|
31
|
+
* Pump every chunk from a Node Readable into a CopyInStream, then end it.
|
|
32
|
+
*
|
|
33
|
+
* Mirrors the loop in upstream `handleCopyIn`: read until EOF, write each
|
|
34
|
+
* buffer as CopyData, finalise with CopyDone. On read error, abort via
|
|
35
|
+
* CopyFail so the server returns to ready-state cleanly. Returns whatever
|
|
36
|
+
* the connection recorded as the last COPY command tag (e.g. `"COPY 17"`).
|
|
37
|
+
*
|
|
38
|
+
* The function is text/binary agnostic — we pass raw bytes through. CSV vs
|
|
39
|
+
* TEXT framing is the server's responsibility (controlled by the COPY
|
|
40
|
+
* options the caller stamped on the SQL string).
|
|
41
|
+
*/
|
|
42
|
+
export const pumpReadable = async (conn, readable, copyIn) => {
|
|
43
|
+
let aborted = null;
|
|
44
|
+
try {
|
|
45
|
+
for await (const chunk of readable) {
|
|
46
|
+
const buf = typeof chunk === "string"
|
|
47
|
+
? Buffer.from(chunk, "utf8")
|
|
48
|
+
: Buffer.isBuffer(chunk)
|
|
49
|
+
? chunk
|
|
50
|
+
: Buffer.from(chunk);
|
|
51
|
+
await copyIn.write(buf);
|
|
52
|
+
}
|
|
53
|
+
}
|
|
54
|
+
catch (err) {
|
|
55
|
+
aborted = err;
|
|
56
|
+
}
|
|
57
|
+
if (aborted !== null) {
|
|
58
|
+
const reason = abortReason(aborted);
|
|
59
|
+
try {
|
|
60
|
+
await copyIn.fail(reason);
|
|
61
|
+
}
|
|
62
|
+
catch {
|
|
63
|
+
// ignore — the original read error is what we want to surface.
|
|
64
|
+
}
|
|
65
|
+
throw aborted instanceof Error ? aborted : new Error(reason);
|
|
66
|
+
}
|
|
67
|
+
await copyIn.end();
|
|
68
|
+
// Keep the Connection type as a structural reference so prod consumers
|
|
69
|
+
// import this module even when only using `conn.startCopyIn` directly.
|
|
70
|
+
void conn;
|
|
71
|
+
};
|
|
72
|
+
/**
|
|
73
|
+
* Drain a CopyOutStream into a Node Writable, returning when the server
|
|
74
|
+
* has signalled CopyDone + ReadyForQuery. The Writable is NOT closed by this
|
|
75
|
+
* function — the caller owns its lifetime.
|
|
76
|
+
*/
|
|
77
|
+
export const drainCopyOut = async (copyOut, writable) => {
|
|
78
|
+
for await (const chunk of copyOut) {
|
|
79
|
+
await new Promise((resolve, reject) => {
|
|
80
|
+
writable.write(chunk, (err) => {
|
|
81
|
+
if (err !== null && err !== undefined)
|
|
82
|
+
reject(err);
|
|
83
|
+
else
|
|
84
|
+
resolve();
|
|
85
|
+
});
|
|
86
|
+
});
|
|
87
|
+
}
|
|
88
|
+
};
|
|
89
|
+
/**
|
|
90
|
+
* Coerce an arbitrary thrown value into a string suitable for `CopyFail`
|
|
91
|
+
* (which expects a human-readable reason). We accept Errors, strings, or
|
|
92
|
+
* anything else; the last branch avoids `[object Object]` by JSON-stringifying
|
|
93
|
+
* objects safely.
|
|
94
|
+
*/
|
|
95
|
+
const abortReason = (v) => {
|
|
96
|
+
if (v instanceof Error)
|
|
97
|
+
return v.message;
|
|
98
|
+
if (typeof v === "string")
|
|
99
|
+
return v;
|
|
100
|
+
if (typeof v === "number" || typeof v === "boolean")
|
|
101
|
+
return String(v);
|
|
102
|
+
try {
|
|
103
|
+
return JSON.stringify(v) ?? "unknown error";
|
|
104
|
+
}
|
|
105
|
+
catch {
|
|
106
|
+
return "unknown error";
|
|
107
|
+
}
|
|
108
|
+
};
|
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Async multiplexer for NOTICE / NOTIFY (WP-02).
|
|
3
|
+
*
|
|
4
|
+
* `PgConnection` keeps a single NoticeMultiplexer that all incoming
|
|
5
|
+
* NoticeResponse and NotificationResponse messages flow through. Subscribers
|
|
6
|
+
* (e.g. the REPL, query runner, an external observer) register handlers and
|
|
7
|
+
* receive a disposer function — the same shape upstream pg uses.
|
|
8
|
+
*
|
|
9
|
+
* We don't use Node's `EventEmitter` because:
|
|
10
|
+
* - The Connection interface (frozen WP-00) returns disposers from
|
|
11
|
+
* `onNotice` / `onNotification`, not subscription objects.
|
|
12
|
+
* - We want exceptions in one handler to be isolated from the rest.
|
|
13
|
+
*/
|
|
14
|
+
export class NoticeMultiplexer {
|
|
15
|
+
constructor() {
|
|
16
|
+
this.noticeHandlers = new Set();
|
|
17
|
+
this.notificationHandlers = new Set();
|
|
18
|
+
/** Last error thrown by a handler. Exposed for diagnostics / tests. */
|
|
19
|
+
this.lastHandlerError = undefined;
|
|
20
|
+
}
|
|
21
|
+
/** Subscribe to NoticeResponse. Returns a disposer. */
|
|
22
|
+
onNotice(handler) {
|
|
23
|
+
this.noticeHandlers.add(handler);
|
|
24
|
+
return () => this.noticeHandlers.delete(handler);
|
|
25
|
+
}
|
|
26
|
+
/** Subscribe to NotificationResponse (LISTEN/NOTIFY). Returns a disposer. */
|
|
27
|
+
onNotification(handler) {
|
|
28
|
+
this.notificationHandlers.add(handler);
|
|
29
|
+
return () => this.notificationHandlers.delete(handler);
|
|
30
|
+
}
|
|
31
|
+
emit(notice) {
|
|
32
|
+
for (const h of this.noticeHandlers) {
|
|
33
|
+
// Isolate handler failures: one bad subscriber must not break the
|
|
34
|
+
// whole connection. We swallow + record via `lastHandlerError` so a
|
|
35
|
+
// test can observe it without us pulling in a logger.
|
|
36
|
+
try {
|
|
37
|
+
h(notice);
|
|
38
|
+
}
|
|
39
|
+
catch (err) {
|
|
40
|
+
this.lastHandlerError = err;
|
|
41
|
+
}
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
emitNotification(channel, payload, pid) {
|
|
45
|
+
for (const h of this.notificationHandlers) {
|
|
46
|
+
try {
|
|
47
|
+
h(channel, payload, pid);
|
|
48
|
+
}
|
|
49
|
+
catch (err) {
|
|
50
|
+
this.lastHandlerError = err;
|
|
51
|
+
}
|
|
52
|
+
}
|
|
53
|
+
}
|
|
54
|
+
/** Drop every subscriber. Called by Connection.close(). */
|
|
55
|
+
clear() {
|
|
56
|
+
this.noticeHandlers.clear();
|
|
57
|
+
this.notificationHandlers.clear();
|
|
58
|
+
}
|
|
59
|
+
}
|