[TIC-CORE] fix partitions info for default recipe
[archive/20170607/tools/tic-core.git] / tic / command.py
1 #!/usr/bin/python
2 # Copyright (c) 2000 - 2016 Samsung Electronics Co., Ltd. All rights reserved.
3 #
4 # Contact: 
5 # @author Chulwoo Shin <cw1.shin@samsung.com>
6
7 # Licensed under the Apache License, Version 2.0 (the "License");
8 # you may not use this file except in compliance with the License.
9 # You may obtain a copy of the License at
10 #
11 # http://www.apache.org/licenses/LICENSE-2.0
12 #
13 # Unless required by applicable law or agreed to in writing, software
14 # distributed under the License is distributed on an "AS IS" BASIS,
15 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 # See the License for the specific language governing permissions and
17 # limitations under the License.
18 #
19 # Contributors:
20 # - S-Core Co., Ltd
21
22 import os
23 import logging
24
25 from tic.dependency import get_installed_packages
26 from tic.parser.recipe_parser import get_default_recipe, convert_recipe_to_yaml
27 from tic.parser.repo_parser import RepodataParser
28 from tic.parser.view_parser import make_view_data
29 from tic.utils.error import TICError
30 from tic.utils.file import copyfile
31 from tic.repo import get_repodata_from_repos
32 from tic.pykickstarter import KSoption, kswriter
33 from tic.utils import process
34 from tic.utils import misc
35
36 DEFAULT_CACHEDIR='/var/tmp/tic-core'
37 DEFAULT_ANALYSIS_CACHEDIR='/var/tmp/tic-core/analysis'
38 DEFAULT_KICKSTARTDIR='/var/tmp/tic-core/kickstart'
39
40 def analyze(repo_list, recipe_list=None):
41     logger = logging.getLogger(__name__)
42     if not repo_list and not recipe_list:
43         raise TICError('No repositories defined')
44     repos = []
45     recipe = None
46     #TODO Repository check
47     # using default recipe (Temporary Code)
48     if recipe_list and recipe_list[0] == 'default':
49         recipe = get_default_recipe()
50         for repo_url in recipe.get('Repositories'):
51             repos.append({'name': repo_url.get('Name'),
52                           'url': repo_url.get('Url')})
53     else:
54         number=1
55         for repo_url in repo_list:
56             repos.append({'name': 'repository_%d' % number,
57                           'url': repo_url})
58             number = number + 1
59     start_time = misc.get_timestamp()
60     #Download repodata from repositories (Remote/Local)
61     repoinfo = get_repodata_from_repos(repos, DEFAULT_CACHEDIR)
62     logger.info('time to get repodata from repo: %d ms', misc.get_timestamp() - start_time)
63
64     start_time = misc.get_timestamp()
65     # Parse the xml files for the analysis of package (.rpm)
66     repo_parser = RepodataParser('armv7l', repoinfo)
67     pkg_group = repo_parser.parse()
68     logger.info('packages: %d, provides: %d, files: %d', len(pkg_group['pkg_dict']), len(pkg_group['provides']), len(pkg_group['files']))
69     logger.info('time to parse repodata: %d ms', misc.get_timestamp() - start_time)
70
71     start_time = misc.get_timestamp()
72     # Make a data for TIC (Tizen image creation)
73     view_data = make_view_data(pkg_group)
74     # analyze install-dependency
75     inst_packages = get_installed_packages(recipe, repoinfo, pkg_group)
76     logger.info('installed package: %d', len(inst_packages))
77     logger.info('time to analyze dependency: %d ms', misc.get_timestamp() - start_time)
78
79     result = {'view': view_data,
80               'data': {'packages': pkg_group.get('pkg_dict'),
81                        'provides': pkg_group.get('provides'),
82                        'files': pkg_group.get('files'),
83                        'groups': pkg_group.get('groups'),
84                        'conflicts': pkg_group.get('conflicts')},
85               'repos': repos,
86               'defaultpackages': inst_packages}
87     return result
88
89 def exports(export_type, recipe, packages, outdir, filename=None):
90     logger = logging.getLogger(__name__)
91     #TODO validation should be checked before request
92     if not export_type:
93         export_type='ks'
94         logger.info('set default export format(.ks)')
95
96     if not recipe:
97         raise TICError('No recipe defined')
98     if not packages or type(packages) is not list:
99         raise TICError('No packages defined')
100
101     #TODO recipe parsing
102     # Temporary code for 1st prototype release
103     if recipe.get('name') == 'default':
104         recipe = get_default_recipe()
105         config = recipe.get('Configurations')[0]
106         for key in ['Default', config['Platform']]:
107             recipe[key]['Groups']=[]
108             recipe[key]['ExtraPackages']=[]
109         config['Groups']=[]
110         config['ExtraPackages'] = packages
111     else:
112         raise TICError('No recipes defined')
113     
114     # create the yaml
115     yaml_info = convert_recipe_to_yaml(recipe, DEFAULT_KICKSTARTDIR)
116     
117     # create kickstart(.ks) using kickstarter tool
118     options = KSoption(yaml_info.configs, yaml_info.repos, yaml_info.cachedir)
119     kswriter(options)
120     
121     # check whether the ks exists
122     baseline=recipe['Default'].get('Baseline')
123     ksname= ''.join([config.get('FileName'), '.ks'])
124     kspath=os.path.join(yaml_info.cachedir, baseline, ksname)
125     if not os.path.exists(kspath):
126         raise TICError('No ks file was created from kickstarter')
127     
128     # copy the ks to output directory
129     output=copyfile(kspath, outdir, filename)
130     logger.info('copy the ks file from %s to dst:%s', kspath, output)
131     
132     return output
133
134 def createimage(recipes, ksfile, outdir):
135     logger = logging.getLogger(__name__)
136     
137     if recipes:
138         logger.info('the recipes option is not yet supported')
139         return
140     
141     if not os.path.exists(ksfile) or os.path.isdir(ksfile):
142         raise TICError('kickstart file does not exist')
143     
144     mic_command=['mic', 'cr', 'auto', ksfile]
145     if outdir:
146         mic_command.append('--outdir=%s' % outdir)
147     
148     process.run(mic_command, 2)