• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // Copyright 2022 The Android Open Source Project
2 //
3 // Licensed under the Apache License, Version 2.0 (the "License");
4 // you may not use this file except in compliance with the License.
5 // You may obtain a copy of the License at
6 //
7 //      http://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,
11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 // See the License for the specific language governing permissions and
13 // limitations under the License.
14 
15 #include "controller/controller.h"
16 
17 #include <google/protobuf/empty.pb.h>
18 #include <google/protobuf/util/json_util.h>
19 
20 #include <chrono>
21 #include <cstdint>
22 #include <optional>
23 #include <string>
24 
25 #include "common.pb.h"
26 #include "controller/scene_controller.h"
27 #include "frontend.pb.h"
28 
29 namespace netsim::scene_controller {
30 
PatchDevice(const std::string & request,std::string & response,std::string & error_message)31 unsigned int PatchDevice(const std::string &request, std::string &response,
32                          std::string &error_message) {
33   frontend::PatchDeviceRequest request_proto;
34   google::protobuf::util::JsonStringToMessage(request, &request_proto);
35   google::protobuf::Empty response_proto;
36 
37   auto status = netsim::controller::SceneController::Singleton().PatchDevice(
38       request_proto.device());
39   if (!status) {
40     error_message = "device_serial not found: " + request_proto.device().name();
41     return HTTP_STATUS_BAD_REQUEST;
42   }
43 
44   google::protobuf::util::MessageToJsonString(response_proto, &response);
45   return HTTP_STATUS_OK;
46 }
47 
GetDevices(const std::string & request,std::string & response,std::string & error_message)48 unsigned int GetDevices(const std::string &request, std::string &response,
49                         std::string &error_message) {
50   frontend::GetDevicesResponse response_proto;
51   auto scene = netsim::controller::SceneController::Singleton().Get();
52   for (const auto &device : scene.devices())
53     response_proto.add_devices()->CopyFrom(device);
54   google::protobuf::util::MessageToJsonString(response_proto, &response);
55   return HTTP_STATUS_OK;
56 }
57 
GetDevicesBytes(rust::Vec<::rust::u8> & vec)58 bool GetDevicesBytes(rust::Vec<::rust::u8> &vec) {
59   auto scene = netsim::controller::SceneController::Singleton().Get();
60   std::vector<unsigned char> message_vec(scene.ByteSizeLong());
61   auto status = scene.SerializeToArray(message_vec.data(), message_vec.size());
62   if (!status) {
63     return false;
64   }
65   vec.reserve(message_vec.size());
66   std::copy(message_vec.begin(), message_vec.end(), std::back_inserter(vec));
67   return true;
68 }
69 
GetFacadeId(int chip_id)70 int GetFacadeId(int chip_id) {
71   for (auto &[_, device] :
72        netsim::controller::SceneController::Singleton().devices_) {
73     for (const auto &[_, chip] : device->chips_) {
74       if (chip->id == chip_id) {
75         return chip->facade_id;
76       }
77     }
78   }
79   return -1;
80 }
81 
RemoveChip(uint32_t device_id,uint32_t chip_id)82 void RemoveChip(uint32_t device_id, uint32_t chip_id) {
83   netsim::controller::SceneController::Singleton().RemoveChip(device_id,
84                                                               chip_id);
85 }
86 
AddChipCxx(const std::string & guid,const std::string & device_name,uint32_t chip_kind,const std::string & chip_name,const std::string & manufacturer,const std::string & product_name)87 std::unique_ptr<AddChipResult> AddChipCxx(const std::string &guid,
88                                           const std::string &device_name,
89                                           uint32_t chip_kind,
90                                           const std::string &chip_name,
91                                           const std::string &manufacturer,
92                                           const std::string &product_name) {
93   auto [device_id, chip_id, facade_id] =
94       scene_controller::AddChip(guid, device_name, (common::ChipKind)chip_kind,
95                                 chip_name, manufacturer, product_name);
96   return std::make_unique<AddChipResult>(device_id, chip_id, facade_id);
97 }
98 
AddChip(const std::string & guid,const std::string & device_name,common::ChipKind chip_kind,const std::string & chip_name,const std::string & manufacturer,const std::string & product_name)99 std::tuple<uint32_t, uint32_t, uint32_t> AddChip(
100     const std::string &guid, const std::string &device_name,
101     common::ChipKind chip_kind, const std::string &chip_name,
102     const std::string &manufacturer, const std::string &product_name) {
103   return netsim::controller::SceneController::Singleton().AddChip(
104       guid, device_name, chip_kind, chip_name, manufacturer, product_name);
105 }
106 
GetDistance(uint32_t device_id,uint32_t other_device_id)107 float GetDistance(uint32_t device_id, uint32_t other_device_id) {
108   return netsim::controller::SceneController::Singleton().GetDistance(
109       device_id, other_device_id);
110 }
111 
GetShutdownTime()112 std::optional<std::chrono::seconds> GetShutdownTime() {
113   return netsim::controller::SceneController::Singleton().GetShutdownTime();
114 }
115 
116 }  // namespace netsim::scene_controller
117