X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=blobdiff_plain;f=scripts%2Fsdks%2Fagl%2Fdb-dump;h=e5ee8c8a591ae90a1f116ee2a0e827f921d2bb51;hb=79333f3eca65f37542e217f37e305ea81f6e42a4;hp=77f729ee36dc7d6e7d5432b3bec53fd0c9033f4c;hpb=297955b744110f67dad475e628bf068ec849b190;p=src%2Fxds%2Fxds-server.git diff --git a/scripts/sdks/agl/db-dump b/scripts/sdks/agl/db-dump index 77f729e..e5ee8c8 100755 --- a/scripts/sdks/agl/db-dump +++ b/scripts/sdks/agl/db-dump @@ -1,6 +1,6 @@ -#!/usr/bin/python +#!/usr/bin/python3 # -#/************************************************************************** +# /************************************************************************** # * Copyright 2017-2018 IoT.bzh # * # * author: Romain Forlot @@ -19,34 +19,46 @@ # **************************************************************************/ import os +import sys import json import logging import inspect import fnmatch import argparse import subprocess +import re -PARSER = argparse.ArgumentParser(description='Lists available and installed SDKs') +PARSER = argparse.ArgumentParser( + description='Lists available and installed SDKs') PARSER.add_argument('-debug', dest='debug', action='store_true', help='Output debug log messages') ARGS = PARSER.parse_args() if ARGS.debug: - logging.basicConfig(level=logging.DEBUG, format='%(asctime)s:%(levelname)s: %(message)s') + logging.basicConfig(level=logging.DEBUG, + format='%(asctime)s:%(levelname)s: %(message)s') else: - logging.basicConfig(level=logging.INFO, format='%(asctime)s:%(levelname)s: %(message)s') + logging.basicConfig(level=logging.INFO, + format='%(asctime)s:%(levelname)s: %(message)s') -SCRIPT_PATH = os.path.dirname(os.path.abspath(inspect.getfile(inspect.currentframe()))) +SCRIPT_PATH = os.path.dirname(os.path.abspath( + inspect.getfile(inspect.currentframe()))) -ENV = subprocess.check_output([os.path.join(SCRIPT_PATH, './_env-init.sh'), '-print']).splitlines() +ENV = subprocess.check_output( + [os.path.join(SCRIPT_PATH, './_env-init.sh'), '-print']).splitlines() +SDK_ROOT_DIR = None for elt in ENV: - k, v = elt.split('=', 1) - if k == 'SDK_ROOT_DIR': - SDK_ROOT_DIR = v - elif k == 'SDK_ENV_SETUP_FILENAME': - SDK_ENV_SETUP_FILENAME = v + # only match what defines a variable + z = re.match(r"^(\w+)=([^']*)$", elt.decode()) + if z: + k = z.group(1) + v = z.group(2) + if k == 'SDK_ROOT_DIR': + SDK_ROOT_DIR = v.rstrip('/') + elif k == 'SDK_ENV_SETUP_FILENAME': + SDK_ENV_SETUP_FILENAME = v if SDK_ROOT_DIR is None: logging.error('No SDK_ROOT_DIR environment variable found.') @@ -55,76 +67,127 @@ elif SDK_ENV_SETUP_FILENAME is None: SDK_ENV_SETUP_FILENAME = 'environment-setup*' # Get list of available SDKs -SDK_DB_FILEPATH = os.path.join(SDK_ROOT_DIR, "sdks_latest.json") +SDK_DB_FILEPATH = os.path.join(SDK_ROOT_DIR, 'sdks_latest.json') if not os.path.exists(SDK_DB_FILEPATH): DB_UPDATE_FILEPATH = os.path.join(SCRIPT_PATH, 'db-update') - os.system(DB_UPDATE_FILEPATH + " " + SDK_DB_FILEPATH) + os.system(DB_UPDATE_FILEPATH + ' ' + SDK_DB_FILEPATH) SDK_DB_JSON = json.load(open(SDK_DB_FILEPATH, 'r')) for one_sdk in SDK_DB_JSON: one_sdk['status'] = 'Not Installed' + one_sdk['uuid'] = '' INSTALLED_SDK = [] for root, dirs, files in os.walk(SDK_ROOT_DIR): depth = root[len(SDK_ROOT_DIR) + len(os.path.sep):].count(os.path.sep) + # Limit the walking depth of processed directories if depth >= 4: dirs[:] = [] - EF, VF = '', '' + # Only process SDK dir matching profile/version/arch or + # profile/version/arch/tag + elif depth != 2 and depth != 3: + continue + + # Only consider SDK as valid if environment-setup and version files and + # sysroots directory can be found + EF, VF, SR = '', '', '' + for one_dir in dirs: + if fnmatch.fnmatch(one_dir, 'sysroots'): + SR = os.path.join(root, one_dir) + for one_file in files: if fnmatch.fnmatch(one_file, SDK_ENV_SETUP_FILENAME): EF = os.path.join(root, one_file) - if fnmatch.fnmatch(one_file, 'version-*'): + elif fnmatch.fnmatch(one_file, 'version-*'): VF = os.path.join(root, one_file) - if EF != '' and VF != '': - INSTALLED_SDK.append({'ENV_FILE': EF, 'VERSION_FILE': VF}) + if EF != '' and VF != '' and SR != '': + logging.debug('Adding installed SDK ' + root) + INSTALLED_SDK.append( + {'ENV_FILE': EF, 'VERSION_FILE': VF, 'SYSROOTS': SR}) + elif (EF == '' and VF != '') or (EF != '' and VF == ''): + logging.debug( + 'WARNING SDK ignored : root=%s, EnvFile=%s, VersionFile=%s, sysroots=%s', root, EF, VF, SR) for one_sdk in INSTALLED_SDK: - logging.debug("Processing %s", one_sdk['ENV_FILE']) - PROFILE = one_sdk['ENV_FILE'].split('/')[3] - VERSION = one_sdk['ENV_FILE'].split('/')[4] - ARCH = one_sdk['ENV_FILE'].split('/')[5] + logging.debug('Processing %s', one_sdk['ENV_FILE']) + envFile = one_sdk['ENV_FILE'].split(SDK_ROOT_DIR+'/')[1] + PROFILE = envFile.split('/')[0] + VERSION = envFile.split('/')[1] + ARCH = envFile.split('/')[2] + # and specific case for qemu where arch is not the same (qemux86-64 vs corei7-64) + if ARCH == 'corei7-64': + # Use /etc/rpm/platform to distinguish qemux86-64 from corei7-64 architecture + grepQemu = subprocess.call(['grep', '-q', 'qemux86', os.path.join( + one_sdk['SYSROOTS'], 'corei7-64-agl-linux', 'etc', 'rpm', 'platform')]) + if grepQemu == 0: + ARCH = 'qemux86-64' + DIR = os.path.dirname(one_sdk['ENV_FILE']) if PROFILE == '' or VERSION == '' or ARCH == '' or DIR == '': logging.debug('Path not compliant, skipping') continue + UUID = os.path.basename(os.path.normpath(DIR)) + SDK_DATE = '' for line in open(one_sdk['VERSION_FILE']).readlines(): if line.startswith('Timestamp'): D = line.split(':')[1] if D: D = D.strip() - SDK_DATE = '{}-{}-{} {}:{}'.format(D[0:4], D[4:6], D[6:8], D[8:10], D[10:12]) + SDK_DATE = '{}-{}-{} {}:{}'.format( + D[0:4], D[4:6], D[6:8], D[8:10], D[10:12]) logging.debug('Found date: %s', SDK_DATE) + # Check if installed SDKs match the ones listed in json file found = False for sdk in SDK_DB_JSON: + # Matching based on profile + version + arch fields if sdk['profile'] == PROFILE and sdk['version'] == VERSION and sdk['arch'] == ARCH: + if sdk['status'] == 'Installed': + continue + # Additional verification based on url used to generate UUID (see also same logic in add script) + if sdk['url'] != '': + try: + ps = subprocess.Popen( + ('echo', sdk['url']), stdout=subprocess.PIPE) + uuid_md5 = subprocess.check_output( + ('md5sum'), stdin=ps.stdout) + ps.wait() + if str(uuid_md5).split(' ')[0][2:] != UUID: + continue + except: + e = sys.exc_info()[0] + logging.error('Error while checking UUID: ' % e) + found = True sdk['status'] = 'Installed' sdk['date'] = SDK_DATE sdk['setupFile'] = one_sdk['ENV_FILE'] sdk['path'] = DIR + sdk['uuid'] = UUID break if not found: - logging.debug('Not found in database, adding it...') + logging.debug('Not found in database, add: ' + + PROFILE + '-' + ARCH + '-' + VERSION) NEW_SDK = { 'name': PROFILE + '-' + ARCH + '-' + VERSION, + 'uuid': UUID, 'description': 'AGL SDK ' + ARCH + ' (version ' + VERSION + ')', 'profile': PROFILE, 'version': VERSION, 'arch': ARCH, 'path': DIR, - 'url': "", - 'status': "Installed", + 'url': '', + 'status': 'Installed', 'date': SDK_DATE, - 'size': "", - 'md5sum': "", + 'size': '', + 'md5sum': '', 'setupFile': one_sdk['ENV_FILE'] - } + } SDK_DB_JSON.append(NEW_SDK) -print json.dumps(SDK_DB_JSON) +print(json.dumps(SDK_DB_JSON))