summaryrefslogtreecommitdiff
path: root/src/components/application_manager/include/application_manager/request_controller.h
blob: ea8d95a92ae4538618a3f71ae77fc553e66d24be (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
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
/*
 * Copyright (c) 2014, 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 Ford Motor Company nor the names of its 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.
 */

#ifndef SRC_COMPONENTS_APPLICATION_MANAGER_INCLUDE_APPLICATION_MANAGER_REQUEST_CONTROLLER_H_
#define SRC_COMPONENTS_APPLICATION_MANAGER_INCLUDE_APPLICATION_MANAGER_REQUEST_CONTROLLER_H_

#include <climits>
#include <vector>
#include <list>

#include "utils/lock.h"

#include "utils/threads/thread.h"
#include "utils/conditional_variable.h"
#include "utils/threads/thread_delegate.h"
#include "utils/timer.h"

#include "interfaces/MOBILE_API.h"
#include "interfaces/HMI_API.h"

#include "application_manager/request_info.h"
#include "application_manager/request_controller_settings.h"
#include "application_manager/request_tracker.h"

namespace application_manager {

namespace request_controller {

/**
* @brief RequestController class is used to control currently active mobile
* requests.
*/
class RequestController {
 public:
  /**
  * @brief Result code for addRequest
  */
  enum TResult {
    SUCCESS = 0,
    TOO_MANY_REQUESTS,
    TOO_MANY_PENDING_REQUESTS,
    NONE_HMI_LEVEL_MANY_REQUESTS,
    INVALID_DATA
  };

  /**
  * @brief Thread pool state
  */
  enum TPoolState {
    UNDEFINED = 0,
    STARTED,
    STOPPED,
  };

  // Methods

  /**
  * @brief Class constructor
  *
  */
  RequestController(const RequestControlerSettings& settings);

  /**
  * @brief Class destructor
  *
  */
  virtual ~RequestController();

  /**
  * @brief Initialize thread pool
  *
  */
  void InitializeThreadpool();

  /**
  * @brief Destroy thread pool
  *
  */
  void DestroyThreadpool();

  /**
  * @brief Check if max request amount wasn't exceed and adds request to queue.
  *
  * @param request     Active mobile request
  * @param hmi_level   Current application hmi_level
  *
  * @return Result code
  *
  */
  TResult addMobileRequest(const RequestPtr request,
                           const mobile_apis::HMILevel::eType& hmi_level);

  /**
  * @brief Store HMI request until response or timeout won't remove it
  *
  * @param request     Active hmi request
  * @return Result code
  *
  */
  TResult addHMIRequest(const RequestPtr request);

  /**
  * @ Add notification to collection
  *
  * @param ptr Reference to shared pointer that point on hmi notification
  */
  void addNotification(const RequestPtr ptr);

  /**
  * @brief Removes request from queue
  *
  * @param correlation_id Active request correlation ID,
  * @param connection_key Active request connection key (0 for HMI requersts)
  * @param function_id Active request  function id
  * @param force_terminate if true, request controller will terminate
  * even if not allowed by request
  */
  void TerminateRequest(const uint32_t correlation_id,
                        const uint32_t connection_key,
                        const int32_t function_id,
                        bool force_terminate = false);

  /**
  * @brief Removes request from queue
  *
  * @param mobile_correlation_id Active mobile request correlation ID
  *
  */
  void OnMobileResponse(const uint32_t mobile_correlation_id,
                        const uint32_t connection_key,
                        const int32_t function_id);

  /**
  * @brief Removes request from queue
  *
  * @param mobile_correlation_id Active mobile request correlation ID
  *
  */
  void OnHMIResponse(const uint32_t correlation_id, const int32_t function_id);

  /**
  * @ Add notification to collection
  *
  * @param ptr Reference to shared pointer that point on hmi notification
  */
  void removeNotification(const commands::Command* notification);

  /**
  * @brief Removes all requests from queue for specified application
  *
  * @param app_id Mobile application ID (app_id)
  *
  */
  void terminateAppRequests(const uint32_t& app_id);

  /**
  * @brief Terminates all requests from HMI
  */
  void terminateAllHMIRequests();

  /**
  * @brief Terminates all requests from Mobile
  */
  void terminateAllMobileRequests();

  /**
  * @brief Updates request timeout
  *
  * @param app_id Connection key of application
  * @param mobile_correlation_id Correlation ID of the mobile request
  * @param new_timeout_value New timeout to be set in milliseconds
  */
  void updateRequestTimeout(const uint32_t& app_id,
                            const uint32_t& mobile_correlation_id,
                            const uint32_t& new_timeout);

  /*
   * @brief Function Should be called when Low Voltage is occured
   */
  void OnLowVoltage();

  /*
   * @brief Function Should be called when Low Voltage is occured
   */
  void OnWakeUp();

  bool IsLowVoltage();

 protected:
  /**
  * @brief Timer callback which handles all request timeouts
  */
  void TimeoutThread();

  /**
  * @brief Signal timer condition variable
  */
  void NotifyTimer();

  void terminateWaitingForExecutionAppRequests(const uint32_t& app_id);
  void terminateWaitingForResponseAppRequests(const uint32_t& app_id);

  /**
   * @brief Checks whether all constraints are met before adding of request into
   * processing queue. Verifies amount of pending requests, amount of requests
   * per time scale for different HMI levels
   * @param request - request to check constraints for
   * @param level - HMI level in which request has been issued
   * @return Appropriate result code of verification
   */
  TResult CheckPosibilitytoAdd(const RequestPtr request,
                               const mobile_api::HMILevel::eType level);

  /**
   * @brief Check Posibility to add new requests, or limits was exceeded
   * @param pending_requests_amount - maximum count of request that should be
   * allowed for all applications
   * @return True if new request could be added, false otherwise
   */
  bool CheckPendingRequestsAmount(const uint32_t& pending_requests_amount);

 private:
  class Worker : public threads::ThreadDelegate {
   public:
    explicit Worker(RequestController* requestController);
    virtual ~Worker();
    virtual void threadMain();
    virtual void exitThreadMain();

   protected:
   private:
    RequestController* request_controller_;
    sync_primitives::Lock thread_lock_;
    volatile bool stop_flag_;
  };

  std::vector<threads::Thread*> pool_;
  volatile TPoolState pool_state_;
  uint32_t pool_size_;
  sync_primitives::ConditionalVariable cond_var_;

  std::list<RequestPtr> mobile_request_list_;
  sync_primitives::Lock mobile_request_list_lock_;

  /*
   * Requests, that are waiting for responses
   * RequestInfoSet provides correct processing of requests with thre same
   * app_id and corr_id
   */
  RequestInfoSet waiting_for_response_;

  /**
   * @brief Tracker verifying time scale and maximum requests amount in
   * different HMI levels
   */
  RequestTracker request_tracker_;

  /**
  * @brief Set of HMI notifications with timeout.
  */
  std::list<RequestPtr> notification_list_;

  /**
   * @brief Map keeping track of how many duplicate messages were sent for a
   * given correlation id, to prevent early termination of a request
   */
  std::map<uint32_t, uint32_t> duplicate_message_count_;
  sync_primitives::Lock duplicate_message_count_lock_;

  /*
   * timer for checking requests timeout
   */
  timer::Timer timer_;

  /*
   * Timer for lock
   */
  bool timer_stop_flag_;
  sync_primitives::Lock timer_lock;
  sync_primitives::ConditionalVariable timer_condition_;

  bool is_low_voltage_;
  const RequestControlerSettings& settings_;
  DISALLOW_COPY_AND_ASSIGN(RequestController);
};

}  // namespace request_controller

}  // namespace application_manager

#endif  // SRC_COMPONENTS_APPLICATION_MANAGER_INCLUDE_APPLICATION_MANAGER_REQUEST_CONTROLLER_H_