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 1264 by niro, Fri Feb 4 20:13:23 2011 UTC mcore-src/trunk/mcore-tools/src/include/daemon.global.class.in revision 2810 by niro, Fri Apr 7 07:30:42 2017 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 validate_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
96   fi   fi
97  }  }
98    
99  help_topics()  run_push_config()
 {  
  local i  
  local topics  
   
  topics=$(typeset -f | grep '^help_' | sed 's:help_\(.*\)\ .*():\1:' | sed 's:_:\.:' | sort)  
  mecho "Global commands:"  
  mecho "\timport  - import settings to database"  
  mecho "\tget     - shows current value for a settings"  
  mecho "\tset     - sets value for a setting"  
  mecho "\tauth    - authenticate to the daemon"  
  mecho "\tprovide - shows provides of a system"  
  mecho "\thelp    - shows help"  
  mecho "\tquit    - quits the connection to the server"  
  mecho  
  mecho "Help topics:"  
  for i in ${topics}  
  do  
  # excludes  
  case ${i} in  
  help_topics|topics) continue ;;  
  esac  
   
  mecho "\t${i}"  
  done  
  mecho  
  mecho "Type 'help [topic]' for more information about every topic."  
 }  
   
 # on newer xorg-servers root is not allowed to run progs in a user session  
 x11runas()  
100  {  {
101   su - "${MCORE_UNPRIV_USER}" -c "DISPLAY=${MCORE_XORG_DISPLAY} $@"   local serial="$1"
102  }   local config
103    
104  addconfig()   if [[ -z ${serial} ]]
 {  
  if [[ -z ${CONFIG} ]]  
105   then   then
106   echo "You must define \$CONFIG varibale first!"   eecho "missing serial"
107   return 1   return 1
108   fi   fi
109    
110   if [[ ! -d $(dirname ${CONFIG}) ]]   for config in $(NOCOLORS=1 print_push_config)
111   then   do
112   install -d $(dirname ${CONFIG})   if [[ -n $(typeset -f push_config_${config}) ]]
113   fi   then
114   echo "$@" >> ${CONFIG}   decho "running: 'push_config_${config} ${serial}'"
115     push_config_"${config}" "${serial}"
116     else
117     decho "no function 'push_config_${config}' for '${config}' found."
118     fi
119     done
120  }  }
121    
122  clearconfig()  run_push_firstboot()
123  {  {
124   if [[ -z ${CONFIG} ]]   local serial="$1"
125     local config
126    
127     if [[ -z ${serial} ]]
128   then   then
129   echo "You must define \$CONFIG varibale first!"   eecho "missing serial"
130   return 1   return 1
131   fi   fi
132    
133   if [[ ! -d $(dirname ${CONFIG}) ]]   for config in $(NOCOLORS=1 print_push_firstboot)
134   then   do
135   install -d $(dirname ${CONFIG})   if [[ -n $(typeset -f push_firstboot_${config}) ]]
136   fi   then
137   : > ${CONFIG}   decho "running: 'push_firstboot_${config} ${serial}'"
138     push_firstboot_"${config}" "${serial}"
139     else
140     decho "no function 'push_firstboot_${config}' for '${config}' found."
141     fi
142     done
143  }  }
144    
145  # no_duplicate $list $item  help_topics()
 no_duplicate()  
146  {  {
147   local i   local i
148   local list="$1"   local topics
  local item="$2"  
149    
150   for i in ${list}   topics=$(typeset -f | grep '^help_' | sed 's:help_\(.*\)\ .*():\1:' | sed 's:_:\.:' | sort)
151     mecho "Global commands:"
152     mecho "\timport   - import settings to database"
153     mecho "\tget      - shows current value for a settings"
154     mecho "\tset      - sets value for a setting"
155     mecho "\tauth     - authenticate to the daemon"
156     mecho "\tcertauth - authenticate to the daemon via fingerprint"
157     mecho "\tprovide  - shows provides of a system"
158     mecho "\trequire  - verify plugin requirements"
159     mecho "\treload   - reloads all client classes plugins"
160     mecho "\trestart  - restarts the daemon"
161     mecho "\tstop     - stops the daemon"
162     mecho "\tnocolors - disable colors, useful for the webclient"
163     mecho "\tcolors   - enable colors"
164     mecho "\tquiet    - do not print any unecessary messages"
165     mecho "\thelp     - shows help"
166     mecho "\tversion  - prints version of the daemon"
167     mecho "\tquit     - quits the connection to the server"
168     mecho
169     mecho "Help topics:"
170     for i in ${topics}
171   do   do
172   [[ ${i} = ${item} ]] && return 1   # excludes
173   done   case ${i} in
174     help_topics|topics) continue ;;
175     esac
176    
177   return 0   mecho "\t${i}"
178     done
179     mecho
180     mecho "Type 'help [topic]' for more information about every topic."
181  }  }
182    
183  require()  require()
# Line 138  require() Line 187  require()
187    
188   for i in ${requires}   for i in ${requires}
189   do   do
190   # check for duplicate provides   # check for duplicate require
191   if no_duplicate "${PROVIDE}" "${i}"   if no_duplicate "${REQUIRE}" "${i}"
192   then   then
193   export REQUIRE="${REQUIRE} ${i}"   export REQUIRE="${REQUIRE} ${i}"
194   else   else
195   [[ ${DEBUG} = 1 ]] && echo "duplicate provide '${i}' detected!"   decho "duplicate require '${i}' detected!"
196   fi   fi
197   done   done
198  }  }
# Line 172  verify_requirements() Line 221  verify_requirements()
221   # show missing and set the right retval   # show missing and set the right retval
222   if [[ -z ${missing} ]]   if [[ -z ${missing} ]]
223   then   then
224   mecho "${sorted}"   # do not escape, or CRLFS get printed to screen too
225     rvecho ${sorted}
226   return 0   return 0
227   else   else
228   for req in ${sorted}   for req in ${sorted}
# Line 180  verify_requirements() Line 230  verify_requirements()
230   if no_duplicate "${missing}" "$req"   if no_duplicate "${missing}" "$req"
231   then   then
232   # print normal   # print normal
233   mecho -n " ${req}"   rvecho -n "${req} "
234   else   else
235   # print missing   # print missing
236   eecho -n " ${req}"   eecho -n "${req} "
237   fi   fi
238   done   done
239     # print CRLF
240     echo
241   return 1   return 1
242   fi   fi
243  }  }
# Line 202  provide() Line 254  provide()
254   then   then
255   export PROVIDE="${PROVIDE} ${i}"   export PROVIDE="${PROVIDE} ${i}"
256   else   else
257   [[ ${DEBUG} = 1 ]] && echo "duplicate provide '${i}' detected!"   decho "duplicate provide '${i}' detected!"
258   fi   fi
259   done   done
260  }  }
# Line 214  print_provide() Line 266  print_provide()
266   # sort them alpabetically   # sort them alpabetically
267   sorted=$(for i in ${PROVIDE}; do echo "${i}"; done | sort)   sorted=$(for i in ${PROVIDE}; do echo "${i}"; done | sort)
268   # do not escape, or CRLFS get printed to screen too   # do not escape, or CRLFS get printed to screen too
269   mecho ${sorted}   rvecho ${sorted}
270  }  }
271    
272  mecho()  is_provided()
273  {  {
274   local COLCYAN="\033[1;36m"   local feature="$1"
275   local COLDEFAULT="\033[0m"   local i
276   local opts   local retval
277    
278   if [[ ${NOCOLORS} = true ]]   retval=1
279   then   for i in $(print_provide)
280   COLCYAN=""   do
281   COLDEFAULT=""   if [[ ${i} = ${feature} ]]
282   fi   then
283     retval=0
284     break
285     fi
286     done
287    
288   # respect -n   return "${retval}"
289   case $1 in  }
290   -n) shift; opts="n" ;;  
291   esac  push_config()
292    {
293     local push_configs="$@"
294     local i
295    
296   echo -e${opts} "${COLCYAN}$@${COLDEFAULT}"   for i in ${push_configs}
297     do
298     # check for duplicate provides
299     if no_duplicate "${PUSH_CONFIG}" "${i}"
300     then
301     export PUSH_CONFIG="${PUSH_CONFIG} ${i}"
302     else
303     decho "duplicate push_config '${i}' detected!"
304     fi
305     done
306  }  }
307    
308  eecho()  print_push_config()
309  {  {
310   local COLRED="\033[1;31m"   local sorted
  local COLDEFAULT="\033[0m"  
  local opts  
311    
312   if [[ ${NOCOLORS} = true ]]   # sort them alpabetically
313   then   sorted=$(for i in ${PUSH_CONFIG}; do echo "${i}"; done | sort)
314   COLRED=""   # do not escape, or CRLFS get printed to screen too
315   COLDEFAULT=""   rvecho ${sorted}
316   fi  }
317    
318   # respect -n  push_firstboot()
319   case $1 in  {
320   -n) shift; opts="n" ;;   local push_firstboots="$@"
321   esac   local i
322    
323   echo -e${opts} "${COLRED}$@${COLDEFAULT}"   for i in ${push_firstboots}
324     do
325     # check for duplicate provides
326     if no_duplicate "${PUSH_FIRSTBOOT}" "${i}"
327     then
328     export PUSH_FIRSTBOOT="${PUSH_FIRSTBOOT} ${i}"
329     else
330     decho "duplicate push_firstboot '${i}' detected!"
331     fi
332     done
333  }  }
334    
335  path_not_empty()  print_push_firstboot()
336  {  {
337   local path="$1"   local sorted
  [[ -z ${path} ]] && "path_not_empty(): no path given!" && return 1  
338    
339   # return ERR if path does not exist   # sort them alpabetically
340   [[ ! -d ${path} ]] && return 1   sorted=$(for i in ${PUSH_FIRSTBOOT}; do echo "${i}"; done | sort)
341   # return ERR if path empty   # do not escape, or CRLFS get printed to screen too
342   [[ -z $(find "${path}" -mindepth 1 -maxdepth 1) ]] && return 1   rvecho ${sorted}
343    }
344    
345    help_daemon_mroot()
346    {
347     mecho "get daemon.mroot"
348     mecho " Prints current MROOT variable."
349     mecho
350     mecho "set daemon.mroot [path]"
351     mecho " set MROOT variable to given path."
352    }
353    
354    get_daemon_mroot()
355    {
356     rvecho "${MROOT}"
357    }
358    
359   # every thing went ok, directory not empty  set_daemon_mroot()
360   return 0  {
361     local path=$1
362    
363     if [[ -d ${path} ]]
364     then
365     export MROOT="${path}"
366     decho "MROOT='${MROOT}' is set."
367     else
368     eecho "Path '${path}' does not exist. MROOT not set."
369     fi
370    }
371    
372    print_version()
373    {
374     echo "mcored-$(<${MCORE_LIBDIR}/VERSION)"
375  }  }

Legend:
Removed from v.1264  
changed lines
  Added in v.2810