2019-01-16 17:27:19 +01:00
|
|
|
/**
|
|
|
|
* Copyright JS Foundation and other contributors, http://js.foundation
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
**/
|
|
|
|
|
|
|
|
const clone = require("clone");
|
|
|
|
const Flow = require('./Flow').Flow;
|
2020-03-28 00:47:12 +01:00
|
|
|
const context = require('../context');
|
2019-02-02 00:44:50 +01:00
|
|
|
const util = require("util");
|
|
|
|
|
2019-01-16 17:27:19 +01:00
|
|
|
const redUtil = require("@node-red/util").util;
|
|
|
|
const flowUtil = require("./util");
|
|
|
|
|
2019-11-01 15:14:48 +01:00
|
|
|
|
|
|
|
const credentials = require("../credentials");
|
|
|
|
|
2019-01-16 17:27:19 +01:00
|
|
|
var Log;
|
|
|
|
|
2019-08-12 16:01:54 +02:00
|
|
|
/**
|
|
|
|
* Create deep copy of object
|
|
|
|
*/
|
|
|
|
function deepCopy(obj) {
|
|
|
|
return JSON.parse(JSON.stringify(obj));
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Evaluate Input Value
|
|
|
|
*/
|
|
|
|
function evaluateInputValue(value, type, node) {
|
|
|
|
if (type === "bool") {
|
|
|
|
return (value === "true") || (value === true);
|
|
|
|
}
|
2019-11-01 15:14:48 +01:00
|
|
|
if (type === "cred") {
|
|
|
|
return value;
|
|
|
|
}
|
2019-08-12 16:01:54 +02:00
|
|
|
return redUtil.evaluateNodeProperty(value, type, node, null, null);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Compose information object for env var
|
|
|
|
*/
|
|
|
|
function composeInfo(info, val) {
|
|
|
|
var result = {
|
|
|
|
name: info.name,
|
|
|
|
type: info.type,
|
|
|
|
value: val,
|
|
|
|
};
|
|
|
|
if (info.ui) {
|
|
|
|
var ui = info.ui;
|
|
|
|
result.ui = {
|
|
|
|
hasUI: ui.hasUI,
|
|
|
|
icon: ui.icon,
|
|
|
|
labels: ui.labels,
|
|
|
|
type: ui.type
|
|
|
|
};
|
|
|
|
var retUI = result.ui;
|
|
|
|
if (ui.type === "input") {
|
|
|
|
retUI.inputTypes = ui.inputTypes;
|
|
|
|
}
|
|
|
|
if (ui.type === "select") {
|
|
|
|
retUI.menu = ui.menu;
|
|
|
|
}
|
|
|
|
if (ui.type === "spinner") {
|
|
|
|
retUI.spinner = ui.spinner;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2019-01-26 15:15:20 +01:00
|
|
|
|
2019-01-17 00:33:04 +01:00
|
|
|
/**
|
|
|
|
* This class represents a subflow - which is handled as a special type of Flow
|
|
|
|
*/
|
2019-01-16 17:27:19 +01:00
|
|
|
class Subflow extends Flow {
|
2019-01-17 00:33:04 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Create a Subflow object.
|
|
|
|
* This takes a subflow definition and instance node, creates a clone of the
|
|
|
|
* definition with unique ids applied and passes to the super class.
|
|
|
|
* @param {[type]} parent [description]
|
|
|
|
* @param {[type]} globalFlow [description]
|
|
|
|
* @param {[type]} subflowDef [description]
|
|
|
|
* @param {[type]} subflowInstance [description]
|
|
|
|
*/
|
2019-01-16 17:27:19 +01:00
|
|
|
constructor(parent,globalFlow,subflowDef,subflowInstance) {
|
2020-01-17 17:53:01 +01:00
|
|
|
// console.log("CREATE SUBFLOW",subflowDef.id,subflowInstance.id,"alias?",subflowInstance._alias);
|
2019-01-16 17:27:19 +01:00
|
|
|
// console.log("SubflowInstance\n"+JSON.stringify(subflowInstance," ",2));
|
|
|
|
// console.log("SubflowDef\n"+JSON.stringify(subflowDef," ",2));
|
|
|
|
var subflows = parent.flow.subflows;
|
|
|
|
var globalSubflows = parent.global.subflows;
|
|
|
|
|
|
|
|
var node_map = {};
|
|
|
|
var node;
|
|
|
|
var wires;
|
|
|
|
var i;
|
|
|
|
|
|
|
|
var subflowInternalFlowConfig = {
|
|
|
|
id: subflowInstance.id,
|
|
|
|
configs: {},
|
|
|
|
nodes: {},
|
|
|
|
subflows: {}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (subflowDef.configs) {
|
|
|
|
// Clone all of the subflow config node definitions and give them new IDs
|
|
|
|
for (i in subflowDef.configs) {
|
|
|
|
if (subflowDef.configs.hasOwnProperty(i)) {
|
|
|
|
node = createNodeInSubflow(subflowInstance.id,subflowDef.configs[i]);
|
|
|
|
node_map[node._alias] = node;
|
|
|
|
subflowInternalFlowConfig.configs[node.id] = node;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (subflowDef.nodes) {
|
|
|
|
// Clone all of the subflow node definitions and give them new IDs
|
|
|
|
for (i in subflowDef.nodes) {
|
|
|
|
if (subflowDef.nodes.hasOwnProperty(i)) {
|
|
|
|
node = createNodeInSubflow(subflowInstance.id,subflowDef.nodes[i]);
|
|
|
|
node_map[node._alias] = node;
|
|
|
|
subflowInternalFlowConfig.nodes[node.id] = node;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
subflowInternalFlowConfig.subflows = clone(subflowDef.subflows || {});
|
|
|
|
|
|
|
|
remapSubflowNodes(subflowInternalFlowConfig.configs,node_map);
|
|
|
|
remapSubflowNodes(subflowInternalFlowConfig.nodes,node_map);
|
|
|
|
|
|
|
|
// console.log("Instance config\n",JSON.stringify(subflowInternalFlowConfig,"",2));
|
|
|
|
|
|
|
|
super(parent,globalFlow,subflowInternalFlowConfig);
|
|
|
|
|
|
|
|
this.TYPE = 'subflow';
|
|
|
|
this.subflowDef = subflowDef;
|
|
|
|
this.subflowInstance = subflowInstance;
|
|
|
|
this.node_map = node_map;
|
2020-01-17 17:53:01 +01:00
|
|
|
this.path = parent.path+"/"+(subflowInstance._alias||subflowInstance.id);
|
2019-02-02 00:34:33 +01:00
|
|
|
|
2019-11-01 15:14:48 +01:00
|
|
|
this.templateCredentials = credentials.get(subflowDef.id);
|
|
|
|
this.instanceCredentials = credentials.get(this.id);
|
|
|
|
|
2019-02-02 00:34:33 +01:00
|
|
|
var env = [];
|
|
|
|
if (this.subflowDef.env) {
|
2019-08-12 16:01:54 +02:00
|
|
|
this.subflowDef.env.forEach(e => {
|
|
|
|
env[e.name] = e;
|
2019-11-01 15:14:48 +01:00
|
|
|
if (e.type === "cred") {
|
|
|
|
e.value = this.templateCredentials[e.name];
|
|
|
|
}
|
2019-08-12 16:01:54 +02:00
|
|
|
});
|
2019-02-02 00:34:33 +01:00
|
|
|
}
|
|
|
|
if (this.subflowInstance.env) {
|
2019-08-12 16:01:54 +02:00
|
|
|
this.subflowInstance.env.forEach(e => {
|
|
|
|
var old = env[e.name];
|
|
|
|
var ui = old ? old.ui : null;
|
|
|
|
env[e.name] = e;
|
|
|
|
if (ui) {
|
2019-11-01 15:14:48 +01:00
|
|
|
env[e.name].ui = ui;
|
|
|
|
}
|
|
|
|
if (e.type === "cred") {
|
|
|
|
if (!old || this.instanceCredentials.hasOwnProperty(e.name) ) {
|
|
|
|
e.value = this.instanceCredentials[e.name];
|
|
|
|
} else if (old) {
|
|
|
|
e.value = this.templateCredentials[e.name];
|
|
|
|
}
|
2019-08-12 16:01:54 +02:00
|
|
|
}
|
|
|
|
});
|
2019-02-02 00:34:33 +01:00
|
|
|
}
|
|
|
|
this.env = env;
|
2019-01-16 17:27:19 +01:00
|
|
|
}
|
|
|
|
|
2019-01-17 00:33:04 +01:00
|
|
|
/**
|
|
|
|
* Start the subflow.
|
|
|
|
* This creates a subflow instance node to handle the inbound messages. It also
|
|
|
|
* rewires an subflow internal node that is connected to an output so it is connected
|
|
|
|
* to the parent flow nodes the subflow instance is wired to.
|
|
|
|
* @param {[type]} diff [description]
|
|
|
|
* @return {[type]} [description]
|
|
|
|
*/
|
2019-01-16 17:27:19 +01:00
|
|
|
start(diff) {
|
|
|
|
var self = this;
|
|
|
|
// Create a subflow node to accept inbound messages and route appropriately
|
|
|
|
var Node = require("../Node");
|
2019-02-02 00:44:50 +01:00
|
|
|
|
|
|
|
if (this.subflowDef.status) {
|
|
|
|
var subflowStatusConfig = {
|
|
|
|
id: this.subflowInstance.id+":status",
|
|
|
|
type: "subflow-status",
|
|
|
|
z: this.subflowInstance.id,
|
|
|
|
_flow: this.parent
|
|
|
|
}
|
|
|
|
this.statusNode = new Node(subflowStatusConfig);
|
|
|
|
this.statusNode.on("input", function(msg) {
|
|
|
|
if (msg.payload !== undefined) {
|
|
|
|
if (typeof msg.payload === "string") {
|
|
|
|
// if msg.payload is a String, use it as status text
|
|
|
|
self.node.status({text:msg.payload})
|
|
|
|
return;
|
|
|
|
} else if (Object.prototype.toString.call(msg.payload) === "[object Object]") {
|
|
|
|
if (msg.payload.hasOwnProperty('text') || msg.payload.hasOwnProperty('fill') || msg.payload.hasOwnProperty('shape') || Object.keys(msg.payload).length === 0) {
|
|
|
|
// msg.payload is an object that looks like a status object
|
|
|
|
self.node.status(msg.payload);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// Anything else - inspect it and use as status text
|
|
|
|
var text = util.inspect(msg.payload);
|
|
|
|
if (text.length > 32) { text = text.substr(0,32) + "..."; }
|
|
|
|
self.node.status({text:text});
|
|
|
|
} else if (msg.status !== undefined) {
|
|
|
|
// if msg.status exists
|
2019-11-20 12:12:33 +01:00
|
|
|
if (msg.status.hasOwnProperty("text") && msg.status.text.indexOf("common.") === 0) {
|
|
|
|
msg.status.text = "node-red:"+msg.status.text;
|
|
|
|
}
|
2019-02-02 00:44:50 +01:00
|
|
|
self.node.status(msg.status)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2019-01-16 17:27:19 +01:00
|
|
|
var subflowInstanceConfig = {
|
|
|
|
id: this.subflowInstance.id,
|
|
|
|
type: this.subflowInstance.type,
|
|
|
|
z: this.subflowInstance.z,
|
|
|
|
name: this.subflowInstance.name,
|
|
|
|
wires: [],
|
|
|
|
_flow: this
|
|
|
|
}
|
|
|
|
if (this.subflowDef.in) {
|
|
|
|
subflowInstanceConfig.wires = this.subflowDef.in.map(function(n) { return n.wires.map(function(w) { return self.node_map[w.id].id;})})
|
|
|
|
subflowInstanceConfig._originalWires = clone(subflowInstanceConfig.wires);
|
|
|
|
}
|
|
|
|
|
|
|
|
this.node = new Node(subflowInstanceConfig);
|
|
|
|
this.node.on("input", function(msg) { this.send(msg);});
|
2019-02-09 22:24:31 +01:00
|
|
|
this.node.on("close", function() { this.status({}); })
|
2019-03-13 14:13:31 +01:00
|
|
|
this.node.status = status => this.parent.handleStatus(this.node,status);
|
2020-03-28 00:47:12 +01:00
|
|
|
// Create a context instance
|
2020-03-31 00:41:58 +02:00
|
|
|
// console.log("Node.context",this.type,"id:",this._alias||this.id,"z:",this.z)
|
2020-03-28 00:47:12 +01:00
|
|
|
this._context = context.get(this._alias||this.id,this.z);
|
|
|
|
|
2019-03-13 14:13:31 +01:00
|
|
|
|
2019-01-16 17:27:19 +01:00
|
|
|
this.node._updateWires = this.node.updateWires;
|
|
|
|
|
|
|
|
this.node.updateWires = function(newWires) {
|
|
|
|
// Wire the subflow outputs
|
|
|
|
if (self.subflowDef.out) {
|
|
|
|
var node,wires,i,j;
|
|
|
|
// Restore the original wiring to the internal nodes
|
|
|
|
subflowInstanceConfig.wires = clone(subflowInstanceConfig._originalWires);
|
|
|
|
for (i=0;i<self.subflowDef.out.length;i++) {
|
|
|
|
wires = self.subflowDef.out[i].wires;
|
|
|
|
for (j=0;j<wires.length;j++) {
|
|
|
|
if (wires[j].id != self.subflowDef.id) {
|
|
|
|
node = self.node_map[wires[j].id];
|
|
|
|
if (node._originalWires) {
|
|
|
|
node.wires = clone(node._originalWires);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
var modifiedNodes = {};
|
|
|
|
var subflowInstanceModified = false;
|
|
|
|
for (i=0;i<self.subflowDef.out.length;i++) {
|
|
|
|
wires = self.subflowDef.out[i].wires;
|
|
|
|
for (j=0;j<wires.length;j++) {
|
|
|
|
if (wires[j].id === self.subflowDef.id) {
|
|
|
|
subflowInstanceConfig.wires[wires[j].port] = subflowInstanceConfig.wires[wires[j].port].concat(newWires[i]);
|
|
|
|
subflowInstanceModified = true;
|
|
|
|
} else {
|
|
|
|
node = self.node_map[wires[j].id];
|
|
|
|
node.wires[wires[j].port] = node.wires[wires[j].port].concat(newWires[i]);
|
|
|
|
modifiedNodes[node.id] = node;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
Object.keys(modifiedNodes).forEach(function(id) {
|
|
|
|
var node = modifiedNodes[id];
|
|
|
|
self.activeNodes[id].updateWires(node.wires);
|
|
|
|
});
|
|
|
|
|
|
|
|
if (subflowInstanceModified) {
|
|
|
|
self.node._updateWires(subflowInstanceConfig.wires);
|
|
|
|
}
|
|
|
|
}
|
2019-01-26 15:15:20 +01:00
|
|
|
};
|
2019-01-16 17:27:19 +01:00
|
|
|
|
|
|
|
// Wire the subflow outputs
|
|
|
|
if (this.subflowDef.out) {
|
|
|
|
for (var i=0;i<this.subflowDef.out.length;i++) {
|
|
|
|
// i: the output index
|
|
|
|
// This is what this Output is wired to
|
2019-01-26 15:15:20 +01:00
|
|
|
var wires = this.subflowDef.out[i].wires;
|
2019-01-16 17:27:19 +01:00
|
|
|
for (var j=0;j<wires.length;j++) {
|
|
|
|
if (wires[j].id === this.subflowDef.id) {
|
|
|
|
// A subflow input wired straight to a subflow output
|
|
|
|
subflowInstanceConfig.wires[wires[j].port] = subflowInstanceConfig.wires[wires[j].port].concat(this.subflowInstance.wires[i])
|
|
|
|
this.node._updateWires(subflowInstanceConfig.wires);
|
|
|
|
} else {
|
|
|
|
var node = self.node_map[wires[j].id];
|
|
|
|
if (!node._originalWires) {
|
|
|
|
node._originalWires = clone(node.wires);
|
|
|
|
}
|
|
|
|
node.wires[wires[j].port] = (node.wires[wires[j].port]||[]).concat(this.subflowInstance.wires[i]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-02-02 00:44:50 +01:00
|
|
|
|
|
|
|
if (this.subflowDef.status) {
|
|
|
|
var subflowStatusId = this.statusNode.id;
|
|
|
|
wires = this.subflowDef.status.wires;
|
|
|
|
for (var j=0;j<wires.length;j++) {
|
|
|
|
if (wires[j].id === this.subflowDef.id) {
|
|
|
|
// A subflow input wired straight to a subflow output
|
|
|
|
subflowInstanceConfig.wires[wires[j].port].push(subflowStatusId);
|
|
|
|
this.node._updateWires(subflowInstanceConfig.wires);
|
|
|
|
} else {
|
|
|
|
var node = self.node_map[wires[j].id];
|
|
|
|
if (!node._originalWires) {
|
|
|
|
node._originalWires = clone(node.wires);
|
|
|
|
}
|
|
|
|
node.wires[wires[j].port] = (node.wires[wires[j].port]||[]);
|
|
|
|
node.wires[wires[j].port].push(subflowStatusId);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-01-16 17:27:19 +01:00
|
|
|
super.start(diff);
|
|
|
|
}
|
2019-01-25 14:35:02 +01:00
|
|
|
|
2019-08-12 16:01:54 +02:00
|
|
|
|
2019-01-26 15:15:20 +01:00
|
|
|
/**
|
|
|
|
* Get environment variable of subflow
|
|
|
|
* @param {String} name name of env var
|
|
|
|
* @return {Object} val value of env var
|
|
|
|
*/
|
|
|
|
getSetting(name) {
|
2019-03-20 14:37:33 +01:00
|
|
|
if (!/^\$parent\./.test(name)) {
|
|
|
|
var env = this.env;
|
2019-08-12 16:01:54 +02:00
|
|
|
var is_info = name.endsWith("_info");
|
|
|
|
var is_type = name.endsWith("_type");
|
|
|
|
var ename = (is_info || is_type) ? name.substring(0, name.length -5) : name; // 5 = length of "_info"/"_type"
|
|
|
|
|
|
|
|
if (env && env.hasOwnProperty(ename)) {
|
|
|
|
var val = env[ename];
|
|
|
|
if (is_type) {
|
|
|
|
return val ? val.type : undefined;
|
|
|
|
}
|
2019-03-20 14:37:33 +01:00
|
|
|
// If this is an env type property we need to be careful not
|
|
|
|
// to get into lookup loops.
|
|
|
|
// 1. if the value to lookup is the same as this one, go straight to parent
|
|
|
|
// 2. otherwise, check if it is a compound env var ("foo $(bar)")
|
|
|
|
// and if so, substitute any instances of `name` with $parent.name
|
|
|
|
// See https://github.com/node-red/node-red/issues/2099
|
|
|
|
if (val.type !== 'env' || val.value !== name) {
|
|
|
|
let value = val.value;
|
2019-08-12 16:01:54 +02:00
|
|
|
var type = val.type;
|
|
|
|
if (type === 'env') {
|
2019-03-20 14:37:33 +01:00
|
|
|
value = value.replace(new RegExp("\\${"+name+"}","g"),"${$parent."+name+"}");
|
|
|
|
}
|
|
|
|
try {
|
2019-08-12 16:01:54 +02:00
|
|
|
var ret = evaluateInputValue(value, type, this.node);
|
|
|
|
if (is_info) {
|
|
|
|
return composeInfo(val, ret);
|
|
|
|
}
|
2019-03-20 14:37:33 +01:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
catch (e) {
|
|
|
|
this.error(e);
|
|
|
|
return undefined;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
// This _is_ an env property pointing at itself - go to parent
|
|
|
|
}
|
2019-01-26 15:15:20 +01:00
|
|
|
}
|
2019-03-20 14:37:33 +01:00
|
|
|
} else {
|
|
|
|
// name starts $parent. ... so delegate to parent automatically
|
|
|
|
name = name.substring(8);
|
2019-01-26 15:15:20 +01:00
|
|
|
}
|
|
|
|
var parent = this.parent;
|
|
|
|
if (parent) {
|
|
|
|
var val = parent.getSetting(name);
|
|
|
|
return val;
|
|
|
|
}
|
|
|
|
return undefined;
|
|
|
|
}
|
|
|
|
|
2019-02-02 00:44:50 +01:00
|
|
|
/**
|
|
|
|
* Get a node instance from this subflow.
|
|
|
|
* If the subflow has a status node, check for that, otherwise use
|
|
|
|
* the super-class function
|
|
|
|
* @param {String} id [description]
|
|
|
|
* @param {Boolean} cancelBubble if true, prevents the flow from passing the request to the parent
|
|
|
|
* This stops infinite loops when the parent asked this Flow for the
|
|
|
|
* node to begin with.
|
|
|
|
* @return {[type]} [description]
|
|
|
|
*/
|
|
|
|
getNode(id, cancelBubble) {
|
|
|
|
if (this.statusNode && this.statusNode.id === id) {
|
|
|
|
return this.statusNode;
|
|
|
|
}
|
|
|
|
return super.getNode(id,cancelBubble);
|
|
|
|
}
|
|
|
|
|
2019-01-25 14:35:02 +01:00
|
|
|
/**
|
|
|
|
* Handle a status event from a node within this flow.
|
|
|
|
* @param {Node} node The original node that triggered the event
|
|
|
|
* @param {Object} statusMessage The status object
|
|
|
|
* @param {Node} reportingNode The node emitting the status event.
|
|
|
|
* This could be a subflow instance node when the status
|
|
|
|
* is being delegated up.
|
|
|
|
* @param {boolean} muteStatus Whether to emit the status event
|
|
|
|
* @return {[type]} [description]
|
|
|
|
*/
|
|
|
|
handleStatus(node,statusMessage,reportingNode,muteStatus) {
|
|
|
|
let handled = super.handleStatus(node,statusMessage,reportingNode,muteStatus);
|
|
|
|
if (!handled) {
|
2019-02-02 00:44:50 +01:00
|
|
|
if (!this.statusNode || node === this.node) {
|
|
|
|
// No status node on this subflow caught the status message.
|
|
|
|
// AND there is no Subflow Status node - so the user isn't
|
|
|
|
// wanting to manage status messages themselves
|
|
|
|
// Pass up to the parent with this subflow's instance as the
|
|
|
|
// reporting node
|
|
|
|
handled = this.parent.handleStatus(node,statusMessage,this.node,true);
|
|
|
|
}
|
2019-01-25 14:35:02 +01:00
|
|
|
}
|
|
|
|
return handled;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Handle an error event from a node within this flow. If there are no Catch
|
|
|
|
* nodes within this flow, pass the event to the parent flow.
|
|
|
|
* @param {[type]} node [description]
|
|
|
|
* @param {[type]} logMessage [description]
|
|
|
|
* @param {[type]} msg [description]
|
|
|
|
* @param {[type]} reportingNode [description]
|
|
|
|
* @return {[type]} [description]
|
|
|
|
*/
|
|
|
|
handleError(node,logMessage,msg,reportingNode) {
|
|
|
|
let handled = super.handleError(node,logMessage,msg,reportingNode);
|
|
|
|
if (!handled) {
|
|
|
|
// No catch node on this subflow caught the error message.
|
|
|
|
// Pass up to the parent with the subflow's instance as the
|
|
|
|
// reporting node.
|
|
|
|
handled = this.parent.handleError(node,logMessage,msg,this.node);
|
|
|
|
}
|
|
|
|
return handled;
|
|
|
|
}
|
2019-01-16 17:27:19 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2019-01-17 00:33:04 +01:00
|
|
|
/**
|
|
|
|
* Clone a node definition for use within a subflow instance.
|
|
|
|
* Give the node a new id and set its _alias property to record
|
|
|
|
* its association with the original node definition.
|
|
|
|
* @param {[type]} subflowInstanceId [description]
|
|
|
|
* @param {[type]} def [description]
|
|
|
|
* @return {[type]} [description]
|
|
|
|
*/
|
2019-01-16 17:27:19 +01:00
|
|
|
function createNodeInSubflow(subflowInstanceId, def) {
|
|
|
|
let node = clone(def);
|
|
|
|
let nid = redUtil.generateId();
|
2020-01-17 17:53:01 +01:00
|
|
|
// console.log("Create Node In subflow",node._alias, "--->",nid, "(",node.type,")")
|
2019-01-16 17:27:19 +01:00
|
|
|
// node_map[node.id] = node;
|
|
|
|
node._alias = node.id;
|
|
|
|
node.id = nid;
|
|
|
|
node.z = subflowInstanceId;
|
|
|
|
return node;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Given an object of {id:nodes} and a map of {old-id:node}, modifiy all
|
|
|
|
* properties in the nodes object to reference the new node ids.
|
|
|
|
* This handles:
|
|
|
|
* - node.wires,
|
2020-03-27 10:44:15 +01:00
|
|
|
* - node.scope of Complete, Catch and Status nodes,
|
2019-01-16 17:27:19 +01:00
|
|
|
* - node.XYZ for any property where XYZ is recognised as an old property
|
|
|
|
* @param {[type]} nodes [description]
|
|
|
|
* @param {[type]} nodeMap [description]
|
|
|
|
* @return {[type]} [description]
|
|
|
|
*/
|
|
|
|
function remapSubflowNodes(nodes,nodeMap) {
|
|
|
|
for (var id in nodes) {
|
|
|
|
if (nodes.hasOwnProperty(id)) {
|
|
|
|
var node = nodes[id];
|
|
|
|
if (node.wires) {
|
|
|
|
var outputs = node.wires;
|
|
|
|
for (j=0;j<outputs.length;j++) {
|
|
|
|
wires = outputs[j];
|
|
|
|
for (k=0;k<wires.length;k++) {
|
2019-06-13 15:22:59 +02:00
|
|
|
if (nodeMap[outputs[j][k]]) {
|
|
|
|
outputs[j][k] = nodeMap[outputs[j][k]].id
|
|
|
|
} else {
|
|
|
|
outputs[j][k] = null;
|
|
|
|
}
|
2019-01-16 17:27:19 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-03-27 10:44:15 +01:00
|
|
|
if ((node.type === 'complete' || node.type === 'catch' || node.type === 'status') && node.scope) {
|
2019-01-16 17:27:19 +01:00
|
|
|
node.scope = node.scope.map(function(id) {
|
|
|
|
return nodeMap[id]?nodeMap[id].id:""
|
|
|
|
})
|
|
|
|
} else {
|
|
|
|
for (var prop in node) {
|
|
|
|
if (node.hasOwnProperty(prop) && prop !== '_alias') {
|
|
|
|
if (nodeMap[node[prop]]) {
|
|
|
|
node[prop] = nodeMap[node[prop]].id;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function createSubflow(parent,globalFlow,subflowDef,subflowInstance) {
|
|
|
|
return new Subflow(parent,globalFlow,subflowDef,subflowInstance)
|
|
|
|
}
|
|
|
|
|
|
|
|
module.exports = {
|
|
|
|
init: function(runtime) {
|
|
|
|
Log = runtime.log;
|
|
|
|
},
|
|
|
|
create: createSubflow
|
|
|
|
}
|