| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- // Sources/SwiftProtobufPluginLibrary/Google_Protobuf_Compiler_CodeGeneratorResponse+Extensions.swift - CodeGeneratorResponse extensions
- //
- // Copyright (c) 2014 - 2017 Apple Inc. and the project authors
- // Licensed under Apache License v2.0 with Runtime Library Exception
- //
- // See LICENSE.txt for license information:
- // https://github.com/apple/swift-protobuf/blob/main/LICENSE.txt
- //
- // -----------------------------------------------------------------------------
- ///
- /// Extensions to `CodeGeneratorResponse` provide some simple helpers.
- ///
- // -----------------------------------------------------------------------------
- extension Google_Protobuf_Compiler_CodeGeneratorResponse {
- /// Helper to make a response with an error.
- @available(*, deprecated, message: "Please move your plugin to the CodeGenerator interface")
- public init(error: String) {
- self.init()
- self.error = error
- }
- /// Helper to make a response with a set of files
- @available(*, deprecated, message: "Please move your plugin to the CodeGenerator interface")
- public init(files: [Google_Protobuf_Compiler_CodeGeneratorResponse.File]) {
- self.init(files: files, supportedFeatures: [])
- }
- /// Helper to make a response with a set of files and supported features.
- @available(*, deprecated, message: "Please move your plugin to the CodeGenerator interface")
- public init(
- files: [Google_Protobuf_Compiler_CodeGeneratorResponse.File],
- supportedFeatures: [Google_Protobuf_Compiler_CodeGeneratorResponse.Feature] = []
- ) {
- self.init()
- self.file = files
- self.supportedFeatures = supportedFeatures.reduce(0) { $0 | UInt64($1.rawValue) }
- }
- }
- extension Google_Protobuf_Compiler_CodeGeneratorResponse.File {
- /// Helper to make a Response.File with specific content.
- public init(name: String, content: String) {
- self.init()
- self.name = name
- self.content = content
- }
- }
|