Magellan Linux

Diff of /mcore-src/trunk/mcore-tools/src/include/daemon.global.class.in

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

mcore-src/trunk/mcore-tools/daemon/include/daemon.global.class revision 1308 by niro, Sun Feb 6 23:48:20 2011 UTC mcore-src/trunk/mcore-tools/src/include/daemon.global.class.in revision 2426 by niro, Thu Sep 3 07:54:18 2015 UTC
# Line 1  Line 1 
1  # $Id$  # $Id$
2    
3    # loads client classes from $MCORE_LIBDIR
4    load_classes()
5    {
6     local class
7     local classtype
8    
9     case $1 in
10     client|control) classtype="$1" ;;
11     *) die "Unknown classes type '$1'" ;;
12     esac
13    
14     # client specific
15     for class in $(find ${MCORE_LIBDIR}/include -type f -name \*.${classtype}.class)
16     do
17     include ${class} || eecho "error loading ${class}"
18     done
19    }
20    
21    # restarts the whole service via remote cmd
22    restart_service()
23    {
24     local pid
25     for pid in $(pidof sslsvd)
26     do
27     kill -SIGHUP ${pid}
28     done
29    }
30    
31    # stops the whole service via remote cmd
32    stop_service()
33    {
34     local pid
35     for pid in $(pidof sslsvd)
36     do
37     kill -SIGTERM ${pid}
38     done
39    }
40    
41  # # import_resource $table $serial $resource $value  # # import_resource $table $serial $resource $value
42  # import_resource()  # import_resource()
43  # {  # {
# Line 20  Line 58 
58  # run_class $method $caller $argv1 $argv2 ... $argvN  # run_class $method $caller $argv1 $argv2 ... $argvN
59  run_class()  run_class()
60  {  {
61   local method="$1"   local method="${GLOBAL_ARGV[0]}"
62   local caller="$2"   local caller="${GLOBAL_ARGV[1]}"
63   local class   local class
64   local cmd   local cmd
65   local argv   local i
66     local count
67    
68   if valid_session   if valid_session
69   then   then
70   class="${caller%.*}"   class="${caller%.*}"
71   cmd="${caller#*.}"   cmd="${caller#*.}"
  argv="${@/${caller}/}" # remove caller  
  argv="${argv/${method}/}" # remove method  
72    
73  # echo "method=${method}"   # copy GLOBAL_ARGV to CLASS_ARGV array without method and caller.class
74  # echo "caller=${caller}"   unset CLASS_ARGV
75  # echo "class=${class}"   count="${#GLOBAL_ARGV[*]}"
76  # echo "cmd=${cmd}"   for (( i=2; i<count; i++ ))
77  # echo "argv=${argv}"   do
78     CLASS_ARGV[${i}-2]="${GLOBAL_ARGV[${i}]}"
79     done
80    
81    # decho "method=${method}"
82    # decho "caller=${caller}"
83    # decho "class=${class}"
84    # decho "cmd=${cmd}"
85    # decho "class argv=$(printf '\"%s\" ' ${CLASS_ARGV[*]}; printf '\n')"
86    
87   # check if class.cmd exist   # check if class.cmd exist
88   if [[ ! -z $(typeset -f "${method}"_"${class}"_"${cmd}") ]]   if [[ ! -z $(typeset -f "${method}"_"${class}"_"${cmd}") ]]
89   then   then
90   "${method}"_"${class}"_"${cmd}" ${argv}   "${method}"_"${class}"_"${cmd}"
91   else   else
92   echo "unkown method '${method}' . class '${class}' . cmd '${cmd}'"   eecho "unknown method '${method}' . class '${class}' . cmd '${cmd}'"
93   fi   fi
94   else   else
95   invalid_session   invalid_session
# Line 58  help_topics() Line 103  help_topics()
103    
104   topics=$(typeset -f | grep '^help_' | sed 's:help_\(.*\)\ .*():\1:' | sed 's:_:\.:' | sort)   topics=$(typeset -f | grep '^help_' | sed 's:help_\(.*\)\ .*():\1:' | sed 's:_:\.:' | sort)
105   mecho "Global commands:"   mecho "Global commands:"
106   mecho "\timport  - import settings to database"   mecho "\timport   - import settings to database"
107   mecho "\tget     - shows current value for a settings"   mecho "\tget      - shows current value for a settings"
108   mecho "\tset     - sets value for a setting"   mecho "\tset      - sets value for a setting"
109   mecho "\tauth    - authenticate to the daemon"   mecho "\tauth     - authenticate to the daemon"
110   mecho "\tprovide - shows provides of a system"   mecho "\tcertauth - authenticate to the daemon via fingerprint"
111   mecho "\trequire - verify plugin requirements"   mecho "\tprovide  - shows provides of a system"
112   mecho "\nocolors - disable colors, useful for the webclient"   mecho "\trequire  - verify plugin requirements"
113   mecho "\thelp    - shows help"   mecho "\treload   - reloads all client classes plugins"
114   mecho "\tquit    - quits the connection to the server"   mecho "\trestart  - restarts the daemon"
115     mecho "\tstop     - stops the daemon"
116     mecho "\tnocolors - disable colors, useful for the webclient"
117     mecho "\tcolors   - enable colors"
118     mecho "\tquiet    - do not print any unecessary messages"
119     mecho "\thelp     - shows help"
120     mecho "\tversion  - prints version of the daemon"
121     mecho "\tquit     - quits the connection to the server"
122   mecho   mecho
123   mecho "Help topics:"   mecho "Help topics:"
124   for i in ${topics}   for i in ${topics}
# Line 82  help_topics() Line 134  help_topics()
134   mecho "Type 'help [topic]' for more information about every topic."   mecho "Type 'help [topic]' for more information about every topic."
135  }  }
136    
 # on newer xorg-servers root is not allowed to run progs in a user session  
 x11runas()  
 {  
  su - "${MCORE_UNPRIV_USER}" -c "DISPLAY=${MCORE_XORG_DISPLAY} $@"  
 }  
   
 addconfig()  
 {  
  local opts  
   
  if [[ -z ${CONFIG} ]]  
  then  
  echo "You must define \$CONFIG varibale first!"  
  return 1  
  fi  
   
  if [[ ! -d $(dirname ${CONFIG}) ]]  
  then  
  install -d $(dirname ${CONFIG})  
  fi  
   
  # check for opts  
  case $1 in  
  -n) shift; opts=" -n" ;;  
  -e) shift; opts=" -e" ;;  
  esac  
   
  echo ${opts} "$@" >> ${CONFIG}  
 }  
   
 clearconfig()  
 {  
  if [[ -z ${CONFIG} ]]  
  then  
  echo "You must define \$CONFIG varibale first!"  
  return 1  
  fi  
   
  if [[ ! -d $(dirname ${CONFIG}) ]]  
  then  
  install -d $(dirname ${CONFIG})  
  fi  
  : > ${CONFIG}  
 }  
   
 # no_duplicate $list $item  
 no_duplicate()  
 {  
  local i  
  local list="$1"  
  local item="$2"  
   
  for i in ${list}  
  do  
  [[ ${i} = ${item} ]] && return 1  
  done  
   
  return 0  
 }  
   
137  require()  require()
138  {  {
139   local requires="$@"   local requires="$@"
# Line 154  require() Line 146  require()
146   then   then
147   export REQUIRE="${REQUIRE} ${i}"   export REQUIRE="${REQUIRE} ${i}"
148   else   else
149   [[ ${DEBUG} = 1 ]] && echo "duplicate provide '${i}' detected!"   decho "duplicate provide '${i}' detected!"
150   fi   fi
151   done   done
152  }  }
# Line 183  verify_requirements() Line 175  verify_requirements()
175   # show missing and set the right retval   # show missing and set the right retval
176   if [[ -z ${missing} ]]   if [[ -z ${missing} ]]
177   then   then
178   mecho "${sorted}"   # do not escape, or CRLFS get printed to screen too
179     rvecho ${sorted}
180   return 0   return 0
181   else   else
182   for req in ${sorted}   for req in ${sorted}
# Line 191  verify_requirements() Line 184  verify_requirements()
184   if no_duplicate "${missing}" "$req"   if no_duplicate "${missing}" "$req"
185   then   then
186   # print normal   # print normal
187   mecho -n " ${req}"   rvecho -n "${req} "
188   else   else
189   # print missing   # print missing
190   eecho -n " ${req}"   eecho -n "${req} "
191   fi   fi
192   done   done
193     # print CRLF
194     echo
195   return 1   return 1
196   fi   fi
197  }  }
# Line 213  provide() Line 208  provide()
208   then   then
209   export PROVIDE="${PROVIDE} ${i}"   export PROVIDE="${PROVIDE} ${i}"
210   else   else
211   [[ ${DEBUG} = 1 ]] && echo "duplicate provide '${i}' detected!"   decho "duplicate provide '${i}' detected!"
212   fi   fi
213   done   done
214  }  }
# Line 225  print_provide() Line 220  print_provide()
220   # sort them alpabetically   # sort them alpabetically
221   sorted=$(for i in ${PROVIDE}; do echo "${i}"; done | sort)   sorted=$(for i in ${PROVIDE}; do echo "${i}"; done | sort)
222   # do not escape, or CRLFS get printed to screen too   # do not escape, or CRLFS get printed to screen too
223   mecho ${sorted}   rvecho ${sorted}
224  }  }
225    
226  mecho()  is_provided()
227  {  {
228   local COLCYAN="\033[1;36m"   local feature="$1"
229   local COLDEFAULT="\033[0m"   local i
230   local opts   local retval
  local webcrlf  
231    
232   if [[ ${NOCOLORS} = true ]]   retval=1
233   then   for i in $(print_provide)
234   COLCYAN=""   do
235   COLDEFAULT=""   if [[ ${i} = ${feature} ]]
236   fi   then
237     retval=0
238     break
239     fi
240     done
241    
242   [[ ${WEBCRLF} = true ]] && webcrlf="<br>"   return "${retval}"
243    }
244    
245   # respect -n  help_daemon_mroot()
246   case $1 in  {
247   -n) shift; opts="n" ;;   mecho "get daemon.mroot"
248   esac   mecho " Prints current MROOT variable."
249     mecho
250     mecho "set daemon.mroot [path]"
251     mecho " set MROOT variable to given path."
252    }
253    
254   echo -e${opts} "${COLCYAN}$@${COLDEFAULT}${webcrlf}"  get_daemon_mroot()
255    {
256     rvecho "${MROOT}"
257  }  }
258    
259  eecho()  set_daemon_mroot()
260  {  {
261   local COLRED="\033[1;31m"   local path=$1
  local COLDEFAULT="\033[0m"  
  local opts  
  local webcrlf  
262    
263   if [[ ${NOCOLORS} = true ]]   if [[ -d ${path} ]]
264   then   then
265   COLRED=""   export MROOT="${path}"
266   COLDEFAULT=""   decho "MROOT='${MROOT}' is set."
267     else
268     eecho "Path '${path}' does not exist. MROOT not set."
269   fi   fi
   
  [[ ${WEBCRLF} = true ]] && webcrlf="<br>"  
   
  # respect -n  
  case $1 in  
  -n) shift; opts="n" ;;  
  esac  
   
  echo -e${opts} "${COLRED}$@${COLDEFAULT}${webcrlf}"  
270  }  }
271    
272  path_not_empty()  print_version()
273  {  {
274   local path="$1"   echo "mcored-$(<${MCORE_LIBDIR}/VERSION)"
  [[ -z ${path} ]] && "path_not_empty(): no path given!" && return 1  
   
  # return ERR if path does not exist  
  [[ ! -d ${path} ]] && return 1  
  # return ERR if path empty  
  [[ -z $(find "${path}" -mindepth 1 -maxdepth 1) ]] && return 1  
   
  # every thing went ok, directory not empty  
  return 0  
275  }  }

Legend:
Removed from v.1308  
changed lines
  Added in v.2426