100 lines
3.2 KiB
Python
100 lines
3.2 KiB
Python
# Copyright (c) 2015 SUSE Linux GmbH. All rights reserved.
|
|
#
|
|
# This file is part of kiwi.
|
|
#
|
|
# kiwi is free software: you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# kiwi is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with kiwi. If not, see <http://www.gnu.org/licenses/>
|
|
#
|
|
import platform
|
|
|
|
# project
|
|
from ..container import ContainerImage
|
|
from ..container_setup import ContainerSetup
|
|
from ..system_setup import SystemSetup
|
|
from ..logger import log
|
|
from ..result import Result
|
|
|
|
|
|
class ContainerBuilder(object):
|
|
"""
|
|
container image builder
|
|
"""
|
|
def __init__(self, xml_state, target_dir, root_dir):
|
|
self.root_dir = root_dir
|
|
self.target_dir = target_dir
|
|
self.requested_container_name = xml_state.build_type.get_container()
|
|
self.requested_container_type = xml_state.get_build_type_name()
|
|
self.system_setup = SystemSetup(
|
|
xml_state=xml_state, description_dir=None, root_dir=self.root_dir
|
|
)
|
|
self.filename = ''.join(
|
|
[
|
|
target_dir, '/',
|
|
xml_state.xml_data.get_name(),
|
|
'.' + platform.machine(),
|
|
'-' + xml_state.get_image_version(),
|
|
'.', self.requested_container_type, '.tar.xz'
|
|
]
|
|
)
|
|
self.result = Result(xml_state)
|
|
|
|
def create(self):
|
|
setup_options = {}
|
|
if self.requested_container_name:
|
|
setup_options['container_name'] = self.requested_container_name
|
|
|
|
container_setup = ContainerSetup(
|
|
self.requested_container_type, self.root_dir, setup_options
|
|
)
|
|
log.info('Setting up %s container', self.requested_container_type)
|
|
log.info(
|
|
'--> Container name: %s', container_setup.get_container_name()
|
|
)
|
|
container_setup.setup()
|
|
|
|
log.info(
|
|
'--> Creating container archive'
|
|
)
|
|
container_image = ContainerImage(
|
|
self.requested_container_type, self.root_dir
|
|
)
|
|
container_image.create(
|
|
self.filename
|
|
)
|
|
self.result.add(
|
|
key='container',
|
|
filename=self.filename,
|
|
use_for_bundle=True,
|
|
compress=False,
|
|
shasum=True
|
|
)
|
|
self.result.add(
|
|
key='image_packages',
|
|
filename=self.system_setup.export_rpm_package_list(
|
|
self.target_dir
|
|
),
|
|
use_for_bundle=True,
|
|
compress=False,
|
|
shasum=False
|
|
)
|
|
self.result.add(
|
|
key='image_verified',
|
|
filename=self.system_setup.export_rpm_package_verification(
|
|
self.target_dir
|
|
),
|
|
use_for_bundle=True,
|
|
compress=False,
|
|
shasum=False
|
|
)
|
|
return self.result
|