Skip to content

Commit 81d18d1

Browse files
BenjaminLawsonCQ Bot Account
authored and
CQ Bot Account
committed
pw_bluetooth_sapphire: Create size report
Change-Id: Idc17d1415b1d67f377b34ac144b36237d7e23221 Reviewed-on: https://pigweed-review.googlesource.com/c/pigweed/pigweed/+/239506 Reviewed-by: Lulu Wang <luluwang@google.com> Reviewed-by: Kayce Basques <kayce@google.com> Commit-Queue: Ben Lawson <benlawson@google.com> Lint: Lint 🤖 <android-build-ayeaye@system.gserviceaccount.com>
1 parent c9ad96c commit 81d18d1

File tree

10 files changed

+205
-13
lines changed

10 files changed

+205
-13
lines changed

docs/module_metadata.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@
129129
"pw_bluetooth_sapphire": {
130130
"tagline": "Battle-tested Bluetooth with rock-solid reliability",
131131
"status": "unstable",
132-
"size": "1.5 to 2 mB",
132+
"size": "500 to 700 kB",
133133
"languages": [
134134
"C++17"
135135
]

pw_bluetooth_sapphire/BUILD.gn

+3-7
Original file line numberDiff line numberDiff line change
@@ -13,18 +13,12 @@
1313
# the License.
1414

1515
import("//build_overrides/pigweed.gni")
16+
import("$dir_pw_bluetooth_sapphire/sapphire.gni")
1617
import("$dir_pw_build/module_config.gni")
1718
import("$dir_pw_build/target_types.gni")
1819
import("$dir_pw_docgen/docs.gni")
1920
import("$dir_pw_unit_test/test.gni")
2021

21-
declare_args() {
22-
# The build target that overrides the default configuration options for this
23-
# module. This should point to a source set that provides defines through a
24-
# public config (which may -include a file or add defines directly).
25-
pw_bluetooth_sapphire_CONFIG = pw_build_DEFAULT_MODULE_CONFIG
26-
}
27-
2822
config("public_include_path") {
2923
include_dirs = [ "public" ]
3024
}
@@ -58,7 +52,9 @@ pw_doc_group("docs") {
5852
"host/att/docs.rst",
5953
"host/gap/docs.rst",
6054
"host/l2cap/docs.rst",
55+
"size_report.rst",
6156
]
57+
report_deps = [ "size_report:host_size_diff" ]
6258
}
6359

6460
# Satisfies source_is_in_gn_build lint, which doesn't know about the BUILD.gn

pw_bluetooth_sapphire/docs.rst

+5-1
Original file line numberDiff line numberDiff line change
@@ -258,6 +258,10 @@ Roadmap
258258
.. toctree::
259259
:maxdepth: 1
260260

261-
Fuchsia Development <fuchsia>
261+
fuchsia
262+
size_report
262263

264+
.. _fuchsia/prebuilt/bt-host: https://chrome-infra-packages.appspot.com/p/fuchsia/prebuilt/bt-host
265+
.. _fuchsia/prebuilt/bt-hci-virtual: https://chrome-infra-packages.appspot.com/p/fuchsia/prebuilt/bt-hci-virtual
266+
.. _pigweed-linux-bazel-bthost: https://ci.chromium.org/ui/p/pigweed/builders/pigweed.ci/pigweed-linux-bazel-bthost
263267
.. _GN presubmit step: https://cs.opensource.google/pigweed/pigweed/+/main:pw_presubmit/py/pw_presubmit/pigweed_presubmit.py?q=gn_chre_googletest_nanopb_sapphire_build

pw_bluetooth_sapphire/host/BUILD.gn

+1-4
Original file line numberDiff line numberDiff line change
@@ -18,14 +18,11 @@ import("//build_overrides/pigweed.gni")
1818
import("$dir_pigweed/third_party/emboss/emboss.gni")
1919
import("$dir_pw_assert/backend.gni")
2020
import("$dir_pw_async/backend.gni")
21+
import("$dir_pw_bluetooth_sapphire/sapphire.gni")
2122
import("$dir_pw_function/function.gni")
2223
import("$dir_pw_fuzzer/fuzzer.gni")
2324
import("$dir_pw_unit_test/test.gni")
2425

25-
declare_args() {
26-
pw_bluetooth_sapphire_ENABLED = false
27-
}
28-
2926
# LINT.IfChange(copts)
3027
# Common C++ flags used in bt-host to ensure it builds in Pigweed and downstreams.
3128
# Note Fuchsia upstream has its own version of copts since this file is not

pw_bluetooth_sapphire/sapphire.gni

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
# Copyright 2024 The Pigweed Authors
2+
#
3+
# Licensed under the Apache License, Version 2.0 (the "License"); you may not
4+
# use this file except in compliance with the License. You may obtain a copy of
5+
# the License at
6+
#
7+
# https://www.apache.org/licenses/LICENSE-2.0
8+
#
9+
# Unless required by applicable law or agreed to in writing, software
10+
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
11+
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
12+
# License for the specific language governing permissions and limitations under
13+
# the License.
14+
15+
import("//build_overrides/pigweed.gni")
16+
import("$dir_pw_build/module_config.gni")
17+
18+
declare_args() {
19+
pw_bluetooth_sapphire_ENABLED = false
20+
21+
# The build target that overrides the default configuration options for this
22+
# module. This should point to a source set that provides defines through a
23+
# public config (which may -include a file or add defines directly).
24+
pw_bluetooth_sapphire_CONFIG = pw_build_DEFAULT_MODULE_CONFIG
25+
}

pw_bluetooth_sapphire/size_report.rst

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
.. _module-pw_bluetooth_sapphire-size_report:
2+
3+
===========
4+
Size report
5+
===========
6+
.. pigweed-module-subpage::
7+
:name: pw_bluetooth_sapphire
8+
9+
.. include:: size_report/host_size_diff
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# Copyright 2024 The Pigweed Authors
2+
#
3+
# Licensed under the Apache License, Version 2.0 (the "License"); you may not
4+
# use this file except in compliance with the License. You may obtain a copy of
5+
# the License at
6+
#
7+
# https://www.apache.org/licenses/LICENSE-2.0
8+
#
9+
# Unless required by applicable law or agreed to in writing, software
10+
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
11+
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
12+
# License for the specific language governing permissions and limitations under
13+
# the License.
14+
15+
filegroup(
16+
name = "satisfy_presubmit",
17+
srcs = [
18+
"host.cc",
19+
"wrap_getentropy.cc",
20+
],
21+
)
+63
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,63 @@
1+
# Copyright 2024 The Pigweed Authors
2+
#
3+
# Licensed under the Apache License, Version 2.0 (the "License"); you may not
4+
# use this file except in compliance with the License. You may obtain a copy of
5+
# the License at
6+
#
7+
# https://www.apache.org/licenses/LICENSE-2.0
8+
#
9+
# Unless required by applicable law or agreed to in writing, software
10+
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
11+
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
12+
# License for the specific language governing permissions and limitations under
13+
# the License.
14+
15+
import("//build_overrides/pigweed.gni")
16+
import("$dir_pw_bloat/bloat.gni")
17+
import("$dir_pw_bluetooth_sapphire/sapphire.gni")
18+
import("$dir_pw_build/target_types.gni")
19+
20+
config("getentropy_wrap_config") {
21+
ldflags = [ "-Wl,--wrap=getentropy" ]
22+
visibility = [ ":*" ]
23+
}
24+
25+
pw_source_set("wrap_getentropy") {
26+
all_dependent_configs = [ ":getentropy_wrap_config" ]
27+
sources = [ "wrap_getentropy.cc" ]
28+
}
29+
30+
pw_executable("host") {
31+
sources = [ "host.cc" ]
32+
deps = [
33+
":wrap_getentropy",
34+
"$dir_pw_bloat:bloat_this_binary",
35+
"$dir_pw_bluetooth_sapphire/host",
36+
]
37+
}
38+
39+
# We can only compute size when Sapphire is enabled, implying that all the
40+
# necessary GN args and dependencies (e.g. emboss, boringssl) are configured.
41+
if (pw_bluetooth_sapphire_ENABLED) {
42+
pw_size_diff("host_size_diff") {
43+
title = "Host Size Report"
44+
base = "$dir_pw_bloat:bloat_base"
45+
binaries = [
46+
{
47+
target = ":host"
48+
label = "Create and initialize host"
49+
},
50+
]
51+
}
52+
} else {
53+
pw_size_diff("host_size_diff") {
54+
title = "Host Size Report"
55+
base = "$dir_pw_bloat:bloat_base"
56+
binaries = [
57+
{
58+
target = "$dir_pw_bloat:bloat_base"
59+
label = "Packages not configured"
60+
},
61+
]
62+
}
63+
}
+55
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
// Copyright 2024 The Pigweed Authors
2+
//
3+
// Licensed under the Apache License, Version 2.0 (the "License"); you may not
4+
// use this file except in compliance with the License. You may obtain a copy of
5+
// the License at
6+
//
7+
// https://www.apache.org/licenses/LICENSE-2.0
8+
//
9+
// Unless required by applicable law or agreed to in writing, software
10+
// distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
11+
// WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
12+
// License for the specific language governing permissions and limitations under
13+
// the License.
14+
15+
#include "pw_bloat/bloat_this_binary.h"
16+
#include "pw_bluetooth_sapphire/internal/host/common/random.h"
17+
#include "pw_bluetooth_sapphire/internal/host/gap/adapter.h"
18+
#include "pw_random/random.h"
19+
20+
namespace {
21+
class BloatRandomGenerator final : public pw::random::RandomGenerator {
22+
public:
23+
void Get(pw::ByteSpan dest) override {}
24+
void InjectEntropyBits(uint32_t /*data*/,
25+
uint_fast8_t /*num_bits*/) override {}
26+
};
27+
28+
class BloatDispatcher final : public pw::async::Dispatcher {
29+
public:
30+
void PostAt(pw::async::Task& task,
31+
pw::chrono::SystemClock::time_point time) override {}
32+
bool Cancel(pw::async::Task& task) override { return true; }
33+
pw::chrono::SystemClock::time_point now() override {
34+
return pw::chrono::SystemClock::time_point::min();
35+
}
36+
};
37+
} // namespace
38+
39+
int main() {
40+
pw::bloat::BloatThisBinary();
41+
42+
BloatDispatcher dispatcher;
43+
BloatRandomGenerator random_generator;
44+
bt::set_random_generator(&random_generator);
45+
std::unique_ptr<bt::hci::Transport> transport;
46+
std::unique_ptr<bt::gatt::GATT> gatt;
47+
48+
bt::gap::Adapter::Config config{};
49+
std::unique_ptr<bt::gap::Adapter> adapter = bt::gap::Adapter::Create(
50+
dispatcher, transport->GetWeakPtr(), gatt->GetWeakPtr(), config);
51+
auto gap_init_cb = [](bool success) {};
52+
auto transport_closed_cb = []() {};
53+
adapter->Initialize(std::move(gap_init_cb), std::move(transport_closed_cb));
54+
return 0;
55+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
// Copyright 2024 The Pigweed Authors
2+
//
3+
// Licensed under the Apache License, Version 2.0 (the "License"); you may not
4+
// use this file except in compliance with the License. You may obtain a copy of
5+
// the License at
6+
//
7+
// https://www.apache.org/licenses/LICENSE-2.0
8+
//
9+
// Unless required by applicable law or agreed to in writing, software
10+
// distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
11+
// WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
12+
// License for the specific language governing permissions and limitations under
13+
// the License.
14+
15+
// This file provides an implementation of getentropy that can be
16+
// used with ld's --wrap option.
17+
18+
#include <unistd.h>
19+
20+
extern "C" int __wrap_getentropy(void* /*buffer*/, size_t /*length*/) {
21+
return 0;
22+
}

0 commit comments

Comments
 (0)