/* * Copyright 2022 The Android Open Source Project * * 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. */ #define LOG_TAG "bt_headless_discovery" #include "test/headless/discovery/discovery.h" #include #include "btif/include/btif_api.h" #include "os/log.h" // android log only #include "stack/include/sdp_api.h" #include "test/headless/bt_property.h" #include "test/headless/get_options.h" #include "test/headless/headless.h" #include "test/headless/interface.h" #include "test/headless/log.h" #include "test/headless/messenger.h" #include "test/headless/sdp/sdp.h" #include "test/headless/stopwatch.h" #include "test/headless/timeout.h" #include "types/bluetooth/uuid.h" #include "types/raw_address.h" using namespace bluetooth::test::headless; using namespace std::chrono_literals; namespace { int start_discovery([[maybe_unused]] unsigned int num_loops, const RawAddress& raw_address) { RawAddress bd_addr{raw_address}; Stopwatch acl_stopwatch("ACL_connection"); Stopwatch sdp_stopwatch("SDP_discovery"); LOG_CONSOLE("Started service discovery %s", bd_addr.ToString().c_str()); LOG_CONSOLE("Dumpsys system"); bluetoothInterface.dump(2, nullptr); LOG_CONSOLE("Done dumpsys system"); return 0; } } // namespace int bluetooth::test::headless::Discovery::Run() { if (options_.loop_ < 1) { LOG_CONSOLE("This test requires at least a single loop"); options_.Usage(); return -1; } if (options_.device_.size() != 1) { LOG_CONSOLE("This test requires a single device specified"); options_.Usage(); return -1; } return RunOnHeadlessStack([this]() { return start_discovery(options_.loop_, options_.device_.front()); }); }