Estructura inicial del proyecto
This commit is contained in:
10
backend/node_modules/@tediousjs/connection-string/lib/parser/connection-string-parser.d.ts
generated
vendored
Normal file
10
backend/node_modules/@tediousjs/connection-string/lib/parser/connection-string-parser.d.ts
generated
vendored
Normal file
@ -0,0 +1,10 @@
|
||||
export interface CollectionConfig {
|
||||
terminator: string;
|
||||
quotes: Record<string, string>;
|
||||
}
|
||||
export interface ParserConfig {
|
||||
key: CollectionConfig;
|
||||
value: CollectionConfig;
|
||||
}
|
||||
export default function connectionStringParser(connectionString: string, parserConfig?: ParserConfig): Record<string, string>;
|
||||
//# sourceMappingURL=connection-string-parser.d.ts.map
|
||||
1
backend/node_modules/@tediousjs/connection-string/lib/parser/connection-string-parser.d.ts.map
generated
vendored
Normal file
1
backend/node_modules/@tediousjs/connection-string/lib/parser/connection-string-parser.d.ts.map
generated
vendored
Normal file
@ -0,0 +1 @@
|
||||
{"version":3,"file":"connection-string-parser.d.ts","sourceRoot":"","sources":["../../src/parser/connection-string-parser.ts"],"names":[],"mappings":"AAAA,MAAM,WAAW,gBAAgB;IAC7B,UAAU,EAAE,MAAM,CAAC;IACnB,MAAM,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;CAClC;AAED,MAAM,WAAW,YAAY;IACzB,GAAG,EAAE,gBAAgB,CAAC;IACtB,KAAK,EAAE,gBAAgB,CAAC;CAC3B;AAsBD,MAAM,CAAC,OAAO,UAAU,sBAAsB,CAAC,gBAAgB,EAAE,MAAM,EAAE,YAAY,GAAE,YAAqB,GAAG,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAiHpI"}
|
||||
135
backend/node_modules/@tediousjs/connection-string/lib/parser/connection-string-parser.js
generated
vendored
Normal file
135
backend/node_modules/@tediousjs/connection-string/lib/parser/connection-string-parser.js
generated
vendored
Normal file
@ -0,0 +1,135 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.default = connectionStringParser;
|
||||
var CollectionMode;
|
||||
(function (CollectionMode) {
|
||||
CollectionMode[CollectionMode["key"] = 0] = "key";
|
||||
CollectionMode[CollectionMode["value"] = 1] = "value";
|
||||
})(CollectionMode || (CollectionMode = {}));
|
||||
const CONFIG = Object.freeze({
|
||||
key: {
|
||||
terminator: '=',
|
||||
quotes: {},
|
||||
},
|
||||
value: {
|
||||
terminator: ';',
|
||||
quotes: {
|
||||
'"': '"',
|
||||
'\'': '\'',
|
||||
'{': '}',
|
||||
},
|
||||
},
|
||||
});
|
||||
function connectionStringParser(connectionString, parserConfig = CONFIG) {
|
||||
const parsed = {};
|
||||
let collectionMode = CollectionMode.key;
|
||||
let started = false;
|
||||
let finished = false;
|
||||
let quoted = false;
|
||||
let quote = '';
|
||||
let buffer = '';
|
||||
let currentKey = '';
|
||||
let pointer = 0;
|
||||
function start() {
|
||||
started = true;
|
||||
}
|
||||
function finish() {
|
||||
finished = true;
|
||||
}
|
||||
function reset() {
|
||||
started = false;
|
||||
finished = false;
|
||||
quoted = false;
|
||||
quote = '';
|
||||
buffer = '';
|
||||
}
|
||||
function config() {
|
||||
return collectionMode === CollectionMode.key ? parserConfig.key : parserConfig.value;
|
||||
}
|
||||
function isTerminator(char) {
|
||||
return config().terminator === char;
|
||||
}
|
||||
function isStartQuote(char) {
|
||||
return Object.keys(config().quotes).some((val) => char === val);
|
||||
}
|
||||
function isEndQuote(char) {
|
||||
return quoted && char === config().quotes[quote];
|
||||
}
|
||||
function push(char) {
|
||||
buffer += char;
|
||||
}
|
||||
function collect() {
|
||||
if (!quoted) {
|
||||
buffer = buffer.trim();
|
||||
}
|
||||
switch (collectionMode) {
|
||||
case CollectionMode.key:
|
||||
currentKey = buffer.toLowerCase();
|
||||
collectionMode = CollectionMode.value;
|
||||
break;
|
||||
case CollectionMode.value:
|
||||
collectionMode = CollectionMode.key;
|
||||
parsed[currentKey] = buffer;
|
||||
currentKey = '';
|
||||
break;
|
||||
}
|
||||
reset();
|
||||
}
|
||||
while (pointer < connectionString.length) {
|
||||
const current = connectionString.charAt(pointer);
|
||||
if (!finished) {
|
||||
if (!started) {
|
||||
if (current.trim()) {
|
||||
start();
|
||||
if (isStartQuote(current)) {
|
||||
quoted = true;
|
||||
quote = current;
|
||||
}
|
||||
else {
|
||||
push(current);
|
||||
}
|
||||
}
|
||||
}
|
||||
else {
|
||||
if (quoted && isEndQuote(current)) {
|
||||
const next = connectionString.charAt(pointer + 1);
|
||||
if (current === next) {
|
||||
push(current);
|
||||
pointer++;
|
||||
}
|
||||
else {
|
||||
finish();
|
||||
}
|
||||
}
|
||||
else if (!quoted && isTerminator(current)) {
|
||||
const next = connectionString.charAt(pointer + 1);
|
||||
if (current === next) {
|
||||
push(current);
|
||||
pointer++;
|
||||
}
|
||||
else {
|
||||
collect();
|
||||
}
|
||||
}
|
||||
else {
|
||||
push(current);
|
||||
}
|
||||
}
|
||||
}
|
||||
else if (isTerminator(current)) {
|
||||
collect();
|
||||
}
|
||||
else if (current.trim()) {
|
||||
throw new Error('Malformed connection string');
|
||||
}
|
||||
pointer++;
|
||||
}
|
||||
if (quoted && !finished) {
|
||||
throw new Error('Connection string terminated unexpectedly');
|
||||
}
|
||||
else {
|
||||
collect();
|
||||
}
|
||||
return parsed;
|
||||
}
|
||||
//# sourceMappingURL=connection-string-parser.js.map
|
||||
1
backend/node_modules/@tediousjs/connection-string/lib/parser/connection-string-parser.js.map
generated
vendored
Normal file
1
backend/node_modules/@tediousjs/connection-string/lib/parser/connection-string-parser.js.map
generated
vendored
Normal file
@ -0,0 +1 @@
|
||||
{"version":3,"file":"connection-string-parser.js","sourceRoot":"","sources":["../../src/parser/connection-string-parser.ts"],"names":[],"mappings":"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"}
|
||||
Reference in New Issue
Block a user