Git Product home page Git Product logo

lua-resty-shell's Introduction

Name

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

Table of Contents

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

Functions

run

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

context: all phases supporting yielding

Runs a shell command, cmd, with an optional stdin.

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

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

The timeout argument specifies the timeout threshold (in ms) for stderr/stdout reading timeout, stdin writing timeout, and process waiting timeout. The default is 10 seconds as per https://github.com/openresty/lua-resty-core/blob/master/lib/ngx/pipe.md#set_timeouts

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

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

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

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

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

  1. first, by receiving a SIGTERM signal from this library,
  2. then, after 1ms, by receiving a SIGKILL signal from this library.

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 reason return value will be "signal" and the status return value will hold the signal number.

Back to TOC

Dependencies

This library depends on

Back to TOC

Author

Yichun Zhang (agentzh) [email protected]

Back to TOC

Copyright & Licenses

This module is licensed under the BSD license.

Copyright (C) 2018-2019, OpenResty Inc.

All rights reserved.

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

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

  • 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.

  • 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.

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.

Back to TOC

lua-resty-shell's People

Contributors

agentzh avatar doujiang24 avatar jf avatar spacewander avatar thibaultcha avatar xiaocang avatar

Stargazers

 avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.