|
| 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 | +} |
0 commit comments