2021-04-12 21:30:31 +02:00
|
|
|
const Log = require("./log.js");
|
2020-07-30 18:52:11 +02:00
|
|
|
|
2020-09-29 17:28:52 +02:00
|
|
|
const VALID_HOOKS = [
|
|
|
|
// Message Routing Path
|
|
|
|
"onSend",
|
|
|
|
"preRoute",
|
|
|
|
"preDeliver",
|
|
|
|
"postDeliver",
|
|
|
|
"onReceive",
|
|
|
|
"postReceive",
|
2021-04-15 16:11:27 +02:00
|
|
|
"onComplete",
|
|
|
|
// Module install hooks
|
|
|
|
"preInstall",
|
|
|
|
"postInstall",
|
|
|
|
"preUninstall",
|
|
|
|
"postUninstall"
|
2020-09-29 17:28:52 +02:00
|
|
|
]
|
|
|
|
|
|
|
|
|
2020-07-30 18:52:11 +02:00
|
|
|
// Flags for what hooks have handlers registered
|
|
|
|
let states = { }
|
|
|
|
|
2021-04-26 22:14:42 +02:00
|
|
|
// Doubly-LinkedList of hooks by id.
|
|
|
|
// - hooks[id] points to head of list
|
|
|
|
// - each list item looks like:
|
|
|
|
// {
|
|
|
|
// cb: the callback function
|
|
|
|
// location: filename/line of code that added the hook
|
|
|
|
// previousHook: reference to previous hook in list
|
|
|
|
// nextHook: reference to next hook in list
|
|
|
|
// removed: a flag that is set if the item was removed
|
|
|
|
// }
|
2020-07-30 18:52:11 +02:00
|
|
|
let hooks = { }
|
|
|
|
|
|
|
|
// Hooks by label
|
|
|
|
let labelledHooks = { }
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Runtime hooks engine
|
2020-07-31 15:31:33 +02:00
|
|
|
*
|
|
|
|
* The following hooks can be used:
|
|
|
|
*
|
|
|
|
* Message sending
|
|
|
|
* - `onSend` - passed an array of `SendEvent` objects. The messages inside these objects are exactly what the node has passed to `node.send` - meaning there could be duplicate references to the same message object.
|
|
|
|
* - `preRoute` - passed a `SendEvent`
|
|
|
|
* - `preDeliver` - passed a `SendEvent`. The local router has identified the node it is going to send to. At this point, the message has been cloned if needed.
|
|
|
|
* - `postDeliver` - passed a `SendEvent`. The message has been dispatched to be delivered asynchronously (unless the sync delivery flag is set, in which case it would be continue as synchronous delivery)
|
|
|
|
* - `onReceive` - passed a `ReceiveEvent` when a node is about to receive a message
|
|
|
|
* - `postReceive` - passed a `ReceiveEvent` when the message has been given to the node's `input` handler(s)
|
|
|
|
* - `onComplete` - passed a `CompleteEvent` when the node has completed with a message or logged an error
|
|
|
|
*
|
2021-04-15 16:11:27 +02:00
|
|
|
* @mixin @node-red/util_hooks
|
2020-07-30 18:52:11 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Register a handler to a named hook
|
2021-04-15 16:11:27 +02:00
|
|
|
* @memberof @node-red/util_hooks
|
2020-07-30 18:52:11 +02:00
|
|
|
* @param {String} hookId - the name of the hook to attach to
|
|
|
|
* @param {Function} callback - the callback function for the hook
|
|
|
|
*/
|
|
|
|
function add(hookId, callback) {
|
|
|
|
let [id, label] = hookId.split(".");
|
2020-09-29 17:28:52 +02:00
|
|
|
if (VALID_HOOKS.indexOf(id) === -1) {
|
|
|
|
throw new Error(`Invalid hook '${id}'`);
|
|
|
|
}
|
2021-04-26 22:14:42 +02:00
|
|
|
if (label && labelledHooks[label] && labelledHooks[label][id]) {
|
|
|
|
throw new Error("Hook "+hookId+" already registered")
|
2020-07-30 18:52:11 +02:00
|
|
|
}
|
|
|
|
// Get location of calling code
|
|
|
|
const stack = new Error().stack;
|
|
|
|
const callModule = stack.split("\n")[2].split("(")[1].slice(0,-1);
|
|
|
|
Log.debug(`Adding hook '${hookId}' from ${callModule}`);
|
|
|
|
|
2021-04-26 22:14:42 +02:00
|
|
|
const hookItem = {cb:callback, location: callModule, previousHook: null, nextHook: null }
|
|
|
|
|
|
|
|
let tailItem = hooks[id];
|
|
|
|
if (tailItem === undefined) {
|
|
|
|
hooks[id] = hookItem;
|
|
|
|
} else {
|
|
|
|
while(tailItem.nextHook !== null) {
|
|
|
|
tailItem = tailItem.nextHook
|
|
|
|
}
|
|
|
|
tailItem.nextHook = hookItem;
|
|
|
|
hookItem.previousHook = tailItem;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (label) {
|
|
|
|
labelledHooks[label] = labelledHooks[label]||{};
|
|
|
|
labelledHooks[label][id] = hookItem;
|
|
|
|
}
|
|
|
|
|
|
|
|
// TODO: get rid of this;
|
2020-07-30 18:52:11 +02:00
|
|
|
states[id] = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Remove a handled from a named hook
|
2021-04-15 16:11:27 +02:00
|
|
|
* @memberof @node-red/util_hooks
|
2020-07-30 18:52:11 +02:00
|
|
|
* @param {String} hookId - the name of the hook event to remove - must be `name.label`
|
|
|
|
*/
|
|
|
|
function remove(hookId) {
|
|
|
|
let [id,label] = hookId.split(".");
|
|
|
|
if ( !label) {
|
2021-05-13 14:40:42 +02:00
|
|
|
throw new Error("Cannot remove hook without label: "+hookId)
|
2020-07-30 18:52:11 +02:00
|
|
|
}
|
|
|
|
Log.debug(`Removing hook '${hookId}'`);
|
|
|
|
if (labelledHooks[label]) {
|
|
|
|
if (id === "*") {
|
|
|
|
// Remove all hooks for this label
|
|
|
|
let hookList = Object.keys(labelledHooks[label]);
|
|
|
|
for (let i=0;i<hookList.length;i++) {
|
|
|
|
removeHook(hookList[i],labelledHooks[label][hookList[i]])
|
|
|
|
}
|
|
|
|
delete labelledHooks[label];
|
|
|
|
} else if (labelledHooks[label][id]) {
|
|
|
|
removeHook(id,labelledHooks[label][id])
|
|
|
|
delete labelledHooks[label][id];
|
|
|
|
if (Object.keys(labelledHooks[label]).length === 0){
|
|
|
|
delete labelledHooks[label];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-04-26 22:14:42 +02:00
|
|
|
function removeHook(id,hookItem) {
|
|
|
|
let previousHook = hookItem.previousHook;
|
|
|
|
let nextHook = hookItem.nextHook;
|
|
|
|
|
|
|
|
if (previousHook) {
|
|
|
|
previousHook.nextHook = nextHook;
|
|
|
|
} else {
|
|
|
|
hooks[id] = nextHook;
|
|
|
|
}
|
|
|
|
if (nextHook) {
|
|
|
|
nextHook.previousHook = previousHook;
|
|
|
|
}
|
|
|
|
hookItem.removed = true;
|
|
|
|
if (!previousHook && !nextHook) {
|
|
|
|
delete hooks[id];
|
|
|
|
delete states[id];
|
2020-07-30 18:52:11 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
function trigger(hookId, payload, done) {
|
2021-04-26 22:14:42 +02:00
|
|
|
let hookItem = hooks[hookId];
|
|
|
|
if (!hookItem) {
|
2021-04-15 16:11:27 +02:00
|
|
|
if (done) {
|
|
|
|
done();
|
|
|
|
return;
|
|
|
|
} else {
|
|
|
|
return Promise.resolve();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!done) {
|
|
|
|
return new Promise((resolve,reject) => {
|
2021-04-26 22:14:42 +02:00
|
|
|
invokeStack(hookItem,payload,function(err) {
|
2021-04-15 16:11:27 +02:00
|
|
|
if (err !== undefined && err !== false) {
|
|
|
|
if (!(err instanceof Error)) {
|
|
|
|
err = new Error(err);
|
|
|
|
}
|
|
|
|
err.hook = hookId
|
|
|
|
reject(err);
|
|
|
|
} else {
|
|
|
|
resolve(err);
|
|
|
|
}
|
|
|
|
})
|
|
|
|
});
|
|
|
|
} else {
|
2021-04-26 22:14:42 +02:00
|
|
|
invokeStack(hookItem,payload,done)
|
2020-07-30 18:52:11 +02:00
|
|
|
}
|
2021-04-15 16:11:27 +02:00
|
|
|
}
|
2021-04-26 22:14:42 +02:00
|
|
|
function invokeStack(hookItem,payload,done) {
|
2020-07-30 18:52:11 +02:00
|
|
|
function callNextHook(err) {
|
2021-04-26 22:14:42 +02:00
|
|
|
if (!hookItem || err) {
|
2020-07-30 18:52:11 +02:00
|
|
|
done(err);
|
|
|
|
return;
|
|
|
|
}
|
2021-04-26 22:14:42 +02:00
|
|
|
if (hookItem.removed) {
|
|
|
|
hookItem = hookItem.nextHook;
|
|
|
|
callNextHook();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
const callback = hookItem.cb;
|
2020-07-30 18:52:11 +02:00
|
|
|
if (callback.length === 1) {
|
|
|
|
try {
|
|
|
|
let result = callback(payload);
|
|
|
|
if (result === false) {
|
|
|
|
// Halting the flow
|
|
|
|
done(false);
|
|
|
|
return
|
|
|
|
}
|
|
|
|
if (result && typeof result.then === 'function') {
|
|
|
|
result.then(handleResolve, callNextHook)
|
|
|
|
return;
|
|
|
|
}
|
2021-04-26 22:14:42 +02:00
|
|
|
hookItem = hookItem.nextHook;
|
2020-07-30 18:52:11 +02:00
|
|
|
callNextHook();
|
|
|
|
} catch(err) {
|
|
|
|
done(err);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
try {
|
|
|
|
callback(payload,handleResolve)
|
|
|
|
} catch(err) {
|
|
|
|
done(err);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
function handleResolve(result) {
|
|
|
|
if (result === undefined) {
|
2021-04-26 22:14:42 +02:00
|
|
|
hookItem = hookItem.nextHook;
|
2020-07-30 18:52:11 +02:00
|
|
|
callNextHook();
|
|
|
|
} else {
|
|
|
|
done(result);
|
|
|
|
}
|
|
|
|
}
|
2021-04-15 16:11:27 +02:00
|
|
|
callNextHook();
|
2020-07-30 18:52:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
function clear() {
|
|
|
|
hooks = {}
|
|
|
|
labelledHooks = {}
|
|
|
|
states = {}
|
|
|
|
}
|
2020-09-29 17:28:52 +02:00
|
|
|
|
|
|
|
function has(hookId) {
|
|
|
|
let [id, label] = hookId.split(".");
|
|
|
|
if (label) {
|
|
|
|
return !!(labelledHooks[label] && labelledHooks[label][id])
|
|
|
|
}
|
|
|
|
return !!states[id]
|
|
|
|
}
|
|
|
|
|
2020-07-30 18:52:11 +02:00
|
|
|
module.exports = {
|
2020-09-29 17:28:52 +02:00
|
|
|
has,
|
2020-07-30 18:52:11 +02:00
|
|
|
clear,
|
|
|
|
add,
|
|
|
|
remove,
|
|
|
|
trigger
|
2021-04-12 21:30:31 +02:00
|
|
|
}
|