latest pushes

This commit is contained in:
2024-09-12 02:38:49 -04:00
parent 11a4d87352
commit 6a5bedcc2e
12 changed files with 495 additions and 21 deletions

View File

@@ -1,45 +1,73 @@
// Copyright (C) 2024 Bellande Algorithm Model Research Innovation Center, Ronaldson Bellande
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <https://www.gnu.org/licenses/>.
const fs = require('fs');
class BellandeFormat {
parseBellande(filePath) {
const content = fs.readFileSync(filePath, 'utf8');
const lines = content.split('\n');
return this.parseLines(lines);
const parsedData = this.parseLines(lines);
return this.toStringRepresentation(parsedData);
}
parseLines(lines) {
const result = {};
const stack = [[-1, result]];
let currentKey = null;
let currentList = null;
const indentStack = [[-1, result]];
for (const line of lines) {
const stripped = line.trim();
if (!stripped || stripped.startsWith('#')) continue;
const indent = line.length - line.trimLeft().length;
while (stack.length && indent <= stack[stack.length - 1][0]) {
stack.pop();
}
const parent = stack[stack.length - 1][1];
while (indentStack.length && indent <= indentStack[indentStack.length - 1][0]) {
const popped = indentStack.pop();
if (Array.isArray(popped[1])) {
currentList = null;
}
}
if (stripped.includes(':')) {
const [key, value] = stripped.split(':').map(s => s.trim());
currentKey = key;
if (value) {
parent[key] = this.parseValue(value);
result[key] = this.parseValue(value);
} else {
const newDict = {};
parent[key] = newDict;
stack.push([indent, newDict]);
result[key] = [];
currentList = result[key];
indentStack.push([indent, currentList]);
}
} else if (stripped.startsWith('-')) {
const value = stripped.slice(1).trim();
if (Array.isArray(parent)) {
parent.push(this.parseValue(value));
const parsedValue = this.parseValue(value);
if (currentList !== null) {
currentList.push(parsedValue);
} else {
const newList = [this.parseValue(value)];
const lastKey = Object.keys(parent).pop();
parent[lastKey] = newList;
stack.push([indent, newList]);
if (Object.keys(result).length === 0) {
result = [parsedValue];
currentList = result;
indentStack = [[-1, result]];
} else {
result[currentKey] = [parsedValue];
currentList = result[currentKey];
indentStack.push([indent, currentList]);
}
}
}
}
@@ -57,9 +85,30 @@ class BellandeFormat {
return value;
}
toStringRepresentation(data) {
if (typeof data === 'object' && data !== null) {
if (Array.isArray(data)) {
const items = data.map(item => this.toStringRepresentation(item));
return '[' + items.join(', ') + ']';
} else {
const items = Object.entries(data).map(([k, v]) => `"${k}": ${this.toStringRepresentation(v)}`);
return '{' + items.join(', ') + '}';
}
} else if (typeof data === 'string') {
return `"${data}"`;
} else if (typeof data === 'number') {
return data.toString();
} else if (data === null) {
return 'null';
} else if (typeof data === 'boolean') {
return data.toString().toLowerCase();
} else {
return String(data);
}
}
writeBellande(data, filePath) {
const content = this.toBellandeString(data);
fs.writeFileSync(filePath, content);
fs.writeFileSync(filePath, this.toBellandeString(data));
}
toBellandeString(data, indent = 0) {
@@ -84,14 +133,19 @@ class BellandeFormat {
formatValue(value) {
if (typeof value === 'string') {
return value.includes(' ') || value.includes(':') ? `"${value}"` : value;
if (value.includes(' ') || value.includes(':') || ['true', 'false', 'null'].includes(value.toLowerCase())) {
return `"${value}"`;
}
return value;
}
if (typeof value === 'boolean') {
return value.toString();
return value.toString().toLowerCase();
}
if (value === null) {
return 'null';
}
return value.toString();
return String(value);
}
}
module.exports = BellandeFormat;