the-forest/client/node_modules/.cache/babel-loader/f452e70be1a40dcc81557252e37b031d3379ce2d690ea37b9fcd149d41fefee3.json
2024-09-17 20:35:18 -04:00

1 line
32 KiB
JSON

{"ast":null,"code":"\"use strict\";\n\nconst {\n load,\n currentTarget\n} = require(\"@neon-rs/load\");\nconst {\n familySync,\n GLIBC\n} = require(\"detect-libc\");\nfunction requireNative() {\n if (process.env.LIBSQL_JS_DEV) {\n return load(__dirname);\n }\n let target = currentTarget();\n // Workaround for Bun, which reports a musl target, but really wants glibc...\n if (familySync() == GLIBC) {\n switch (target) {\n case \"linux-x64-musl\":\n target = \"linux-x64-gnu\";\n break;\n case \"linux-arm64-musl\":\n target = \"linux-arm64-gnu\";\n break;\n }\n }\n return require(`@libsql/${target}`);\n}\nconst {\n databaseOpen,\n databaseOpenWithRpcSync,\n databaseInTransaction,\n databaseClose,\n databaseSyncSync,\n databaseSyncUntilSync,\n databaseExecSync,\n databasePrepareSync,\n databaseDefaultSafeIntegers,\n databaseLoadExtension,\n databaseMaxWriteReplicationIndex,\n statementRaw,\n statementIsReader,\n statementGet,\n statementRun,\n statementRowsSync,\n statementColumns,\n statementSafeIntegers,\n rowsNext\n} = requireNative();\nconst SqliteError = require(\"./sqlite-error\");\nfunction convertError(err) {\n if (err.libsqlError) {\n return new SqliteError(err.message, err.code, err.rawCode);\n }\n return err;\n}\n\n/**\n * Database represents a connection that can prepare and execute SQL statements.\n */\nclass Database {\n /**\n * Creates a new database connection. If the database file pointed to by `path` does not exists, it will be created.\n *\n * @constructor\n * @param {string} path - Path to the database file.\n */\n constructor(path, opts) {\n const encryptionCipher = opts?.encryptionCipher ?? \"aes256cbc\";\n if (opts && opts.syncUrl) {\n var authToken = \"\";\n if (opts.syncAuth) {\n console.warn(\"Warning: The `syncAuth` option is deprecated, please use `authToken` option instead.\");\n authToken = opts.syncAuth;\n } else if (opts.authToken) {\n authToken = opts.authToken;\n }\n const encryptionKey = opts?.encryptionKey ?? \"\";\n const syncPeriod = opts?.syncPeriod ?? 0.0;\n const readYourWrites = opts?.readYourWrites ?? true;\n this.db = databaseOpenWithRpcSync(path, opts.syncUrl, authToken, encryptionCipher, encryptionKey, syncPeriod, readYourWrites);\n } else {\n const authToken = opts?.authToken ?? \"\";\n const encryptionKey = opts?.encryptionKey ?? \"\";\n this.db = databaseOpen(path, authToken, encryptionCipher, encryptionKey);\n }\n // TODO: Use a libSQL API for this?\n this.memory = path === \":memory:\";\n this.readonly = false;\n this.name = \"\";\n this.open = true;\n const db = this.db;\n Object.defineProperties(this, {\n inTransaction: {\n get() {\n return databaseInTransaction(db);\n }\n }\n });\n }\n sync() {\n return databaseSyncSync.call(this.db);\n }\n syncUntil(replicationIndex) {\n return databaseSyncUntilSync.call(this.db, replicationIndex);\n }\n\n /**\n * Prepares a SQL statement for execution.\n *\n * @param {string} sql - The SQL statement string to prepare.\n */\n prepare(sql) {\n try {\n const stmt = databasePrepareSync.call(this.db, sql);\n return new Statement(stmt);\n } catch (err) {\n throw convertError(err);\n }\n }\n\n /**\n * Returns a function that executes the given function in a transaction.\n *\n * @param {function} fn - The function to wrap in a transaction.\n */\n transaction(fn) {\n if (typeof fn !== \"function\") throw new TypeError(\"Expected first argument to be a function\");\n const db = this;\n const wrapTxn = mode => {\n return (...bindParameters) => {\n db.exec(\"BEGIN \" + mode);\n try {\n const result = fn(...bindParameters);\n db.exec(\"COMMIT\");\n return result;\n } catch (err) {\n db.exec(\"ROLLBACK\");\n throw err;\n }\n };\n };\n const properties = {\n default: {\n value: wrapTxn(\"\")\n },\n deferred: {\n value: wrapTxn(\"DEFERRED\")\n },\n immediate: {\n value: wrapTxn(\"IMMEDIATE\")\n },\n exclusive: {\n value: wrapTxn(\"EXCLUSIVE\")\n },\n database: {\n value: this,\n enumerable: true\n }\n };\n Object.defineProperties(properties.default.value, properties);\n Object.defineProperties(properties.deferred.value, properties);\n Object.defineProperties(properties.immediate.value, properties);\n Object.defineProperties(properties.exclusive.value, properties);\n return properties.default.value;\n }\n pragma(source, options) {\n if (options == null) options = {};\n if (typeof source !== 'string') throw new TypeError('Expected first argument to be a string');\n if (typeof options !== 'object') throw new TypeError('Expected second argument to be an options object');\n const simple = options['simple'];\n const stmt = this.prepare(`PRAGMA ${source}`, this, true);\n return simple ? stmt.pluck().get() : stmt.all();\n }\n backup(filename, options) {\n throw new Error(\"not implemented\");\n }\n serialize(options) {\n throw new Error(\"not implemented\");\n }\n function(name, options, fn) {\n // Apply defaults\n if (options == null) options = {};\n if (typeof options === \"function\") {\n fn = options;\n options = {};\n }\n\n // Validate arguments\n if (typeof name !== \"string\") throw new TypeError(\"Expected first argument to be a string\");\n if (typeof fn !== \"function\") throw new TypeError(\"Expected last argument to be a function\");\n if (typeof options !== \"object\") throw new TypeError(\"Expected second argument to be an options object\");\n if (!name) throw new TypeError(\"User-defined function name cannot be an empty string\");\n throw new Error(\"not implemented\");\n }\n aggregate(name, options) {\n // Validate arguments\n if (typeof name !== \"string\") throw new TypeError(\"Expected first argument to be a string\");\n if (typeof options !== \"object\" || options === null) throw new TypeError(\"Expected second argument to be an options object\");\n if (!name) throw new TypeError(\"User-defined function name cannot be an empty string\");\n throw new Error(\"not implemented\");\n }\n table(name, factory) {\n // Validate arguments\n if (typeof name !== \"string\") throw new TypeError(\"Expected first argument to be a string\");\n if (!name) throw new TypeError(\"Virtual table module name cannot be an empty string\");\n throw new Error(\"not implemented\");\n }\n loadExtension(...args) {\n databaseLoadExtension.call(this.db, ...args);\n }\n maxWriteReplicationIndex() {\n return databaseMaxWriteReplicationIndex.call(this.db);\n }\n\n /**\n * Executes a SQL statement.\n *\n * @param {string} sql - The SQL statement string to execute.\n */\n exec(sql) {\n try {\n databaseExecSync.call(this.db, sql);\n } catch (err) {\n throw convertError(err);\n }\n }\n\n /**\n * Closes the database connection.\n */\n close() {\n databaseClose.call(this.db);\n this.open = false;\n }\n\n /**\n * Toggle 64-bit integer support.\n */\n defaultSafeIntegers(toggle) {\n databaseDefaultSafeIntegers.call(this.db, toggle ?? true);\n return this;\n }\n unsafeMode(...args) {\n throw new Error(\"not implemented\");\n }\n}\n\n/**\n * Statement represents a prepared SQL statement that can be executed.\n */\nclass Statement {\n constructor(stmt) {\n this.stmt = stmt;\n }\n\n /**\n * Toggle raw mode.\n *\n * @param raw Enable or disable raw mode. If you don't pass the parameter, raw mode is enabled.\n */\n raw(raw) {\n statementRaw.call(this.stmt, raw ?? true);\n return this;\n }\n get reader() {\n return statementIsReader.call(this.stmt);\n }\n\n /**\n * Executes the SQL statement and returns an info object.\n */\n run(...bindParameters) {\n try {\n if (bindParameters.length == 1 && typeof bindParameters[0] === \"object\") {\n return statementRun.call(this.stmt, bindParameters[0]);\n } else {\n return statementRun.call(this.stmt, bindParameters.flat());\n }\n } catch (err) {\n throw convertError(err);\n }\n }\n\n /**\n * Executes the SQL statement and returns the first row.\n *\n * @param bindParameters - The bind parameters for executing the statement.\n */\n get(...bindParameters) {\n if (bindParameters.length == 1 && typeof bindParameters[0] === \"object\") {\n return statementGet.call(this.stmt, bindParameters[0]);\n } else {\n return statementGet.call(this.stmt, bindParameters.flat());\n }\n }\n\n /**\n * Executes the SQL statement and returns an iterator to the resulting rows.\n *\n * @param bindParameters - The bind parameters for executing the statement.\n */\n iterate(...bindParameters) {\n var rows = undefined;\n if (bindParameters.length == 1 && typeof bindParameters[0] === \"object\") {\n rows = statementRowsSync.call(this.stmt, bindParameters[0]);\n } else {\n rows = statementRowsSync.call(this.stmt, bindParameters.flat());\n }\n const iter = {\n nextRows: Array(100),\n nextRowIndex: 100,\n next() {\n if (this.nextRowIndex === 100) {\n rowsNext.call(rows, this.nextRows);\n this.nextRowIndex = 0;\n }\n const row = this.nextRows[this.nextRowIndex];\n this.nextRows[this.nextRowIndex] = undefined;\n if (!row) {\n return {\n done: true\n };\n }\n this.nextRowIndex++;\n return {\n value: row,\n done: false\n };\n },\n [Symbol.iterator]() {\n return this;\n }\n };\n return iter;\n }\n\n /**\n * Executes the SQL statement and returns an array of the resulting rows.\n *\n * @param bindParameters - The bind parameters for executing the statement.\n */\n all(...bindParameters) {\n const result = [];\n for (const row of this.iterate(...bindParameters)) {\n result.push(row);\n }\n return result;\n }\n\n /**\n * Returns the columns in the result set returned by this prepared statement.\n */\n columns() {\n return statementColumns.call(this.stmt);\n }\n\n /**\n * Toggle 64-bit integer support.\n */\n safeIntegers(toggle) {\n statementSafeIntegers.call(this.stmt, toggle ?? true);\n return this;\n }\n}\nmodule.exports = Database;\nmodule.exports.SqliteError = SqliteError;","map":{"version":3,"names":["load","currentTarget","require","familySync","GLIBC","requireNative","process","env","LIBSQL_JS_DEV","__dirname","target","databaseOpen","databaseOpenWithRpcSync","databaseInTransaction","databaseClose","databaseSyncSync","databaseSyncUntilSync","databaseExecSync","databasePrepareSync","databaseDefaultSafeIntegers","databaseLoadExtension","databaseMaxWriteReplicationIndex","statementRaw","statementIsReader","statementGet","statementRun","statementRowsSync","statementColumns","statementSafeIntegers","rowsNext","SqliteError","convertError","err","libsqlError","message","code","rawCode","Database","constructor","path","opts","encryptionCipher","syncUrl","authToken","syncAuth","console","warn","encryptionKey","syncPeriod","readYourWrites","db","memory","readonly","name","open","Object","defineProperties","inTransaction","get","sync","call","syncUntil","replicationIndex","prepare","sql","stmt","Statement","transaction","fn","TypeError","wrapTxn","mode","bindParameters","exec","result","properties","default","value","deferred","immediate","exclusive","database","enumerable","pragma","source","options","simple","pluck","all","backup","filename","Error","serialize","function","aggregate","table","factory","loadExtension","args","maxWriteReplicationIndex","close","defaultSafeIntegers","toggle","unsafeMode","raw","reader","run","length","flat","iterate","rows","undefined","iter","nextRows","Array","nextRowIndex","next","row","done","Symbol","iterator","push","columns","safeIntegers","module","exports"],"sources":["/Users/shoofle/Projects/the-forest/node_modules/libsql/index.js"],"sourcesContent":["\"use strict\";\n\nconst { load, currentTarget } = require(\"@neon-rs/load\");\nconst { familySync, GLIBC } = require(\"detect-libc\");\n\nfunction requireNative() {\n if (process.env.LIBSQL_JS_DEV) {\n return load(__dirname)\n }\n let target = currentTarget();\n // Workaround for Bun, which reports a musl target, but really wants glibc...\n if (familySync() == GLIBC) {\n switch (target) {\n case \"linux-x64-musl\":\n target = \"linux-x64-gnu\";\n break;\n case \"linux-arm64-musl\":\n target = \"linux-arm64-gnu\";\n break;\n }\n }\n return require(`@libsql/${target}`);\n}\n\nconst {\n databaseOpen,\n databaseOpenWithRpcSync,\n databaseInTransaction,\n databaseClose,\n databaseSyncSync,\n databaseSyncUntilSync,\n databaseExecSync,\n databasePrepareSync,\n databaseDefaultSafeIntegers,\n databaseLoadExtension,\n databaseMaxWriteReplicationIndex,\n statementRaw,\n statementIsReader,\n statementGet,\n statementRun,\n statementRowsSync,\n statementColumns,\n statementSafeIntegers,\n rowsNext,\n} = requireNative();\n\nconst SqliteError = require(\"./sqlite-error\");\n\nfunction convertError(err) {\n if (err.libsqlError) {\n return new SqliteError(err.message, err.code, err.rawCode);\n }\n return err;\n}\n\n/**\n * Database represents a connection that can prepare and execute SQL statements.\n */\nclass Database {\n /**\n * Creates a new database connection. If the database file pointed to by `path` does not exists, it will be created.\n *\n * @constructor\n * @param {string} path - Path to the database file.\n */\n constructor(path, opts) {\n const encryptionCipher = opts?.encryptionCipher ?? \"aes256cbc\";\n if (opts && opts.syncUrl) {\n var authToken = \"\";\n if (opts.syncAuth) {\n console.warn(\"Warning: The `syncAuth` option is deprecated, please use `authToken` option instead.\");\n authToken = opts.syncAuth;\n } else if (opts.authToken) {\n authToken = opts.authToken;\n }\n const encryptionKey = opts?.encryptionKey ?? \"\";\n const syncPeriod = opts?.syncPeriod ?? 0.0;\n const readYourWrites = opts?.readYourWrites ?? true;\n this.db = databaseOpenWithRpcSync(path, opts.syncUrl, authToken, encryptionCipher, encryptionKey, syncPeriod, readYourWrites);\n } else {\n const authToken = opts?.authToken ?? \"\";\n const encryptionKey = opts?.encryptionKey ?? \"\";\n this.db = databaseOpen(path, authToken, encryptionCipher, encryptionKey);\n }\n // TODO: Use a libSQL API for this?\n this.memory = path === \":memory:\";\n this.readonly = false;\n this.name = \"\";\n this.open = true;\n\n const db = this.db;\n Object.defineProperties(this, {\n inTransaction: {\n get() {\n return databaseInTransaction(db);\n }\n },\n });\n }\n\n sync() {\n return databaseSyncSync.call(this.db);\n }\n\n syncUntil(replicationIndex) {\n return databaseSyncUntilSync.call(this.db, replicationIndex);\n }\n\n /**\n * Prepares a SQL statement for execution.\n *\n * @param {string} sql - The SQL statement string to prepare.\n */\n prepare(sql) {\n try {\n const stmt = databasePrepareSync.call(this.db, sql);\n return new Statement(stmt); \n } catch (err) {\n throw convertError(err);\n }\n }\n\n /**\n * Returns a function that executes the given function in a transaction.\n *\n * @param {function} fn - The function to wrap in a transaction.\n */\n transaction(fn) {\n if (typeof fn !== \"function\")\n throw new TypeError(\"Expected first argument to be a function\");\n\n const db = this;\n const wrapTxn = (mode) => {\n return (...bindParameters) => {\n db.exec(\"BEGIN \" + mode);\n try {\n const result = fn(...bindParameters);\n db.exec(\"COMMIT\");\n return result;\n } catch (err) {\n db.exec(\"ROLLBACK\");\n throw err;\n }\n };\n };\n const properties = {\n default: { value: wrapTxn(\"\") },\n deferred: { value: wrapTxn(\"DEFERRED\") },\n immediate: { value: wrapTxn(\"IMMEDIATE\") },\n exclusive: { value: wrapTxn(\"EXCLUSIVE\") },\n database: { value: this, enumerable: true },\n };\n Object.defineProperties(properties.default.value, properties);\n Object.defineProperties(properties.deferred.value, properties);\n Object.defineProperties(properties.immediate.value, properties);\n Object.defineProperties(properties.exclusive.value, properties);\n return properties.default.value;\n }\n\n pragma(source, options) {\n if (options == null) options = {};\n if (typeof source !== 'string') throw new TypeError('Expected first argument to be a string');\n if (typeof options !== 'object') throw new TypeError('Expected second argument to be an options object');\n const simple = options['simple'];\n const stmt = this.prepare(`PRAGMA ${source}`, this, true);\n return simple ? stmt.pluck().get() : stmt.all();\n }\n\n backup(filename, options) {\n throw new Error(\"not implemented\");\n }\n\n serialize(options) {\n throw new Error(\"not implemented\");\n }\n\n function(name, options, fn) {\n // Apply defaults\n if (options == null) options = {};\n if (typeof options === \"function\") {\n fn = options;\n options = {};\n }\n\n // Validate arguments\n if (typeof name !== \"string\")\n throw new TypeError(\"Expected first argument to be a string\");\n if (typeof fn !== \"function\")\n throw new TypeError(\"Expected last argument to be a function\");\n if (typeof options !== \"object\")\n throw new TypeError(\"Expected second argument to be an options object\");\n if (!name)\n throw new TypeError(\n \"User-defined function name cannot be an empty string\"\n );\n\n throw new Error(\"not implemented\");\n }\n\n aggregate(name, options) {\n // Validate arguments\n if (typeof name !== \"string\")\n throw new TypeError(\"Expected first argument to be a string\");\n if (typeof options !== \"object\" || options === null)\n throw new TypeError(\"Expected second argument to be an options object\");\n if (!name)\n throw new TypeError(\n \"User-defined function name cannot be an empty string\"\n );\n\n throw new Error(\"not implemented\");\n }\n\n table(name, factory) {\n // Validate arguments\n if (typeof name !== \"string\")\n throw new TypeError(\"Expected first argument to be a string\");\n if (!name)\n throw new TypeError(\n \"Virtual table module name cannot be an empty string\"\n );\n\n throw new Error(\"not implemented\");\n }\n\n loadExtension(...args) {\n databaseLoadExtension.call(this.db, ...args);\n }\n\n maxWriteReplicationIndex() {\n return databaseMaxWriteReplicationIndex.call(this.db)\n }\n\n /**\n * Executes a SQL statement.\n *\n * @param {string} sql - The SQL statement string to execute.\n */\n exec(sql) {\n try {\n databaseExecSync.call(this.db, sql);\n } catch (err) {\n throw convertError(err);\n }\n }\n\n /**\n * Closes the database connection.\n */\n close() {\n databaseClose.call(this.db);\n this.open = false;\n }\n\n /**\n * Toggle 64-bit integer support.\n */\n defaultSafeIntegers(toggle) {\n databaseDefaultSafeIntegers.call(this.db, toggle ?? true);\n return this;\n }\n\n unsafeMode(...args) {\n throw new Error(\"not implemented\");\n }\n}\n\n/**\n * Statement represents a prepared SQL statement that can be executed.\n */\nclass Statement {\n constructor(stmt) {\n this.stmt = stmt;\n }\n\n /**\n * Toggle raw mode.\n *\n * @param raw Enable or disable raw mode. If you don't pass the parameter, raw mode is enabled.\n */\n raw(raw) {\n statementRaw.call(this.stmt, raw ?? true);\n return this;\n }\n\n get reader() {\n return statementIsReader.call(this.stmt);\n }\n\n /**\n * Executes the SQL statement and returns an info object.\n */\n run(...bindParameters) {\n try {\n if (bindParameters.length == 1 && typeof bindParameters[0] === \"object\") {\n return statementRun.call(this.stmt, bindParameters[0]);\n } else {\n return statementRun.call(this.stmt, bindParameters.flat());\n } \n } catch (err) {\n throw convertError(err);\n }\n }\n\n /**\n * Executes the SQL statement and returns the first row.\n *\n * @param bindParameters - The bind parameters for executing the statement.\n */\n get(...bindParameters) {\n if (bindParameters.length == 1 && typeof bindParameters[0] === \"object\") {\n return statementGet.call(this.stmt, bindParameters[0]);\n } else {\n return statementGet.call(this.stmt, bindParameters.flat());\n }\n }\n\n /**\n * Executes the SQL statement and returns an iterator to the resulting rows.\n *\n * @param bindParameters - The bind parameters for executing the statement.\n */\n iterate(...bindParameters) {\n var rows = undefined;\n if (bindParameters.length == 1 && typeof bindParameters[0] === \"object\") {\n rows = statementRowsSync.call(this.stmt, bindParameters[0]);\n } else {\n rows = statementRowsSync.call(this.stmt, bindParameters.flat());\n }\n const iter = {\n nextRows: Array(100),\n nextRowIndex: 100,\n next() {\n if (this.nextRowIndex === 100) {\n rowsNext.call(rows, this.nextRows);\n this.nextRowIndex = 0;\n }\n const row = this.nextRows[this.nextRowIndex];\n this.nextRows[this.nextRowIndex] = undefined;\n if (!row) {\n return { done: true };\n }\n this.nextRowIndex++;\n return { value: row, done: false };\n },\n [Symbol.iterator]() {\n return this;\n },\n };\n return iter;\n }\n\n /**\n * Executes the SQL statement and returns an array of the resulting rows.\n *\n * @param bindParameters - The bind parameters for executing the statement.\n */\n all(...bindParameters) {\n const result = [];\n for (const row of this.iterate(...bindParameters)) {\n result.push(row);\n }\n return result;\n }\n\n /**\n * Returns the columns in the result set returned by this prepared statement.\n */\n columns() {\n return statementColumns.call(this.stmt);\n }\n\n /**\n * Toggle 64-bit integer support.\n */\n safeIntegers(toggle) {\n statementSafeIntegers.call(this.stmt, toggle ?? true);\n return this;\n }\n}\n\nmodule.exports = Database;\nmodule.exports.SqliteError = SqliteError;\n"],"mappings":"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","ignoreList":[]},"metadata":{},"sourceType":"script","externalDependencies":[]}