2017-06-14 13:36:37 +02:00
|
|
|
# kas - setup tool for bitbake based projects
|
|
|
|
#
|
2018-09-05 11:13:03 +02:00
|
|
|
# Copyright (c) Siemens AG, 2017-2018
|
2017-06-14 13:36:37 +02:00
|
|
|
#
|
|
|
|
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
# of this software and associated documentation files (the "Software"), to deal
|
|
|
|
# in the Software without restriction, including without limitation the rights
|
|
|
|
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
# copies of the Software, and to permit persons to whom the Software is
|
|
|
|
# furnished to do so, subject to the following conditions:
|
|
|
|
#
|
|
|
|
# The above copyright notice and this permission notice shall be
|
|
|
|
# included in all copies or substantial portions of the Software.
|
|
|
|
#
|
|
|
|
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
|
|
# SOFTWARE.
|
2017-06-21 13:32:56 +02:00
|
|
|
"""
|
|
|
|
This module contains a kas plugin that opens a shell within the kas
|
|
|
|
environment
|
|
|
|
"""
|
2017-06-14 13:36:37 +02:00
|
|
|
|
|
|
|
import subprocess
|
2018-01-08 16:46:16 +01:00
|
|
|
import os
|
2018-08-24 19:17:55 +02:00
|
|
|
from .libkas import kasplugin
|
2018-08-24 19:17:58 +02:00
|
|
|
from .context import create_global_context
|
2018-08-24 19:17:59 +02:00
|
|
|
from .config import Config
|
2018-08-24 19:17:55 +02:00
|
|
|
from .libcmds import (Macro, Command, SetupDir, SetupEnviron,
|
|
|
|
WriteBBConfig, SetupHome, ReposApplyPatches,
|
2018-09-05 11:13:01 +02:00
|
|
|
CleanupSSHAgent, SetupSSHAgent,
|
|
|
|
Loop, InitSetupRepos, FinishSetupRepos,
|
|
|
|
SetupReposStep)
|
2017-06-14 13:36:37 +02:00
|
|
|
|
|
|
|
__license__ = 'MIT'
|
2018-09-05 11:13:03 +02:00
|
|
|
__copyright__ = 'Copyright (c) Siemens AG, 2017-2018'
|
2017-06-14 13:36:37 +02:00
|
|
|
|
|
|
|
|
2017-06-28 14:48:41 +02:00
|
|
|
@kasplugin
|
2017-06-14 13:36:37 +02:00
|
|
|
class Shell:
|
2017-06-21 13:32:56 +02:00
|
|
|
"""
|
|
|
|
Implements a kas plugin that opens a shell within the kas environment.
|
|
|
|
"""
|
|
|
|
|
2017-06-28 14:48:41 +02:00
|
|
|
@classmethod
|
|
|
|
def get_argparser(cls, parser):
|
|
|
|
"""
|
|
|
|
Returns a parser for the shell plugin
|
|
|
|
"""
|
2017-06-28 14:48:44 +02:00
|
|
|
sh_prs = parser.add_parser('shell',
|
|
|
|
help='Run a shell in the build '
|
|
|
|
'environment.')
|
2017-06-14 13:36:37 +02:00
|
|
|
|
|
|
|
sh_prs.add_argument('config',
|
|
|
|
help='Config file')
|
|
|
|
sh_prs.add_argument('--skip',
|
|
|
|
help='Skip build steps',
|
|
|
|
default=[])
|
2017-08-01 10:31:49 +02:00
|
|
|
sh_prs.add_argument('-k', '--keep-config-unchanged',
|
|
|
|
help='Skip steps that change the configuration',
|
|
|
|
action='store_true')
|
2017-06-14 13:36:37 +02:00
|
|
|
sh_prs.add_argument('-c', '--command',
|
|
|
|
help='Run command',
|
|
|
|
default='')
|
|
|
|
|
|
|
|
def run(self, args):
|
2017-06-21 13:32:56 +02:00
|
|
|
"""
|
|
|
|
Runs this kas plugin
|
|
|
|
"""
|
|
|
|
|
2017-06-14 13:36:37 +02:00
|
|
|
if args.cmd != 'shell':
|
|
|
|
return False
|
|
|
|
|
2018-08-24 19:17:59 +02:00
|
|
|
ctx = create_global_context()
|
2018-11-02 14:04:39 +01:00
|
|
|
ctx.config = Config(args.config, None, None)
|
2017-06-14 13:36:37 +02:00
|
|
|
|
|
|
|
macro = Macro()
|
|
|
|
|
2018-01-08 16:46:16 +01:00
|
|
|
# Prepare
|
2017-08-01 10:31:49 +02:00
|
|
|
if not args.keep_config_unchanged:
|
|
|
|
macro.add(SetupDir())
|
|
|
|
|
2018-01-08 16:46:16 +01:00
|
|
|
if 'SSH_PRIVATE_KEY' in os.environ:
|
|
|
|
macro.add(SetupSSHAgent())
|
|
|
|
|
2018-08-13 14:11:22 +02:00
|
|
|
ctx.keep_config = args.keep_config_unchanged
|
2018-09-05 11:13:01 +02:00
|
|
|
|
|
|
|
macro.add(InitSetupRepos())
|
|
|
|
|
|
|
|
repo_loop = Loop('repo_setup_loop')
|
|
|
|
repo_loop.add(SetupReposStep())
|
|
|
|
|
|
|
|
macro.add(repo_loop)
|
|
|
|
macro.add(FinishSetupRepos())
|
2018-03-09 08:22:52 +01:00
|
|
|
|
|
|
|
macro.add(SetupEnviron())
|
|
|
|
macro.add(SetupHome())
|
|
|
|
|
|
|
|
if not args.keep_config_unchanged:
|
|
|
|
macro.add(ReposApplyPatches())
|
2018-08-13 14:11:22 +02:00
|
|
|
macro.add(WriteBBConfig())
|
2017-08-01 10:31:49 +02:00
|
|
|
|
2018-01-08 16:46:16 +01:00
|
|
|
# Shell
|
2017-06-14 13:36:37 +02:00
|
|
|
macro.add(ShellCommand(args.command))
|
|
|
|
|
2018-01-08 16:46:16 +01:00
|
|
|
if 'SSH_PRIVATE_KEY' in os.environ:
|
|
|
|
macro.add(CleanupSSHAgent())
|
|
|
|
|
2018-08-13 14:11:22 +02:00
|
|
|
macro.run(ctx, args.skip)
|
2017-06-14 13:36:37 +02:00
|
|
|
|
|
|
|
return True
|
|
|
|
|
|
|
|
|
|
|
|
class ShellCommand(Command):
|
2017-06-21 13:32:56 +02:00
|
|
|
"""
|
|
|
|
This class implements the command that starts a shell.
|
|
|
|
"""
|
|
|
|
|
2017-06-14 13:36:37 +02:00
|
|
|
def __init__(self, cmd):
|
2017-06-21 13:32:56 +02:00
|
|
|
super().__init__()
|
2017-06-14 13:36:37 +02:00
|
|
|
self.cmd = []
|
|
|
|
if cmd:
|
|
|
|
self.cmd = cmd
|
|
|
|
|
|
|
|
def __str__(self):
|
|
|
|
return 'shell'
|
|
|
|
|
2018-08-13 14:11:22 +02:00
|
|
|
def execute(self, ctx):
|
|
|
|
cmd = [ctx.environ.get('SHELL', '/bin/sh')]
|
2017-06-14 13:36:37 +02:00
|
|
|
if self.cmd:
|
|
|
|
cmd.append('-c')
|
|
|
|
cmd.append(self.cmd)
|
2018-08-13 14:11:22 +02:00
|
|
|
subprocess.call(cmd, env=ctx.environ,
|
|
|
|
cwd=ctx.build_dir)
|