summaryrefslogtreecommitdiff
path: root/pod/lua-resty-shell-0.03/lua-resty-shell-0.03.pod
blob: 45812a1d0b771c14a600b972c7c946d3863a508b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
=encoding utf-8


=head1 Name

lua-resty-shell - Lua module for nonblocking system shell command executions


=head1 Synopsis


    local shell = require "resty.shell"
    
    local stdin = "hello"
    local timeout = 1000  -- ms
    local max_size = 4096  -- byte
    
    local ok, stdout, stderr, reason, status =
        shell.run([[perl -e 'warn "he\n"; print <>']], stdin, timeout, max_size)
    if not ok then
        -- ...
    end


=head1 Functions


=head2 run

B<syntax:> C<ok, stdout, stderr, reason, status = shell.run(cmd, stdin?, timeout?, max_size?)>

B<context:> C<all phases supporting yielding>

Runs a shell command, C<cmd>, with an optional stdin.

The C<cmd> argument can either be a single string value (e.g. `"echo 'hello,
world'"C<) or an array-like Lua table (e.g. >{"echo", "hello, world"}`). The
former is equivalent to C<{"/bin/sh", "-c", "echo 'hello, world'"}>, but simpler
and slightly faster.

When the C<stdin> argument is C<nil> or C<"">, the stdin device will immediately
be closed.

The C<timeout> argument specifies the timeout threshold (in ms) for
stderr/stdout reading timeout, stdin writing timeout, and process waiting
timeout.

The C<max_size> argument specifies the maximum size allowed for each output
data stream of stdout and stderr. When exceeding the limit, the C<run()>
function will immediately stop reading any more data from the stream and return
an error string in the C<reason> return value: `"failed to read stdout: too much
data"`.

Upon terminating successfully (with a zero exit status), C<ok> will be C<true>,
C<reason> will be C<"exit">, and C<status> will hold the sub-process exit status.

Upon terminating abnormally (non-zero exit status), C<ok> will be C<false>,
C<reason> will be C<"exit">, and C<status> will hold the sub-process exit status.

Upon exceeding a timeout threshold or any other unexpected error, C<ok> will be
C<nil>, and C<reason> will be a string describing the error.

When a timeout threshold is exceeded, the sub-process will be terminated as
such:


=over


=item 1.

first, by receiving a C<SIGTERM> signal from this library,

=item 2.

then, after 1ms, by receiving a C<SIGKILL> signal from this library.


=back

Note that child processes of the sub-process (if any) will not be terminated.
You may need to terminate these processes yourself.

When the sub-process is terminated by a UNIX signal, the C<reason> return value
will be C<"signal"> and the C<status> return value will hold the signal number.




=head1 Dependencies

This library depends on


=over


=item *

the L<lua-resty-signal|https://github.com/openresty/lua-resty-signal> library.

=item *

the L<ngx.pipe|https://github.com/openresty/lua-resty-core/blob/master/lib/ngx/pipe.md#readme>
API of OpenResty.

=item *

the L<lua-tablepool|https://github.com/openresty/lua-tablepool> library.


=back




=head1 Author

Yichun Zhang (agentzh) E<lt>yichun@openresty.comE<gt>




=head1 Copyright & Licenses

This module is licensed under the BSD license.

Copyright (C) 2018-2019, L<OpenResty Inc.|https://openresty.com>

All rights reserved.

Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:


=over


=item *

Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.


=back


=over


=item *

Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.


=back


=over


=item *

Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.


=back

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.