log.sh
#!/bin/echo Warnning, this library must only be sourced!
# vim: set expandtab smarttab shiftwidth=4 tabstop=4:
#
# Author: tuantuan.lv <tuantuan.lv@alibaba-inc.com>
# Description: a simple log library for pet
#
# Create the log file if not exists
# $1: the log file name
function _create_logfile()
{
# FIXME: change the permission of log file
if [ ! -f "$1" ]; then
mkdir -p `dirname $1`; touch $1; chmod 666 $1
fi
}
#
# Prevent the pet log library to be sourced again, so we can protect
# the log file to be created only once.
#
function _prevent_sourced_again()
{
_petlog_sourced_="__petlog_sourced_$$__"
if [ -n "${!_petlog_sourced_}" ]; then
return
fi
eval "$_petlog_sourced_=1"
# Set the default log file path
if [ -f "$0" ]; then # Use the script name (not including the extension)
_petlog_filename="/tmp/$(basename $0 | awk -F. '{print $1}').log.`date +'%Y%m%d'`"
else # Otherwise, just using the default name
_petlog_filename="/tmp/petlog.log.`date +'%Y%m%d'`"
fi
_create_logfile "$_petlog_filename"
# The log level, we only print logs whose level less than this
_petlog_level=3 # DEBUG
# The log data format
_petlog_datefmt='%Y-%m-%d %H:%M:%S' # 2014-11-11 11:11:11
# The log line format
_petlog_fmt="[<levelname>] [<asctime>] <message>" # [DEUBG] [2014-11-11 11:11:11] a simple log
}
# Print log messages
# $1: The log level number
# $2: C-style printf format string
# $3..$N: C-style printf arguments
function _print_log()
{
local level=$1 msg="$2" fmt="${_petlog_fmt}"
local levelnames=('ERROR' 'WARNING' 'INFO' 'DEBUG')
local logcolors=('red' 'yellow' 'green' '')
# Prepare the log format strings
fmt="${fmt//<asctime>/$(date +"$_petlog_datefmt")}"
fmt="${fmt//<message>/$msg}"
fmt="${fmt//<levelname>/${levelnames[$level]}}"
# We also decide to print all the log messages to the log file
shift 2 && printf "$fmt" "$@" >> $_petlog_filename
# Only print the log whose level less than the log level we set before
if [ $level -le $_petlog_level ]; then
${logcolors[level]:-printf} "$fmt" "$@"
fi
}
#
# Make the strings to be echoed as differnt colors
#
function red() { printf "\033[1;31m$(echo "$1" | sed -r 's/(\\n)?$/\\033[0m\1/')" "${@:2}"; }
function yellow() { printf "\033[1;33m$(echo "$1" | sed -r 's/(\\n)?$/\\033[0m\1/')" "${@:2}"; }
function green() { printf "\033[1;32m$(echo "$1" | sed -r 's/(\\n)?$/\\033[0m\1/')" "${@:2}"; }
function blue() { printf "\033[1;34m$(echo "$1" | sed -r 's/(\\n)?$/\\033[0m\1/')" "${@:2}"; }
function cyan() { printf "\033[1;36m$(echo "$1" | sed -r 's/(\\n)?$/\\033[0m\1/')" "${@:2}"; }
function purple() { printf "\033[1;35m$(echo "$1" | sed -r 's/(\\n)?$/\\033[0m\1/')" "${@:2}"; }
#
# Log print functions, such as debug_msg, info_msg... etc.
#
# Define the log level constants, just for convenience
LOG_QUIET=-1 LOG_ERROR=0 LOG_WARNING=1 LOG_INFO=2 LOG_DEBUG=3
function debug_msg() { _print_log $LOG_DEBUG "$1" "${@:2}"; }
function info_msg() { _print_log $LOG_INFO "$1" "${@:2}"; }
function warn_msg() { _print_log $LOG_WARNING "$1" "${@:2}"; }
function error_msg() { _print_log $LOG_ERROR "$1" "${@:2}"; return 1; }
function die_msg() { error_msg "$@"; exit 1; }
function exit_msg() { die_msg "$@"; } # should be deprecated, use die_msg instead
function warning_msg() { warn_msg "$@"; } # the same as warn_msg
#
# Customize the log functions
#
# Set the default log file
# $1: the log filename
function set_logfile()
{
if [ -z "$1" ]; then
die_msg "the log filename is empty\n"
fi
_petlog_filename="$1"
_create_logfile "$_petlog_filename"
}
# Get the log filename
function get_logfile() { echo "$_petlog_filename"; }
# Set the default log level
# $1: level name or level number
function set_loglevel()
{
if echo "$1" | grep -qE "^(-1|0|1|2|3)$"; then
_petlog_level="$1"
elif echo "$1" | grep -qE '^LOG_(QUIET|DEBUG|INFO|ERROR|WARNING)$'; then
_petlog_level="${!1}"
else
die_msg "the log level is not valid, please check\n"
fi
}
# Set log format
function set_logfmt()
{
if [ -z "$1" ]; then
die_msg "the log format is empty, please check\n"
fi
_petlog_fmt="$1"
}
# Set the log date format
# $1: the log date format, see `man data`
function set_logdatefmt()
{
if [ -z "$1" ]; then
die_msg "the log data format is empty, please check\n"
fi
_petlog_datefmt="$1"
}
_prevent_sourced_again # Yeah, prevent to be sourced again
#!/bin/bash
. ./log.sh
echo "1. use default log settings"
echo
debug_msg "hello,world\n"
info_msg 'hello,world\n'
warn_msg 'hello,world\n'
warning_msg 'hello,world\n'
error_msg 'hello,world\n'
g
echo
echo "2. set loglevel to $LOG_INFO"
echo
set_loglevel $LOG_INFO
debug_msg "hello,world\n"
info_msg 'hello,world\n'
warn_msg 'hello,world\n'
error_msg 'hello,world\n'
echo
echo "3. set log fmt to [<asctime> - <levelname>] <message>"
echo
set_logfmt "[<asctime> - <levelname>] <message>"
info_msg 'hello,%s\n' world
warn_msg 'hello,%s\n' pet
echo
echo "4. set date fmt to %Y/%m/%d %H:%M:%S"
echo
set_logdatefmt "%Y/%m/%d %H:%M:%S"
info_msg 'hello,world\n'
warn_msg 'hello,world\n'
echo
echo '5. use colorful print'
echo
red "hello,world\n"
green "hello,world\n"
yellow "hello,world\n"
cyan "hello,world\n"
purple "hello,world\n"
blue "hello,world\n"
echo
echo '6. exit script'
echo
die_msg "exit script\n"
log.sh的更多相关文章
- Shell Scipt 命令行带参数,输出log
命令行带参数,以及字符串参数放到ssh命令里可以这么放: #!/bin/bash 这行保证运行bash可以这样: ./data.sh if [ $# != 4 ]; then echo ...
- linux 使用sh@d0ws0cks server
[root@linux-node1 ~]# cat /etc/shadowsocks.json { "server":"x.x.x.x", , "lo ...
- Code HighLight
#!/bin/sh BEG=`date --date '-7 days' +%Y%m%d` END=`date --date '-1 days' +%Y%m%d` #BEG='20140509' #E ...
- xargs的原理剖析及用法详解
转载请注明出处:http://www.cnblogs.com/f-ck-need-u/p/5925923.html 学习这个xargs花了很长时间,在网上翻了很久也查了很多书关于xargs的介绍,都只 ...
- lsof在运维中的应用
场景一:文件系统使用率很高,但是找不到具体哪个文件占用了空间 原因:在unix系统中,如果有两个进程同时使用一个文件,如果其中一个进程删除了这个文件,但是这个文件此刻不会正真被释放,一直要等待引用它的 ...
- build.xml配置编译打包过程(转)
工程目录如下,使用eclipse中的ant对此工程进行编译打包: MonServer | --------src | |--------com | |--- ...
- Linux Commands intro1
$((expression)) echo $(2+2) :wrong echo $((2+2)) : right echo Front-{A,B,C}-Back Front-A-Back Front ...
- 【Linux】/dev/null 2>&1 详解
今天一个朋友突然在自己的维护的Linux中, /var/spool/cron/root 中看到了以下的内容: 30 19 * * * /usr/bin/**dcon.sh > /dev/nul ...
- crontab 日志备份定时任务
-l选项,查看当前用户的所有定时任务: [xiluhua@vm-xiluhua][/home]$ crontab -l * * * * * /home/xiluhua/shell_script/log ...
随机推荐
- Linux系统最小化安装之后的系统基础环境安装以及内核优化脚本
#!/bin/bash #添加epel和rpmforge的外部yum扩展源 cd /usr/local/src wget http://mirrors.ustc.edu.cn/fedora/epel/ ...
- [Linux]三种方案在Windows系统下安装ubuntu双系统(转)
在学习linux的过程中,ubuntu无疑是初学者的最佳选择. 下面来列举给Windows系统安装ubuntu双系统的三种方法. 一.虚拟机安装(不推荐) 使用工具:Vmware 如果不是因为迫不得已 ...
- CSS中伪类的使用
原文:http://www.cnblogs.com/guopei/archive/2011/04/16/2017627.html 何为伪类? 也就是实际实现了类的效果,但是并没有实际添加到标签中的类, ...
- asp.net微信开发第八篇----永久素材管理
除了3天就会失效的临时素材外,开发者有时需要永久保存一些素材,届时就可以通过本接口新增永久素材. 最近更新,永久图片素材新增后,将带有URL返回给开发者,开发者可以在腾讯系域名内使用(腾讯系域名外使用 ...
- GIt/Github常用命令
1)git init:初始化本地仓库 2)创建文件:touch read.txt 3)当操作本地的文件时,使用常用的命令,如(mv,ls..)就可以操作,当操作暂存区的文件时需要在命令前家git,并且 ...
- ASP.NET c#学习经验
1.DataGrid自定义字段.<Column <asp:BoundColumn DataField="khbh" HeaderText="客户编号&quo ...
- Knockoutjs官网翻译系列(三) 使用Computed Observables
书接上回,前面谈到了在视图模型中可以定义普通的observable属性以及observableArray属性实现与UI元素的双向绑定,这一节我们继续探讨第三种可实现绑定的属性类型:computed o ...
- jquery获取浏览器高度、宽度和滚动条高度(来自网络)
Jquery代码: alert($(window).height()); //浏览器时下窗口可视区域高度 alert($(document).height()); //浏览器时下窗口文档的高度 ale ...
- android 手机信息获取
1. adb已安装 2. adb shell getprop 此时已列出所有相关信息
- Oracle数据库之PL/SQL流程控制语句
Oracle数据库之PL/SQL流程控制语句 在任何计算机编程语言(如C,Java,C#等)都有各种流程控制语句,同样,在PL/SQL中也存在这样的流程控制结构. 几种常见的流程控制结构: 一.条件结 ...