cmder/vendor/lib/lib_console.cmd

108 lines
2.5 KiB
Batchfile
Raw Normal View History

@echo off
call "%~dp0lib_base.cmd"
set lib_console=call "%~dp0lib_console.cmd"
2022-10-18 20:50:30 +08:00
set ESC=
2020-12-08 03:41:11 +08:00
:: Much faster than using "%lib_console% debug_output ..." etc.
2020-12-10 21:35:40 +08:00
set print_debug=if %debug_output% gtr 0 %lib_console% debug_output
set print_verbose=if %verbose_output% gtr 0 %lib_console% verbose_output
set print_warning=if %verbose_output% gtr 0 %lib_console% show_warning
2020-12-10 21:35:40 +08:00
set print_error=%lib_console% show_error
2020-12-08 03:41:11 +08:00
if %fast_init% gtr %verbose_output% if %fast_init% gtr %debug_output% exit /b
if "%~1" == "/h" (
%lib_base% help "%~0"
) else if "%1" neq "" (
call :%*
)
exit /b
2018-09-02 11:08:00 +08:00
:debug_output
:::===============================================================================
2018-09-02 11:08:00 +08:00
:::debug_output - Output a debug message to the console.
:::.
:::include:
:::.
::: call "lib_console.cmd"
:::.
:::usage:
:::.
2018-09-02 11:08:00 +08:00
::: %lib_console% debug_output [caller] [message]
:::.
:::required:
:::.
2018-09-02 11:08:00 +08:00
::: [caller] <in> Script/sub routine name calling debug_output
:::.
::: [message] <in> Message text to display.
:::.
:::-------------------------------------------------------------------------------
2023-01-23 04:30:30 +08:00
if %debug_output% gtr 0 echo %time% DEBUG(%~1): %~2 & echo.
exit /b
2018-09-02 11:08:00 +08:00
:verbose_output
:::===============================================================================
2018-09-02 11:08:00 +08:00
:::verbose_output - Output a debug message to the console.
:::.
:::include:
:::.
::: call "$0"
:::.
:::usage:
:::.
2018-09-02 11:08:00 +08:00
::: %lib_console% verbose_output "[message]"
:::.
:::required:
:::.
::: [message] <in> Message text to display.
:::.
:::-------------------------------------------------------------------------------
2018-09-02 11:08:00 +08:00
if %verbose_output% gtr 0 echo %~1
exit /b
:show_error
:::===============================================================================
:::show_error - Output an error message to the console.
:::.
:::include:
:::.
::: call "$0"
:::.
:::usage:
:::.
::: %lib_console% show_error "[message]"
:::.
:::required:
:::.
::: [message] <in> Message text to display.
:::.
:::-------------------------------------------------------------------------------
2022-10-18 20:50:30 +08:00
echo %ESC%[91;1mERROR:%ESC%[0m %~1
exit /b
:show_warning
:::===============================================================================
:::show_warning - Output a warning message to the console.
:::.
:::include:
:::.
::: call "$0"
:::.
:::usage:
:::.
::: %lib_console% show_warning "[message]"
:::.
:::required:
:::.
::: [message] <in> Message text to display.
:::.
:::-------------------------------------------------------------------------------
echo %ESC%[93;1mWARNING:%ESC%[0m %~1
exit /b