forked from grpc/grpc-swift
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGenerator.swift
173 lines (152 loc) · 4.46 KB
/
Generator.swift
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
/*
* Copyright 2018, gRPC Authors All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import SwiftProtobufPluginLibrary
class Generator {
internal var options: GeneratorOptions
private var printer: CodePrinter
internal var file: FileDescriptor
internal var service: ServiceDescriptor! // context during generation
internal var method: MethodDescriptor! // context during generation
internal let protobufNamer: SwiftProtobufNamer
init(_ file: FileDescriptor, options: GeneratorOptions) {
self.file = file
self.options = options
self.printer = CodePrinter()
self.protobufNamer = SwiftProtobufNamer(
currentFile: file,
protoFileToModuleMappings: options.protoToModuleMappings
)
self.printMain()
}
public var code: String {
return self.printer.content
}
internal func println(_ text: String = "", newline: Bool = true) {
self.printer.print(text)
if newline {
self.printer.print("\n")
}
}
internal func indent() {
self.printer.indent()
}
internal func outdent() {
self.printer.outdent()
}
internal func withIndentation(body: () -> Void) {
self.indent()
body()
self.outdent()
}
internal enum Braces {
case none
case curly
case round
var open: String {
switch self {
case .none:
return ""
case .curly:
return "{"
case .round:
return "("
}
}
var close: String {
switch self {
case .none:
return ""
case .curly:
return "}"
case .round:
return ")"
}
}
}
internal func withIndentation(
_ header: String,
braces: Braces,
_ body: () -> Void
) {
let spaceBeforeOpeningBrace: Bool
switch braces {
case .curly:
spaceBeforeOpeningBrace = true
case .round, .none:
spaceBeforeOpeningBrace = false
}
self.println(header + "\(spaceBeforeOpeningBrace ? " " : "")" + "\(braces.open)")
self.withIndentation(body: body)
self.println(braces.close)
}
private func printMain() {
self.printer.print("""
//
// DO NOT EDIT.
// swift-format-ignore-file
//
// Generated by the protocol buffer compiler.
// Source: \(self.file.name)
//
//
// Copyright 2018, gRPC Authors All rights reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//\n
""")
let moduleNames = [
self.options.gRPCModuleName,
"NIO",
"NIOConcurrencyHelpers",
self.options.swiftProtobufModuleName,
]
for moduleName in (moduleNames + self.options.extraModuleImports).sorted() {
self.println("import \(moduleName)")
}
// Add imports for required modules
let moduleMappings = self.options.protoToModuleMappings
for importedProtoModuleName in moduleMappings.neededModules(forFile: self.file) ?? [] {
self.println("import \(importedProtoModuleName)")
}
self.println()
// We defer the check for printing clients to `printClient()` since this could be the 'real'
// client or the test client.
for service in self.file.services {
self.service = service
self.printClient()
}
self.println()
if self.options.generateServer {
for service in self.file.services {
self.service = service
printServer()
}
}
}
func printAvailabilityForAsyncAwait() {
self.println("@available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)")
}
}