blob: e76fef549d7cac0c49aa5eea93b12c40753209ed [file] [log] [blame]
Joe Onorato1754d742016-11-21 17:51:35 -08001/*
2 * Copyright (C) 2016 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17
Joe Onorato76690122016-12-20 08:18:32 -080018#include <frameworks/base/core/proto/android/os/incident.pb.h>
Joe Onorato1754d742016-11-21 17:51:35 -080019
Joe Onorato1754d742016-11-21 17:51:35 -080020#include <map>
Yi Jinf8601842017-08-15 22:01:41 -070021#include <string>
Joe Onorato1754d742016-11-21 17:51:35 -080022
Yi Jinf8601842017-08-15 22:01:41 -070023using namespace android;
Joe Onorato1754d742016-11-21 17:51:35 -080024using namespace android::os;
25using namespace google::protobuf;
26using namespace google::protobuf::io;
27using namespace google::protobuf::internal;
28using namespace std;
29
Yi Jin0ed9b682017-08-18 14:51:20 -070030static inline void emptyline() {
Joe Onorato1754d742016-11-21 17:51:35 -080031 printf("\n");
Yi Jinf8601842017-08-15 22:01:41 -070032}
Joe Onorato1754d742016-11-21 17:51:35 -080033
Yi Jin0ed9b682017-08-18 14:51:20 -070034static void generateHead(const char* header) {
35 printf("// Auto generated file. Do not modify\n");
36 emptyline();
37 printf("#include \"%s.h\"\n", header);
38 emptyline();
39}
40
Yi Jinf8601842017-08-15 22:01:41 -070041// ================================================================================
Yi Jin0ed9b682017-08-18 14:51:20 -070042static bool generateIncidentSectionsCpp(Descriptor const* descriptor)
Yi Jinf8601842017-08-15 22:01:41 -070043{
44 generateHead("incident_sections");
45
46 map<string,FieldDescriptor const*> sections;
47 int N;
Joe Onorato1754d742016-11-21 17:51:35 -080048 N = descriptor->field_count();
49 for (int i=0; i<N; i++) {
50 const FieldDescriptor* field = descriptor->field(i);
51 if (field->type() == FieldDescriptor::TYPE_MESSAGE) {
52 sections[field->name()] = field;
53 }
54 }
55
56 printf("IncidentSection const INCIDENT_SECTIONS[] = {\n");
57 N = sections.size();
58 int i = 0;
59 for (map<string,FieldDescriptor const*>::const_iterator it = sections.begin();
60 it != sections.end(); it++, i++) {
61 const FieldDescriptor* field = it->second;
62 printf(" { %d, \"%s\" }", field->number(), field->name().c_str());
63 if (i != N-1) {
64 printf(",\n");
65 } else {
66 printf("\n");
67 }
68 }
69 printf("};\n");
70
71 printf("const int INCIDENT_SECTION_COUNT = %d;\n", N);
72
Yi Jinf8601842017-08-15 22:01:41 -070073 return true;
74}
75
76// ================================================================================
77static void splitAndPrint(const string& args) {
78 size_t base = 0;
79 size_t found;
80 while (true) {
81 found = args.find_first_of(" ", base);
82 if (found != base) {
83 string arg = args.substr(base, found - base);
84 printf(" \"%s\",", arg.c_str());
85 }
86 if (found == args.npos) break;
87 base = found + 1;
88 }
89}
90
Yi Jin0ed9b682017-08-18 14:51:20 -070091static const char* replaceAll(const string& field_name, const char oldC, const string& newS) {
92 if (field_name.find_first_of(oldC) == field_name.npos) return field_name.c_str();
93 size_t pos = 0, idx = 0;
94 char* res = new char[field_name.size() * newS.size() + 1]; // assign a larger buffer
95 while (pos != field_name.size()) {
96 char cur = field_name[pos++];
97 if (cur != oldC) {
98 res[idx++] = cur;
99 continue;
100 }
101
102 for (size_t i=0; i<newS.size(); i++) {
103 res[idx++] = newS[i];
104 }
105 }
106 res[idx] = '\0';
107 return res;
108}
109
110static inline bool isDefaultDest(const FieldDescriptor* field) {
111 return field->options().GetExtension(privacy).dest() == PrivacyFlags::default_instance().dest();
112}
113
114// Returns true if the descriptor doesn't have any non default privacy flags set, including its submessages
115static bool generatePrivacyFlags(const Descriptor* descriptor, const char* alias, map<string, bool> &msgNames) {
116 bool hasDefaultFlags[descriptor->field_count()];
117 // iterate though its field and generate sub flags first
118 for (int i=0; i<descriptor->field_count(); i++) {
119 hasDefaultFlags[i] = true; // set default to true
120 const FieldDescriptor* field = descriptor->field(i);
121 const char* field_name = replaceAll(field->full_name(), '.', "__");
122 // check if the same name is already defined
123 if (msgNames.find(field_name) != msgNames.end()) {
124 hasDefaultFlags[i] = msgNames[field_name];
125 continue;
126 };
127
128 PrivacyFlags p = field->options().GetExtension(privacy);
129
130 switch (field->type()) {
131 case FieldDescriptor::TYPE_MESSAGE:
132 if (generatePrivacyFlags(field->message_type(), field_name, msgNames) &&
133 isDefaultDest(field)) break;
134
135 printf("static Privacy %s = { %d, %d, %d, NULL, %s_LIST };\n", field_name, field->number(),
136 (int) field->type(), p.dest(), field_name);
137 hasDefaultFlags[i] = false;
138 break;
139 case FieldDescriptor::TYPE_STRING:
140 if (isDefaultDest(field) && p.patterns_size() == 0) break;
141
142 printf("static const char* %s_patterns[] = {\n", field_name);
143 for (int i=0; i<p.patterns_size(); i++) {
144 // the generated string need to escape backslash as well, need to dup it here
145 printf(" \"%s\",\n", replaceAll(p.patterns(i), '\\', "\\\\"));
146 }
147 printf(" NULL };\n");
148 printf("static Privacy %s = { %d, %d, %d, %s_patterns };\n", field_name, field->number(),
149 (int) field->type(), p.dest(), field_name);
150 hasDefaultFlags[i] = false;
151 break;
152 default:
153 if (isDefaultDest(field)) break;
154 printf("static Privacy %s = { %d, %d, %d };\n", field_name, field->number(),
155 (int) field->type(), p.dest());
156 hasDefaultFlags[i] = false;
157 }
158 // add the field name to message map, true means it has default flags
159 msgNames[field_name] = hasDefaultFlags[i];
160 }
161
162 bool allDefaults = true;
163 for (int i=0; i<descriptor->field_count(); i++) {
164 allDefaults &= hasDefaultFlags[i];
165 }
166 if (allDefaults) return true;
167
168 emptyline();
169 printf("const Privacy* %s_LIST[] = {\n", alias);
170 for (int i=0; i<descriptor->field_count(); i++) {
171 const FieldDescriptor* field = descriptor->field(i);
172 if (hasDefaultFlags[i]) continue;
173 printf(" &%s,\n", replaceAll(field->full_name(), '.', "__"));
174 }
175 printf(" NULL };\n");
176 emptyline();
177 return false;
178}
179
180static bool generateSectionListCpp(Descriptor const* descriptor) {
Yi Jinf8601842017-08-15 22:01:41 -0700181 generateHead("section_list");
182
Yi Jin0ed9b682017-08-18 14:51:20 -0700183 // generates SECTION_LIST
Yi Jinf8601842017-08-15 22:01:41 -0700184 printf("const Section* SECTION_LIST[] = {\n");
Yi Jinf8601842017-08-15 22:01:41 -0700185 for (int i=0; i<descriptor->field_count(); i++) {
186 const FieldDescriptor* field = descriptor->field(i);
187
188 if (field->type() != FieldDescriptor::TYPE_MESSAGE) {
189 continue;
190 }
191 const SectionFlags s = field->options().GetExtension(section);
192 switch (s.type()) {
193 case SECTION_NONE:
194 continue;
195 case SECTION_FILE:
196 printf(" new FileSection(%d, \"%s\"),\n", field->number(), s.args().c_str());
197 break;
198 case SECTION_COMMAND:
199 printf(" new CommandSection(%d,", field->number());
200 splitAndPrint(s.args());
201 printf(" NULL),\n");
202 break;
203 case SECTION_DUMPSYS:
204 printf(" new DumpsysSection(%d,", field->number());
205 splitAndPrint(s.args());
206 printf(" NULL),\n");
207 break;
208 }
209 }
Yi Jin0ed9b682017-08-18 14:51:20 -0700210 printf(" NULL };\n");
211 emptyline();
212
213 // generates DESTINATION enum values
214 EnumDescriptor const* destination = Destination_descriptor();
215 for (int i=0; i<destination->value_count(); i++) {
216 EnumValueDescriptor const* val = destination->value(i);
217 printf("const uint8_t %s = %d;\n", val->name().c_str(), val->number());
218 }
219 emptyline();
220 printf("const uint8_t DEST_DEFAULT_VALUE = %d;\n", PrivacyFlags::default_instance().dest());
221 emptyline();
222 // populates string type and message type values
223 printf("const uint8_t TYPE_STRING = %d;\n", (int) FieldDescriptor::TYPE_STRING);
224 printf("const uint8_t TYPE_MESSAGE = %d;\n", (int) FieldDescriptor::TYPE_MESSAGE);
225 emptyline();
226
227 // generates PRIVACY_POLICY
228 map<string, bool> messageNames;
229 if (generatePrivacyFlags(descriptor, "PRIVACY_POLICY", messageNames)) {
230 // if no privacy options set at all, define an empty list
231 printf("const Privacy* PRIVACY_POLICY_LIST[] = { NULL };\n");
232 }
233
Yi Jinf8601842017-08-15 22:01:41 -0700234 return true;
235}
236
237// ================================================================================
238int main(int argc, char const *argv[])
239{
240 if (argc != 2) return 1;
241 const char* module = argv[1];
242
Yi Jin0ed9b682017-08-18 14:51:20 -0700243 Descriptor const* descriptor = IncidentProto::descriptor();
244
Yi Jinf8601842017-08-15 22:01:41 -0700245 if (strcmp(module, "incident") == 0) {
Yi Jin0ed9b682017-08-18 14:51:20 -0700246 return !generateIncidentSectionsCpp(descriptor);
Yi Jinf8601842017-08-15 22:01:41 -0700247 }
248 if (strcmp(module, "incidentd") == 0 ) {
Yi Jin0ed9b682017-08-18 14:51:20 -0700249 return !generateSectionListCpp(descriptor);
Yi Jinf8601842017-08-15 22:01:41 -0700250 }
251
252 // return failure if not called by the whitelisted modules
253 return 1;
Joe Onorato1754d742016-11-21 17:51:35 -0800254}