mirror of
https://github.com/tonydamage/nux-env.git
synced 2025-12-11 13:24:28 +01:00
nux-base: Added documentation.
Signed-off-by: Tony Tkacik <tonydamage@gmail.com>
This commit is contained in:
parent
ba09014710
commit
c412900a21
1 changed files with 57 additions and 11 deletions
|
|
@ -1,3 +1,7 @@
|
||||||
|
## #nux-base - NUX Script Base library
|
||||||
|
##
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
readonly NUX_INC_DIR=$(dirname $(realpath ${BASH_SOURCE[0]}))
|
readonly NUX_INC_DIR=$(dirname $(realpath ${BASH_SOURCE[0]}))
|
||||||
readonly NUX_ENV_DIR=$(dirname $NUX_INC_DIR)
|
readonly NUX_ENV_DIR=$(dirname $NUX_INC_DIR)
|
||||||
|
|
@ -43,26 +47,61 @@ readonly NC_LightPurple='\033[1;35m'
|
||||||
readonly NC_LightCyan='\033[1;36m'
|
readonly NC_LightCyan='\033[1;36m'
|
||||||
readonly NC_White=$nc_white
|
readonly NC_White=$nc_white
|
||||||
|
|
||||||
|
## #Public functions:
|
||||||
|
##
|
||||||
|
## ##Logging
|
||||||
|
|
||||||
# Color for message levels
|
# Color for message levels
|
||||||
NC_info=$NC_LightGray
|
NC_LOG_color_info=$NC_LightGray
|
||||||
NC_error=$NC_LightRed
|
NC_LOG_color_error=$NC_LightRed
|
||||||
NC_warning=$NC_Yellow
|
NC_LOG_color_warning=$NC_Yellow
|
||||||
NC_debug=$NC_White
|
NC_LOG_color_debug=$NC_White
|
||||||
|
|
||||||
N_LOG_info=1
|
NC_LOG_current=3
|
||||||
N_LOG_error=2
|
|
||||||
N_LOG_warning=3
|
|
||||||
|
|
||||||
|
NC_LOG_id_none=0
|
||||||
|
NC_LOG_id_error=1
|
||||||
|
NC_LOG_id_warning=2
|
||||||
|
NC_LOG_id_info=3
|
||||||
|
NC_LOG_id_debug=4
|
||||||
|
NC_LOG_id_trace=5
|
||||||
|
|
||||||
|
##
|
||||||
|
## NUX Script environment provides basic logging capabilities.
|
||||||
|
##
|
||||||
|
## Currently there are 5 log levels supported (in order of detail):
|
||||||
|
## error
|
||||||
|
## warning
|
||||||
|
## info
|
||||||
|
## debug
|
||||||
|
## trace
|
||||||
|
##
|
||||||
|
## nux.log <level> <message>
|
||||||
|
## Outputs log message to *STDERR*. LOG messages are filtered out based on
|
||||||
|
## level. Use *nux.log.level* to specify which messages should be displayed.
|
||||||
|
##
|
||||||
|
##
|
||||||
function nux.log {
|
function nux.log {
|
||||||
local level=$1
|
local level=$1
|
||||||
local color=NC_$level
|
local message=$2
|
||||||
local setting=N_LOG_$level
|
local color=NC_LOG_color_$level
|
||||||
|
local level_num=NC_LOG_id_$level
|
||||||
shift;
|
shift;
|
||||||
if [ ! -z ${!setting+x} ]; then
|
if [ ${!level_num} -le $NC_LOG_current ]; then
|
||||||
echo -e "${!color}[$level]$NC_No $*$NC_No" >&2
|
echo -e "${!color}[$level]$NC_No $*$NC_No" >&2
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
## nux.log.level <level>
|
||||||
|
## Sets maximum level of details to be logged.
|
||||||
|
##
|
||||||
|
function nux.log.level {
|
||||||
|
local level=$1
|
||||||
|
local level_id=NC_LOG_id_$level
|
||||||
|
NC_LOG_current=${!level_id}
|
||||||
|
}
|
||||||
|
|
||||||
function nux.echo.error {
|
function nux.echo.error {
|
||||||
echo -e "${NC_error}$* ${NC_No}";
|
echo -e "${NC_error}$* ${NC_No}";
|
||||||
}
|
}
|
||||||
|
|
@ -71,22 +110,27 @@ function nux.echo.warning {
|
||||||
echo -e "${NC_warning}$* ${NC_No}";
|
echo -e "${NC_warning}$* ${NC_No}";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
## nux.use <library>
|
||||||
|
##
|
||||||
function nux.use {
|
function nux.use {
|
||||||
local incfile="$1.inc.sh"
|
local incfile="$1.inc.sh"
|
||||||
source "$NUX_INC_DIR/$incfile"
|
source "$NUX_INC_DIR/$incfile"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
function nux.include {
|
function nux.include {
|
||||||
local incfile="$1.inc.sh"
|
local incfile="$1.inc.sh"
|
||||||
source "$NUX_INC_DIR/$incfile"
|
source "$NUX_INC_DIR/$incfile"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
## nux.check.function <name>
|
||||||
|
##
|
||||||
function nux.check.function {
|
function nux.check.function {
|
||||||
declare -f "$1" &>/dev/null && return 0
|
declare -f "$1" &>/dev/null && return 0
|
||||||
return 1
|
return 1
|
||||||
}
|
}
|
||||||
|
|
||||||
|
## nux.check.file.exists <name>
|
||||||
|
##
|
||||||
function nux.check.file.exists {
|
function nux.check.file.exists {
|
||||||
test -e "$1" -o -h "$1";
|
test -e "$1" -o -h "$1";
|
||||||
}
|
}
|
||||||
|
|
@ -96,6 +140,8 @@ function nux.eval {
|
||||||
eval "$@"
|
eval "$@"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
## nux.exec.optional <name> [<arguments>]
|
||||||
|
##
|
||||||
function nux.exec.optional {
|
function nux.exec.optional {
|
||||||
local FUNC="$1"; shift;
|
local FUNC="$1"; shift;
|
||||||
if nux.check.function $FUNC; then
|
if nux.check.function $FUNC; then
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue