neon 2.1.2 → 2.29.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (166) hide show
  1. package/LICENSE.md +178 -0
  2. package/README.md +601 -0
  3. package/dist/analytics.js +156 -0
  4. package/dist/api.js +665 -0
  5. package/dist/auth.js +127 -0
  6. package/dist/callback.html +51 -0
  7. package/dist/cli.js +9 -0
  8. package/dist/commands/auth.js +214 -0
  9. package/dist/commands/bootstrap.js +481 -0
  10. package/dist/commands/branches.js +481 -0
  11. package/dist/commands/bucket.js +543 -0
  12. package/dist/commands/checkout.js +289 -0
  13. package/dist/commands/config.js +544 -0
  14. package/dist/commands/connection_string.js +172 -0
  15. package/dist/commands/data_api.js +285 -0
  16. package/dist/commands/databases.js +82 -0
  17. package/dist/commands/deploy.js +26 -0
  18. package/dist/commands/dev.js +698 -0
  19. package/dist/commands/env.js +166 -0
  20. package/dist/commands/functions.js +373 -0
  21. package/dist/commands/index.js +54 -0
  22. package/dist/commands/init.js +73 -0
  23. package/dist/commands/ip_allow.js +137 -0
  24. package/dist/commands/link.js +1121 -0
  25. package/dist/commands/neon_auth.js +1028 -0
  26. package/dist/commands/operations.js +28 -0
  27. package/dist/commands/orgs.js +24 -0
  28. package/dist/commands/projects.js +372 -0
  29. package/dist/commands/psql.js +62 -0
  30. package/dist/commands/roles.js +65 -0
  31. package/dist/commands/schema_diff.js +151 -0
  32. package/dist/commands/set_context.js +29 -0
  33. package/dist/commands/status.js +40 -0
  34. package/dist/commands/user.js +15 -0
  35. package/dist/commands/vpc_endpoints.js +134 -0
  36. package/dist/config.js +11 -0
  37. package/dist/config_format.js +72 -0
  38. package/dist/context.js +177 -0
  39. package/dist/current_branch_fast_path.js +55 -0
  40. package/dist/dev/env.js +240 -0
  41. package/dist/dev/functions.js +70 -0
  42. package/dist/dev/inputs.js +63 -0
  43. package/dist/dev/runtime.js +146 -0
  44. package/dist/env.js +36 -0
  45. package/dist/env_file.js +159 -0
  46. package/dist/errors.js +80 -0
  47. package/dist/functions_api.js +44 -0
  48. package/dist/help.js +146 -0
  49. package/dist/index.js +234 -0
  50. package/dist/log.js +18 -0
  51. package/dist/parameters.gen.js +480 -0
  52. package/dist/pkg.js +25 -0
  53. package/dist/psql/cli.js +53 -0
  54. package/dist/psql/command/cmd_cond.js +437 -0
  55. package/dist/psql/command/cmd_connect.js +820 -0
  56. package/dist/psql/command/cmd_copy.js +1035 -0
  57. package/dist/psql/command/cmd_describe.js +1815 -0
  58. package/dist/psql/command/cmd_format.js +922 -0
  59. package/dist/psql/command/cmd_io.js +2193 -0
  60. package/dist/psql/command/cmd_lo.js +393 -0
  61. package/dist/psql/command/cmd_meta.js +970 -0
  62. package/dist/psql/command/cmd_misc.js +187 -0
  63. package/dist/psql/command/cmd_pipeline.js +1148 -0
  64. package/dist/psql/command/cmd_restrict.js +171 -0
  65. package/dist/psql/command/cmd_show.js +766 -0
  66. package/dist/psql/command/dispatch.js +343 -0
  67. package/dist/psql/command/inputQueue.js +42 -0
  68. package/dist/psql/command/shared.js +71 -0
  69. package/dist/psql/complete/filenames.js +139 -0
  70. package/dist/psql/complete/index.js +104 -0
  71. package/dist/psql/complete/matcher.js +315 -0
  72. package/dist/psql/complete/psqlVars.js +247 -0
  73. package/dist/psql/complete/queries.js +493 -0
  74. package/dist/psql/complete/rules.js +2424 -0
  75. package/dist/psql/core/common.js +1253 -0
  76. package/dist/psql/core/help.js +576 -0
  77. package/dist/psql/core/mainloop.js +1360 -0
  78. package/dist/psql/core/prompt.js +440 -0
  79. package/dist/psql/core/settings.js +684 -0
  80. package/dist/psql/core/sqlHelp.js +1066 -0
  81. package/dist/psql/core/startup.js +846 -0
  82. package/dist/psql/core/syncVars.js +116 -0
  83. package/dist/psql/core/variables.js +287 -0
  84. package/dist/psql/describe/formatters.js +1290 -0
  85. package/dist/psql/describe/processNamePattern.js +270 -0
  86. package/dist/psql/describe/queries.js +2378 -0
  87. package/dist/psql/describe/versionGate.js +43 -0
  88. package/dist/psql/index.js +2030 -0
  89. package/dist/psql/io/history.js +299 -0
  90. package/dist/psql/io/input.js +120 -0
  91. package/dist/psql/io/lineEditor/buffer.js +325 -0
  92. package/dist/psql/io/lineEditor/complete.js +227 -0
  93. package/dist/psql/io/lineEditor/filename.js +159 -0
  94. package/dist/psql/io/lineEditor/index.js +894 -0
  95. package/dist/psql/io/lineEditor/keymap.js +745 -0
  96. package/dist/psql/io/lineEditor/vt100.js +363 -0
  97. package/dist/psql/io/pgpass.js +202 -0
  98. package/dist/psql/io/pgservice.js +194 -0
  99. package/dist/psql/io/psqlrc.js +422 -0
  100. package/dist/psql/print/aligned.js +1765 -0
  101. package/dist/psql/print/asciidoc.js +248 -0
  102. package/dist/psql/print/crosstab.js +463 -0
  103. package/dist/psql/print/csv.js +95 -0
  104. package/dist/psql/print/html.js +258 -0
  105. package/dist/psql/print/json.js +96 -0
  106. package/dist/psql/print/latex.js +396 -0
  107. package/dist/psql/print/pager.js +267 -0
  108. package/dist/psql/print/troff.js +258 -0
  109. package/dist/psql/print/unaligned.js +119 -0
  110. package/dist/psql/print/units.js +135 -0
  111. package/dist/psql/scanner/slash.js +515 -0
  112. package/dist/psql/scanner/sql.js +914 -0
  113. package/dist/psql/scanner/stringutils.js +394 -0
  114. package/dist/psql/types/backslash.js +1 -0
  115. package/dist/psql/types/connection.js +1 -0
  116. package/dist/psql/types/index.js +7 -0
  117. package/dist/psql/types/printer.js +1 -0
  118. package/dist/psql/types/repl.js +1 -0
  119. package/dist/psql/types/scanner.js +24 -0
  120. package/dist/psql/types/settings.js +1 -0
  121. package/dist/psql/types/variables.js +1 -0
  122. package/dist/psql/wire/connection.js +2858 -0
  123. package/dist/psql/wire/copy.js +108 -0
  124. package/dist/psql/wire/notify.js +59 -0
  125. package/dist/psql/wire/pipeline.js +521 -0
  126. package/dist/psql/wire/protocol.js +466 -0
  127. package/dist/psql/wire/sasl.js +296 -0
  128. package/dist/psql/wire/tls.js +602 -0
  129. package/dist/storage_api.js +147 -0
  130. package/dist/test_utils/fixtures.js +122 -0
  131. package/dist/test_utils/oauth_server.js +9 -0
  132. package/dist/types.js +1 -0
  133. package/dist/utils/api_enums.js +33 -0
  134. package/dist/utils/auth.js +5 -0
  135. package/dist/utils/branch_notice.js +22 -0
  136. package/dist/utils/branch_picker.js +103 -0
  137. package/dist/utils/compute_units.js +28 -0
  138. package/dist/utils/enrichers.js +161 -0
  139. package/dist/utils/esbuild.js +158 -0
  140. package/dist/utils/formats.js +18 -0
  141. package/dist/utils/middlewares.js +20 -0
  142. package/dist/utils/package_manager.js +68 -0
  143. package/dist/utils/point_in_time.js +56 -0
  144. package/dist/utils/psql.js +120 -0
  145. package/dist/utils/string.js +5 -0
  146. package/dist/utils/ui.js +59 -0
  147. package/dist/utils/zip.js +4 -0
  148. package/dist/writer.js +97 -0
  149. package/package.json +117 -14
  150. package/.jshintrc +0 -3
  151. package/CHANGELOG.markdown +0 -22
  152. package/LICENSE +0 -21
  153. package/README.markdown +0 -76
  154. package/bower.json +0 -23
  155. package/license.txt +0 -9
  156. package/neon.js +0 -234
  157. package/stdlib/bubbling_support.js +0 -32
  158. package/stdlib/custom_event.js +0 -54
  159. package/stdlib/custom_event_support.js +0 -195
  160. package/stdlib/index.js +0 -7
  161. package/stdlib/node_support.js +0 -123
  162. package/stdlib/widget.js +0 -340
  163. package/test/neon_browser.html +0 -11
  164. package/test/neon_stdlib_browser.html +0 -15
  165. package/test/neon_stdlib_test.js +0 -84
  166. 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
+ }