Skip to content

Commit

Permalink
Merge branch 'master' into master
Browse files Browse the repository at this point in the history
  • Loading branch information
andy31415 authored Oct 8, 2024
2 parents a0a7eee + 4a21a8d commit 966f7c0
Show file tree
Hide file tree
Showing 15 changed files with 111 additions and 20 deletions.
11 changes: 11 additions & 0 deletions .devcontainer/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ RUN apt-get update \
valgrind \
docker.io \
iputils-ping \
icecc \
&& :

RUN groupadd -g $USER_GID $USERNAME \
Expand Down Expand Up @@ -80,3 +81,13 @@ ENV TIZEN_ROOTFS /tizen_rootfs

# Fast Model GDB plugins path for debugging support
ENV FAST_MODEL_PLUGINS_PATH /opt/FastModelsPortfolio_11.16/plugins/Linux64_GCC-9.3

# Set up ccache as a pigweed command launcher when using the scripts/build/build_examples.py
# script. Also, set up icecc as the command prefix for ccache. Such setup allows to benefit
# from compilation caching and distributed compilation at the same time.
#
# NOTE: In order to use distributed compilation with icecc, one should run
# "scripts/icecc.sh start" before starting the build.
ENV CHIP_PW_COMMAND_LAUNCHER ccache
ENV CCACHE_PREFIX icecc
ENV PATH /usr/lib/ccache:$PATH
7 changes: 0 additions & 7 deletions .pullapprove.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,13 +33,6 @@ overrides:
status: success
explanation: "Review not required unless merging to master"

############################################################
# Required status checks
############################################################
- if: "'restyled' not in check_runs.successful"
status: failure
explanation: "Restyled workflow must be successful"

############################################################
# Require Issues
############################################################
Expand Down
8 changes: 5 additions & 3 deletions scripts/build/build/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,10 @@
from enum import Enum, auto
from typing import Sequence

from .targets import BUILD_TARGETS
from builders.builder import BuilderOptions

from .targets import BUILD_TARGETS


class BuildSteps(Enum):
GENERATED = auto()
Expand All @@ -18,11 +19,12 @@ class Context:
to generate make/ninja instructions and to compile.
"""

def __init__(self, runner, repository_path: str, output_prefix: str):
def __init__(self, runner, repository_path: str, output_prefix: str, ninja_jobs: int):
self.builders = []
self.runner = runner
self.repository_path = repository_path
self.output_prefix = output_prefix
self.ninja_jobs = ninja_jobs
self.completed_steps = set()

def SetupBuilders(self, targets: Sequence[str], options: BuilderOptions):
Expand All @@ -36,7 +38,7 @@ def SetupBuilders(self, targets: Sequence[str], options: BuilderOptions):
found = False
for choice in BUILD_TARGETS:
builder = choice.Create(target, self.runner, self.repository_path,
self.output_prefix, options)
self.output_prefix, self.ninja_jobs, options)
if builder:
self.builders.append(builder)
found = True
Expand Down
3 changes: 2 additions & 1 deletion scripts/build/build/target.py
Original file line number Diff line number Diff line change
Expand Up @@ -389,7 +389,7 @@ def StringIntoTargetParts(self, value: str):
return _StringIntoParts(value, suffix, self.fixed_targets, self.modifiers)

def Create(self, name: str, runner, repository_path: str, output_prefix: str,
builder_options: BuilderOptions):
ninja_jobs: int, builder_options: BuilderOptions):

parts = self.StringIntoTargetParts(name)

Expand All @@ -406,6 +406,7 @@ def Create(self, name: str, runner, repository_path: str, output_prefix: str,
builder.target = self
builder.identifier = name
builder.output_dir = os.path.join(output_prefix, name)
builder.ninja_jobs = ninja_jobs
builder.chip_dir = os.path.abspath(repository_path)
builder.options = builder_options

Expand Down
13 changes: 10 additions & 3 deletions scripts/build/build_examples.py
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,13 @@ def ValidateTargetNames(context, parameter, values):
default='./out',
type=click.Path(file_okay=False, resolve_path=True),
help='Prefix for the generated file output.')
@click.option(
'--ninja-jobs',
type=int,
is_flag=False,
flag_value=0,
default=None,
help='Number of ninja jobs')
@click.option(
'--pregen-dir',
default=None,
Expand Down Expand Up @@ -136,8 +143,8 @@ def ValidateTargetNames(context, parameter, values):
'for using ccache when building examples.'))
@click.pass_context
def main(context, log_level, target, enable_link_map_file, repo,
out_prefix, pregen_dir, clean, dry_run, dry_run_output, enable_flashbundle,
no_log_timestamps, pw_command_launcher):
out_prefix, ninja_jobs, pregen_dir, clean, dry_run, dry_run_output,
enable_flashbundle, no_log_timestamps, pw_command_launcher):
# Ensures somewhat pretty logging of what is going on
log_fmt = '%(asctime)s %(levelname)-7s %(message)s'
if no_log_timestamps:
Expand All @@ -161,7 +168,7 @@ def main(context, log_level, target, enable_link_map_file, repo,
logging.info('Building targets: %s', CommaSeparate(requested_targets))

context.obj = build.Context(
repository_path=repo, output_prefix=out_prefix, runner=runner)
repository_path=repo, output_prefix=out_prefix, ninja_jobs=ninja_jobs, runner=runner)
context.obj.SetupBuilders(targets=requested_targets, options=BuilderOptions(
enable_link_map_file=enable_link_map_file,
enable_flashbundle=enable_flashbundle,
Expand Down
8 changes: 6 additions & 2 deletions scripts/build/builders/ameba.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,8 +85,12 @@ def generate(self):
title='Generating ' + self.identifier)

def _build(self):
self._Execute(['ninja', '-C', self.output_dir],
title='Building ' + self.identifier)
cmd = ['ninja', '-C', self.output_dir]

if self.ninja_jobs is not None:
cmd.append('-j' + str(self.ninja_jobs))

self._Execute(cmd, title='Building ' + self.identifier)

def build_outputs(self):
yield BuilderOutput(
Expand Down
7 changes: 6 additions & 1 deletion scripts/build/builders/android.py
Original file line number Diff line number Diff line change
Expand Up @@ -466,8 +466,13 @@ def _build(self):
title="Building APP " + self.identifier,
)
else:
cmd = ["ninja", "-C", self.output_dir]

if self.ninja_jobs is not None:
cmd.append('-j' + str(self.ninja_jobs))

self._Execute(
["ninja", "-C", self.output_dir],
cmd,
title="Building JNI " + self.identifier,
)

Expand Down
2 changes: 2 additions & 0 deletions scripts/build/builders/gn.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,8 @@ def _build(self):
self.PreBuildCommand()

cmd = ['ninja', '-C', self.output_dir]
if self.ninja_jobs is not None:
cmd.append('-j' + str(self.ninja_jobs))
if self.build_command:
cmd.append(self.build_command)

Expand Down
9 changes: 8 additions & 1 deletion scripts/build/builders/host.py
Original file line number Diff line number Diff line change
Expand Up @@ -570,7 +570,14 @@ def generate(self):

def PreBuildCommand(self):
if self.app == HostApp.TESTS and self.use_coverage:
self._Execute(['ninja', '-C', self.output_dir, 'default'], title="Build-only")
cmd = ['ninja', '-C', self.output_dir]

if self.ninja_jobs is not None:
cmd.append('-j' + str(self.ninja_jobs))

cmd.append('default')

self._Execute(cmd, title="Build-only")
self._Execute(['lcov', '--initial', '--capture', '--directory', os.path.join(self.output_dir, 'obj'),
'--exclude', os.path.join(self.chip_dir, '**/tests/*'),
'--exclude', os.path.join(self.chip_dir, 'zzz_generated/*'),
Expand Down
8 changes: 6 additions & 2 deletions scripts/build/builders/nrf.py
Original file line number Diff line number Diff line change
Expand Up @@ -215,8 +215,12 @@ def generate(self):
def _build(self):
logging.info('Compiling NrfConnect at %s', self.output_dir)

self._Execute(['ninja', '-C', self.output_dir],
title='Building ' + self.identifier)
cmd = ['ninja', '-C', self.output_dir]

if self.ninja_jobs is not None:
cmd.append('-j' + str(self.ninja_jobs))

self._Execute(cmd, title='Building ' + self.identifier)

if self.app == NrfApp.UNIT_TESTS:
# Note: running zephyr/zephyr.elf has the same result except it creates
Expand Down
3 changes: 3 additions & 0 deletions scripts/build/builders/telink.py
Original file line number Diff line number Diff line change
Expand Up @@ -238,6 +238,9 @@ def _build(self):

cmd = self.get_cmd_prefixes() + ("ninja -C %s" % self.output_dir)

if self.ninja_jobs is not None:
cmd += " -j%s" % str(self.ninja_jobs)

self._Execute(['bash', '-c', cmd], title='Building ' + self.identifier)

def build_outputs(self):
Expand Down
36 changes: 36 additions & 0 deletions scripts/icecc.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
#!/usr/bin/env bash
#
# Copyright (c) 2024 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.
#

# This scripts starts or stops the iceccd.
# It's meant to be use within devcontainer.

if [ "$1" = "start" ]; then
IFS='.' read -ra PARTS <<<"$HOSTNAME"
if iceccd -d -m 0 -N "devcontainer-${PARTS[0]}"; then
echo "iceccd started"
else
echo "Failed to start iceccd"
fi
fi

if [ "$1" = "stop" ]; then
if pkill icecc; then
echo "iceccd stopped"
else
echo "Failed to stop iceccd"
fi
fi
6 changes: 6 additions & 0 deletions src/app/InteractionModelEngine.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,7 @@ CHIP_ERROR InteractionModelEngine::Init(Messaging::ExchangeManager * apExchangeM
VerifyOrReturnError(apExchangeMgr != nullptr, CHIP_ERROR_INVALID_ARGUMENT);
VerifyOrReturnError(reportScheduler != nullptr, CHIP_ERROR_INVALID_ARGUMENT);

mState = State::kInitializing;
mpExchangeMgr = apExchangeMgr;
mpFabricTable = apFabricTable;
mpCASESessionMgr = apCASESessionMgr;
Expand All @@ -111,11 +112,14 @@ CHIP_ERROR InteractionModelEngine::Init(Messaging::ExchangeManager * apExchangeM
ChipLogError(InteractionModel, "WARNING └────────────────────────────────────────────────────");
#endif

mState = State::kInitialized;
return CHIP_NO_ERROR;
}

void InteractionModelEngine::Shutdown()
{
VerifyOrReturn(State::kUninitialized != mState);

mpExchangeMgr->GetSessionManager()->SystemLayer()->CancelTimer(ResumeSubscriptionsTimerCallback, this);

// TODO: individual object clears the entire command handler interface registry.
Expand Down Expand Up @@ -187,6 +191,8 @@ void InteractionModelEngine::Shutdown()
//
// mpFabricTable = nullptr;
// mpExchangeMgr = nullptr;

mState = State::kUninitialized;
}

uint32_t InteractionModelEngine::GetNumActiveReadHandlers() const
Expand Down
8 changes: 8 additions & 0 deletions src/app/InteractionModelEngine.h
Original file line number Diff line number Diff line change
Expand Up @@ -713,6 +713,14 @@ class InteractionModelEngine : public Messaging::UnsolicitedMessageHandler,
DataModel::Provider * mDataModelProvider = nullptr;
Messaging::ExchangeContext * mCurrentExchange = nullptr;

enum class State : uint8_t
{
kUninitialized, // The object has not been initialized.
kInitializing, // Initial setup is in progress (e.g. setting up mpExchangeMgr).
kInitialized // The object has been fully initialized and is ready for use.
};
State mState = State::kUninitialized;

// Changes the current exchange context of a InteractionModelEngine to a given context
class CurrentExchangeValueScope
{
Expand Down
2 changes: 2 additions & 0 deletions src/app/server/CommissioningWindowManager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,8 @@ void CommissioningWindowManager::OnPlatformEvent(const DeviceLayer::ChipDeviceEv

void CommissioningWindowManager::Shutdown()
{
VerifyOrReturn(nullptr != mServer);

StopAdvertisement(/* aShuttingDown = */ true);

ResetState();
Expand Down

0 comments on commit 966f7c0

Please sign in to comment.