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

1 line
8.0 KiB
JSON

{"ast":null,"code":"\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.Batch = exports.Stmt = void 0;\nconst js_base64_1 = require(\"js-base64\");\nconst util_js_1 = require(\"../util.js\");\nfunction Stmt(w, msg) {\n if (msg.sql !== undefined) {\n w.string(\"sql\", msg.sql);\n }\n if (msg.sqlId !== undefined) {\n w.number(\"sql_id\", msg.sqlId);\n }\n w.arrayObjects(\"args\", msg.args, Value);\n w.arrayObjects(\"named_args\", msg.namedArgs, NamedArg);\n w.boolean(\"want_rows\", msg.wantRows);\n}\nexports.Stmt = Stmt;\nfunction NamedArg(w, msg) {\n w.string(\"name\", msg.name);\n w.object(\"value\", msg.value, Value);\n}\nfunction Batch(w, msg) {\n w.arrayObjects(\"steps\", msg.steps, BatchStep);\n}\nexports.Batch = Batch;\nfunction BatchStep(w, msg) {\n if (msg.condition !== undefined) {\n w.object(\"condition\", msg.condition, BatchCond);\n }\n w.object(\"stmt\", msg.stmt, Stmt);\n}\nfunction BatchCond(w, msg) {\n w.stringRaw(\"type\", msg.type);\n if (msg.type === \"ok\" || msg.type === \"error\") {\n w.number(\"step\", msg.step);\n } else if (msg.type === \"not\") {\n w.object(\"cond\", msg.cond, BatchCond);\n } else if (msg.type === \"and\" || msg.type === \"or\") {\n w.arrayObjects(\"conds\", msg.conds, BatchCond);\n } else if (msg.type === \"is_autocommit\") {\n // do nothing\n } else {\n throw (0, util_js_1.impossible)(msg, \"Impossible type of BatchCond\");\n }\n}\nfunction Value(w, msg) {\n if (msg === null) {\n w.stringRaw(\"type\", \"null\");\n } else if (typeof msg === \"bigint\") {\n w.stringRaw(\"type\", \"integer\");\n w.stringRaw(\"value\", \"\" + msg);\n } else if (typeof msg === \"number\") {\n w.stringRaw(\"type\", \"float\");\n w.number(\"value\", msg);\n } else if (typeof msg === \"string\") {\n w.stringRaw(\"type\", \"text\");\n w.string(\"value\", msg);\n } else if (msg instanceof Uint8Array) {\n w.stringRaw(\"type\", \"blob\");\n w.stringRaw(\"base64\", js_base64_1.Base64.fromUint8Array(msg));\n } else if (msg === undefined) {\n // do nothing\n } else {\n throw (0, util_js_1.impossible)(msg, \"Impossible type of Value\");\n }\n}","map":{"version":3,"names":["Object","defineProperty","exports","value","Batch","Stmt","js_base64_1","require","util_js_1","w","msg","sql","undefined","string","sqlId","number","arrayObjects","args","Value","namedArgs","NamedArg","boolean","wantRows","name","object","steps","BatchStep","condition","BatchCond","stmt","stringRaw","type","step","cond","conds","impossible","Uint8Array","Base64","fromUint8Array"],"sources":["/Users/shoofle/Projects/the-forest/node_modules/@libsql/hrana-client/lib-cjs/shared/json_encode.js"],"sourcesContent":["\"use strict\";\nObject.defineProperty(exports, \"__esModule\", { value: true });\nexports.Batch = exports.Stmt = void 0;\nconst js_base64_1 = require(\"js-base64\");\nconst util_js_1 = require(\"../util.js\");\nfunction Stmt(w, msg) {\n if (msg.sql !== undefined) {\n w.string(\"sql\", msg.sql);\n }\n if (msg.sqlId !== undefined) {\n w.number(\"sql_id\", msg.sqlId);\n }\n w.arrayObjects(\"args\", msg.args, Value);\n w.arrayObjects(\"named_args\", msg.namedArgs, NamedArg);\n w.boolean(\"want_rows\", msg.wantRows);\n}\nexports.Stmt = Stmt;\nfunction NamedArg(w, msg) {\n w.string(\"name\", msg.name);\n w.object(\"value\", msg.value, Value);\n}\nfunction Batch(w, msg) {\n w.arrayObjects(\"steps\", msg.steps, BatchStep);\n}\nexports.Batch = Batch;\nfunction BatchStep(w, msg) {\n if (msg.condition !== undefined) {\n w.object(\"condition\", msg.condition, BatchCond);\n }\n w.object(\"stmt\", msg.stmt, Stmt);\n}\nfunction BatchCond(w, msg) {\n w.stringRaw(\"type\", msg.type);\n if (msg.type === \"ok\" || msg.type === \"error\") {\n w.number(\"step\", msg.step);\n }\n else if (msg.type === \"not\") {\n w.object(\"cond\", msg.cond, BatchCond);\n }\n else if (msg.type === \"and\" || msg.type === \"or\") {\n w.arrayObjects(\"conds\", msg.conds, BatchCond);\n }\n else if (msg.type === \"is_autocommit\") {\n // do nothing\n }\n else {\n throw (0, util_js_1.impossible)(msg, \"Impossible type of BatchCond\");\n }\n}\nfunction Value(w, msg) {\n if (msg === null) {\n w.stringRaw(\"type\", \"null\");\n }\n else if (typeof msg === \"bigint\") {\n w.stringRaw(\"type\", \"integer\");\n w.stringRaw(\"value\", \"\" + msg);\n }\n else if (typeof msg === \"number\") {\n w.stringRaw(\"type\", \"float\");\n w.number(\"value\", msg);\n }\n else if (typeof msg === \"string\") {\n w.stringRaw(\"type\", \"text\");\n w.string(\"value\", msg);\n }\n else if (msg instanceof Uint8Array) {\n w.stringRaw(\"type\", \"blob\");\n w.stringRaw(\"base64\", js_base64_1.Base64.fromUint8Array(msg));\n }\n else if (msg === undefined) {\n // do nothing\n }\n else {\n throw (0, util_js_1.impossible)(msg, \"Impossible type of Value\");\n }\n}\n"],"mappings":"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","ignoreList":[]},"metadata":{},"sourceType":"script","externalDependencies":[]}