OLD | NEW |
(Empty) | |
| 1 #region Copyright notice and license |
| 2 |
| 3 // Copyright 2015-2016, Google Inc. |
| 4 // All rights reserved. |
| 5 // |
| 6 // Redistribution and use in source and binary forms, with or without |
| 7 // modification, are permitted provided that the following conditions are |
| 8 // met: |
| 9 // |
| 10 // * Redistributions of source code must retain the above copyright |
| 11 // notice, this list of conditions and the following disclaimer. |
| 12 // * Redistributions in binary form must reproduce the above |
| 13 // copyright notice, this list of conditions and the following disclaimer |
| 14 // in the documentation and/or other materials provided with the |
| 15 // distribution. |
| 16 // * Neither the name of Google Inc. nor the names of its |
| 17 // contributors may be used to endorse or promote products derived from |
| 18 // this software without specific prior written permission. |
| 19 // |
| 20 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 21 // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 22 // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
| 23 // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
| 24 // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| 25 // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
| 26 // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 27 // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 28 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 29 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 30 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 31 |
| 32 #endregion |
| 33 |
| 34 using System; |
| 35 using System.Collections.Generic; |
| 36 using System.Threading; |
| 37 using System.Threading.Tasks; |
| 38 using Google.Protobuf; |
| 39 using Grpc.Core; |
| 40 using Grpc.Core.Utils; |
| 41 using Grpc.IntegrationTesting; |
| 42 |
| 43 namespace Grpc.Testing |
| 44 { |
| 45 /// <summary> |
| 46 /// Implementation of WorkerService server |
| 47 /// </summary> |
| 48 public class WorkerServiceImpl : WorkerService.IWorkerService |
| 49 { |
| 50 readonly Action stopRequestHandler; |
| 51 |
| 52 public WorkerServiceImpl(Action stopRequestHandler) |
| 53 { |
| 54 this.stopRequestHandler = GrpcPreconditions.CheckNotNull(stopRequest
Handler); |
| 55 } |
| 56 |
| 57 public async Task RunServer(IAsyncStreamReader<ServerArgs> requestStream
, IServerStreamWriter<ServerStatus> responseStream, ServerCallContext context) |
| 58 { |
| 59 GrpcPreconditions.CheckState(await requestStream.MoveNext()); |
| 60 var serverConfig = requestStream.Current.Setup; |
| 61 var runner = ServerRunners.CreateStarted(serverConfig); |
| 62 |
| 63 await responseStream.WriteAsync(new ServerStatus |
| 64 { |
| 65 Stats = runner.GetStats(false), |
| 66 Port = runner.BoundPort, |
| 67 Cores = 0, // TODO: set number of cores |
| 68 }); |
| 69 |
| 70 while (await requestStream.MoveNext()) |
| 71 { |
| 72 var reset = requestStream.Current.Mark.Reset; |
| 73 await responseStream.WriteAsync(new ServerStatus |
| 74 { |
| 75 Stats = runner.GetStats(reset) |
| 76 }); |
| 77 } |
| 78 await runner.StopAsync(); |
| 79 } |
| 80 |
| 81 public async Task RunClient(IAsyncStreamReader<ClientArgs> requestStream
, IServerStreamWriter<ClientStatus> responseStream, ServerCallContext context) |
| 82 { |
| 83 GrpcPreconditions.CheckState(await requestStream.MoveNext()); |
| 84 var clientConfig = requestStream.Current.Setup; |
| 85 var runner = ClientRunners.CreateStarted(clientConfig); |
| 86 |
| 87 await responseStream.WriteAsync(new ClientStatus |
| 88 { |
| 89 Stats = runner.GetStats(false) |
| 90 }); |
| 91 |
| 92 while (await requestStream.MoveNext()) |
| 93 { |
| 94 var reset = requestStream.Current.Mark.Reset; |
| 95 await responseStream.WriteAsync(new ClientStatus |
| 96 { |
| 97 Stats = runner.GetStats(reset) |
| 98 }); |
| 99 } |
| 100 await runner.StopAsync(); |
| 101 } |
| 102 |
| 103 public Task<CoreResponse> CoreCount(CoreRequest request, ServerCallConte
xt context) |
| 104 { |
| 105 return Task.FromResult(new CoreResponse { Cores = Environment.Proces
sorCount }); |
| 106 } |
| 107 |
| 108 public Task<Void> QuitWorker(Void request, ServerCallContext context) |
| 109 { |
| 110 stopRequestHandler(); |
| 111 return Task.FromResult(new Void()); |
| 112 } |
| 113 } |
| 114 } |
OLD | NEW |