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
|
// Protocol Buffers - Google's data interchange format
// Copyright 2008 Google Inc. All rights reserved.
// https://developers.google.com/protocol-buffers/
//
// 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 Google Inc. 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
// OWNER 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 "google/protobuf/compiler/objectivec/import_writer.h"
#include <iostream>
#include <ostream>
#include <string>
#include <vector>
#include "y_absl/container/flat_hash_map.h"
#include "y_absl/log/absl_check.h"
#include "y_absl/strings/ascii.h"
#include "y_absl/strings/match.h"
#include "google/protobuf/compiler/objectivec/line_consumer.h"
#include "google/protobuf/compiler/objectivec/names.h"
#include "google/protobuf/io/printer.h"
// NOTE: src/google/protobuf/compiler/plugin.cc makes use of cerr for some
// error cases, so it seems to be ok to use as a back door for errors.
namespace google {
namespace protobuf {
namespace compiler {
namespace objectivec {
namespace {
class ProtoFrameworkCollector : public LineConsumer {
public:
explicit ProtoFrameworkCollector(
y_absl::flat_hash_map<TProtoStringType, TProtoStringType>*
inout_proto_file_to_framework_name)
: map_(inout_proto_file_to_framework_name) {}
bool ConsumeLine(y_absl::string_view line, TProtoStringType* out_error) override;
private:
y_absl::flat_hash_map<TProtoStringType, TProtoStringType>* map_;
};
bool ProtoFrameworkCollector::ConsumeLine(y_absl::string_view line,
TProtoStringType* out_error) {
int offset = line.find(':');
if (offset == y_absl::string_view::npos) {
*out_error = y_absl::StrCat(
"Framework/proto file mapping line without colon sign: '", line, "'.");
return false;
}
y_absl::string_view framework_name =
y_absl::StripAsciiWhitespace(line.substr(0, offset));
y_absl::string_view proto_file_list =
y_absl::StripAsciiWhitespace(line.substr(offset + 1));
int start = 0;
while (start < proto_file_list.length()) {
offset = proto_file_list.find(',', start);
if (offset == y_absl::string_view::npos) {
offset = proto_file_list.length();
}
y_absl::string_view proto_file = y_absl::StripAsciiWhitespace(
proto_file_list.substr(start, offset - start));
if (!proto_file.empty()) {
auto existing_entry = map_->find(proto_file);
if (existing_entry != map_->end()) {
std::cerr << "warning: duplicate proto file reference, replacing "
"framework entry for '"
<< proto_file << "' with '" << framework_name << "' (was '"
<< existing_entry->second << "')." << std::endl;
std::cerr.flush();
}
if (y_absl::StrContains(proto_file, ' ')) {
std::cerr << "note: framework mapping file had a proto file with a "
"space in, hopefully that isn't a missing comma: '"
<< proto_file << "'" << std::endl;
std::cerr.flush();
}
(*map_)[proto_file] = TProtoStringType(framework_name);
}
start = offset + 1;
}
return true;
}
} // namespace
ImportWriter::ImportWriter(
const TProtoStringType& generate_for_named_framework,
const TProtoStringType& named_framework_to_proto_path_mappings_path,
const TProtoStringType& runtime_import_prefix, bool for_bundled_proto)
: generate_for_named_framework_(generate_for_named_framework),
named_framework_to_proto_path_mappings_path_(
named_framework_to_proto_path_mappings_path),
runtime_import_prefix_(runtime_import_prefix),
for_bundled_proto_(for_bundled_proto),
need_to_parse_mapping_file_(true) {}
void ImportWriter::AddFile(const FileDescriptor* file,
const TProtoStringType& header_extension) {
if (IsProtobufLibraryBundledProtoFile(file)) {
// The imports of the WKTs are only needed within the library itself,
// in other cases, they get skipped because the generated code already
// import GPBProtocolBuffers.h and hence proves them.
if (for_bundled_proto_) {
protobuf_imports_.emplace_back(
y_absl::StrCat("GPB", FilePathBasename(file), header_extension));
}
return;
}
// Lazy parse any mappings.
if (need_to_parse_mapping_file_) {
ParseFrameworkMappings();
}
auto proto_lookup = proto_file_to_framework_name_.find(file->name());
if (proto_lookup != proto_file_to_framework_name_.end()) {
other_framework_imports_.emplace_back(y_absl::StrCat(
proto_lookup->second, "/", FilePathBasename(file), header_extension));
return;
}
if (!generate_for_named_framework_.empty()) {
other_framework_imports_.push_back(
y_absl::StrCat(generate_for_named_framework_, "/", FilePathBasename(file),
header_extension));
return;
}
other_imports_.push_back(FilePath(file) + header_extension);
}
void ImportWriter::AddRuntimeImport(const TProtoStringType& header_name) {
protobuf_imports_.push_back(header_name);
}
void ImportWriter::PrintFileImports(io::Printer* p) const {
if (!other_framework_imports_.empty()) {
for (const auto& header : other_framework_imports_) {
p->Print("#import <$header$>\n", "header", header);
}
}
if (!other_imports_.empty()) {
if (!other_framework_imports_.empty()) {
p->Print("\n");
}
for (const auto& header : other_imports_) {
p->Print("#import \"$header$\"\n", "header", header);
}
}
}
void ImportWriter::PrintRuntimeImports(io::Printer* p,
bool default_cpp_symbol) const {
// Given an override, use that.
if (!runtime_import_prefix_.empty()) {
for (const auto& header : protobuf_imports_) {
p->Print("#import \"$import_prefix$/$header$\"\n", "header", header,
"import_prefix", runtime_import_prefix_);
}
return;
}
// If bundled, no need to do the framework support below.
if (for_bundled_proto_) {
Y_ABSL_DCHECK(!default_cpp_symbol);
for (const auto& header : protobuf_imports_) {
p->Print("#import \"$header$\"\n", "header", header);
}
return;
}
const TProtoStringType cpp_symbol(
ProtobufFrameworkImportSymbol(ProtobufLibraryFrameworkName));
if (default_cpp_symbol) {
p->Print(
// clang-format off
"// This CPP symbol can be defined to use imports that match up to the framework\n"
"// imports needed when using CocoaPods.\n"
"#if !defined($cpp_symbol$)\n"
" #define $cpp_symbol$ 0\n"
"#endif\n"
"\n",
// clang-format on
"cpp_symbol", cpp_symbol);
}
p->Print("#if $cpp_symbol$\n", "cpp_symbol", cpp_symbol);
for (const auto& header : protobuf_imports_) {
p->Print(" #import <$framework_name$/$header$>\n", "framework_name",
ProtobufLibraryFrameworkName, "header", header);
}
p->Print("#else\n");
for (const auto& header : protobuf_imports_) {
p->Print(" #import \"$header$\"\n", "header", header);
}
p->Print("#endif\n");
}
void ImportWriter::ParseFrameworkMappings() {
need_to_parse_mapping_file_ = false;
if (named_framework_to_proto_path_mappings_path_.empty()) {
return; // Nothing to do.
}
ProtoFrameworkCollector collector(&proto_file_to_framework_name_);
TProtoStringType parse_error;
if (!ParseSimpleFile(named_framework_to_proto_path_mappings_path_, &collector,
&parse_error)) {
std::cerr << "error parsing "
<< named_framework_to_proto_path_mappings_path_ << " : "
<< parse_error << std::endl;
std::cerr.flush();
}
}
} // namespace objectivec
} // namespace compiler
} // namespace protobuf
} // namespace google
|