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 1248 by niro, Wed Feb 2 20:20:24 2011 UTC mcore-src/trunk/mcore-tools/src/include/daemon.global.class.in revision 2558 by niro, Thu Sep 17 07:39:31 2015 UTC
# Line 1  Line 1 
1  # $Id$  # $Id$
2    
3  # import_resource $table $serial $resource $value  # loads client classes from $MCORE_LIBDIR
4  import_resource()  load_classes()
5  {  {
6   local table="$1"   local class
7   local serial="$2"   local classtype
  local resource="$3"  
  local value="$4"  
8    
9   if [[ ${DEBUG} = 1 ]]   case $1 in
10   then   client|control) classtype="$1" ;;
11   echo "${table}->${resource}=${value}" >> /root/lala.log   *) die "Unknown classes type '$1'" ;;
12   echo "mysqldo \"update ${table} set ${resource}='${value}' where serial=${serial};\"" >> /root/lala.log   esac
  fi  
13    
14   mysql_insert "${table}",serial="${serial}","${resource}"="${value}"   # 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
42    # import_resource()
43    # {
44    # local table="$1"
45    # local serial="$2"
46    # local resource="$3"
47    # local value="$4"
48    #
49    # if [[ ${DEBUG} = 1 ]]
50    # then
51    # echo "${table}->${resource}=${value}" >> /root/lala.log
52    # echo "mysqldo \"update ${table} set ${resource}='${value}' where serial=${serial};\"" >> /root/lala.log
53    # fi
54    #
55    # mysql_insert "${table}",serial="${serial}","${resource}"="${value}"
56    # }
57    
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    run_push_config()
100    {
101     local serial="$1"
102     local config
103    
104     if [[ -z ${serial} ]]
105     then
106     eecho "missing serial"
107     return 1
108     fi
109    
110     for config in $(NOCOLORS=1 print_push_config)
111     do
112     if [[ -n $(typeset -f push_config_${config}) ]]
113     then
114     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  help_topics()  help_topics()
123  {  {
124   local i   local i
# Line 58  help_topics() Line 126  help_topics()
126    
127   topics=$(typeset -f | grep '^help_' | sed 's:help_\(.*\)\ .*():\1:' | sed 's:_:\.:' | sort)   topics=$(typeset -f | grep '^help_' | sed 's:help_\(.*\)\ .*():\1:' | sed 's:_:\.:' | sort)
128   mecho "Global commands:"   mecho "Global commands:"
129   mecho "\timport  - import settings to database"   mecho "\timport   - import settings to database"
130   mecho "\tget     - shows current value for a settings"   mecho "\tget      - shows current value for a settings"
131   mecho "\tset     - sets value for a setting"   mecho "\tset      - sets value for a setting"
132   mecho "\tauth    - authenticate to the daemon"   mecho "\tauth     - authenticate to the daemon"
133   mecho "\tprovide - shows provides of a system"   mecho "\tcertauth - authenticate to the daemon via fingerprint"
134   mecho "\thelp    - shows help"   mecho "\tprovide  - shows provides of a system"
135     mecho "\trequire  - verify plugin requirements"
136     mecho "\treload   - reloads all client classes plugins"
137     mecho "\trestart  - restarts the daemon"
138     mecho "\tstop     - stops the daemon"
139     mecho "\tnocolors - disable colors, useful for the webclient"
140     mecho "\tcolors   - enable colors"
141     mecho "\tquiet    - do not print any unecessary messages"
142     mecho "\thelp     - shows help"
143     mecho "\tversion  - prints version of the daemon"
144     mecho "\tquit     - quits the connection to the server"
145   mecho   mecho
146   mecho "Help topics:"   mecho "Help topics:"
147   for i in ${topics}   for i in ${topics}
# Line 75  help_topics() Line 153  help_topics()
153    
154   mecho "\t${i}"   mecho "\t${i}"
155   done   done
156     mecho
157     mecho "Type 'help [topic]' for more information about every topic."
158  }  }
159    
160  # on newer xorg-servers root is not allowed to run progs in a user session  require()
 x11runas()  
161  {  {
162   su - "${MCORE_UNPRIV_USER}" -c "$@"   local requires="$@"
163     local i
164    
165     for i in ${requires}
166     do
167     # check for duplicate provides
168     if no_duplicate "${PROVIDE}" "${i}"
169     then
170     export REQUIRE="${REQUIRE} ${i}"
171     else
172     decho "duplicate provide '${i}' detected!"
173     fi
174     done
175  }  }
176    
177  addconfig()  verify_requirements()
178  {  {
179   if [[ -z ${CONFIG} ]]   local req
180   then   local prov
181   echo "You must define \$CONFIG varibale first!"   local missing
182   return 1   local sorted
  fi  
183    
184   if [[ ! -d $(dirname ${CONFIG}) ]]   for req in ${REQUIRE}
185   then   do
186   install -d $(dirname ${CONFIG})   # scan PROVIDE for dupes
187   fi   # if a dupe is found, then requirement is fullfilled
188   echo "$@" >> ${CONFIG}   # else add to missing
189  }   if no_duplicate "${PROVIDE}" "${req}"
190     then
191     missing="${missing} ${req}"
192     fi
193     done
194    
195  clearconfig()   # sort them alpabetically
196  {   sorted=$(for i in ${REQUIRE}; do echo "${i}"; done | sort)
197   if [[ -z ${CONFIG} ]]  
198     # show missing and set the right retval
199     if [[ -z ${missing} ]]
200   then   then
201   echo "You must define \$CONFIG varibale first!"   # do not escape, or CRLFS get printed to screen too
202     rvecho ${sorted}
203     return 0
204     else
205     for req in ${sorted}
206     do
207     if no_duplicate "${missing}" "$req"
208     then
209     # print normal
210     rvecho -n "${req} "
211     else
212     # print missing
213     eecho -n "${req} "
214     fi
215     done
216     # print CRLF
217     echo
218   return 1   return 1
219   fi   fi
   
  : > ${CONFIG}  
220  }  }
221    
222  require()  provide()
223  {  {
224   local requires="$@"   local provides="$@"
225   local i   local i
226    
227   for i in ${requires}   for i in ${provides}
228   do   do
229   export REQUIRE="${REQUIRE} ${i}"   # check for duplicate provides
230     if no_duplicate "${PROVIDE}" "${i}"
231     then
232     export PROVIDE="${PROVIDE} ${i}"
233     else
234     decho "duplicate provide '${i}' detected!"
235     fi
236   done   done
237  }  }
238    
239  not_provided()  print_provide()
240    {
241     local sorted
242    
243     # sort them alpabetically
244     sorted=$(for i in ${PROVIDE}; do echo "${i}"; done | sort)
245     # do not escape, or CRLFS get printed to screen too
246     rvecho ${sorted}
247    }
248    
249    is_provided()
250  {  {
251     local feature="$1"
252   local i   local i
253   local item="$1"   local retval
254    
255   for i in ${PROVIDE}   retval=1
256     for i in $(print_provide)
257   do   do
258   [[ ${i} = ${item} ]] && return 1   if [[ ${i} = ${feature} ]]
259     then
260     retval=0
261     break
262     fi
263   done   done
264    
265   return 0   return "${retval}"
266  }  }
267    
268  provide()  push_config()
269  {  {
270   local provides="$@"   local push_configs="$@"
271   local i   local i
272    
273   for i in ${provides}   for i in ${push_configs}
274   do   do
275   # check for duplicate provides   # check for duplicate provides
276   if not_provided "${i}"   if no_duplicate "${PUSH_CONFIG}" "${i}"
277   then   then
278   export PROVIDE="${PROVIDE} ${i}"   export PUSH_CONFIG="${PUSH_CONFIG} ${i}"
279   else   else
280   [[ ${DEBUG} = 1 ]] && echo "duplicate provide '${i}' detected!"   decho "duplicate push_config '${i}' detected!"
281   fi   fi
282   done   done
283  }  }
284    
285  print_provide()  print_push_config()
286  {  {
287   local sorted   local sorted
288    
289   # sort them alpabetically   # sort them alpabetically
290   sorted=$(for i in ${PROVIDE}; do echo "${i}"; done | sort)   sorted=$(for i in ${PUSH_CONFIG}; do echo "${i}"; done | sort)
291   # do not escape, or CRLFS get printed to screen too   # do not escape, or CRLFS get printed to screen too
292   mecho ${sorted}   rvecho ${sorted}
293    }
294    
295    help_daemon_mroot()
296    {
297     mecho "get daemon.mroot"
298     mecho " Prints current MROOT variable."
299     mecho
300     mecho "set daemon.mroot [path]"
301     mecho " set MROOT variable to given path."
302    }
303    
304    get_daemon_mroot()
305    {
306     rvecho "${MROOT}"
307  }  }
308    
309  mecho()  set_daemon_mroot()
310  {  {
311   local COLCYAN="\033[1;36m"   local path=$1
312   local COLDEFAULT="\033[0m"  
313   if [[ ${NOCOLORS} = true ]]   if [[ -d ${path} ]]
314   then   then
315   COLCYAN=""   export MROOT="${path}"
316   COLDEFAULT=""   decho "MROOT='${MROOT}' is set."
317     else
318     eecho "Path '${path}' does not exist. MROOT not set."
319   fi   fi
320    }
321    
322   echo -e "${COLCYAN}$@${COLDEFAULT}"  print_version()
323    {
324     echo "mcored-$(<${MCORE_LIBDIR}/VERSION)"
325  }  }

Legend:
Removed from v.1248  
changed lines
  Added in v.2558