Skip to content

Commit

Permalink
Refactor method names and update parameter types for clarity; enhance…
Browse files Browse the repository at this point in the history
… debug logging functionality
  • Loading branch information
77it committed Jan 25, 2025
1 parent df3cd78 commit 4dde008
Show file tree
Hide file tree
Showing 8 changed files with 123 additions and 115 deletions.
12 changes: 8 additions & 4 deletions src/config/modules/genericmovements.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,19 @@ const tablesInfo = {
NAME: 'name',
VALUE: 'value'
},
names: {
TYPE: 'type',
VS_TYPE: 'vs type',
}
},
SET: {
tableName: 'set',
columns: {
ACTIVE: 'active', // boolean flag to mark a row for execution or not
SIMULATION_INPUT: 'simulation input',
INACTIVE: 'inactive', // boolean flag to mark a row for execution or not
SIMULATION_INPUT: 'simulation input', // input for the simulation (loan description, etc.)
ACCOUNTING_TYPE: 'type',
ACCOUNTING_OPPOSITE_TYPE: 'vs type',
SIMOBJECT_NAME: 'name'
SIMOBJECT_NAME: 'name' // SimObject name
}
}
};
Expand All @@ -36,7 +40,7 @@ const moduleSanitization = [
{
tableName: tablesInfo.SET.tableName,
sanitization: {
[tablesInfo.SET.columns.ACTIVE]: schema.BOOLEAN_TYPE,
[tablesInfo.SET.columns.INACTIVE]: schema.BOOLEAN_TYPE,
[tablesInfo.SET.columns.SIMULATION_INPUT]: schema.ANY_TYPE,
[tablesInfo.SET.columns.ACCOUNTING_TYPE]: schema.STRINGUPPERCASETRIMMED_TYPE,
[tablesInfo.SET.columns.ACCOUNTING_OPPOSITE_TYPE]: schema.STRINGUPPERCASETRIMMED_TYPE,
Expand Down
40 changes: 21 additions & 19 deletions src/engine/context/simulationcontext.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
import { isNullOrWhiteSpace } from '../../lib/string_utils.js';

export { SimulationContext };

// Classes imported for type checking only
Expand All @@ -7,6 +9,7 @@ import { TaskLocks } from '../tasklocks/tasklocks.js';
import { Ledger } from '../ledger/ledger.js';
import { NewSimObjectDto } from '../ledger/commands/newsimobjectdto.js';
import { NewDebugSimObjectDto } from '../ledger/commands/newdebugsimobjectdto.js';
import { SimObjectDebugTypes_enum } from '../simobject/enums/simobject_debugtypes_enum.js';

class SimulationContext {
/** @type {Drivers} */
Expand Down Expand Up @@ -157,41 +160,40 @@ class SimulationContext {
* Add a SimObject to the transaction
* @param {NewSimObjectDto} newSimObjectDto
*/
newSimObject (newSimObjectDto) {
this.#ledger.newSimObject(newSimObjectDto);
append (newSimObjectDto) {
this.#ledger.appendSimObject(newSimObjectDto);
}

/**
* Add a DEBUG_DEBUG SimObject to the transaction
* @param {NewDebugSimObjectDto} newDebugSimObjectDto
*/
newDebugDebugSimObject (newDebugSimObjectDto) {
this.#ledger.newDebugDebugSimObject(newDebugSimObjectDto);
debug (newDebugSimObjectDto) {
this.#ledger.appendDebugDebugSimObject(newDebugSimObjectDto);
}

/**
* Add a DEBUG_INFO SimObject to the transaction
* @param {NewDebugSimObjectDto} newDebugSimObjectDto
*/
newDebugInfoSimObject (newDebugSimObjectDto) {
this.#ledger.newDebugInfoSimObject(newDebugSimObjectDto);
info (newDebugSimObjectDto) {
this.#ledger.appendDebugInfoSimObject(newDebugSimObjectDto);
}

/**
* Add a DEBUG_WARNING SimObject to the transaction
* @param {NewDebugSimObjectDto} newDebugSimObjectDto
* Add a DEBUG_WARNING to the transaction from SimObject, string or string array
* @param {NewDebugSimObjectDto | string | string[]} message
*/
newDebugWarningSimObject (newDebugSimObjectDto) {
this.#ledger.newDebugWarningSimObject(newDebugSimObjectDto);
}
warning (message) {
if (message instanceof NewDebugSimObjectDto){
this.#ledger.appendDebugWarningSimObject(message);
return;
}

/**
* Add a DEBUG_WARNING SimObject to the transaction if the input string or array of strings is not empty
* @param {Object} p
* @param {string} p.title
* @param {string|string[]} p.message
*/
newDebugWarningSimObjectFromErrorString ({ title, message }) {
this.#ledger.newDebugWarningSimObjectFromErrorString({ title, message });
// converts a string to itself (without quotes), an empty array to "", an array to comma separated string
const _message = message.toString();

if (isNullOrWhiteSpace(_message)) return;
this.#ledger.appendDebugWarningSimObject(new NewDebugSimObjectDto({ description: _message }));
}
}
2 changes: 1 addition & 1 deletion src/engine/engine.js
Original file line number Diff line number Diff line change
Expand Up @@ -356,7 +356,7 @@ function engine ({ modulesData, modules, scenarioName, appendTrnDump, ledgerDebu

const _error = (error instanceof Error) ? error.stack?.toString() ?? error.toString() : 'Unknown error occurred';
_ledger.unlock();
_ledger?.newDebugErrorSimObject(new NewDebugSimObjectDto({ description: _error }));
_ledger?.ONLY_FOR_ENGINE_USAGE_appendDebugErrorSimObject(new NewDebugSimObjectDto({ description: _error }));
_ledger?.forceCommitWithoutValidation();

return new Result({ success: false, error: `${_ledger.getDebugModuleInfo()}\n${_error}\n` });
Expand Down
35 changes: 10 additions & 25 deletions src/engine/ledger/ledger.js
Original file line number Diff line number Diff line change
Expand Up @@ -270,7 +270,7 @@ class Ledger {
* Add a SimObject to the transaction
* @param {NewSimObjectDto} newSimObjectDto
*/
newSimObject (newSimObjectDto) {
appendSimObject (newSimObjectDto) {
sanitize({ value: newSimObjectDto, sanitization: newSimObjectDto_Schema });
// validate to check that there are no extraneous properties, that would be ignored by the SimObject constructor, but could be a sign of a typo in the calling code
validate({ value: newSimObjectDto, validation: newSimObjectDto_Schema, strict:true });
Expand Down Expand Up @@ -336,48 +336,33 @@ class Ledger {
* Add a DEBUG_DEBUG SimObject to the transaction
* @param {NewDebugSimObjectDto} newDebugSimObjectDto
*/
newDebugDebugSimObject (newDebugSimObjectDto) {
this.#newDebugSimObject(SimObjectDebugTypes_enum.DEBUG_DEBUG, newDebugSimObjectDto);
appendDebugDebugSimObject (newDebugSimObjectDto) {
this.#appendDebugSimObject(SimObjectDebugTypes_enum.DEBUG_DEBUG, newDebugSimObjectDto);
}

/**
* Add a DEBUG_INFO SimObject to the transaction
* @param {NewDebugSimObjectDto} newDebugSimObjectDto
*/
newDebugInfoSimObject (newDebugSimObjectDto) {
this.#newDebugSimObject(SimObjectDebugTypes_enum.DEBUG_INFO, newDebugSimObjectDto);
appendDebugInfoSimObject (newDebugSimObjectDto) {
this.#appendDebugSimObject(SimObjectDebugTypes_enum.DEBUG_INFO, newDebugSimObjectDto);
}

/**
* Add a DEBUG_WARNING SimObject to the transaction
* @param {NewDebugSimObjectDto} newDebugSimObjectDto
*/
newDebugWarningSimObject (newDebugSimObjectDto) {
this.#newDebugSimObject(SimObjectDebugTypes_enum.DEBUG_WARNING, newDebugSimObjectDto);
}

/**
* Add a DEBUG_WARNING SimObject to the transaction if the input string or array of strings is not empty
* @param {Object} p
* @param {string} p.title
* @param {string|string[]} p.message
*/
newDebugWarningSimObjectFromErrorString ({ title, message }) {
if (Array.isArray(message) && message.length === 0) return;
if (isNullOrWhiteSpace(message)) return;

// create message: if message is an array, stringify it; otherwise, convert it to string
const _message = (Array.isArray(message)) ? `${title}: ${JSON.stringify(message)}` : `${title}: ${message.toString()}`;
this.#newDebugSimObject(SimObjectDebugTypes_enum.DEBUG_WARNING, new NewDebugSimObjectDto({ description: _message }));
appendDebugWarningSimObject (newDebugSimObjectDto) {
this.#appendDebugSimObject(SimObjectDebugTypes_enum.DEBUG_WARNING, newDebugSimObjectDto);
}

/**
* BEWARE: this method must be called only by the engine, then must not be exported to modules.
* Add a DEBUG_ERROR SimObject to the transaction
* @param {NewDebugSimObjectDto} newDebugSimObjectDto
*/
newDebugErrorSimObject (newDebugSimObjectDto) {
this.#newDebugSimObject(SimObjectErrorDebugTypes_enum.DEBUG_ERROR, newDebugSimObjectDto);
ONLY_FOR_ENGINE_USAGE_appendDebugErrorSimObject (newDebugSimObjectDto) {
this.#appendDebugSimObject(SimObjectErrorDebugTypes_enum.DEBUG_ERROR, newDebugSimObjectDto);
}

//#endregion SIMOBJECT methods
Expand Down Expand Up @@ -429,7 +414,7 @@ class Ledger {
@param {string} simObjectDebugType
@param {NewDebugSimObjectDto} newDebugSimObjectDto
*/
#newDebugSimObject (simObjectDebugType, newDebugSimObjectDto) {
#appendDebugSimObject (simObjectDebugType, newDebugSimObjectDto) {
sanitize({ value: newDebugSimObjectDto, sanitization: newDebugSimObjectDto_Schema });
//skip validation, this method is private and can't be called with wrong types //validation.validate({ value: simObjectDebugType, validation: SimObjectDebugTypes_enum_validation.concat(SimObjectErrorDebugTypes_enum_validation) });

Expand Down
7 changes: 4 additions & 3 deletions src/lib/obj_utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -75,9 +75,10 @@ function eq2 (a, b) {
/**
* Get value from an object, querying the key in a case insensitive way.
* Try to get the exact key, then try to get the key after trim & case insensitive.
* @param {Record<string, any>} obj
* @param {string|number} key
* @returns {any}
* Returns undefined if key is not found.
* @param {Record<string, *>} obj
* @param {string | number} key
* @returns {undefined | *}
* @throws {Error} if during the case insensitive search, two keys are found that match the query
*/
function get2 (obj, key) {
Expand Down
26 changes: 15 additions & 11 deletions src/modules/_utils/search/module_data_lookup.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
export { moduleDataLookup };

import { ModuleData, isNullOrWhiteSpace, sanitize, eq2, get2 } from '../../../deps.js';
import { ModuleData, isNullOrWhiteSpace, sanitize, schema, eq2, get2 } from '../../../deps.js';

/**
* Search table `tableName` in ModuleData, then value `lookup_value` in column `lookup_column`,
Expand All @@ -10,7 +10,7 @@ import { ModuleData, isNullOrWhiteSpace, sanitize, eq2, get2 } from '../../../de
* `lookup_column` and `return_column` are get directly and if not found they are matched with all keys in a case insensitive & trim way.
* `return_first_match` if true, return the first match, otherwise the last match.
* @param {ModuleData} moduleData
* @param {{tableName: string, lookup_value: *, lookup_column: string, return_column: string, return_first_match?: boolean, string_insensitive_match?: boolean, sanitization?: string, sanitizationOptions?: Object }} opt
* @param {{tableName: string, lookup_value: *, lookup_column: string, return_column: string, return_first_match?: boolean, string_insensitive_match?: boolean, sanitization?: *, sanitizationOptions?: Object }} opt
* return_first_match default = true;
* string_insensitive_match default = true;
* sanitization if missing, no sanitization is performed;
Expand All @@ -30,40 +30,44 @@ function moduleDataLookup (
sanitizationOptions
}) {
if (moduleData == null) return undefined;
if (lookup_value == null) return undefined;
if (isNullOrWhiteSpace(tableName)) return undefined;
if (lookup_value == null) return undefined; // can be any kind of value other than null or undefined
if (isNullOrWhiteSpace(lookup_column)) return undefined;
if (isNullOrWhiteSpace(return_column)) return undefined;

if (return_first_match == null) return_first_match = true;
if (string_insensitive_match == null) string_insensitive_match = true;
const _return_first_match = sanitize({ value: return_first_match, sanitization: schema.BOOLEAN_TYPE + schema.OPTIONAL})
?? true; // defaults to true

const _string_insensitive_match = sanitize({ value: string_insensitive_match, sanitization: schema.BOOLEAN_TYPE + schema.OPTIONAL })
?? true; // defaults to true

let _ret = undefined;
let _found = false;

for (const _table of moduleData.tables) {
if (string_insensitive_match ? eq2(_table.tableName, tableName) : _table.tableName === tableName) {
if (_string_insensitive_match ? eq2(_table.tableName, tableName) : _table.tableName === tableName) {
for (const row of _table.table) {
// get `lookup_column` from `row[lookup_column]` (key are compared with trim & case-insensitive with get2())
// then compare `lookup_value` with get value (values are compared with trim & case-insensitive with eq2())
let _match = false;
if (string_insensitive_match)
if (_string_insensitive_match)
_match = eq2(lookup_value, get2(row, lookup_column));
else
_match = lookup_value === row[lookup_column];

if (_match) {
// get from row[return_column] (trim & case-insensitive with get2())
if (return_first_match) {
_ret = string_insensitive_match ? get2(row, return_column) : row[return_column];
if (_return_first_match) {
_ret = _string_insensitive_match ? get2(row, return_column) : row[return_column];
_found = true;
break; // exit loop
} else {
_ret = string_insensitive_match ? get2(row, return_column) : row[return_column];
_ret = _string_insensitive_match ? get2(row, return_column) : row[return_column];
}
}
}
}
if (return_first_match && _found) break; // exit loop
if (_return_first_match && _found) break; // exit loop
}

if (sanitization != null)
Expand Down
Loading

0 comments on commit 4dde008

Please sign in to comment.