1 /*
2  * Copyright (C) 2020 The Android Open Source Project
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 
17 #pragma once
18 
19 #include <map>
20 #include <memory>
21 
22 #include "common/libs/fs/shared_fd.h"
23 #include "host/frontend/webrtc/display_handler.h"
24 #include "host/frontend/webrtc/kernel_log_events_handler.h"
25 #include "host/frontend/webrtc/libdevice/camera_controller.h"
26 #include "host/frontend/webrtc/libdevice/connection_observer.h"
27 #include "host/frontend/webrtc/libdevice/lights_observer.h"
28 #include "host/frontend/webrtc/sensors_handler.h"
29 #include "host/libs/confui/host_virtual_input.h"
30 #include "host/libs/input_connector/input_connector.h"
31 
32 namespace cuttlefish {
33 
34 class CfConnectionObserverFactory
35     : public webrtc_streaming::ConnectionObserverFactory {
36  public:
37   CfConnectionObserverFactory(
38       InputConnector& input_connector,
39       KernelLogEventsHandler* kernel_log_events_handler,
40       std::shared_ptr<webrtc_streaming::LightsObserver> lights_observer);
41   ~CfConnectionObserverFactory() override = default;
42 
43   std::shared_ptr<webrtc_streaming::ConnectionObserver> CreateObserver()
44       override;
45 
46   void AddCustomActionServer(SharedFD custom_action_server_fd,
47                              const std::vector<std::string>& commands);
48 
49   void SetDisplayHandler(std::weak_ptr<DisplayHandler> display_handler);
50 
51   void SetCameraHandler(CameraController* controller);
52 
53  private:
54   InputConnector& input_connector_;
55   KernelLogEventsHandler* kernel_log_events_handler_;
56   std::map<std::string, SharedFD>
57       commands_to_custom_action_servers_;
58   std::weak_ptr<DisplayHandler> weak_display_handler_;
59   cuttlefish::CameraController* camera_controller_ = nullptr;
60   std::shared_ptr<webrtc_streaming::SensorsHandler> shared_sensors_handler_ =
61       std::make_shared<webrtc_streaming::SensorsHandler>();
62   std::shared_ptr<webrtc_streaming::LightsObserver> lights_observer_;
63 };
64 
65 }  // namespace cuttlefish
66