summaryrefslogtreecommitdiff
path: root/src/components/application_manager/rpc_plugins/rc_rpc_plugin/src/commands/hmi/rc_on_interior_vehicle_data_notification.cc
blob: c2e5d748517ad32b1229c9f16b78251dc0e2c7b3 (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
#include "rc_rpc_plugin/commands/hmi/rc_on_interior_vehicle_data_notification.h"
#include "utils/macro.h"

namespace rc_rpc_plugin {
namespace commands {

RCOnInteriorVehicleDataNotification::RCOnInteriorVehicleDataNotification(
    const app_mngr::commands::MessageSharedPtr& message,
    app_mngr::ApplicationManager& application_manager,
    app_mngr::rpc_service::RPCService& rpc_service,
    app_mngr::HMICapabilities& hmi_capabilities,
    policy::PolicyHandlerInterface& policy_handle,
    ResourceAllocationManager& resource_allocation_manager)
    : application_manager::commands::NotificationFromHMI(message,
                                                         application_manager,
                                                         rpc_service,
                                                         hmi_capabilities,
                                                         policy_handle) {
  UNUSED(resource_allocation_manager);
}

RCOnInteriorVehicleDataNotification::~RCOnInteriorVehicleDataNotification() {}

void RCOnInteriorVehicleDataNotification::Run() {
  LOG4CXX_AUTO_TRACE(logger_);
  (*message_)[app_mngr::strings::params][app_mngr::strings::function_id] =
      static_cast<int>(mobile_apis::FunctionID::eType::OnInteriorVehicleDataID);
  SendNotificationToMobile(message_);
}

}  // namespace commands
}  // namespace rc_rpc_plugin