All Projects → piotrmurach → Tty Exit

piotrmurach / Tty Exit

Licence: mit
Terminal exit codes.

Programming Languages

ruby
36898 projects - #4 most used programming language

Projects that are alternatives of or similar to Tty Exit

Tty Font
Terminal fonts
Stars: ✭ 44 (-56.44%)
Mutual labels:  terminal, tty, rubygem
Tty Markdown
Convert a markdown document or text into a terminal friendly output.
Stars: ✭ 275 (+172.28%)
Mutual labels:  terminal, tty, rubygem
Tty Progressbar
Display a single or multiple progress bars in the terminal.
Stars: ✭ 377 (+273.27%)
Mutual labels:  terminal, tty, rubygem
Tio
tio - A simple TTY terminal I/O application
Stars: ✭ 489 (+384.16%)
Mutual labels:  terminal, tty
Upterm
A terminal emulator for the 21st century.
Stars: ✭ 19,441 (+19148.51%)
Mutual labels:  terminal, tty
Tty Spinner
A terminal spinner for tasks that have non-deterministic time frame.
Stars: ✭ 386 (+282.18%)
Mutual labels:  terminal, tty
Ttyd
Share your terminal over the web
Stars: ✭ 4,030 (+3890.1%)
Mutual labels:  terminal, tty
Green Button Data
Fast Ruby parser and API client for Green Button data
Stars: ✭ 18 (-82.18%)
Mutual labels:  gem, rubygem
Ruby jard
Just Another Ruby Debugger. Provide a rich Terminal UI that visualizes everything your need, navigates your program with pleasure, stops at matter places only, reduces manual and mental efforts. You can now focus on real debugging.
Stars: ✭ 669 (+562.38%)
Mutual labels:  terminal, tty
Gors
go实现的终端录屏程序
Stars: ✭ 19 (-81.19%)
Mutual labels:  terminal, tty
Dry Validation
Validation library with type-safe schemas and rules
Stars: ✭ 1,087 (+976.24%)
Mutual labels:  gem, rubygem
Dte
A small, configurable console text editor (moved to https://gitlab.com/craigbarnes/dte)
Stars: ✭ 98 (-2.97%)
Mutual labels:  terminal, tty
Zui
⬢ Zsh User Interface library – CGI+DHTML-like rapid application development with Zsh
Stars: ✭ 95 (-5.94%)
Mutual labels:  terminal, tty
Dry Monads
Useful, common monads in idiomatic Ruby
Stars: ✭ 453 (+348.51%)
Mutual labels:  gem, rubygem
Colorls
A Ruby gem that beautifies the terminal's ls command, with color and font-awesome icons. 🎉
Stars: ✭ 3,896 (+3757.43%)
Mutual labels:  terminal, gem
Materialize Sass
Materializecss rubygem for Rails Asset Pipeline / Sprockets
Stars: ✭ 785 (+677.23%)
Mutual labels:  gem, rubygem
Tty Prompt
A beautiful and powerful interactive command line prompt
Stars: ✭ 1,210 (+1098.02%)
Mutual labels:  terminal, tty
Tty Logger
A readable, structured and beautiful logging for the terminal
Stars: ✭ 280 (+177.23%)
Mutual labels:  terminal, rubygem
Peaclock
A responsive and customizable clock, timer, and stopwatch for the terminal.
Stars: ✭ 314 (+210.89%)
Mutual labels:  terminal, tty
Tty Pager
Terminal output paging - cross-platform, major ruby interpreters
Stars: ✭ 37 (-63.37%)
Mutual labels:  terminal, tty
tty logo

TTY::Exit Gitter

Gem Version Actions CI Build status Code Climate Coverage Status Inline docs

Terminal exit codes for humans and machines.

The goal of this library is to provide human friendly and standard way to use exit status codes in command line applications. Instead of saying exit(64), you can say exit_with(:usage_error). Both indicate a failure to the parent process but the :usage_error is so much nicer! Wouldn't you agree? That's why tty-exit gathers a list of all the most common exit codes as used by POSIX-compliant tools on different Unix systems for you to use.

The exit statuses range from 0 to 255 (inclusive). Any other exit status than 0 indicates a failure of some kind. The exit codes in the range 64-78 are adapted from the OpenBSD sysexits.h. The codes between 125 and 128 are reserved for shell statuses as defined in Advanced Bash Scripting Guide, Appendix E. The codes in the 129-154 range correspond with the fatal signals as defined in signal.

TTY::Exit provides independent terminal exit codes component for TTY toolkit.

Installation

Add this line to your application's Gemfile:

gem 'tty-exit'

And then execute:

$ bundle install

Or install it yourself as:

$ gem install tty-exit

Contents

1. Usage

To exit from any program use exit_with method. Instead of a number, you can use a readable name for the exit status:

TTY::Exit.exit_with(:usage_error)

The above will exit program immediately with an exit code indicating a failure:

puts $?.exitstatus
# => 64

All the reserved exit statuses have a matching exit message. To display a default message, as a second argument to exit_with you can pass :default value:

TTY::Exit.exit_with(:usage_error, :default)

That will produce the following user friendly message:

# => "ERROR(64): Command line usage error"

The preferred way is to include TTY::Exit module in your code:

class Command
  include TTY::Exit

  def execute
    exit_with(:config_error, :default)
  end
end

This will print an error message and return appropriate exit status:

cmd = Command.new
cmd.execute
# => "ERROR(78): Configuration Error"
puts $?.exitstatus
# => 78

To see the full list of reserved exit codes go to 2.8 exit_codes section.

2. API

2.1 exit_code

There are many built-in exit codes that can be referenced using a name.

For example to return an exit code denoting success, you can use :ok or :success:

TTY::Exit.exit_code(:ok) # => 0
TTY::Exit.exit_code(:success) # => 0

Any other exit status than 0 indicates a failure of some kind. For example, when a command cannot be found use :not_found:

TTY::Exit.exit_code(:not_found)
# => 127

You can also use an exit code directly:

TTY::Exit.exit_code(127)
# => 127

2.2 exit_message

One of the downsides of exit codes is that they are not very communicative to the user. Why not have both? An exit code and a user friendly message. That's what exit_message is for. All the reserved exit codes have corresponding user friendly messages.

For example, when returning exit code 64 for usage error:

TTY::Exit.exit_message(:usage_error)
TTY::Exit.exit_message(64)

Will return:

# => "ERROR(64): Command line usage error"

The default messages are used by the exit_with method and can be overwritten by a custom one.

2.3 exit_with

To exit program with an exit code use exit_with. This method accepts a name or a code for the exit status.

TTY::Exit.exit_with(:usage_error)
TTY::Exit.exit_with(64)

Both will produce the same outcome.

As a second argument you can specify a user friendly message to be printed to stderr before exit. To use predefined messages use :default as a value:

TTY::Exit.exit_with(:usage_error, :default)
# => "ERROR(64): Command line usage error"

Optionally, you can provide a custom message to display to the user.

TTY::Exit.exit_with(:usge_error, "Wrong arguments")
# => "Wrong arguments"

Finally, you can redirect output to a different stream using :io option. By default, message is printed to stderr:

TTY::Exit.exit_with(:usage_error, io: $stdout)

Since TTY::Exit is a module, you can include it in your code to get access to all the methods:

class Command
  include TTY::Exit

  def execute
    exit_with(:usage_error, :default)
  end
end

2.4 register_exit

If the provided exit codes don't match your needs, you can add your own using the register_exit method.

For example, to register a custom exit with :too_long name and the status 7 that will notify user and programs about too many arguments do:

class Command
  include TTY::Exit

  register_exit(:too_long, 7, "Argument list too long")

  def execute
    exit_with(:too_long, :default)
  end
end

Then when the command gets run:

cmd = Command.new
cmd.execute
# =>
# ERROR(7): Argument list too long

2.5 exit_reserved?

To check if an exit code is already reserved by Unix system use exit_reserved?. This is useful in situations where you want to add it your command line application custom exit codes. The check accepts only integer numbers in range 0 to 255 inclusive:

TTY::Exit.exit_reserved?(126) # => true
TTY::Exit.exit_reserved?(100) # => false

2.6 exit_valid?

The exit statuses range from 0 to 255 (inclusive). The exit_valid? method helps you check if an exit status is within the range or not.

TTY::Exit.exit_valid?(11) # => true
TTY::Exit.exit_valid?(522) # => false

2.7 exit_success?

Any other exit status than 0 indicates a failure of some kind. The exit_success? is a more descriptive way to determine if a program succeeded or not.

TTY::Exit.exit_success?(0) # => true
TTY::Exit.exit_success?(7) # => false

2.8 exit_codes

You can access all the predefined exit codes and their names with exit_codes method:

TTY::Exit.exit_codes
# =>
# "{:ok=>0, :success=>0, :error=>1, :shell_misuse=>2, :usage_error=>64, :data_error=>65, ... }"

2.9 exit_messages

To see what default messages are for the predefined exit codes use exit_messages:

TTY::Exit.exit_messages
# =>
# "{0=>"Successful termination", 1=>"An error occurred", 2=>"Misuse of shell builtins", 64=>"Command line usage error", ... }"

The exit statuses range from 0 to 255 (inclusive). Any other exit status than 0 indicates a failure of some kind. The exit codes in the range 64-78 are adapted from the OpenBSD sysexits.h. The codes between 125 and 128 are reserved for shell statuses as defined in Advanced Bash Scripting Guide, Appendix E. The codes in the 129-154 range correspond with the fatal signals as defined in signal.

Development

After checking out the repo, run bin/setup to install dependencies. Then, run rake spec to run the tests. You can also run bin/console for an interactive prompt that will allow you to experiment.

To install this gem onto your local machine, run bundle exec rake install. To release a new version, update the version number in version.rb, and then run bundle exec rake release, which will create a git tag for the version, push git commits and tags, and push the .gem file to rubygems.org.

Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/piotrmurach/tty-exit. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the code of conduct.

License

The gem is available as open source under the terms of the MIT License.

Code of Conduct

Everyone interacting in the TTY::Exit project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the code of conduct.

Copyright

Copyright (c) 2020 Piotr Murach. See LICENSE for further details.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].