summaryrefslogtreecommitdiff
path: root/src/components/policy/src/policy/include/policy/sql_pt_ext_representation.h
blob: aa171b906697657180ce45fe909c0cb397d52918 (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
/*
 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_INCLUDE_POLICY_SQL_PT_EXT_REPRESENTATION_H_
#define SRC_COMPONENTS_POLICY_INCLUDE_POLICY_SQL_PT_EXT_REPRESENTATION_H_

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

namespace policy {

typedef std::vector<uint32_t> FunctionalGroupIDs;
typedef std::map<uint32_t, std::pair<std::string, std::string> > FunctionalGroupNames;

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 GetPriority(const std::string& policy_app_id, std::string* priority);
  bool ResetUserConsent();
  bool GetUserPermissionsForDevice(const std::string& device_id,
                                   StringArray* consented_groups = NULL,
                                   StringArray* disallowed_groups = NULL);

  bool GetUserPermissionsForApp(
      const std::string& device_id, const std::string& policy_app_id,
      std::vector<FunctionalGroupPermission>& permissions);

  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);
  bool SetUserPermissionsForDevice(const std::string& device_id,
                                   const StringArray& consented_groups =
                                       StringArray(),
                                   const StringArray& disallowed_groups =
                                       StringArray());

  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 SetSystemLanguage(const std::string& language);

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

  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;

 private:
  void GatherModuleMeta(policy_table::ModuleMeta* meta) const;
  bool GatherApplicationPolicies(policy_table::ApplicationPolicies* apps) 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 SaveDeviceData(const policy_table::DeviceData& devices);
  bool SaveConsentGroup(const std::string& device_id,
                        const policy_table::UserConsentRecords& records);
  bool SaveApplicationPolicies(const policy_table::ApplicationPolicies& apps);
  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);

  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);

  bool GetFunctionalGroupNames(FunctionalGroupNames& names);

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

}  // namespace policy

#endif  // SRC_COMPONENTS_POLICY_INCLUDE_POLICY_SQL_PT_EXT_REPRESENTATION_H_