mirror of
https://github.com/node-red/node-red.git
synced 2023-10-10 13:36:53 +02:00
101 lines
5.2 KiB
HTML
101 lines
5.2 KiB
HTML
<!--
|
|
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.
|
|
-->
|
|
|
|
<script type="text/x-red" data-template-name="exec">
|
|
<div class="form-row">
|
|
<label for="node-input-command"><i class="fa fa-file"></i> <span data-i18n="exec.label.command"></span></label>
|
|
<input type="text" id="node-input-command" data-i18n="[placeholder]exec.label.command">
|
|
</div>
|
|
<div class="form-row">
|
|
<label><i class="fa fa-plus"></i> <span data-i18n="exec.label.append"></span></label>
|
|
<input type="checkbox" id="node-input-addpay" style="display: inline-block; width: auto; vertical-align: top;">
|
|
msg.payload
|
|
</div>
|
|
<div class="form-row">
|
|
<label for="node-input-append"> </label>
|
|
<input type="text" id="node-input-append" data-i18n="[placeholder]exec.placeholder.extraparams">
|
|
</div>
|
|
<div class="form-row">
|
|
<label> </label>
|
|
<input type="checkbox" id="node-input-useSpawn" placeholder="spawn" style="display: inline-block; width: auto; vertical-align: top;">
|
|
<label for="node-input-useSpawn" style="width:70%;"><span data-i18n="exec.spawn"></span></label>
|
|
</div>
|
|
<div class="form-row">
|
|
<label for="node-input-timer"><i class="fa fa-clock-o"></i> <span data-i18n="exec.label.timeout"></span></label>
|
|
<input type="text" id="node-input-timer" style="width:65px;" data-i18n="[placeholder]exec.label.timeoutplace"> seconds
|
|
</div>
|
|
<div class="form-row">
|
|
<label for="node-input-name"><i class="fa fa-tag"></i> <span data-i18n="common.label.name"></span></label>
|
|
<input type="text" id="node-input-name" data-i18n="[placeholder]common.label.name">
|
|
</div>
|
|
</script>
|
|
|
|
<script type="text/x-red" data-help-name="exec">
|
|
<p>Calls out to a system command.<br/></p>
|
|
<p><b>Inputs</b></p>
|
|
<ul><li><code>msg.payload</code> - optionally appended to the configured command.</li></ul>
|
|
<ul><li><code><i>msg.kill</i></code> - can be used to kill a running command, see below.</li></ul>
|
|
<ul><li><code><i>msg.pid</i></code> - can be used to kill a specific running command, see below.</li></ul>
|
|
<p><b>Outputs</b></p>
|
|
<ol>
|
|
<li>stdout, <code>msg.payload</code> containing the returned output from the command.</li>
|
|
<li>stderr, <code>msg.payload</code> containing any error output from the command.</li>
|
|
<li>return code, <code>msg.payload</code> containing the return (see below).</li>
|
|
</ol>
|
|
<p><b>Details</b></p>
|
|
<p>By default uses the <code>exec</code> system call which calls the command, waits for it to complete, and then
|
|
returns the output. For example a succesful command should have a return code of <code>{ code: 0 }</code>.</p>
|
|
<p>Optionally can use <code>spawn</code> instead, which returns the output from stdout and stderr
|
|
as the command runs, usually one line at a time. On completion it then returns a numeric return code
|
|
on the 3rd port. For example a successful command should return <code>0</code>.</p>
|
|
<p>The optional <b>append</b> gets added to the command after <code>msg.payload</code> - so you can do
|
|
things like pipe the result to another command.</p>
|
|
<p>Commands or parameters with spaces should be enclosed in quotes - <i>"This is a single parameter"</i></p>
|
|
<p>The returned <code>payload</code> is usually a <i>string</i>, unless non-UTF8 characters are detected, in which
|
|
case it contains a <i>buffer</i>.</p>
|
|
<p>The blue status icon and PID will be visible while the node is active. This can be read by a <code>status</code> node.</p>
|
|
<p>Sending <code>msg.kill</code> will kill a single active process. <code>msg.kill</code> should be a string containing
|
|
the type of signal to be sent, e.g. "SIGINT", "SIGQUIT", "SIGHUP", etc. Defaults to "SIGTERM" if blank ("").
|
|
If there is more than one process running then <code>msg.pid</code> must also be set with the value of the PID to be killed.</p>
|
|
<p><b>Tip</b>: If running a Python app you may need to use the <code>-u</code> parameter to stop the output being buffered.</p>
|
|
</script>
|
|
|
|
<script type="text/javascript">
|
|
RED.nodes.registerType('exec',{
|
|
category: 'advanced-function',
|
|
color:"darksalmon",
|
|
defaults: {
|
|
command: {value:""},
|
|
addpay: {value:true},
|
|
append: {value:""},
|
|
useSpawn: {value:""},
|
|
timer: {value:""},
|
|
name: {value:""}
|
|
},
|
|
inputs:1,
|
|
outputs:3,
|
|
outputLabels: ["stdout","stderr","return code"],
|
|
icon: "arrow-in.png",
|
|
align: "right",
|
|
label: function() {
|
|
return this.name||this.command;
|
|
},
|
|
labelStyle: function() {
|
|
return this.name?"node_label_italic":"";
|
|
}
|
|
});
|
|
</script>
|