123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248 |
- #!/usr/bin/env bash
- __rvm_set_color_single()
- {
- case "$1" in
- # emphasized (bolded) colors
- (bold) __buffer+='7' ;;
- (offbold) __buffer+='27' ;;
- # regular colors
- (black) __buffer+='30' ;;
- (red) __buffer+='31' ;;
- (green) __buffer+='32' ;;
- (yellow) __buffer+='33' ;;
- (blue) __buffer+='34' ;;
- (magenta) __buffer+='35' ;;
- (cyan) __buffer+='36' ;;
- (white) __buffer+='37' ;;
- (default) __buffer+='39' ;;
- # intense (bright) colors
- (iblack) __buffer+='30;1' ;;
- (ired) __buffer+='31;1' ;;
- (igreen) __buffer+='32;1' ;;
- (iyellow) __buffer+='33;1' ;;
- (iblue) __buffer+='34;1' ;;
- (imagenta) __buffer+='35;1' ;;
- (icyan) __buffer+='36;1' ;;
- (iwhite) __buffer+='37;1' ;;
- # background colors
- (bblack) __buffer+='40' ;;
- (bred) __buffer+='41' ;;
- (bgreen) __buffer+='42' ;;
- (byellow) __buffer+='43' ;;
- (bblue) __buffer+='44' ;;
- (bmagenta) __buffer+='45' ;;
- (bcyan) __buffer+='46' ;;
- (bwhite) __buffer+='47' ;;
- (bdefault) __buffer+='49' ;;
- # Reset
- (*) __buffer+='0' ;;
- esac
- }
- __rvm_set_color()
- {
- \typeset __buffer __variable
- __buffer=$'\E['
- __variable="$1"
- shift
- while
- (( $# ))
- do
- __rvm_set_color_single "$1"
- shift
- if (( $# ))
- then __buffer+=';'
- fi
- done
- __buffer+='m'
- if [[ "${__variable}" == "" || "${__variable}" == "print" ]]
- then printf "${__buffer}"
- else eval "${__variable}='${__buffer}'"
- fi
- }
- # check if user wants colors and if output goes to terminal
- # rvm_pretty_print_flag:
- # - 0|no - disabled always
- # - 1|auto - automatic depending if the output goes to terminal (default)
- # - 2|force - forced always
- # to select which terminal output should be checked use first param:
- # - stdout - for stdout (default)
- # - stderr - for stderr
- # - number - for the given terminal fd
- # - else - for both stdout and stderr
- rvm_pretty_print()
- {
- case "${rvm_pretty_print_flag:=auto}" in
- (0|no)
- return 1
- ;;
- (1|auto)
- case "${TERM:-dumb}" in
- (dumb|unknown) return 1 ;;
- esac
- case "$1" in
- (stdout) [[ -t 1 ]] || return 1 ;;
- (stderr) [[ -t 2 ]] || return 1 ;;
- ([0-9]) [[ -t $1 ]] || return 1 ;;
- (any) [[ -t 1 || -t 2 ]] || return 1 ;;
- (*) [[ -t 1 && -t 2 ]] || return 1 ;;
- esac
- return 0
- ;;
- (2|force)
- return 0
- ;;
- esac
- }
- __rvm_set_colors()
- {
- case "${TERM:-dumb}" in
- (dumb|unknown)
- rvm_error_clr=""
- rvm_warn_clr=""
- rvm_debug_clr=""
- rvm_notify_clr=""
- rvm_code_clr=""
- rvm_comment_clr=""
- rvm_reset_clr=""
- ;;
- (*)
- __rvm_set_color rvm_error_clr "${rvm_error_color:-red}"
- __rvm_set_color rvm_warn_clr "${rvm_warn_color:-yellow}"
- __rvm_set_color rvm_debug_clr "${rvm_debug_color:-magenta}"
- __rvm_set_color rvm_notify_clr "${rvm_notify_color:-green}"
- __rvm_set_color rvm_code_clr "${rvm_code_color:-blue}"
- __rvm_set_color rvm_comment_clr "${rvm_comment_color:-iblack}"
- __rvm_set_color rvm_reset_clr "${rvm_reset_color:-reset}"
- ;;
- esac
- }
- __rvm_replace_colors()
- {
- \typeset ___text
- ___text="${1//<error>/$rvm_error_clr}"
- ___text="${___text//<warn>/$rvm_warn_clr}"
- ___text="${___text//<debug>/$rvm_debug_clr}"
- ___text="${___text//<notify>/$rvm_notify_clr}"
- ___text="${___text//<code>/$rvm_code_clr}"
- ___text="${___text//<comment>/$rvm_comment_clr}"
- ___text="${___text//<log>/$rvm_reset_clr}"
- ___text="${___text//<\/error>/$rvm_reset_clr}"
- ___text="${___text//<\/warn>/$rvm_reset_clr}"
- ___text="${___text//<\/debug>/$rvm_reset_clr}"
- ___text="${___text//<\/notify>/$rvm_reset_clr}"
- ___text="${___text//<\/code>/$rvm_reset_clr}"
- ___text="${___text//<\/comment>/$rvm_reset_clr}"
- ___text="${___text//<\/log>/$rvm_reset_clr}"
- printf "%b" "${___text}$rvm_reset_clr"
- }
- rvm_printf_to_stderr()
- {
- printf "$@" >&6
- }
- rvm_error()
- {
- if rvm_pretty_print stderr
- then __rvm_replace_colors "<error>$*</error>\n" >&6
- else printf "%b" "$*\n" >&6
- fi
- }
- rvm_help()
- {
- "${rvm_scripts_path}/help" "$@"
- }
- rvm_error_help()
- {
- rvm_error "$1"
- shift
- rvm_help "$@"
- }
- rvm_fail()
- {
- rvm_error "$1"
- exit "${2:-1}"
- }
- rvm_warn()
- {
- if rvm_pretty_print stderr
- then __rvm_replace_colors "<warn>$*</warn>\n" >&6
- else printf "%b" "$*\n" >&6
- fi
- }
- rvm_notify()
- {
- if rvm_pretty_print stdout
- then __rvm_replace_colors "<notify>$*</notify>\n"
- else printf "%b" "$*\n"
- fi
- }
- rvm_log()
- {
- [[ ${rvm_quiet_flag} == 1 ]] && return
- printf "%b" "$*\n"
- }
- rvm_debug()
- {
- (( ${rvm_debug_flag:-0} )) || return 0
- if rvm_pretty_print stderr
- then __rvm_replace_colors "<debug>$*</debug>\n" >&6
- else printf "%b" "$*\n" >&6
- fi
- }
- rvm_debug_stream()
- {
- if (( ${rvm_debug_flag:-0} == 0 && ${rvm_trace_flag:-0} == 0 ))
- then cat - >/dev/null # suppress output when not debugging/tracing
- elif rvm_pretty_print stdout
- then \command \cat - | __rvm_awk '{print "'"${rvm_debug_clr:-}"'"$0"'"${rvm_reset_clr:-}"'"}' >&6
- else \command \cat - >&6
- fi
- }
- rvm_verbose_log()
- {
- if (( ${rvm_verbose_flag:=0} == 1 ))
- then rvm_log "$@"
- fi
- }
- rvm_out()
- {
- printf "$*\n"
- }
- __rvm_set_colors
- # Redirect &6 to stderr
- exec 6>&2
|