summaryrefslogtreecommitdiff
path: root/src/components/application_manager/rpc_plugins/rc_rpc_plugin/src/rc_rpc_plugin.cc
blob: de10dc843ac2cef22a4170a8d48c79f86f8fc5f9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
#include "rc_rpc_plugin/rc_rpc_plugin.h"
#include "rc_rpc_plugin/rc_command_factory.h"
#include "rc_rpc_plugin/rc_app_extension.h"
#include "rc_rpc_plugin/resource_allocation_manager_impl.h"
#include "utils/helpers.h"

namespace rc_rpc_plugin {
namespace plugins = application_manager::plugin_manager;

bool RCRPCPlugin::Init(
    application_manager::ApplicationManager& app_manager,
    application_manager::rpc_service::RPCService& rpc_service,
    application_manager::HMICapabilities& hmi_capabilities,
    policy::PolicyHandlerInterface& policy_handler) {
  resource_allocation_manager_.reset(
      new ResourceAllocationManagerImpl(app_manager));
  command_factory_.reset(
      new rc_rpc_plugin::RCCommandFactory(app_manager,
                                          rpc_service,
                                          hmi_capabilities,
                                          policy_handler,
                                          *resource_allocation_manager_));
  return true;
}

bool RCRPCPlugin::IsAbleToProcess(
    const int32_t function_id,
    const application_manager::commands::Command::CommandSource
        message_source) {
  namespace MobileFunctions = mobile_apis::FunctionID;
  namespace HMIFunctions = hmi_apis::FunctionID;
  namespace commands = application_manager::commands;
  using helpers::in_range;
  std::vector<MobileFunctions::eType> mobile_functions;
  mobile_functions.push_back(MobileFunctions::GetInteriorVehicleDataID);
  mobile_functions.push_back(MobileFunctions::SetInteriorVehicleDataID);
  mobile_functions.push_back(MobileFunctions::OnInteriorVehicleDataID);
  mobile_functions.push_back(MobileFunctions::ButtonPressID);
  //  mobile_functions.push_back(MobileFunctions::OnRCStatusID);

  std::vector<HMIFunctions::eType> hmi_functions;
  hmi_functions.push_back(HMIFunctions::RC_GetInteriorVehicleData);
  hmi_functions.push_back(HMIFunctions::RC_SetInteriorVehicleData);
  hmi_functions.push_back(HMIFunctions::RC_OnInteriorVehicleData);
  hmi_functions.push_back(HMIFunctions::RC_OnRemoteControlSettings);
  hmi_functions.push_back(HMIFunctions::Buttons_OnButtonPress);
  //  hmi_functions.push_back(HMIFunctions::RC_OnRCStatus);

  if (commands::Command::SOURCE_MOBILE == message_source) {
    return in_range(mobile_functions,
                    static_cast<MobileFunctions::eType>(function_id));
  }
  if (commands::Command::SOURCE_HMI == message_source) {
    return in_range(hmi_functions,
                    static_cast<HMIFunctions::eType>(function_id));
  }
  return false;
}

std::string RCRPCPlugin::PluginName() {
  return "RC RPC Plugin";
}

application_manager::CommandFactory& RCRPCPlugin::GetCommandFactory() {
  return *command_factory_;
}

void RCRPCPlugin::OnPolicyEvent(
    application_manager::plugin_manager::PolicyEvent event) {}

void RCRPCPlugin::OnApplicationEvent(
    application_manager::plugin_manager::ApplicationEvent event,
    application_manager::ApplicationSharedPtr application) {
  switch (event) {
    case plugins::kApplicationRegistered: {
      application->AddExtension(new RCAppExtension(kRCPluginID));
      break;
    }
    default:
      break;
  }
}

}  // namespace rc_rpc_plugin

extern "C" application_manager::plugin_manager::RPCPlugin* Create() {
  return new rc_rpc_plugin::RCRPCPlugin();
}