summaryrefslogtreecommitdiff
path: root/src/components/policy/policy_regular/include/policy/sql_pt_ext_representation.h
blob: 0958bad5e18eba4a9e240cb8f2577e4ea3fe17de (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
/*
 Copyright (c) 2013, 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_POLICY_POLICY_REGULAR_INCLUDE_POLICY_SQL_PT_EXT_REPRESENTATION_H_
#define SRC_COMPONENTS_POLICY_POLICY_REGULAR_INCLUDE_POLICY_SQL_PT_EXT_REPRESENTATION_H_

#include <string>
#include "policy/sql_pt_representation.h"
#include "policy/pt_ext_representation.h"

namespace policy {

class SQLPTExtRepresentation : public SQLPTRepresentation,
                               public PTExtRepresentation {
 public:
  bool CanAppKeepContext(const std::string& app_id);
  bool CanAppStealFocus(const std::string& app_id);
  bool GetDefaultHMI(const std::string& policy_app_id,
                     std::string* default_hmi);
  bool ResetUserConsent();
  bool ResetDeviceConsents();
  bool ResetAppConsents();
  bool GetUserPermissionsForDevice(const std::string& device_id,
                                   StringArray* consented_groups = NULL,
                                   StringArray* disallowed_groups = NULL);

  bool GetPermissionsForApp(const std::string& device_id,
                            const std::string& policy_app_id,
                            FunctionalIdType* group_types);

  bool GetDeviceGroupsFromPolicies(
      policy_table::Strings* groups = NULL,
      policy_table::Strings* preconsented_groups = NULL);
  bool SetDeviceData(const std::string& device_id,
                     const std::string& hardware = "",
                     const std::string& firmware = "",
                     const std::string& os = "",
                     const std::string& os_version = "",
                     const std::string& carrier = "",
                     const uint32_t number_of_ports = 0,
                     const std::string& connection_type = "");
  bool SetUserPermissionsForDevice(
      const std::string& device_id,
      const StringArray& consented_groups = StringArray(),
      const StringArray& disallowed_groups = StringArray());

  bool ReactOnUserDevConsentForApp(const std::string& app_id,
                                   bool is_device_allowed);

  bool SetUserPermissionsForApp(const PermissionConsent& permissions);

  std::vector<UserFriendlyMessage> GetUserFriendlyMsg(
      const std::vector<std::string>& msg_codes, const std::string& language);

  bool IncreaseStatisticsData(StatisticsType type) {
    return true;
  }
  bool SetAppRegistrationLanguage(const std::string& app_id,
                                  LanguageType type,
                                  const std::string& language) {
    return true;
  }

  bool SetMetaInfo(const std::string& ccpu_version,
                   const std::string& wers_country_code,
                   const std::string& language);

  bool IsMetaInfoPresent();

  bool SetSystemLanguage(const std::string& language);

  int GetKmFromSuccessfulExchange() {
    return true;
  }
  int GetDayFromScsExchange() {
    return true;
  }
  int GetIgnitionsFromScsExchange() {
    return true;
  }

  bool GetFunctionalGroupNames(FunctionalGroupNames& names);
  bool CleanupUnpairedDevices(const DeviceIds& device_ids) const;

  void Increment(const std::string& type) const;
  void Increment(const std::string& app_id, const std::string& type) const;
  void Set(const std::string& app_id,
           const std::string& type,
           const std::string& value) const;
  void Add(const std::string& app_id,
           const std::string& type,
           int seconds) const;
  bool SetDefaultPolicy(const std::string& app_id);
  bool SetPredataPolicy(const std::string& app_id);
  bool SetIsPredata(const std::string& app_id, bool is_pre_data);
  bool IsPredataPolicy(const std::string& app_id) const;
  bool SetUnpairedDevice(const std::string& device_id, bool unpaired) const;
  bool UnpairedDevicesList(DeviceIds* device_ids) const;
  bool RemoveAppConsentForGroup(const std::string& policy_app_id,
                                const std::string& functional_group_name) const;

  virtual bool SetVINValue(const std::string& value);
  bool SaveExternalConsentStatus(const ExternalConsentStatus& status) const;
  ExternalConsentStatus GetExternalConsentStatus() const;

 private:
  void GatherModuleMeta(policy_table::ModuleMeta* meta) const;
  void GatherPreconsentedGroup(const std::string& app_id,
                               policy_table::Strings* groups) const;
  bool GatherUsageAndErrorCounts(
      policy_table::UsageAndErrorCounts* counts) const;
  bool GatherAppLevels(policy_table::AppLevels* apps) const;
  void GatherDeviceData(policy_table::DeviceData* data) const;
  void GatherConsentGroup(const std::string& device_id,
                          policy_table::UserConsentRecords* records) const;
  bool GatherApplicationPoliciesSection(
      policy_table::ApplicationPoliciesSection* policies) const;
  bool SaveDeviceData(const policy_table::DeviceData& devices);
  bool GatherConsumerFriendlyMessages(
      policy_table::ConsumerFriendlyMessages* messages) const;
  bool SaveConsentGroup(const std::string& device_id,
                        const policy_table::UserConsentRecords& records);
  bool SaveApplicationPoliciesSection(
      const policy_table::ApplicationPoliciesSection& policies);
  bool SaveSpecificAppPolicy(
      const policy_table::ApplicationPolicies::value_type& app);
  bool SaveDevicePolicy(const policy_table::DevicePolicy& device);
  bool SavePreconsentedGroup(const std::string& app_id,
                             const policy_table::Strings& groups);
  bool SaveMessageString(const std::string& type,
                         const std::string& lang,
                         const policy_table::MessageString& strings);

  virtual bool SaveUsageAndErrorCounts(
      const policy_table::UsageAndErrorCounts& counts);

  virtual bool SaveModuleMeta(const policy_table::ModuleMeta& meta);

  bool SaveAppCounters(const policy_table::AppLevels& app_levels);

  bool SaveGlobalCounters(const policy_table::UsageAndErrorCounts& counts);

  bool IsExistAppLevel(const std::string& app_id) const;

  bool GetAllAppGroups(const std::string& policy_app_id,
                       FunctionalGroupIDs& all_groups);

  bool GetConsentedGroups(const std::string& policy_app_id,
                          const std::string& device_id,
                          FunctionalGroupIDs& allowed_groups,
                          FunctionalGroupIDs& disallowed_groups);

  bool GetPreconsentedGroups(const std::string& policy_app_id,
                             FunctionalGroupIDs& preconsented_groups);

  void FillFunctionalGroupPermissions(
      FunctionalGroupIDs& ids,
      FunctionalGroupNames& names,
      GroupConsent state,
      std::vector<FunctionalGroupPermission>& permissions);
  bool CountUnconsentedGroups(const std::string& policy_app_id,
                              const std::string& device_id,
                              int* result) const;

  /**
   * @brief Checks, if there is message present with requested language in PT
   * @param message Message name
   * @param language Required message language
   * @return True, if message with requested language is present, otherwise -
   * false
   */
  bool IsMsgLanguagePresent(const std::string& message,
                            const std::string& language);

}  // namespace policy

#endif  // SRC_COMPONENTS_POLICY_POLICY_REGULAR_INCLUDE_POLICY_SQL_PT_EXT_REPRESENTATION_H_