summaryrefslogtreecommitdiff
path: root/src/components/application_manager/rpc_plugins/sdl_rpc_plugin/src/sdl_rpc_plugin.cc
blob: c5bc79f09da1e650873201141649432eddf95587 (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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
/*
 Copyright (c) 2018, Ford Motor Company
 All rights reserved.

 Redistribution and use in source and binary forms, with or without
 modification, are permitted provided that the following conditions are met:

 Redistributions of source code must retain the above copyright notice, this
 list of conditions and the following disclaimer.

 Redistributions in binary form must reproduce the above copyright notice,
 this list of conditions and the following
 disclaimer in the documentation and/or other materials provided with the
 distribution.

 Neither the name of the copyright holders nor the names of their contributors
 may be used to endorse or promote products derived from this software
 without specific prior written permission.

 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
 AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
 ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
 LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
 CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
 SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
 INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
 CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
 ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
 POSSIBILITY OF SUCH DAMAGE.
 */

#include "sdl_rpc_plugin/sdl_rpc_plugin.h"
#include "application_manager/message_helper.h"
#include "application_manager/plugin_manager/plugin_keys.h"
#include "sdl_rpc_plugin/extensions/system_capability_app_extension.h"
#include "sdl_rpc_plugin/sdl_command_factory.h"
#include "sdl_rpc_plugin/waypoints_app_extension.h"
#include "sdl_rpc_plugin/waypoints_pending_resumption_handler.h"

namespace sdl_rpc_plugin {
namespace app_mngr = application_manager;
namespace plugins = application_manager::plugin_manager;

SDL_CREATE_LOG_VARIABLE("SdlRPCPlugin")

SDLRPCPlugin::SDLRPCPlugin()
    : application_manager_(nullptr), pending_resumption_handler_(nullptr) {}

bool SDLRPCPlugin::Init(app_mngr::ApplicationManager& app_manager,
                        app_mngr::rpc_service::RPCService& rpc_service,
                        app_mngr::HMICapabilities& hmi_capabilities,
                        policy::PolicyHandlerInterface& policy_handler,
                        resumption::LastStateWrapperPtr last_state) {
  UNUSED(last_state);
  application_manager_ = &app_manager;
  pending_resumption_handler_ =
      std::make_shared<WayPointsPendingResumptionHandler>(app_manager);
  command_factory_.reset(new sdl_rpc_plugin::SDLCommandFactory(
      app_manager, rpc_service, hmi_capabilities, policy_handler));
  return true;
}

bool SDLRPCPlugin::Init(
    application_manager::ApplicationManager& app_manager,
    application_manager::rpc_service::RPCService& rpc_service,
    application_manager::HMICapabilities& hmi_capabilities,
    policy::PolicyHandlerInterface& policy_handler,
    resumption::LastState& last_state) {
  UNUSED(last_state);
  command_factory_.reset(new sdl_rpc_plugin::SDLCommandFactory(
      app_manager, rpc_service, hmi_capabilities, policy_handler));
  return true;
}

bool SDLRPCPlugin::IsAbleToProcess(
    const int32_t function_id,
    const app_mngr::commands::Command::CommandSource message_source) {
  return command_factory_->IsAbleToProcess(function_id, message_source);
}

std::string SDLRPCPlugin::PluginName() {
  return plugins::plugin_names::sdl_rpc_plugin;
}

app_mngr::CommandFactory& SDLRPCPlugin::GetCommandFactory() {
  return *command_factory_;
}

void SDLRPCPlugin::OnPolicyEvent(plugins::PolicyEvent event) {}

void SDLRPCPlugin::OnApplicationEvent(
    plugins::ApplicationEvent event,
    app_mngr::ApplicationSharedPtr application) {
  SDL_LOG_AUTO_TRACE();
  if (plugins::ApplicationEvent::kApplicationRegistered == event) {
    application->AddExtension(
        std::make_shared<WayPointsAppExtension>(*this, *application));

    auto sys_cap_ext_ptr =
        std::make_shared<SystemCapabilityAppExtension>(*this, *application);
    application->AddExtension(sys_cap_ext_ptr);
    // Processing automatic subscription to SystemCapabilities for DISPLAY type
    const auto capability_type =
        mobile_apis::SystemCapabilityType::eType::DISPLAYS;
    SDL_LOG_DEBUG("Subscription to DISPLAYS capability is enabled");
    sys_cap_ext_ptr->SubscribeTo(capability_type);

  } else if (plugins::ApplicationEvent::kDeleteApplicationData == event) {
    ClearSubscriptions(application);
  }
}

void SDLRPCPlugin::ProcessResumptionSubscription(
    application_manager::Application& app, WayPointsAppExtension& ext) {
  SDL_LOG_AUTO_TRACE();

  pending_resumption_handler_->HandleResumptionSubscriptionRequest(ext, app);
}

void SDLRPCPlugin::SaveResumptionData(
    application_manager::Application& app,
    smart_objects::SmartObject& resumption_data) {
  resumption_data[application_manager::strings::subscribed_for_way_points] =
      application_manager_->IsAppSubscribedForWayPoints(app);
}

void SDLRPCPlugin::RevertResumption(application_manager::Application& app) {
  SDL_LOG_AUTO_TRACE();

  pending_resumption_handler_->OnResumptionRevert();

  if (application_manager_->IsAppSubscribedForWayPoints(app)) {
    const auto subscribed_apps =
        application_manager_->GetAppsSubscribedForWayPoints();
    const bool send_unsubscribe =
        subscribed_apps.size() <= 1 &&
        application_manager_->IsSubscribedToHMIWayPoints();
    if (send_unsubscribe) {
      SDL_LOG_DEBUG("Send UnsubscribeWayPoints");
      auto request =
          application_manager::MessageHelper::CreateUnsubscribeWayPointsRequest(
              application_manager_->GetNextHMICorrelationID());
      application_manager_->GetRPCService().ManageHMICommand(request);
    }
    application_manager_->UnsubscribeAppFromWayPoints(app.app_id(),
                                                      send_unsubscribe);
  }
}

void SDLRPCPlugin::ClearSubscriptions(app_mngr::ApplicationSharedPtr app) {
  auto& ext = SystemCapabilityAppExtension::ExtractExtension(*app);
  ext.UnsubscribeFromAll();
}

}  // namespace sdl_rpc_plugin

extern "C" __attribute__((visibility("default")))
application_manager::plugin_manager::RPCPlugin*
Create(logger::Logger* logger_instance) {
  logger::Logger::instance(logger_instance);
  return new sdl_rpc_plugin::SDLRPCPlugin();
}

extern "C" __attribute__((visibility("default"))) void Delete(
    application_manager::plugin_manager::RPCPlugin* data) {
  delete data;
}