177 lines
5.2 KiB
Plaintext
177 lines
5.2 KiB
Plaintext
"use strict";
|
|
var __defProp = Object.defineProperty;
|
|
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
var __export = (target, all) => {
|
|
for (var name in all)
|
|
__defProp(target, name, { get: all[name], enumerable: true });
|
|
};
|
|
var __copyProps = (to, from, except, desc) => {
|
|
if (from && typeof from === "object" || typeof from === "function") {
|
|
for (let key of __getOwnPropNames(from))
|
|
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
}
|
|
return to;
|
|
};
|
|
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
var query_exports = {};
|
|
__export(query_exports, {
|
|
RelationalQueryBuilder: () => RelationalQueryBuilder,
|
|
SQLiteRelationalQuery: () => SQLiteRelationalQuery,
|
|
SQLiteSyncRelationalQuery: () => SQLiteSyncRelationalQuery
|
|
});
|
|
module.exports = __toCommonJS(query_exports);
|
|
var import_entity = require("../../entity.cjs");
|
|
var import_query_promise = require("../../query-promise.cjs");
|
|
var import_relations = require("../../relations.cjs");
|
|
class RelationalQueryBuilder {
|
|
constructor(mode, fullSchema, schema, tableNamesMap, table, tableConfig, dialect, session) {
|
|
this.mode = mode;
|
|
this.fullSchema = fullSchema;
|
|
this.schema = schema;
|
|
this.tableNamesMap = tableNamesMap;
|
|
this.table = table;
|
|
this.tableConfig = tableConfig;
|
|
this.dialect = dialect;
|
|
this.session = session;
|
|
}
|
|
static [import_entity.entityKind] = "SQLiteAsyncRelationalQueryBuilder";
|
|
findMany(config) {
|
|
return this.mode === "sync" ? new SQLiteSyncRelationalQuery(
|
|
this.fullSchema,
|
|
this.schema,
|
|
this.tableNamesMap,
|
|
this.table,
|
|
this.tableConfig,
|
|
this.dialect,
|
|
this.session,
|
|
config ? config : {},
|
|
"many"
|
|
) : new SQLiteRelationalQuery(
|
|
this.fullSchema,
|
|
this.schema,
|
|
this.tableNamesMap,
|
|
this.table,
|
|
this.tableConfig,
|
|
this.dialect,
|
|
this.session,
|
|
config ? config : {},
|
|
"many"
|
|
);
|
|
}
|
|
findFirst(config) {
|
|
return this.mode === "sync" ? new SQLiteSyncRelationalQuery(
|
|
this.fullSchema,
|
|
this.schema,
|
|
this.tableNamesMap,
|
|
this.table,
|
|
this.tableConfig,
|
|
this.dialect,
|
|
this.session,
|
|
config ? { ...config, limit: 1 } : { limit: 1 },
|
|
"first"
|
|
) : new SQLiteRelationalQuery(
|
|
this.fullSchema,
|
|
this.schema,
|
|
this.tableNamesMap,
|
|
this.table,
|
|
this.tableConfig,
|
|
this.dialect,
|
|
this.session,
|
|
config ? { ...config, limit: 1 } : { limit: 1 },
|
|
"first"
|
|
);
|
|
}
|
|
}
|
|
class SQLiteRelationalQuery extends import_query_promise.QueryPromise {
|
|
constructor(fullSchema, schema, tableNamesMap, table, tableConfig, dialect, session, config, mode) {
|
|
super();
|
|
this.fullSchema = fullSchema;
|
|
this.schema = schema;
|
|
this.tableNamesMap = tableNamesMap;
|
|
this.table = table;
|
|
this.tableConfig = tableConfig;
|
|
this.dialect = dialect;
|
|
this.session = session;
|
|
this.config = config;
|
|
this.mode = mode;
|
|
}
|
|
static [import_entity.entityKind] = "SQLiteAsyncRelationalQuery";
|
|
/** @internal */
|
|
mode;
|
|
/** @internal */
|
|
getSQL() {
|
|
return this.dialect.buildRelationalQuery({
|
|
fullSchema: this.fullSchema,
|
|
schema: this.schema,
|
|
tableNamesMap: this.tableNamesMap,
|
|
table: this.table,
|
|
tableConfig: this.tableConfig,
|
|
queryConfig: this.config,
|
|
tableAlias: this.tableConfig.tsName
|
|
}).sql;
|
|
}
|
|
/** @internal */
|
|
_prepare(isOneTimeQuery = false) {
|
|
const { query, builtQuery } = this._toSQL();
|
|
return this.session[isOneTimeQuery ? "prepareOneTimeQuery" : "prepareQuery"](
|
|
builtQuery,
|
|
void 0,
|
|
this.mode === "first" ? "get" : "all",
|
|
true,
|
|
(rawRows, mapColumnValue) => {
|
|
const rows = rawRows.map(
|
|
(row) => (0, import_relations.mapRelationalRow)(this.schema, this.tableConfig, row, query.selection, mapColumnValue)
|
|
);
|
|
if (this.mode === "first") {
|
|
return rows[0];
|
|
}
|
|
return rows;
|
|
}
|
|
);
|
|
}
|
|
prepare() {
|
|
return this._prepare(false);
|
|
}
|
|
_toSQL() {
|
|
const query = this.dialect.buildRelationalQuery({
|
|
fullSchema: this.fullSchema,
|
|
schema: this.schema,
|
|
tableNamesMap: this.tableNamesMap,
|
|
table: this.table,
|
|
tableConfig: this.tableConfig,
|
|
queryConfig: this.config,
|
|
tableAlias: this.tableConfig.tsName
|
|
});
|
|
const builtQuery = this.dialect.sqlToQuery(query.sql);
|
|
return { query, builtQuery };
|
|
}
|
|
toSQL() {
|
|
return this._toSQL().builtQuery;
|
|
}
|
|
/** @internal */
|
|
executeRaw() {
|
|
if (this.mode === "first") {
|
|
return this._prepare(false).get();
|
|
}
|
|
return this._prepare(false).all();
|
|
}
|
|
async execute() {
|
|
return this.executeRaw();
|
|
}
|
|
}
|
|
class SQLiteSyncRelationalQuery extends SQLiteRelationalQuery {
|
|
static [import_entity.entityKind] = "SQLiteSyncRelationalQuery";
|
|
sync() {
|
|
return this.executeRaw();
|
|
}
|
|
}
|
|
// Annotate the CommonJS export names for ESM import in node:
|
|
0 && (module.exports = {
|
|
RelationalQueryBuilder,
|
|
SQLiteRelationalQuery,
|
|
SQLiteSyncRelationalQuery
|
|
});
|
|
//# sourceMappingURL=query.cjs.map |