Magellan Linux

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 2754 - (hide annotations) (download)
Tue Feb 2 14:08:20 2016 UTC (8 years, 3 months ago) by niro
File size: 7128 byte(s)
-added push_firstboot(), print_push_firstboot() and run_push_firstboot() function to modularize any firstboot/hardware configuration settings and to let the configuration be loaded from the classes modules
1 niro 1248 # $Id$
2    
3 niro 2139 # loads client classes from $MCORE_LIBDIR
4 niro 2303 load_classes()
5 niro 1915 {
6 niro 2303 local class
7     local classtype
8 niro 2030
9 niro 2303 case $1 in
10     client|control) classtype="$1" ;;
11     *) die "Unknown classes type '$1'" ;;
12     esac
13    
14 niro 1915 # client specific
15 niro 2303 for class in $(find ${MCORE_LIBDIR}/include -type f -name \*.${classtype}.class)
16 niro 1915 do
17 niro 2303 include ${class} || eecho "error loading ${class}"
18 niro 1915 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 niro 2005 # stops the whole service via remote cmd
32     stop_service()
33     {
34     local pid
35     for pid in $(pidof sslsvd)
36     do
37 niro 2302 kill -SIGTERM ${pid}
38 niro 2005 done
39     }
40    
41 niro 1252 # # 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 niro 1248
58     # run_class $method $caller $argv1 $argv2 ... $argvN
59     run_class()
60     {
61 niro 2271 local method="${GLOBAL_ARGV[0]}"
62     local caller="${GLOBAL_ARGV[1]}"
63 niro 1248 local class
64     local cmd
65 niro 2269 local i
66     local count
67 niro 1248
68 niro 1308 if valid_session
69 niro 1248 then
70     class="${caller%.*}"
71     cmd="${caller#*.}"
72    
73 niro 2269 # copy GLOBAL_ARGV to CLASS_ARGV array without method and caller.class
74     unset CLASS_ARGV
75     count="${#GLOBAL_ARGV[*]}"
76     for (( i=2; i<count; i++ ))
77     do
78     CLASS_ARGV[${i}-2]="${GLOBAL_ARGV[${i}]}"
79     done
80 niro 1248
81 niro 2269 # 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 niro 1248 # check if class.cmd exist
88     if [[ ! -z $(typeset -f "${method}"_"${class}"_"${cmd}") ]]
89     then
90 niro 2269 "${method}"_"${class}"_"${cmd}"
91 niro 1248 else
92 niro 2243 eecho "unknown method '${method}' . class '${class}' . cmd '${cmd}'"
93 niro 1248 fi
94     else
95     invalid_session
96     fi
97     }
98    
99 niro 2553 run_push_config()
100     {
101 niro 2556 local serial="$1"
102 niro 2553 local config
103    
104 niro 2556 if [[ -z ${serial} ]]
105     then
106     eecho "missing serial"
107     return 1
108     fi
109    
110 niro 2558 for config in $(NOCOLORS=1 print_push_config)
111 niro 2553 do
112     if [[ -n $(typeset -f push_config_${config}) ]]
113     then
114 niro 2557 decho "running: 'push_config_${config} ${serial}'"
115 niro 2556 push_config_"${config}" "${serial}"
116 niro 2553 else
117     decho "no function 'push_config_${config}' for '${config}' found."
118     fi
119     done
120     }
121    
122 niro 2754 run_push_firstboot()
123     {
124     local serial="$1"
125     local config
126    
127     if [[ -z ${serial} ]]
128     then
129     eecho "missing serial"
130     return 1
131     fi
132    
133     for config in $(NOCOLORS=1 print_push_firstboot)
134     do
135     if [[ -n $(typeset -f push_firstboot_${config}) ]]
136     then
137     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 niro 1248 help_topics()
146     {
147     local i
148     local topics
149    
150     topics=$(typeset -f | grep '^help_' | sed 's:help_\(.*\)\ .*():\1:' | sed 's:_:\.:' | sort)
151     mecho "Global commands:"
152 niro 1350 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 niro 2426 mecho "\tcertauth - authenticate to the daemon via fingerprint"
157 niro 1350 mecho "\tprovide - shows provides of a system"
158     mecho "\trequire - verify plugin requirements"
159 niro 1925 mecho "\treload - reloads all client classes plugins"
160     mecho "\trestart - restarts the daemon"
161 niro 2005 mecho "\tstop - stops the daemon"
162 niro 1330 mecho "\tnocolors - disable colors, useful for the webclient"
163 niro 2006 mecho "\tcolors - enable colors"
164 niro 1639 mecho "\tquiet - do not print any unecessary messages"
165 niro 1350 mecho "\thelp - shows help"
166 niro 2044 mecho "\tversion - prints version of the daemon"
167 niro 1350 mecho "\tquit - quits the connection to the server"
168 niro 1248 mecho
169     mecho "Help topics:"
170     for i in ${topics}
171     do
172     # excludes
173     case ${i} in
174     help_topics|topics) continue ;;
175     esac
176    
177     mecho "\t${i}"
178     done
179 niro 1264 mecho
180     mecho "Type 'help [topic]' for more information about every topic."
181 niro 1248 }
182    
183     require()
184     {
185     local requires="$@"
186     local i
187    
188     for i in ${requires}
189     do
190 niro 1264 # check for duplicate provides
191     if no_duplicate "${PROVIDE}" "${i}"
192     then
193     export REQUIRE="${REQUIRE} ${i}"
194     else
195 niro 1639 decho "duplicate provide '${i}' detected!"
196 niro 1264 fi
197 niro 1248 done
198     }
199    
200 niro 1264 verify_requirements()
201 niro 1248 {
202 niro 1264 local req
203     local prov
204     local missing
205     local sorted
206 niro 1248
207 niro 1264 for req in ${REQUIRE}
208 niro 1248 do
209 niro 1264 # scan PROVIDE for dupes
210     # if a dupe is found, then requirement is fullfilled
211     # else add to missing
212     if no_duplicate "${PROVIDE}" "${req}"
213     then
214     missing="${missing} ${req}"
215     fi
216 niro 1248 done
217    
218 niro 1264 # sort them alpabetically
219     sorted=$(for i in ${REQUIRE}; do echo "${i}"; done | sort)
220    
221     # show missing and set the right retval
222     if [[ -z ${missing} ]]
223     then
224 niro 2115 # do not escape, or CRLFS get printed to screen too
225     rvecho ${sorted}
226 niro 1264 return 0
227     else
228     for req in ${sorted}
229     do
230     if no_duplicate "${missing}" "$req"
231     then
232     # print normal
233 niro 2115 rvecho -n "${req} "
234 niro 1264 else
235     # print missing
236 niro 2115 eecho -n "${req} "
237 niro 1264 fi
238     done
239 niro 2115 # print CRLF
240     echo
241 niro 1264 return 1
242     fi
243 niro 1248 }
244    
245     provide()
246     {
247     local provides="$@"
248     local i
249    
250     for i in ${provides}
251     do
252     # check for duplicate provides
253 niro 1264 if no_duplicate "${PROVIDE}" "${i}"
254 niro 1248 then
255     export PROVIDE="${PROVIDE} ${i}"
256     else
257 niro 1639 decho "duplicate provide '${i}' detected!"
258 niro 1248 fi
259     done
260     }
261    
262     print_provide()
263     {
264     local sorted
265    
266     # sort them alpabetically
267     sorted=$(for i in ${PROVIDE}; do echo "${i}"; done | sort)
268     # do not escape, or CRLFS get printed to screen too
269 niro 2003 rvecho ${sorted}
270 niro 1248 }
271    
272 niro 2318 is_provided()
273     {
274     local feature="$1"
275     local i
276     local retval
277    
278     retval=1
279     for i in $(print_provide)
280     do
281     if [[ ${i} = ${feature} ]]
282     then
283 niro 2344 retval=0
284 niro 2318 break
285     fi
286     done
287    
288     return "${retval}"
289     }
290    
291 niro 2553 push_config()
292     {
293     local push_configs="$@"
294     local i
295    
296     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     print_push_config()
309     {
310     local sorted
311    
312     # sort them alpabetically
313 niro 2555 sorted=$(for i in ${PUSH_CONFIG}; do echo "${i}"; done | sort)
314 niro 2553 # do not escape, or CRLFS get printed to screen too
315     rvecho ${sorted}
316     }
317    
318 niro 2754 push_firstboot()
319     {
320     local push_firstboots="$@"
321     local i
322    
323     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     print_push_firstboot()
336     {
337     local sorted
338    
339     # sort them alpabetically
340     sorted=$(for i in ${PUSH_FIRSTBOOT}; do echo "${i}"; done | sort)
341     # do not escape, or CRLFS get printed to screen too
342     rvecho ${sorted}
343     }
344    
345 niro 2007 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     set_daemon_mroot()
360     {
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 niro 2008
372 niro 2052 print_version()
373     {
374 niro 2139 echo "mcored-$(<${MCORE_LIBDIR}/VERSION)"
375 niro 2052 }