/* * Copyright 2017, 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 Foundation import SwiftProtobuf import SwiftProtobufPluginLibrary func Log(_ message: String) { FileHandle.standardError.write((message + "\n").data(using: .utf8)!) } // from apple/swift-protobuf/Sources/protoc-gen-swift/StringUtils.swift func splitPath(pathname: String) -> (dir: String, base: String, suffix: String) { var dir = "" var base = "" var suffix = "" #if swift(>=3.2) let pathnameChars = pathname #else let pathnameChars = pathname.characters #endif for c in pathnameChars { if c == "/" { dir += base + suffix + String(c) base = "" suffix = "" } else if c == "." { base += suffix suffix = String(c) } else { suffix += String(c) } } #if swift(>=3.2) let validSuffix = suffix.isEmpty || suffix.first == "." #else let validSuffix = suffix.isEmpty || suffix.characters.first == "." #endif if !validSuffix { base += suffix suffix = "" } return (dir: dir, base: base, suffix: suffix) } enum FileNaming: String { case FullPath case PathToUnderscores case DropPath } func outputFileName(component: String, fileDescriptor: FileDescriptor, fileNamingOption: FileNaming) -> String { let ext = "." + component + ".swift" let pathParts = splitPath(pathname: fileDescriptor.name) switch fileNamingOption { case .FullPath: return pathParts.dir + pathParts.base + ext case .PathToUnderscores: let dirWithUnderscores = pathParts.dir.replacingOccurrences(of: "/", with: "_") return dirWithUnderscores + pathParts.base + ext case .DropPath: return pathParts.base + ext } } var generatedFiles: [String: Int] = [:] func uniqueOutputFileName(component: String, fileDescriptor: FileDescriptor, fileNamingOption: FileNaming) -> String { let defaultName = outputFileName(component: component, fileDescriptor: fileDescriptor, fileNamingOption: fileNamingOption) if let count = generatedFiles[defaultName] { generatedFiles[defaultName] = count + 1 return outputFileName(component: "\(count)." + component, fileDescriptor: fileDescriptor, fileNamingOption: fileNamingOption) } else { generatedFiles[defaultName] = 1 return defaultName } } func main() throws { // initialize responses var response = Google_Protobuf_Compiler_CodeGeneratorResponse() // read plugin input let rawRequest = try Stdin.readall() let request = try Google_Protobuf_Compiler_CodeGeneratorRequest(serializedData: rawRequest) let options = try GeneratorOptions(parameter: request.parameter) // Build the SwiftProtobufPluginLibrary model of the plugin input let descriptorSet = DescriptorSet(protos: request.protoFile) // We need to generate conformance to `GRPCPayload` for request/response types. Track which // types we've seen to avoid generating the conformance multiple times. var observedMessages = Set() // process each .proto file in filename order in an attempt to stabilise the output (i.e. where // conformance to `GRPCPayload` is generated) for name in request.fileToGenerate.sorted() { let fileDescriptor = descriptorSet.lookupFileDescriptor(protoName: name) if fileDescriptor.services.count > 0 { let grpcFileName = uniqueOutputFileName(component: "grpc", fileDescriptor: fileDescriptor, fileNamingOption: options.fileNaming) let grpcGenerator = Generator(fileDescriptor, options: options, observedMessages: observedMessages) var grpcFile = Google_Protobuf_Compiler_CodeGeneratorResponse.File() grpcFile.name = grpcFileName grpcFile.content = grpcGenerator.code response.file.append(grpcFile) observedMessages.formUnion(grpcGenerator.observedMessages) } } // return everything to the caller let serializedResponse = try response.serializedData() Stdout.write(bytes: serializedResponse) } do { try main() } catch { Log("ERROR: \(error)") }