# # Collective Knowledge (individual environment - setup) # # See CK LICENSE.txt for licensing details # See CK COPYRIGHT.txt for copyright details # import os import sys import json ############################################################################## def version_cmd(i): path_with_init_py = i['full_path'] # the full_path that ends with PACKAGE_NAME/__init__.py path_without_init_py = os.path.dirname( path_with_init_py ) package_name = os.path.basename( path_without_init_py ) site_dir = os.path.dirname( path_without_init_py ) ck = i['ck_kernel'] cus = i['customize'] version_module_name = cus.get('version_module_name', '__init__') version_variable_name = cus.get('version_variable_name', '__version__') #sys.path.insert(0, site_dir) # temporarily prepend site_dir to allow the potential recursive imports to work rx=ck.load_module_from_path({'path':path_without_init_py, 'module_code_name':version_module_name, 'skip_init':'yes'}) #sys.path.pop(0) # retain the original module search path if rx['return']==0: loaded_package = rx['code'] version_string_json = getattr(loaded_package, version_variable_name) version_string_dict = json.loads(version_string_json) version_string=version_string_dict['version'] else: ck.out('Failed to import package '+package_name+' : '+rx['error']) version_string = '' return {'return':0, 'cmd':'', 'version':version_string} ############################################################################## def dirs(i): hosd = i['host_os_dict'] macos = hosd.get('macos','') #dirs = [] dirs = i.get('dirs', []) if macos: python_site_packages_dir = os.path.expanduser("~") + "/Library/Python" if os.path.isdir( python_site_packages_dir ): dirs.append( python_site_packages_dir ) return {'return':0, 'dirs':dirs} ############################################################################## def setup(i): """ Input: { cfg - meta of this soft entry self_cfg - meta of module soft ck_kernel - import CK kernel module (to reuse functions) host_os_uoa - host OS UOA host_os_uid - host OS UID host_os_dict - host OS meta target_os_uoa - target OS UOA target_os_uid - target OS UID target_os_dict - target OS meta target_device_id - target device ID (if via ADB) tags - list of tags used to search this entry env - updated environment vars from meta customize - updated customize vars from meta deps - resolved dependencies for this soft interactive - if 'yes', can ask questions, otherwise quiet } Output: { return - return code = 0, if successful > 0, if error (error) - error text if return > 0 bat - prepared string for bat file } """ # Get variables ck=i['ck_kernel'] iv=i.get('interactive','') cus=i.get('customize',{}) hosd=i['host_os_dict'] tosd=i['target_os_dict'] winh=hosd.get('windows_base','') full_path = cus.get('full_path','') path_lib = os.path.dirname(full_path) path_install = os.path.dirname(path_lib) env = i['env'] env['PYTHONPATH'] = path_install + ( ';%PYTHONPATH%' if winh=='yes' else ':${PYTHONPATH}') return {'return':0, 'bat':''}