ec2b1d8ac7adb1672e50e888426de28c29e78a5f
[src/xds/xds-server.git] / scripts / sdks / agl / db-dump
1 #!/usr/bin/env 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 json
23 import logging
24 import inspect
25 import fnmatch
26 import argparse
27 import subprocess
28
29 PARSER = argparse.ArgumentParser(
30     description='Lists available and installed SDKs')
31 PARSER.add_argument('-debug', dest='debug', action='store_true',
32                     help='Output debug log messages')
33
34 ARGS = PARSER.parse_args()
35
36 if ARGS.debug:
37     logging.basicConfig(level=logging.DEBUG,
38                         format='%(asctime)s:%(levelname)s: %(message)s')
39 else:
40     logging.basicConfig(level=logging.INFO,
41                         format='%(asctime)s:%(levelname)s: %(message)s')
42
43 SCRIPT_PATH = os.path.dirname(os.path.abspath(
44     inspect.getfile(inspect.currentframe())))
45
46 ENV = subprocess.check_output(
47     [os.path.join(SCRIPT_PATH, './_env-init.sh'), '-print']).splitlines()
48
49 SDK_ROOT_DIR = None
50 for elt in ENV:
51     k, v = elt.decode().split('=', 1)
52     if k == 'SDK_ROOT_DIR':
53         SDK_ROOT_DIR = v.rstrip('/')
54     elif k == 'SDK_ENV_SETUP_FILENAME':
55         SDK_ENV_SETUP_FILENAME = v
56
57 if SDK_ROOT_DIR is None:
58     logging.error('No SDK_ROOT_DIR environment variable found.')
59     exit(1)
60 elif SDK_ENV_SETUP_FILENAME is None:
61     SDK_ENV_SETUP_FILENAME = 'environment-setup*'
62
63 # Get list of available SDKs
64 SDK_DB_FILEPATH = os.path.join(SDK_ROOT_DIR, "sdks_latest.json")
65
66 if not os.path.exists(SDK_DB_FILEPATH):
67     DB_UPDATE_FILEPATH = os.path.join(SCRIPT_PATH, 'db-update')
68     os.system(DB_UPDATE_FILEPATH + " " + SDK_DB_FILEPATH)
69
70 SDK_DB_JSON = json.load(open(SDK_DB_FILEPATH, 'r'))
71
72 for one_sdk in SDK_DB_JSON:
73     one_sdk['status'] = 'Not Installed'
74     one_sdk['uuid'] = ''
75
76 INSTALLED_SDK = []
77 for root, dirs, files in os.walk(SDK_ROOT_DIR):
78     depth = root[len(SDK_ROOT_DIR) + len(os.path.sep):].count(os.path.sep)
79     # Limit the walking depth of processed directories
80     if depth >= 4:
81         dirs[:] = []
82     # Only process SDK dir matching profile/version/arch or
83     # profile/version/arch/tag
84     elif depth != 2 and depth != 3:
85         continue
86     EF, VF = '', ''
87     for one_file in files:
88         if fnmatch.fnmatch(one_file, SDK_ENV_SETUP_FILENAME):
89             EF = os.path.join(root, one_file)
90         if fnmatch.fnmatch(one_file, 'version-*'):
91             VF = os.path.join(root, one_file)
92     if EF != '' and VF != '':
93         logging.debug('Adding installed SDK ' + root)
94         INSTALLED_SDK.append({'ENV_FILE': EF, 'VERSION_FILE': VF})
95     elif (EF == '' and VF != '') or (EF != '' and VF == ''):
96         logging.debug(
97             'WARNING SDK ignored : root=%s, EnvFile=%s, VersFile=%s', root, EF, VF)
98
99 for one_sdk in INSTALLED_SDK:
100     logging.debug("Processing %s", one_sdk['ENV_FILE'])
101     envFile = one_sdk['ENV_FILE'].split(SDK_ROOT_DIR+'/')[1]
102     PROFILE = envFile.split('/')[0]
103     VERSION = envFile.split('/')[1]
104     ARCH = envFile.split('/')[2]
105     DIR = os.path.dirname(one_sdk['ENV_FILE'])
106     if PROFILE == '' or VERSION == '' or ARCH == '' or DIR == '':
107         logging.debug('Path not compliant, skipping')
108         continue
109
110     UUID = os.path.basename(os.path.normpath(DIR))
111
112     SDK_DATE = ''
113     for line in open(one_sdk['VERSION_FILE']).readlines():
114         if line.startswith('Timestamp'):
115             D = line.split(':')[1]
116             if D:
117                 D = D.strip()
118                 SDK_DATE = '{}-{}-{} {}:{}'.format(
119                     D[0:4], D[4:6], D[6:8], D[8:10], D[10:12])
120                 logging.debug('Found date: %s', SDK_DATE)
121
122     found = False
123     for sdk in SDK_DB_JSON:
124         if sdk['profile'] == PROFILE and sdk['version'] == VERSION and sdk['arch'] == ARCH:
125             if sdk['status'] == 'Installed':
126                 continue
127             found = True
128             sdk['status'] = 'Installed'
129             sdk['date'] = SDK_DATE
130             sdk['setupFile'] = one_sdk['ENV_FILE']
131             sdk['path'] = DIR
132             sdk['uuid'] = UUID
133             break
134
135     if not found:
136         logging.debug('Not found in database, add: ' +
137                       PROFILE + '-' + ARCH + '-' + VERSION)
138         NEW_SDK = {
139             'name': PROFILE + '-' + ARCH + '-' + VERSION,
140             'uuid': UUID,
141             'description': 'AGL SDK ' + ARCH + ' (version ' + VERSION + ')',
142             'profile': PROFILE,
143             'version': VERSION,
144             'arch': ARCH,
145             'path': DIR,
146             'url': "",
147             'status': "Installed",
148             'date': SDK_DATE,
149             'size': "",
150             'md5sum': "",
151             'setupFile': one_sdk['ENV_FILE']
152         }
153         SDK_DB_JSON.append(NEW_SDK)
154
155 print(json.dumps(SDK_DB_JSON))