| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374 |
- /*
- * DO NOT EDIT.
- *
- * Generated by the protocol buffer compiler.
- * Source: echo.proto
- *
- */
- /*
- * 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 Dispatch
- import gRPC
- import SwiftProtobuf
- /// Type for errors thrown from generated client code.
- internal enum Echo_EchoClientError : Error {
- case endOfStream
- case invalidMessageReceived
- case error(c: CallResult)
- }
- /// Get (Unary)
- internal class Echo_EchoGetCall {
- private var call : Call
- /// Create a call.
- fileprivate init(_ channel: Channel) {
- self.call = channel.makeCall("/echo.Echo/Get")
- }
- /// Run the call. Blocks until the reply is received.
- fileprivate func run(request: Echo_EchoRequest,
- metadata: Metadata) throws -> Echo_EchoResponse {
- let sem = DispatchSemaphore(value: 0)
- var returnCallResult : CallResult!
- var returnResponse : Echo_EchoResponse?
- _ = try start(request:request, metadata:metadata) {response, callResult in
- returnResponse = response
- returnCallResult = callResult
- sem.signal()
- }
- _ = sem.wait(timeout: DispatchTime.distantFuture)
- if let returnResponse = returnResponse {
- return returnResponse
- } else {
- throw Echo_EchoClientError.error(c: returnCallResult)
- }
- }
- /// Start the call. Nonblocking.
- fileprivate func start(request: Echo_EchoRequest,
- metadata: Metadata,
- completion: @escaping (Echo_EchoResponse?, CallResult)->())
- throws -> Echo_EchoGetCall {
- let requestData = try request.serializedData()
- try call.start(.unary,
- metadata:metadata,
- message:requestData)
- {(callResult) in
- if let responseData = callResult.resultData,
- let response = try? Echo_EchoResponse(serializedData:responseData) {
- completion(response, callResult)
- } else {
- completion(nil, callResult)
- }
- }
- return self
- }
- /// Cancel the call.
- internal func cancel() {
- call.cancel()
- }
- }
- /// Expand (Server Streaming)
- internal class Echo_EchoExpandCall {
- private var call : Call
- /// Create a call.
- fileprivate init(_ channel: Channel) {
- self.call = channel.makeCall("/echo.Echo/Expand")
- }
- /// Call this once with the message to send. Nonblocking.
- fileprivate func start(request: Echo_EchoRequest,
- metadata: Metadata,
- completion: @escaping (CallResult) -> ())
- throws -> Echo_EchoExpandCall {
- let requestData = try request.serializedData()
- try call.start(.serverStreaming,
- metadata:metadata,
- message:requestData,
- completion:completion)
- return self
- }
- /// Call this to wait for a result. Blocking.
- internal func receive() throws -> Echo_EchoResponse {
- var returnError : Echo_EchoClientError?
- var returnResponse : Echo_EchoResponse!
- let sem = DispatchSemaphore(value: 0)
- do {
- try receive() {response, error in
- returnResponse = response
- returnError = error
- sem.signal()
- }
- _ = sem.wait(timeout: DispatchTime.distantFuture)
- }
- if let returnError = returnError {
- throw returnError
- }
- return returnResponse
- }
- /// Call this to wait for a result. Nonblocking.
- internal func receive(completion:@escaping (Echo_EchoResponse?, Echo_EchoClientError?)->()) throws {
- do {
- try call.receiveMessage() {(responseData) in
- if let responseData = responseData {
- if let response = try? Echo_EchoResponse(serializedData:responseData) {
- completion(response, nil)
- } else {
- completion(nil, Echo_EchoClientError.invalidMessageReceived)
- }
- } else {
- completion(nil, Echo_EchoClientError.endOfStream)
- }
- }
- }
- }
- /// Cancel the call.
- internal func cancel() {
- call.cancel()
- }
- }
- /// Collect (Client Streaming)
- internal class Echo_EchoCollectCall {
- private var call : Call
- /// Create a call.
- fileprivate init(_ channel: Channel) {
- self.call = channel.makeCall("/echo.Echo/Collect")
- }
- /// Call this to start a call. Nonblocking.
- fileprivate func start(metadata:Metadata, completion:@escaping (CallResult)->())
- throws -> Echo_EchoCollectCall {
- try self.call.start(.clientStreaming, metadata:metadata, completion:completion)
- return self
- }
- /// Call this to send each message in the request stream. Nonblocking.
- internal func send(_ message:Echo_EchoRequest, errorHandler:@escaping (Error)->()) throws {
- let messageData = try message.serializedData()
- try call.sendMessage(data:messageData, errorHandler:errorHandler)
- }
- /// Call this to close the connection and wait for a response. Blocking.
- internal func closeAndReceive() throws -> Echo_EchoResponse {
- var returnError : Echo_EchoClientError?
- var returnResponse : Echo_EchoResponse!
- let sem = DispatchSemaphore(value: 0)
- do {
- try closeAndReceive() {response, error in
- returnResponse = response
- returnError = error
- sem.signal()
- }
- _ = sem.wait(timeout: DispatchTime.distantFuture)
- } catch (let error) {
- throw error
- }
- if let returnError = returnError {
- throw returnError
- }
- return returnResponse
- }
- /// Call this to close the connection and wait for a response. Nonblocking.
- internal func closeAndReceive(completion:@escaping (Echo_EchoResponse?, Echo_EchoClientError?)->())
- throws {
- do {
- try call.receiveMessage() {(responseData) in
- if let responseData = responseData,
- let response = try? Echo_EchoResponse(serializedData:responseData) {
- completion(response, nil)
- } else {
- completion(nil, Echo_EchoClientError.invalidMessageReceived)
- }
- }
- try call.close(completion:{})
- } catch (let error) {
- throw error
- }
- }
- /// Cancel the call.
- internal func cancel() {
- call.cancel()
- }
- }
- /// Update (Bidirectional Streaming)
- internal class Echo_EchoUpdateCall {
- private var call : Call
- /// Create a call.
- fileprivate init(_ channel: Channel) {
- self.call = channel.makeCall("/echo.Echo/Update")
- }
- /// Call this to start a call. Nonblocking.
- fileprivate func start(metadata:Metadata, completion:@escaping (CallResult)->())
- throws -> Echo_EchoUpdateCall {
- try self.call.start(.bidiStreaming, metadata:metadata, completion:completion)
- return self
- }
- /// Call this to wait for a result. Blocking.
- internal func receive() throws -> Echo_EchoResponse {
- var returnError : Echo_EchoClientError?
- var returnMessage : Echo_EchoResponse!
- let sem = DispatchSemaphore(value: 0)
- do {
- try receive() {response, error in
- returnMessage = response
- returnError = error
- sem.signal()
- }
- _ = sem.wait(timeout: DispatchTime.distantFuture)
- }
- if let returnError = returnError {
- throw returnError
- }
- return returnMessage
- }
- /// Call this to wait for a result. Nonblocking.
- internal func receive(completion:@escaping (Echo_EchoResponse?, Echo_EchoClientError?)->()) throws {
- do {
- try call.receiveMessage() {(data) in
- if let data = data {
- if let returnMessage = try? Echo_EchoResponse(serializedData:data) {
- completion(returnMessage, nil)
- } else {
- completion(nil, Echo_EchoClientError.invalidMessageReceived)
- }
- } else {
- completion(nil, Echo_EchoClientError.endOfStream)
- }
- }
- }
- }
- /// Call this to send each message in the request stream.
- internal func send(_ message:Echo_EchoRequest, errorHandler:@escaping (Error)->()) throws {
- let messageData = try message.serializedData()
- try call.sendMessage(data:messageData, errorHandler:errorHandler)
- }
- /// Call this to close the sending connection. Blocking.
- internal func closeSend() throws {
- let sem = DispatchSemaphore(value: 0)
- try closeSend() {
- sem.signal()
- }
- _ = sem.wait(timeout: DispatchTime.distantFuture)
- }
- /// Call this to close the sending connection. Nonblocking.
- internal func closeSend(completion:@escaping ()->()) throws {
- try call.close() {
- completion()
- }
- }
- /// Cancel the call.
- internal func cancel() {
- call.cancel()
- }
- }
- /// Call methods of this class to make API calls.
- internal class Echo_EchoService {
- private var channel: Channel
- /// This metadata will be sent with all requests.
- internal var metadata : Metadata
- /// This property allows the service host name to be overridden.
- /// For example, it can be used to make calls to "localhost:8080"
- /// appear to be to "example.com".
- internal var host : String {
- get {
- return self.channel.host
- }
- set {
- self.channel.host = newValue
- }
- }
- /// Create a client that makes insecure connections.
- internal init(address: String) {
- gRPC.initialize()
- channel = Channel(address:address)
- metadata = Metadata()
- }
- /// Create a client that makes secure connections.
- internal init(address: String, certificates: String?, host: String?) {
- gRPC.initialize()
- channel = Channel(address:address, certificates:certificates, host:host)
- metadata = Metadata()
- }
- /// Synchronous. Unary.
- internal func get(_ request: Echo_EchoRequest)
- throws
- -> Echo_EchoResponse {
- return try Echo_EchoGetCall(channel).run(request:request, metadata:metadata)
- }
- /// Asynchronous. Unary.
- internal func get(_ request: Echo_EchoRequest,
- completion: @escaping (Echo_EchoResponse?, CallResult)->())
- throws
- -> Echo_EchoGetCall {
- return try Echo_EchoGetCall(channel).start(request:request,
- metadata:metadata,
- completion:completion)
- }
- /// Asynchronous. Server-streaming.
- /// Send the initial message.
- /// Use methods on the returned object to get streamed responses.
- internal func expand(_ request: Echo_EchoRequest, completion: @escaping (CallResult)->())
- throws
- -> Echo_EchoExpandCall {
- return try Echo_EchoExpandCall(channel).start(request:request, metadata:metadata, completion:completion)
- }
- /// Asynchronous. Client-streaming.
- /// Use methods on the returned object to stream messages and
- /// to close the connection and wait for a final response.
- internal func collect(completion: @escaping (CallResult)->())
- throws
- -> Echo_EchoCollectCall {
- return try Echo_EchoCollectCall(channel).start(metadata:metadata, completion:completion)
- }
- /// Asynchronous. Bidirectional-streaming.
- /// Use methods on the returned object to stream messages,
- /// to wait for replies, and to close the connection.
- internal func update(completion: @escaping (CallResult)->())
- throws
- -> Echo_EchoUpdateCall {
- return try Echo_EchoUpdateCall(channel).start(metadata:metadata, completion:completion)
- }
- }
|