Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit b5528e6e authored by Hansong Zhang's avatar Hansong Zhang
Browse files

Cert: Move Read local MAC address to a special server

Reading local MAC address will be used in all tests. Currently only HCI
facade exposes this API. Instead we should move it to another server and
let all tests be able to use it.

Test: cert/run_cert.sh
Change-Id: Id2a17476670a4c56ff1a5f2d7edfd95dba126285
parent 88df5568
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -131,6 +131,7 @@ cc_binary {
    srcs: [
        "facade/facade_main.cc",
        "facade/grpc_root_server.cc",
        "facade/read_only_property_server.cc",
        "grpc/grpc_module.cc",
        ":BluetoothFacade_hci_hal",
        ":BluetoothFacade_hci_layer",
@@ -176,6 +177,7 @@ cc_binary {
    srcs: [
        "cert/cert_main.cc",
        "cert/grpc_root_server.cc",
        "cert/read_only_property_server.cc",
        "grpc/grpc_module.cc",
        ":BluetoothCertSource_hci_hal",
        ":BluetoothCertSource_hci_layer",
+1 −0
Original line number Diff line number Diff line
@@ -66,6 +66,7 @@ class GdCertDevice(GdDeviceBase):
        # Cert stubs
        self.rootservice = cert_rootservice_pb2_grpc.RootCertStub(self.grpc_root_server_channel)
        self.hal = hal_cert_pb2_grpc.HciHalCertStub(self.grpc_channel)
        self.controller_read_only_property = cert_rootservice_pb2_grpc.ReadOnlyPropertyStub(self.grpc_channel)
        self.hci = hci_cert_pb2_grpc.AclManagerCertStub(self.grpc_channel)
        self.l2cap = l2cap_cert_pb2_grpc.L2capModuleCertStub(self.grpc_channel)

+1 −0
Original line number Diff line number Diff line
@@ -66,6 +66,7 @@ class GdDevice(GdDeviceBase):
        # Facade stubs
        self.rootservice = facade_rootservice_pb2_grpc.RootFacadeStub(self.grpc_root_server_channel)
        self.hal = hal_facade_pb2_grpc.HciHalFacadeStub(self.grpc_channel)
        self.controller_read_only_property = facade_rootservice_pb2_grpc.ReadOnlyPropertyStub(self.grpc_channel)
        self.hci = hci_facade_pb2_grpc.AclManagerFacadeStub(self.grpc_channel)
        self.hci_classic_security = hci_facade_pb2_grpc.ClassicSecurityManagerFacadeStub(self.grpc_channel)
        self.l2cap = l2cap_facade_pb2_grpc.L2capModuleFacadeStub(self.grpc_channel)
+3 −0
Original line number Diff line number Diff line
@@ -18,6 +18,7 @@

#include <string>

#include "cert/read_only_property_server.h"
#include "cert/rootservice.grpc.pb.h"
#include "grpc/grpc_module.h"
#include "hal/cert/cert.h"
@@ -53,9 +54,11 @@ class RootCertService : public ::bluetooth::cert::RootCert::Service {
        modules.add<::bluetooth::hal::cert::HalCertModule>();
        break;
      case BluetoothModule::HCI:
        modules.add<::bluetooth::cert::ReadOnlyPropertyServerModule>();
        modules.add<::bluetooth::hci::cert::AclManagerCertModule>();
        break;
      case BluetoothModule::L2CAP:
        modules.add<::bluetooth::cert::ReadOnlyPropertyServerModule>();
        modules.add<::bluetooth::l2cap::cert::L2capModuleCertModule>();
        break;
      default:
+57 −0
Original line number Diff line number Diff line
/*
 * Copyright 2019 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.
 */

#include "cert/read_only_property_server.h"
#include "hci/controller.h"

namespace bluetooth {
namespace cert {

class ReadOnlyPropertyService : public ReadOnlyProperty::Service {
 public:
  ReadOnlyPropertyService(hci::Controller* controller) : controller_(controller) {}
  ::grpc::Status ReadLocalAddress(::grpc::ServerContext* context, const ::google::protobuf::Empty* request,
                                  ::bluetooth::facade::BluetoothAddress* response) override {
    auto address = controller_->GetControllerMacAddress().ToString();
    response->set_address(address);
    return ::grpc::Status::OK;
  }

 private:
  hci::Controller* controller_;
};

void ReadOnlyPropertyServerModule::ListDependencies(ModuleList* list) {
  GrpcFacadeModule::ListDependencies(list);
  list->add<hci::Controller>();
}
void ReadOnlyPropertyServerModule::Start() {
  GrpcFacadeModule::Start();
  service_ = std::make_unique<ReadOnlyPropertyService>(GetDependency<hci::Controller>());
}
void ReadOnlyPropertyServerModule::Stop() {
  service_.reset();
  GrpcFacadeModule::Stop();
}
::grpc::Service* ReadOnlyPropertyServerModule::GetService() const {
  return service_.get();
}

const ModuleFactory ReadOnlyPropertyServerModule::Factory =
    ::bluetooth::ModuleFactory([]() { return new ReadOnlyPropertyServerModule(); });

}  // namespace cert
}  // namespace bluetooth
Loading