| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162 |
- import { entityKind } from "../entity.js";
- import { NoopLogger } from "../logger.js";
- import { PgTransaction } from "../pg-core/index.js";
- import { PgPreparedQuery, PgSession } from "../pg-core/session.js";
- import { fillPlaceholders, sql } from "../sql/sql.js";
- import { mapResultRow } from "../utils.js";
- import { types } from "@electric-sql/pglite";
- import { NoopCache } from "../cache/core/cache.js";
- class PglitePreparedQuery extends PgPreparedQuery {
- constructor(client, queryString, params, logger, cache, queryMetadata, cacheConfig, fields, name, _isResponseInArrayMode, customResultMapper) {
- super({ sql: queryString, params }, cache, queryMetadata, cacheConfig);
- this.client = client;
- this.queryString = queryString;
- this.params = params;
- this.logger = logger;
- this.fields = fields;
- this._isResponseInArrayMode = _isResponseInArrayMode;
- this.customResultMapper = customResultMapper;
- this.rawQueryConfig = {
- rowMode: "object",
- parsers: {
- [types.TIMESTAMP]: (value) => value,
- [types.TIMESTAMPTZ]: (value) => value,
- [types.INTERVAL]: (value) => value,
- [types.DATE]: (value) => value,
- // numeric[]
- [1231]: (value) => value,
- // timestamp[]
- [1115]: (value) => value,
- // timestamp with timezone[]
- [1185]: (value) => value,
- // interval[]
- [1187]: (value) => value,
- // date[]
- [1182]: (value) => value
- }
- };
- this.queryConfig = {
- rowMode: "array",
- parsers: {
- [types.TIMESTAMP]: (value) => value,
- [types.TIMESTAMPTZ]: (value) => value,
- [types.INTERVAL]: (value) => value,
- [types.DATE]: (value) => value,
- // numeric[]
- [1231]: (value) => value,
- // timestamp[]
- [1115]: (value) => value,
- // timestamp with timezone[]
- [1185]: (value) => value,
- // interval[]
- [1187]: (value) => value,
- // date[]
- [1182]: (value) => value
- }
- };
- }
- static [entityKind] = "PglitePreparedQuery";
- rawQueryConfig;
- queryConfig;
- async execute(placeholderValues = {}) {
- const params = fillPlaceholders(this.params, placeholderValues);
- this.logger.logQuery(this.queryString, params);
- const { fields, client, queryConfig, joinsNotNullableMap, customResultMapper, queryString, rawQueryConfig } = this;
- if (!fields && !customResultMapper) {
- return this.queryWithCache(queryString, params, async () => {
- return await client.query(queryString, params, rawQueryConfig);
- });
- }
- const result = await this.queryWithCache(queryString, params, async () => {
- return await client.query(queryString, params, queryConfig);
- });
- return customResultMapper ? customResultMapper(result.rows) : result.rows.map((row) => mapResultRow(fields, row, joinsNotNullableMap));
- }
- all(placeholderValues = {}) {
- const params = fillPlaceholders(this.params, placeholderValues);
- this.logger.logQuery(this.queryString, params);
- return this.queryWithCache(this.queryString, params, async () => {
- return await this.client.query(this.queryString, params, this.rawQueryConfig);
- }).then((result) => result.rows);
- }
- /** @internal */
- isResponseInArrayMode() {
- return this._isResponseInArrayMode;
- }
- }
- class PgliteSession extends PgSession {
- constructor(client, dialect, schema, options = {}) {
- super(dialect);
- this.client = client;
- this.schema = schema;
- this.options = options;
- this.logger = options.logger ?? new NoopLogger();
- this.cache = options.cache ?? new NoopCache();
- }
- static [entityKind] = "PgliteSession";
- logger;
- cache;
- prepareQuery(query, fields, name, isResponseInArrayMode, customResultMapper, queryMetadata, cacheConfig) {
- return new PglitePreparedQuery(
- this.client,
- query.sql,
- query.params,
- this.logger,
- this.cache,
- queryMetadata,
- cacheConfig,
- fields,
- name,
- isResponseInArrayMode,
- customResultMapper
- );
- }
- async transaction(transaction, config) {
- return this.client.transaction(async (client) => {
- const session = new PgliteSession(
- client,
- this.dialect,
- this.schema,
- this.options
- );
- const tx = new PgliteTransaction(this.dialect, session, this.schema);
- if (config) {
- await tx.setTransaction(config);
- }
- return transaction(tx);
- });
- }
- async count(sql2) {
- const res = await this.execute(sql2);
- return Number(
- res["rows"][0]["count"]
- );
- }
- }
- class PgliteTransaction extends PgTransaction {
- static [entityKind] = "PgliteTransaction";
- async transaction(transaction) {
- const savepointName = `sp${this.nestedIndex + 1}`;
- const tx = new PgliteTransaction(
- this.dialect,
- this.session,
- this.schema,
- this.nestedIndex + 1
- );
- await tx.execute(sql.raw(`savepoint ${savepointName}`));
- try {
- const result = await transaction(tx);
- await tx.execute(sql.raw(`release savepoint ${savepointName}`));
- return result;
- } catch (err) {
- await tx.execute(sql.raw(`rollback to savepoint ${savepointName}`));
- throw err;
- }
- }
- }
- export {
- PglitePreparedQuery,
- PgliteSession,
- PgliteTransaction
- };
- //# sourceMappingURL=session.js.map
|