blob: dd24618e11e00eaf4a4cde270dbd1044731d7e3d [file] [log] [blame]
# Copyright (c) 2022 Project CHIP Authors
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
import os
import shlex
from enum import Enum, auto
from .builder import Builder
class OpenIotSdkApp(Enum):
SHELL = auto()
LOCK = auto()
@property
def ExampleName(self):
if self == OpenIotSdkApp.SHELL:
return 'shell'
elif self == OpenIotSdkApp.LOCK:
return 'lock-app'
else:
raise Exception('Unknown app type: %r' % self)
@property
def AppNamePrefix(self):
if self == OpenIotSdkApp.SHELL:
return 'chip-openiotsdk-shell-example'
elif self == OpenIotSdkApp.LOCK:
return 'chip-openiotsdk-lock-app-example'
else:
raise Exception('Unknown app type: %r' % self)
class OpenIotSdkBuilder(Builder):
def __init__(self,
root,
runner,
app: OpenIotSdkApp = OpenIotSdkApp.SHELL):
super(OpenIotSdkBuilder, self).__init__(root, runner)
self.app = app
self.toolchain_path = os.path.join(
'toolchains', 'toolchain-arm-none-eabi-gcc.cmake')
self.system_processor = 'cortex-m55'
@property
def ExamplePath(self):
return os.path.join(self.root, 'examples', self.app.ExampleName, 'openiotsdk')
def generate(self):
if not os.path.exists(self.output_dir):
self._Execute(['cmake', '-GNinja', '-S', shlex.quote(self.ExamplePath), '-B', shlex.quote(self.output_dir),
'--toolchain={}'.format(
shlex.quote(self.toolchain_path)),
'-DCMAKE_SYSTEM_PROCESSOR={}'.format(
self.system_processor),
], title='Generating ' + self.identifier)
def _build(self):
# Remove old artifacts to force linking
cmd = 'rm -rf {}/chip-*'.format(self.output_dir)
self._Execute(['bash', '-c', cmd],
title='Remove old artifacts ' + self.identifier)
self._Execute(['cmake', '--build', shlex.quote(self.output_dir)],
title='Building ' + self.identifier)
def build_outputs(self):
return {
self.app.AppNamePrefix + '.elf':
os.path.join(self.output_dir, self.app.AppNamePrefix + '.elf'),
self.app.AppNamePrefix + '.map':
os.path.join(self.output_dir,
self.app.AppNamePrefix + '.map'),
}