UNPKG

@haystacks/async

Version:

A framework to build any number or any kind of native application or automation solution.

245 lines (232 loc) 9.94 kB
/** * @file queue.js * @module queue * @description Implements the various functions of a queue data structure, * using the specified name-space on the D-data structure. * @requires module:loggers * @requires module:data * @requires {@link https://www.npmjs.com/package/@haystacks/constants|@haystacks/constants} * @requires {@link https://www.npmjs.com/package/path|path} * @author Seth Hollingsead * @date 2021/10/13 * @copyright Copyright © 2022-… by Seth Hollingsead. All rights reserved */ // Internal imports import loggers from '../executrix/loggers.js'; import D from './data.js'; // External imports import hayConst from '@haystacks/constants'; import path from 'path'; const {bas, msg, wrd} = hayConst; const baseFileName = path.basename(import.meta.url, path.extname(import.meta.url)); // framework.structures.queue. const namespacePrefix = wrd.cframework + bas.cDot + wrd.cstructures + bas.cDot + baseFileName + bas.cDot; /** * @function initQueue * @description Initializes the queue with the provided namespace. * @param {string} queueNameSpace The namespace the queue array should be created under. * @return {void} * @author Seth Hollingsead * @date 2022/02/01 * @reference {@link https://www.youtube.com/watch?v=bK7I79hcm08} */ async function initQueue(queueNameSpace) { let functionName = initQueue.name; await loggers.consoleLog(namespacePrefix + functionName, msg.cBEGIN_Function); await loggers.consoleLog(namespacePrefix + functionName, msg.cqueueNameSpaceIs + queueNameSpace); D[queueNameSpace] = []; await loggers.consoleLog(namespacePrefix + functionName, msg.cEND_Function); } /** * @function dequeue * @description Gets the entity at the front of the queue, removes it from the queue and returns that entity. * @param {string} queueNameSpace The namespace the queue array should be dequeued from. * @return {string} The item at the front of the queue and removes it from the queue. * @author Seth Hollingsead * @date 2022/02/01 * @reference {@link https://www.youtube.com/watch?v=bK7I79hcm08} */ async function dequeue(queueNameSpace) { let functionName = dequeue.name; await loggers.consoleLog(namespacePrefix + functionName, msg.cBEGIN_Function); await loggers.consoleLog(namespacePrefix + functionName, msg.cqueueNameSpaceIs + queueNameSpace); let returnData; returnData = D[queueNameSpace].shift(); await loggers.consoleLog(namespacePrefix + functionName, msg.creturnDataIs + returnData); await loggers.consoleLog(namespacePrefix + functionName, msg.cEND_Function); return returnData; } /** * @function enqueue * @description Adds the value to the specified namespace queue. * @param {string} queueNameSpace The namespace the queue array should have a value added to. * @param {string} value The value that should be added to the specified queue array. * @return {void} * @author Seth Hollingsead * @date 2022/02/01 * @reference {@link https://www.youtube.com/watch?v=bK7I79hcm08} */ async function enqueue(queueNameSpace, value) { let functionName = enqueue.name; await loggers.consoleLog(namespacePrefix + functionName, msg.cBEGIN_Function); await loggers.consoleLog(namespacePrefix + functionName, msg.cqueueNameSpaceIs + queueNameSpace); await loggers.consoleLog(namespacePrefix + functionName, msg.cvalueIs + value); D[queueNameSpace].push(value); await loggers.consoleLog(namespacePrefix + functionName, msg.cEND_Function); } /** * @function enqueueFront * @description Adds the value to the front of the specified namespace queue. * @param {string} queueNameSpace The namespace the queue array should have a value added to to the front. * @param {string|array<string>} value The value that should be added to the specified queue array, * it could be a string value or an array of string values. * @return {void} * @author Seth Hollingsead * @date 2022/08/31 */ async function enqueueFront(queueNameSpace, value) { let functionName = enqueueFront.name; await loggers.consoleLog(namespacePrefix + functionName, msg.cBEGIN_Function); await loggers.consoleLog(namespacePrefix + functionName, msg.cqueueNameSpaceIs + queueNameSpace); await loggers.consoleLog(namespacePrefix + functionName, msg.cvalueIs + JSON.stringify(value)); if (Array.isArray(value) === true) { // If the value is an array, then decompose the array into variables all passed to the unshift command. D[queueNameSpace].unshift(...value); } else { D[queueNameSpace].unshift(value); } await loggers.consoleLog(namespacePrefix + functionName, msg.cEND_Function); } /** * @function isEmpty * @description Determines if the queue is empty or not empty. * @param {string} queueNameSpace The namespace the queue array should have a value added to. * @return {boolean} True or False to indicate if the queue is empty or not empty. * @author Seth Hollingsead * @date 2022/02/01 * @reference {@link https://www.youtube.com/watch?v=bK7I79hcm08} */ async function isEmpty(queueNameSpace) { let functionName = isEmpty.name; await loggers.consoleLog(namespacePrefix + functionName, msg.cBEGIN_Function); await loggers.consoleLog(namespacePrefix + functionName, msg.cqueueNameSpaceIs + queueNameSpace); let returnData; if (D[queueNameSpace] === undefined) { returnData = true; } else { returnData = (D[queueNameSpace].length === 0); } await loggers.consoleLog(namespacePrefix + functionName, msg.creturnDataIs + returnData); await loggers.consoleLog(namespacePrefix + functionName, msg.cEND_Function); return returnData; } /** * @function queueFront * @description Gets the entity at the front of the queue. * @param {string} queueNameSpace The namespace the queue array from which the front of the queue should be found. * @return {string} The entity at the front of the queue. * @author Seth Hollingsead * @date 2022/02/01 * @reference {@link https://www.youtube.com/watch?v=bK7I79hcm08} */ async function queueFront(queueNameSpace) { let functionName = queueFront.name; await loggers.consoleLog(namespacePrefix + functionName, msg.cBEGIN_Function); await loggers.consoleLog(namespacePrefix + functionName, msg.cqueueNameSpaceIs + queueNameSpace); let returnData; if (D[queueNameSpace] !== undefined) { returnData = D[queueNameSpace][0]; } else { // WARNING: Queue: // does not exist! } await loggers.consoleLog(namespacePrefix + functionName, msg.creturnDataIs + returnData); await loggers.consoleLog(namespacePrefix + functionName, msg.cEND_Function); return returnData; } /** * @function queueSize * @description Gets the current size of the queue. * @param {string} queueNameSpace The namespace of the queue array from which we should get the current queue size. * @return {integer} A count for the number of entities in the specified queue. * @author Seth Hollingsead * @date 2022/02/01 * @reference {@link https://www.youtube.com/watch?v=bK7I79hcm08} */ async function queueSize(queueNameSpace) { let functionName = queueFront.name; await loggers.consoleLog(namespacePrefix + functionName, msg.cBEGIN_Function); await loggers.consoleLog(namespacePrefix + functionName, msg.cqueueNameSpaceIs + queueNameSpace); let returnData = 0; if (D[queueNameSpace] !== undefined) { returnData = D[queueNameSpace].length; } else { // WARNING: Queue: // does not exist! } await loggers.consoleLog(namespacePrefix + functionName, msg.creturnDataIs + returnData); await loggers.consoleLog(namespacePrefix + functionName, msg.cEND_Function); return returnData; } /** * @function queueContents * @description Returns the contents of the queue as an array. * @param {string} queueNameSpace The namespace of the queue who's contents should be returned as an array. * @return {array<string>} The entire queue and it's contents as an array. * @author Seth Hollingsead * @date 2022/09/01 */ async function queueContents(queueNameSpace) { let functionName = queueFront.name; await loggers.consoleLog(namespacePrefix + functionName, msg.cBEGIN_Function); await loggers.consoleLog(namespacePrefix + functionName, msg.cqueueNameSpaceIs + queueNameSpace); let returnData = []; if (D[queueNameSpace] !== undefined) { returnData = D[queueNameSpace]; } else { // WARNING: Queue: // does not exist! } await loggers.consoleLog(namespacePrefix + functionName, msg.creturnDataIs + returnData); await loggers.consoleLog(namespacePrefix + functionName, msg.cEND_Function); return returnData; } /** * @function queuePrint * @description Prints out the queue as specified by the namespace input parameter. * @param {string} queueNameSpace The namespace that should be used to print out the contents of the queue on the D-data structure. * @return {void} * @author Seth Hollingsead * @date 2022/06/21 */ async function queuePrint(queueNameSpace) { let functionName = queuePrint.name; await loggers.consoleLog(namespacePrefix + functionName, msg.cBEGIN_Function); await loggers.consoleLog(namespacePrefix + functionName, msg.cqueueNameSpaceIs + queueNameSpace); let returnData = ''; if (D[queueNameSpace] !== undefined) { // Contents of the queue namespace: returnData = JSON.stringify(D[queueNameSpace]); // let queueContentsMessage = msg.cContentsOfTheQueueNamespace + queueNameSpace + sys.cSpaceIsColonSpace + returnData; // console.log(queueContentsMessage); } else { // WARNING: Queue: // does not exist! returnData = msg.cWarningQueue + queueNameSpace + bas.cSpace + msg.cdoesNotExist; console.log(returnData); } await loggers.consoleLog(namespacePrefix + functionName, msg.creturnDataIs + returnData); await loggers.consoleLog(namespacePrefix + functionName, msg.cEND_Function); return returnData; } export default { initQueue, dequeue, enqueue, enqueueFront, isEmpty, queueFront, queueSize, queueContents, queuePrint };