mirror of
https://github.com/crazy-max/ghaction-upx.git
synced 2024-11-23 02:46:09 -07:00
80 lines
1.9 KiB
JavaScript
80 lines
1.9 KiB
JavaScript
|
'use strict';
|
||
|
|
||
|
Object.defineProperty(exports, '__esModule', {
|
||
|
value: true
|
||
|
});
|
||
|
exports.default = treeProcessor;
|
||
|
|
||
|
/**
|
||
|
* Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved.
|
||
|
*
|
||
|
* This source code is licensed under the MIT license found in the
|
||
|
* LICENSE file in the root directory of this source tree.
|
||
|
*/
|
||
|
function treeProcessor(options) {
|
||
|
const {
|
||
|
nodeComplete,
|
||
|
nodeStart,
|
||
|
queueRunnerFactory,
|
||
|
runnableIds,
|
||
|
tree
|
||
|
} = options;
|
||
|
|
||
|
function isEnabled(node, parentEnabled) {
|
||
|
return parentEnabled || runnableIds.indexOf(node.id) !== -1;
|
||
|
}
|
||
|
|
||
|
function getNodeHandler(node, parentEnabled) {
|
||
|
const enabled = isEnabled(node, parentEnabled);
|
||
|
return node.children
|
||
|
? getNodeWithChildrenHandler(node, enabled)
|
||
|
: getNodeWithoutChildrenHandler(node, enabled);
|
||
|
}
|
||
|
|
||
|
function getNodeWithoutChildrenHandler(node, enabled) {
|
||
|
return function fn(done = () => {}) {
|
||
|
node.execute(done, enabled);
|
||
|
};
|
||
|
}
|
||
|
|
||
|
function getNodeWithChildrenHandler(node, enabled) {
|
||
|
return async function fn(done = () => {}) {
|
||
|
nodeStart(node);
|
||
|
await queueRunnerFactory({
|
||
|
onException: error => node.onException(error),
|
||
|
queueableFns: wrapChildren(node, enabled),
|
||
|
userContext: node.sharedUserContext()
|
||
|
});
|
||
|
nodeComplete(node);
|
||
|
done();
|
||
|
};
|
||
|
}
|
||
|
|
||
|
function hasEnabledTest(node) {
|
||
|
if (node.children) {
|
||
|
return node.children.some(hasEnabledTest);
|
||
|
}
|
||
|
|
||
|
return !node.disabled;
|
||
|
}
|
||
|
|
||
|
function wrapChildren(node, enabled) {
|
||
|
if (!node.children) {
|
||
|
throw new Error('`node.children` is not defined.');
|
||
|
}
|
||
|
|
||
|
const children = node.children.map(child => ({
|
||
|
fn: getNodeHandler(child, enabled)
|
||
|
}));
|
||
|
|
||
|
if (!hasEnabledTest(node)) {
|
||
|
return children;
|
||
|
}
|
||
|
|
||
|
return node.beforeAllFns.concat(children).concat(node.afterAllFns);
|
||
|
}
|
||
|
|
||
|
const treeHandler = getNodeHandler(tree, false);
|
||
|
return treeHandler();
|
||
|
}
|