run.sh 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216
  1. #!/bin/bash
  2. SETT_DAEMON_MODE=1
  3. SETT_DAEMON_PATH="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null && pwd )"
  4. # Get real directory if symlink used
  5. if [ -L "${BASH_SOURCE[0]}" ]; then
  6. realfile=`readlink -f "${BASH_SOURCE[0]}"`
  7. SETT_DAEMON_PATH="$(dirname $realfile)"
  8. fi
  9. SETT_DAEMON_FOLDER_LOGS="$SETT_DAEMON_PATH/logs"
  10. SETT_DAEMON_LOGS_WORK_FILE="$SETT_DAEMON_FOLDER_LOGS/all.log"
  11. SETT_DAEMON_PID_FILE="$SETT_DAEMON_PATH/pid"
  12. # Additional funcs
  13. get_os() {
  14. IS_MAC_OS=`uname -a | grep Darwin`
  15. if [ "$IS_MAC_OS" != "" ]; then
  16. eval "$1='mac'"
  17. else
  18. eval "$1='linux'"
  19. fi
  20. }
  21. check_util() {
  22. util_name="$1"
  23. # Skip for mac
  24. get_os IS_MAC_OS
  25. if [ "$util_name" = "wget" ] && [ "$IS_MAC_OS" = "mac" ]; then
  26. return
  27. fi
  28. check=`whereis $util_name`
  29. if [ "$check" = "" ]; then
  30. echo "Error: '$util_name' is not found... Fix error and try again!"
  31. exit
  32. fi
  33. }
  34. get_util() {
  35. util_name="$1"
  36. get_os IS_MAC_OS
  37. if [ "$util_name" = "wget" ] && [ "$IS_MAC_OS" = "mac" ]; then
  38. eval "$2='wget'"
  39. return
  40. fi
  41. if [ "$IS_MAC_OS" = "mac" ]; then
  42. resp=`whereis $util_name | awk {'print $1'}`
  43. eval "$2='$resp'"
  44. return
  45. else
  46. resp=`whereis $util_name | awk {'print $2'}`
  47. eval "$2='$resp'"
  48. return
  49. fi
  50. eval "$2=''"
  51. return
  52. }
  53. is_pid_runned() {
  54. resp=`ps aux | grep "start" | grep $1`
  55. if [ "$resp" != "" ]; then
  56. eval "$2='1'"
  57. else
  58. eval "$2='0'"
  59. fi
  60. return
  61. }
  62. # Check utils
  63. check_util "mkdir"
  64. check_util "chmod"
  65. check_util "touch"
  66. check_util "cat"
  67. check_util "kill"
  68. check_util "rm"
  69. check_util "wget"
  70. check_util "unzip"
  71. # Get real path of each util
  72. get_util "mkdir" UTIL_MKDIR
  73. get_util "chmod" UTIL_CHMOD
  74. get_util "touch" UTIL_TOUCH
  75. get_util "cat" UTIL_CAT
  76. get_util "kill" UTIL_KILL
  77. get_util "rm" UTIL_RM
  78. get_util "wget" UTIL_WGET
  79. get_util "unzip" UTIL_UNZIP
  80. check() {
  81. if [ ! -d "$SETT_DAEMON_FOLDER_LOGS" ]; then
  82. $UTIL_MKDIR "$SETT_DAEMON_FOLDER_LOGS"
  83. $UTIL_CHMOD 0755 "$SETT_DAEMON_FOLDER_LOGS"
  84. fi
  85. }
  86. log_str() {
  87. process=$1
  88. shift
  89. log_date=$(date '+%F %T');
  90. log_string="[$log_date] [$$]: $*"
  91. echo "$log_string" >> "$SETT_DAEMON_LOGS_WORK_FILE"
  92. }
  93. loop() {
  94. # Include user scripts
  95. if [ -d "$SETT_DAEMON_PATH/scripts" ]; then
  96. for user_script in $SETT_DAEMON_PATH/scripts/*.sh
  97. do
  98. . $user_script
  99. done
  100. fi
  101. }
  102. start() {
  103. check
  104. if [ -f "$SETT_DAEMON_PID_FILE" ]; then
  105. _pid=`$UTIL_CAT $SETT_DAEMON_PID_FILE`
  106. is_pid_runned "$_pid" rbool
  107. if [ "$rbool" = "1" ]; then
  108. log_str "0" "Daemon already running with pid = $_pid"
  109. echo "Daemon already running with pid = $_pid"
  110. exit 0
  111. fi
  112. fi
  113. cd /
  114. if [ "$SETT_DAEMON_MODE" = 1 ]; then
  115. exec >> $SETT_DAEMON_LOGS_WORK_FILE
  116. exec 2>> $SETT_DAEMON_LOGS_WORK_FILE
  117. exec < /dev/null
  118. (
  119. while [ 1 ]
  120. do
  121. loop
  122. sleep 1
  123. done
  124. exit 0
  125. )&
  126. echo $! > $SETT_DAEMON_PID_FILE
  127. else
  128. while [ 1 ]
  129. do
  130. loop
  131. sleep 1
  132. done
  133. exit 0
  134. fi
  135. }
  136. stop() {
  137. if [ -f "$SETT_DAEMON_PID_FILE" ]; then
  138. _pid=`$UTIL_CAT $SETT_DAEMON_PID_FILE`
  139. `$UTIL_KILL $_pid`
  140. rt="$?"
  141. if [ "$rt" = "0" ]; then
  142. log_str "0" "Daemon stoped"
  143. echo "Daemon stoped"
  144. `$UTIL_RM $SETT_DAEMON_PID_FILE`
  145. else
  146. log_str "0" "Error stop daemon"
  147. echo "Error stop daemon"
  148. fi
  149. else
  150. log_str "0" "Daemon is not runned"
  151. echo "Daemon is not runned"
  152. fi
  153. }
  154. status() {
  155. if [ -f "$SETT_DAEMON_PID_FILE" ]; then
  156. _pid=`$UTIL_CAT $SETT_DAEMON_PID_FILE`
  157. is_pid_runned "$_pid" rbool
  158. if [ "$rbool" = "1" ]; then
  159. echo "Daemon is runned with pid = $_pid"
  160. else
  161. echo "Daemon is not runned"
  162. fi
  163. else
  164. echo "Daemon is not runned"
  165. fi
  166. }
  167. update() {
  168. echo "Update..."
  169. }
  170. usage() {
  171. echo "$0 (once|start|stop|status)"
  172. }
  173. case $1 in
  174. "once")
  175. SETT_DAEMON_MODE=0
  176. start
  177. ;;
  178. "start")
  179. start
  180. ;;
  181. "stop")
  182. stop
  183. ;;
  184. "status")
  185. status
  186. ;;
  187. "update")
  188. update
  189. ;;
  190. *)
  191. usage
  192. ;;
  193. esac
  194. exit