summaryrefslogtreecommitdiffstats
path: root/systemservice/config/library/system_manager_config/xml/launch_xml2cfg.sh
blob: 20fa0979ba17275b540d95334ca005dbcf8c0d3c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
#!/bin/bash

#
# Copyright (c) 2019-2020 TOYOTA MOTOR CORPORATION
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#      http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#

#xpath is slow, so use sed as much as possible

infile=$1

main_file=system_launcher_main.xml
body_file=system_launcher_body.xml


#check xmllint is exist 
if ! which xmllint > /dev/null ; then
  echo "It need xmllint. Please install it."
  exit 1;
fi 

#check xpath is exist 
if ! which xpath > /dev/null ; then
  echo "It need xpath Please install it."
  exit 1;
fi 

#arg check
if ! [[ "$infile" =~ .+\.xml ]] ;then
  echo "$infile is not *.xml"
  exit 1
elif ! [ -e $infile ];then
  echo "$infile not found"
  exit 1
fi

cp -f $infile $body_file

#check xml vaild 
if ! xmllint --noout --valid $main_file ;then
  echo "XML is Invalid. "
  exit 1;
fi

#Read into memory after shaping with xpath
xmem=`xpath -q -e /system_launcher $main_file`

echo "#  This file is created from $infile."
echo "#  created date : `LANG=en date`"
echo "[ModulesLaunchConfig]"

#GROUP LOOP
group_num=`echo $xmem | xpath -e /system_launcher/group 2>&1 | grep Found | cut -d ' ' -f2`

l_idx=1
cur_group=1
until [ $cur_group -gt $group_num ];  
do
  #LAUNCH LOOP
  group_text=`echo $xmem | xpath -q -e /system_launcher/group[$cur_group]`  #group full XML text
  group_attr=`echo $group_text | sed 's/\(<group[^>]\+>\)\(.*\)/\1/g'`

  g_name=`echo $group_attr | sed 's/\(.* name="\)\([^"]*\)\(.*\)/\2/g'`
  g_wait_time=`echo $group_attr | sed 's/\(.* wait_time="\)\([^"]*\)\(.*\)/\2/g'`
  g_trigger=`echo $group_attr | sed 's/\(.* trigger="\)\([^"]*\)\(.*\)/\2/g'`

#  echo $g_name $g_wait_time $g_trigger
  l_launch_num=`echo $xmem | xpath -e /system_launcher/group[$cur_group]/launch  2>&1 | grep Found | cut -d ' ' -f2`
  
  cur_launch=1; 
  until [ $cur_launch -gt $l_launch_num ];  do
    launch_text=`echo $xmem | xpath -q -e /system_launcher/group[$cur_group]/launch[$cur_launch]`  
    
    l_attr="Launch${l_idx}=$g_name|$cur_group|$g_wait_time|$g_trigger"
    l_attr+="|"`echo $launch_text | sed 's/\(.* name="\)\([^"]*\)\(.*\)/\2/g'`
    l_attr+="|"`echo $launch_text | sed 's/\(.* path="\)\([^"]*\)\(.*\)/\2/g'`
    l_attr+="|"`echo $launch_text | sed 's/\(.* priority="\)\([^"]*\)\(.*\)/\2/g'`
    l_attr+="|"`echo $launch_text | sed 's/\(.* critical="\)\([^"]*\)\(.*\)/\2/g'`
    l_attr+="|"`echo $launch_text | sed 's/\(.* retry_cnt="\)\([^"]*\)\(.*\)/\2/g'`
    l_attr+="|"`echo $launch_text | sed 's/\(.* arguments="\)\([^"]*\)\(.*\)/\2/g'`
    l_attr+="|"`echo $launch_text | sed 's/\(.* logging_mask="\)\([^"]*\)\(.*\)/\2/g'`
    l_attr+="|"`echo $launch_text | sed 's/\(.* restart="\)\([^"]*\)\(.*\)/\2/g'`
    l_attr+="|"`echo $launch_text | sed 's/\(.* is_start_required="\)\([^"]*\)\(.*\)/\2/g'`
    l_attr+="|"`echo $launch_text | sed 's/\(.* shutdown_critical="\)\([^"]*\)\(.*\)/\2/g'`
    l_attr+="|"`echo $launch_text | sed 's/\(.* shutdown_wait_time="\)\([^"]*\)\(.*\)/\2/g'`
    l_attr+="|"`echo $launch_text | sed 's/\(.* fast_shutdown_wait_time="\)\([^"]*\)\(.*\)/\2/g'`
    l_attr+="|"`echo $launch_text | sed 's/\(.* user_name="\)\([^"]*\)\(.*\)/\2/g'`
    if echo "$launch_text" | grep -sq 'env_cond=' ; then
      l_attr+="|"`echo $launch_text | sed 's/\(.* env_cond="\)\([^"]*\)\(.*\)/\2/g'`
    else
      l_attr+="|"
    fi
    
    echo $l_attr

    cur_launch=$(($cur_launch+1))
    l_idx=$(($l_idx+1))
  done

  cur_group=$(($cur_group+1))
done