summaryrefslogtreecommitdiff
path: root/src/components/application_manager/rpc_plugins/app_service_rpc_plugin/src/commands/hmi/as_get_app_service_data_request_from_hmi.cc
blob: ff9d4e436a7774a81e3ec9f032209335e0e54372 (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
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
/*
 Copyright (c) 2019, Ford Motor Company, Livio
 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 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 "app_service_rpc_plugin/commands/hmi/as_get_app_service_data_request_from_hmi.h"
#include "application_manager/app_service_manager.h"
#include "application_manager/application_impl.h"
#include "application_manager/rpc_service.h"
#include "interfaces/MOBILE_API.h"
#include "smart_objects/enum_schema_item.h"

#include "application_manager/message_helper.h"

namespace app_service_rpc_plugin {
using namespace application_manager;
namespace commands {

SDL_CREATE_LOG_VARIABLE("Commands")

ASGetAppServiceDataRequestFromHMI::ASGetAppServiceDataRequestFromHMI(
    const application_manager::commands::MessageSharedPtr& message,
    ApplicationManager& application_manager,
    app_mngr::rpc_service::RPCService& rpc_service,
    app_mngr::HMICapabilities& hmi_capabilities,
    policy::PolicyHandlerInterface& policy_handler)
    : RequestFromHMI(message,
                     application_manager,
                     rpc_service,
                     hmi_capabilities,
                     policy_handler) {}

ASGetAppServiceDataRequestFromHMI::~ASGetAppServiceDataRequestFromHMI() {}

void ASGetAppServiceDataRequestFromHMI::Run() {
  SDL_LOG_AUTO_TRACE();

  std::string service_type =
      (*message_)[strings::msg_params][strings::service_type].asString();

  SDL_LOG_DEBUG("Get Service Type: " << service_type);

  SendProviderRequest(mobile_apis::FunctionID::GetAppServiceDataID,
                      hmi_apis::FunctionID::AppService_GetAppServiceData,
                      &(*message_),
                      true);
}

void ASGetAppServiceDataRequestFromHMI::GetWeatherImagePaths(
    smart_objects::SmartObject& data, ApplicationSharedPtr app) {
  if (data[strings::location].keyExists(strings::location_image)) {
    MessageHelper::VerifyImage(data[strings::location][strings::location_image],
                               app,
                               application_manager_);
  }

  if (data.keyExists(strings::current_forecast) &&
      data[strings::current_forecast].keyExists(strings::weather_icon)) {
    MessageHelper::VerifyImage(
        data[strings::current_forecast][strings::weather_icon],
        app,
        application_manager_);
  }

  if (data.keyExists(strings::minute_forecast)) {
    smart_objects::SmartObject& minute_forecast =
        data[strings::minute_forecast];
    for (size_t i = 0; i < minute_forecast.length(); ++i) {
      if (minute_forecast[i].keyExists(strings::weather_icon)) {
        MessageHelper::VerifyImage(minute_forecast[i][strings::weather_icon],
                                   app,
                                   application_manager_);
      }
    }
  }

  if (data.keyExists(strings::hourly_forecast)) {
    smart_objects::SmartObject& hourly_forecast =
        data[strings::hourly_forecast];
    for (size_t i = 0; i < hourly_forecast.length(); ++i) {
      if (hourly_forecast[i].keyExists(strings::weather_icon)) {
        MessageHelper::VerifyImage(hourly_forecast[i][strings::weather_icon],
                                   app,
                                   application_manager_);
      }
    }
  }

  if (data.keyExists(strings::multiday_forecast)) {
    smart_objects::SmartObject& multiday_forecast =
        data[strings::multiday_forecast];
    for (size_t i = 0; i < multiday_forecast.length(); ++i) {
      if (multiday_forecast[i].keyExists(strings::weather_icon)) {
        MessageHelper::VerifyImage(multiday_forecast[i][strings::weather_icon],
                                   app,
                                   application_manager_);
      }
    }
  }
}

void ASGetAppServiceDataRequestFromHMI::GetNavigationImagePaths(
    smart_objects::SmartObject& data, ApplicationSharedPtr app) {
  if (data.keyExists(strings::origin) &&
      data[strings::origin].keyExists(strings::location_image)) {
    MessageHelper::VerifyImage(data[strings::origin][strings::location_image],
                               app,
                               application_manager_);
  }

  if (data.keyExists(strings::destination) &&
      data[strings::destination].keyExists(strings::location_image)) {
    MessageHelper::VerifyImage(
        data[strings::destination][strings::location_image],
        app,
        application_manager_);
  }

  if (data.keyExists(strings::instructions)) {
    smart_objects::SmartObject& instructions = data[strings::instructions];
    for (size_t i = 0; i < instructions.length(); ++i) {
      if (instructions[i].keyExists(strings::image)) {
        MessageHelper::VerifyImage(
            instructions[i][strings::image], app, application_manager_);
      }

      if (instructions[i].keyExists(strings::location_details) &&
          instructions[i][strings::location_details].keyExists(
              strings::location_image)) {
        MessageHelper::VerifyImage(
            instructions[i][strings::location_details][strings::location_image],
            app,
            application_manager_);
      }
    }
  }
}

void ASGetAppServiceDataRequestFromHMI::GetMediaImagePaths(
    smart_objects::SmartObject& data, ApplicationSharedPtr app) {
  if (data.keyExists(strings::media_image)) {
    MessageHelper::VerifyImage(
        data[strings::media_image], app, application_manager_);
  }
}

bool ASGetAppServiceDataRequestFromHMI::ValidateResponse(
    smart_objects::SmartObject& message_params) {
  if (!message_params.keyExists(strings::service_data)) {
    SDL_LOG_DEBUG(
        "GASD response received without any service data, passing through");
    return true;
  }
  smart_objects::SmartObject& service_data =
      message_params[strings::service_data];
  std::string service_type = service_data[strings::service_type].asString();
  mobile_apis::AppServiceType::eType service_type_value;
  const std::string& service_id = service_data[strings::service_id].asString();
  auto service =
      application_manager_.GetAppServiceManager().FindServiceByID(service_id);
  if (!service) {
    SDL_LOG_ERROR("GASD response received with an unpublished service ID");
    SendErrorResponse(
        correlation_id(),
        hmi_apis::FunctionID::AppService_GetAppServiceData,
        hmi_apis::Common_Result::GENERIC_ERROR,
        "The provider responded with incorrect data",
        application_manager::commands::Command::SOURCE_SDL_TO_HMI);
    return false;
  }

  using namespace ns_smart_device_link::ns_smart_objects;
  if (service && service->mobile_service &&
      EnumConversionHelper<mobile_apis::AppServiceType::eType>::StringToEnum(
          service_type, &service_type_value)) {
    auto app = application_manager_.application(service->connection_key);
    if (!app) {
      SDL_LOG_ERROR("Failed to find service provider for GASD response");
      SendErrorResponse(
          correlation_id(),
          hmi_apis::FunctionID::AppService_GetAppServiceData,
          hmi_apis::Common_Result::GENERIC_ERROR,
          "The provider responded with incorrect data",
          application_manager::commands::Command::SOURCE_SDL_TO_HMI);
      return false;
    }

    if (service_type_value == mobile_apis::AppServiceType::WEATHER &&
        service_data.keyExists(strings::weather_service_data)) {
      GetWeatherImagePaths(service_data[strings::weather_service_data], app);
    }

    if (service_type_value == mobile_apis::AppServiceType::NAVIGATION &&
        service_data.keyExists(strings::navigation_service_data)) {
      GetNavigationImagePaths(service_data[strings::navigation_service_data],
                              app);
    }

    if (service_type_value == mobile_apis::AppServiceType::MEDIA &&
        service_data.keyExists(strings::media_service_data)) {
      GetMediaImagePaths(service_data[strings::media_service_data], app);
    }
  }
  return true;
}

void ASGetAppServiceDataRequestFromHMI::on_event(
    const event_engine::Event& event) {
  smart_objects::SmartObject event_message(event.smart_object());

  auto& msg_params = event_message[strings::msg_params];

  hmi_apis::Common_Result::eType result =
      static_cast<hmi_apis::Common_Result::eType>(
          event_message[strings::params][hmi_response::code].asInt());
  bool success = CommandImpl::IsHMIResultSuccess(
      result, HmiInterfaces::HMI_INTERFACE_AppService);
  if (ValidateResponse(msg_params)) {
    SendResponse(success,
                 correlation_id(),
                 hmi_apis::FunctionID::AppService_GetAppServiceData,
                 result,
                 &msg_params,
                 application_manager::commands::Command::SOURCE_SDL_TO_HMI);
  }
}

void ASGetAppServiceDataRequestFromHMI::on_event(
    const event_engine::MobileEvent& event) {
  smart_objects::SmartObject event_message(event.smart_object());

  auto& msg_params = event_message[strings::msg_params];

  mobile_apis::Result::eType mobile_result =
      static_cast<mobile_apis::Result::eType>(
          msg_params[strings::result_code].asInt());
  hmi_apis::Common_Result::eType result =
      MessageHelper::MobileToHMIResult(mobile_result);
  bool success =
      application_manager::commands::IsMobileResultSuccess(mobile_result);

  if (ValidateResponse(msg_params)) {
    SendResponse(success,
                 correlation_id(),
                 hmi_apis::FunctionID::AppService_GetAppServiceData,
                 result,
                 &msg_params,
                 application_manager::commands::Command::SOURCE_SDL_TO_HMI);
  }
}

void ASGetAppServiceDataRequestFromHMI::OnTimeOut() {
  SDL_LOG_AUTO_TRACE();
  SendErrorResponse(correlation_id(),
                    hmi_apis::FunctionID::AppService_GetAppServiceData,
                    hmi_apis::Common_Result::GENERIC_ERROR,
                    "The provider did not respond to the request",
                    application_manager::commands::Command::SOURCE_SDL_TO_HMI);
}

}  // namespace commands
}  // namespace app_service_rpc_plugin