2fcd4c436ed57e77c1b2b8ff7e9232f13680d70c
[src/xds/xds-server.git] / scripts / sdks / agl / db-dump
1 #!/usr/bin/python3
2 #
3 # /**************************************************************************
4 # * Copyright 2017-2018 IoT.bzh
5 # *
6 # * author: Romain Forlot <romain.forlot@iot.bzh>
7 # *
8 # * Licensed under the Apache License, Version 2.0 (the "License");
9 # * you may not use this file except in compliance with the License.
10 # * You may obtain a copy of the License at
11 # *
12 # *     http://www.apache.org/licenses/LICENSE-2.0
13 # *
14 # * Unless required by applicable law or agreed to in writing, software
15 # * distributed under the License is distributed on an "AS IS" BASIS,
16 # * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17 # * See the License for the specific language governing permissions and
18 # * limitations under the License.
19 # **************************************************************************/
20
21 import os
22 import sys
23 import json
24 import logging
25 import inspect
26 import fnmatch
27 import argparse
28 import subprocess
29 import re
30
31 PARSER = argparse.ArgumentParser(
32     description='Lists available and installed SDKs')
33 PARSER.add_argument('-debug', dest='debug', action='store_true',
34                     help='Output debug log messages')
35
36 ARGS = PARSER.parse_args()
37
38 if ARGS.debug:
39     logging.basicConfig(level=logging.DEBUG,
40                         format='%(asctime)s:%(levelname)s: %(message)s')
41 else:
42     logging.basicConfig(level=logging.INFO,
43                         format='%(asctime)s:%(levelname)s: %(message)s')
44
45 SCRIPT_PATH = os.path.dirname(os.path.abspath(
46     inspect.getfile(inspect.currentframe())))
47
48 ENV = subprocess.check_output(
49     [os.path.join(SCRIPT_PATH, './_env-init.sh'), '-print']).splitlines()
50
51 SDK_ROOT_DIR = None
52 for elt in ENV:
53     #only match what defines a variable
54     z = re.match(r"^(\w+)=([^']*)$", elt.decode())
55     if z:
56         k = z.group(1)
57         v = z.group(2)
58         if k == 'SDK_ROOT_DIR':
59             SDK_ROOT_DIR = v.rstrip('/')
60         elif k == 'SDK_ENV_SETUP_FILENAME':
61             SDK_ENV_SETUP_FILENAME = v
62
63 if SDK_ROOT_DIR is None:
64     logging.error('No SDK_ROOT_DIR environment variable found.')
65     exit(1)
66 elif SDK_ENV_SETUP_FILENAME is None:
67     SDK_ENV_SETUP_FILENAME = 'environment-setup*'
68
69 # Get list of available SDKs
70 SDK_DB_FILEPATH = os.path.join(SDK_ROOT_DIR, "sdks_latest.json")
71
72 if not os.path.exists(SDK_DB_FILEPATH):
73     DB_UPDATE_FILEPATH = os.path.join(SCRIPT_PATH, 'db-update')
74     os.system(DB_UPDATE_FILEPATH + " " + SDK_DB_FILEPATH)
75
76 SDK_DB_JSON = json.load(open(SDK_DB_FILEPATH, 'r'))
77
78 for one_sdk in SDK_DB_JSON:
79     one_sdk['status'] = 'Not Installed'
80     one_sdk['uuid'] = ''
81
82 INSTALLED_SDK = []
83 for root, dirs, files in os.walk(SDK_ROOT_DIR):
84     depth = root[len(SDK_ROOT_DIR) + len(os.path.sep):].count(os.path.sep)
85     # Limit the walking depth of processed directories
86     if depth >= 4:
87         dirs[:] = []
88     # Only process SDK dir matching profile/version/arch or
89     # profile/version/arch/tag
90     elif depth != 2 and depth != 3:
91         continue
92     EF, VF = '', ''
93     for one_file in files:
94         if fnmatch.fnmatch(one_file, SDK_ENV_SETUP_FILENAME):
95             EF = os.path.join(root, one_file)
96         if fnmatch.fnmatch(one_file, 'version-*'):
97             VF = os.path.join(root, one_file)
98     if EF != '' and VF != '':
99         logging.debug('Adding installed SDK ' + root)
100         INSTALLED_SDK.append({'ENV_FILE': EF, 'VERSION_FILE': VF})
101     elif (EF == '' and VF != '') or (EF != '' and VF == ''):
102         logging.debug(
103             'WARNING SDK ignored : root=%s, EnvFile=%s, VersFile=%s', root, EF, VF)
104
105 for one_sdk in INSTALLED_SDK:
106     logging.debug("Processing %s", one_sdk['ENV_FILE'])
107     envFile = one_sdk['ENV_FILE'].split(SDK_ROOT_DIR+'/')[1]
108     PROFILE = envFile.split('/')[0]
109     VERSION = envFile.split('/')[1]
110     ARCH = envFile.split('/')[2]
111     DIR = os.path.dirname(one_sdk['ENV_FILE'])
112     if PROFILE == '' or VERSION == '' or ARCH == '' or DIR == '':
113         logging.debug('Path not compliant, skipping')
114         continue
115
116     UUID = os.path.basename(os.path.normpath(DIR))
117
118     SDK_DATE = ''
119     for line in open(one_sdk['VERSION_FILE']).readlines():
120         if line.startswith('Timestamp'):
121             D = line.split(':')[1]
122             if D:
123                 D = D.strip()
124                 SDK_DATE = '{}-{}-{} {}:{}'.format(
125                     D[0:4], D[4:6], D[6:8], D[8:10], D[10:12])
126                 logging.debug('Found date: %s', SDK_DATE)
127
128     found = False
129     for sdk in SDK_DB_JSON:
130         if sdk['profile'] == PROFILE and sdk['version'] == VERSION and sdk['arch'] == ARCH:
131             if sdk['status'] == 'Installed':
132                 continue
133             # Additional verification based on url used to generate UUID (see also same logic in add script)
134             if sdk['url'] != '':
135                 try:
136                     ps = subprocess.Popen(('echo', sdk['url']), stdout=subprocess.PIPE)
137                     uuid_md5 = subprocess.check_output(('md5sum'), stdin=ps.stdout)
138                     ps.wait()
139                     if str(uuid_md5).split(' ')[0][2:] != UUID:
140                         continue
141                 except:
142                     e = sys.exc_info()[0]
143                     logging.error("Error while checking UUID: " % e)
144
145             found = True
146             sdk['status'] = 'Installed'
147             sdk['date'] = SDK_DATE
148             sdk['setupFile'] = one_sdk['ENV_FILE']
149             sdk['path'] = DIR
150             sdk['uuid'] = UUID
151             break
152
153     if not found:
154         logging.debug('Not found in database, add: ' +
155                       PROFILE + '-' + ARCH + '-' + VERSION)
156         NEW_SDK = {
157             'name': PROFILE + '-' + ARCH + '-' + VERSION,
158             'uuid': UUID,
159             'description': 'AGL SDK ' + ARCH + ' (version ' + VERSION + ')',
160             'profile': PROFILE,
161             'version': VERSION,
162             'arch': ARCH,
163             'path': DIR,
164             'url': "",
165             'status': "Installed",
166             'date': SDK_DATE,
167             'size': "",
168             'md5sum': "",
169             'setupFile': one_sdk['ENV_FILE']
170         }
171         SDK_DB_JSON.append(NEW_SDK)
172
173 print(json.dumps(SDK_DB_JSON))