OLD | NEW |
(Empty) | |
| 1 #region Copyright notice and license |
| 2 |
| 3 // Copyright 2015, 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.Diagnostics; |
| 37 using System.IO; |
| 38 using System.Text.RegularExpressions; |
| 39 using System.Threading.Tasks; |
| 40 |
| 41 using CommandLine; |
| 42 using CommandLine.Text; |
| 43 using Grpc.Core; |
| 44 using Grpc.Core.Utils; |
| 45 using Grpc.Testing; |
| 46 using NUnit.Framework; |
| 47 |
| 48 namespace Grpc.IntegrationTesting |
| 49 { |
| 50 public class InteropServer |
| 51 { |
| 52 private class ServerOptions |
| 53 { |
| 54 [Option("port", DefaultValue = 8070)] |
| 55 public int Port { get; set; } |
| 56 |
| 57 // Deliberately using nullable bool type to allow --use_tls=true syn
tax (as opposed to --use_tls) |
| 58 [Option("use_tls", DefaultValue = false)] |
| 59 public bool? UseTls { get; set; } |
| 60 |
| 61 [HelpOption] |
| 62 public string GetUsage() |
| 63 { |
| 64 var help = new HelpText |
| 65 { |
| 66 Heading = "gRPC C# interop testing server", |
| 67 AddDashesToOption = true |
| 68 }; |
| 69 help.AddPreOptionsLine("Usage:"); |
| 70 help.AddOptions(this); |
| 71 return help; |
| 72 } |
| 73 } |
| 74 |
| 75 ServerOptions options; |
| 76 |
| 77 private InteropServer(ServerOptions options) |
| 78 { |
| 79 this.options = options; |
| 80 } |
| 81 |
| 82 public static void Run(string[] args) |
| 83 { |
| 84 var options = new ServerOptions(); |
| 85 if (!Parser.Default.ParseArguments(args, options)) |
| 86 { |
| 87 Environment.Exit(1); |
| 88 } |
| 89 |
| 90 var interopServer = new InteropServer(options); |
| 91 interopServer.Run(); |
| 92 } |
| 93 |
| 94 private void Run() |
| 95 { |
| 96 var server = new Server |
| 97 { |
| 98 Services = { TestService.BindService(new TestServiceImpl()) } |
| 99 }; |
| 100 |
| 101 string host = "0.0.0.0"; |
| 102 int port = options.Port; |
| 103 if (options.UseTls.Value) |
| 104 { |
| 105 server.Ports.Add(host, port, TestCredentials.CreateSslServerCred
entials()); |
| 106 } |
| 107 else |
| 108 { |
| 109 server.Ports.Add(host, options.Port, ServerCredentials.Insecure)
; |
| 110 } |
| 111 Console.WriteLine("Running server on " + string.Format("{0}:{1}", ho
st, port)); |
| 112 server.Start(); |
| 113 |
| 114 server.ShutdownTask.Wait(); |
| 115 } |
| 116 } |
| 117 } |
OLD | NEW |