blob: 5baf260003161019b71e5a4988f516d4d7c5a2e0 [file] [log] [blame]
Jan Tattermuscha7fff862015-02-13 11:08:08 -08001#region Copyright notice and license
Jan Tattermuschaf77b3d2015-02-13 11:22:21 -08002// Copyright 2015, Google Inc.
Jan Tattermuscha7fff862015-02-13 11:08:08 -08003// All rights reserved.
Craig Tiller190d3602015-02-18 09:23:38 -08004//
Jan Tattermuscha7fff862015-02-13 11:08:08 -08005// Redistribution and use in source and binary forms, with or without
6// modification, are permitted provided that the following conditions are
7// met:
Craig Tiller190d3602015-02-18 09:23:38 -08008//
Jan Tattermuscha7fff862015-02-13 11:08:08 -08009// * Redistributions of source code must retain the above copyright
10// notice, this list of conditions and the following disclaimer.
11// * Redistributions in binary form must reproduce the above
12// copyright notice, this list of conditions and the following disclaimer
13// in the documentation and/or other materials provided with the
14// distribution.
15// * Neither the name of Google Inc. nor the names of its
16// contributors may be used to endorse or promote products derived from
17// this software without specific prior written permission.
Craig Tiller190d3602015-02-18 09:23:38 -080018//
Jan Tattermuscha7fff862015-02-13 11:08:08 -080019// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
20// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
21// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
22// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
23// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
24// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
25// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
26// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
27// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
28// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
29// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Jan Tattermuscha7fff862015-02-13 11:08:08 -080030#endregion
Jan Tattermuscha7608b02015-02-03 17:54:38 -080031using System;
Jan Tattermusch2ddb5a62015-06-08 17:51:36 -070032using System.Collections.Generic;
Jan Tattermuscha7608b02015-02-03 17:54:38 -080033using System.Runtime.InteropServices;
34using System.Threading;
35using System.Threading.Tasks;
Jan Tattermusch30868622015-02-19 09:22:33 -080036using Grpc.Core.Internal;
Jan Tattermuscha7608b02015-02-03 17:54:38 -080037
Jan Tattermusch30868622015-02-19 09:22:33 -080038namespace Grpc.Core
Jan Tattermuscha7608b02015-02-03 17:54:38 -080039{
Jan Tattermusch286975f2015-03-12 14:04:36 -070040 /// <summary>
41 /// gRPC Channel
42 /// </summary>
Jan Tattermusch15329232015-03-02 15:32:47 -080043 public class Channel : IDisposable
44 {
Jan Tattermusch04eb89c2015-06-12 13:03:05 -070045 readonly GrpcEnvironment environment;
Jan Tattermuscha7608b02015-02-03 17:54:38 -080046 readonly ChannelSafeHandle handle;
Jan Tattermusch075dde42015-03-11 18:21:00 -070047 readonly string target;
Jan Tattermusch04eb89c2015-06-12 13:03:05 -070048 bool disposed;
Jan Tattermuscha7608b02015-02-03 17:54:38 -080049
Jan Tattermusch15329232015-03-02 15:32:47 -080050 /// <summary>
Jan Tattermuschda71a4d2015-06-08 15:36:53 -070051 /// Creates a channel that connects to a specific host.
52 /// Port will default to 80 for an unsecure channel and to 443 a secure channel.
Jan Tattermusch15329232015-03-02 15:32:47 -080053 /// </summary>
Jan Tattermuschda71a4d2015-06-08 15:36:53 -070054 /// <param name="host">The DNS name of IP address of the host.</param>
55 /// <param name="credentials">Optional credentials to create a secure channel.</param>
Jan Tattermusch2ddb5a62015-06-08 17:51:36 -070056 /// <param name="options">Channel options.</param>
57 public Channel(string host, Credentials credentials = null, IEnumerable<ChannelOption> options = null)
Jan Tattermusch15329232015-03-02 15:32:47 -080058 {
Jan Tattermusch04eb89c2015-06-12 13:03:05 -070059 this.environment = GrpcEnvironment.GetInstance();
Jan Tattermusch2ddb5a62015-06-08 17:51:36 -070060 using (ChannelArgsSafeHandle nativeChannelArgs = ChannelOptions.CreateChannelArgs(options))
Jan Tattermusch15329232015-03-02 15:32:47 -080061 {
62 if (credentials != null)
63 {
64 using (CredentialsSafeHandle nativeCredentials = credentials.ToNativeCredentials())
65 {
Jan Tattermuschda71a4d2015-06-08 15:36:53 -070066 this.handle = ChannelSafeHandle.CreateSecure(nativeCredentials, host, nativeChannelArgs);
Jan Tattermusch15329232015-03-02 15:32:47 -080067 }
68 }
69 else
70 {
Jan Tattermuschda71a4d2015-06-08 15:36:53 -070071 this.handle = ChannelSafeHandle.Create(host, nativeChannelArgs);
Jan Tattermusch15329232015-03-02 15:32:47 -080072 }
73 }
Jan Tattermusch2ddb5a62015-06-08 17:51:36 -070074 this.target = GetOverridenTarget(host, options);
Jan Tattermusch15329232015-03-02 15:32:47 -080075 }
Jan Tattermuscha7608b02015-02-03 17:54:38 -080076
Jan Tattermuschda71a4d2015-06-08 15:36:53 -070077 /// <summary>
78 /// Creates a channel that connects to a specific host and port.
79 /// </summary>
80 /// <param name="host">DNS name or IP address</param>
81 /// <param name="port">the port</param>
82 /// <param name="credentials">Optional credentials to create a secure channel.</param>
Jan Tattermusch2ddb5a62015-06-08 17:51:36 -070083 /// <param name="options">Channel options.</param>
84 public Channel(string host, int port, Credentials credentials = null, IEnumerable<ChannelOption> options = null) :
85 this(string.Format("{0}:{1}", host, port), credentials, options)
Jan Tattermuscha7608b02015-02-03 17:54:38 -080086 {
Jan Tattermuscha7608b02015-02-03 17:54:38 -080087 }
88
89 public void Dispose()
90 {
91 Dispose(true);
92 GC.SuppressFinalize(this);
93 }
94
Jan Tattermuschda71a4d2015-06-08 15:36:53 -070095 internal string Target
96 {
97 get
98 {
99 return target;
100 }
101 }
102
Jan Tattermuscha5272b62015-04-30 11:56:46 -0700103 internal ChannelSafeHandle Handle
104 {
105 get
106 {
107 return this.handle;
108 }
109 }
110
Jan Tattermusch04eb89c2015-06-12 13:03:05 -0700111 internal CompletionQueueSafeHandle CompletionQueue
112 {
113 get
114 {
115 return this.environment.CompletionQueue;
116 }
117 }
118
119 internal CompletionRegistry CompletionRegistry
120 {
121 get
122 {
123 return this.environment.CompletionRegistry;
124 }
125 }
126
127 internal GrpcEnvironment Environment
128 {
129 get
130 {
131 return this.environment;
132 }
133 }
134
Jan Tattermuscha7608b02015-02-03 17:54:38 -0800135 protected virtual void Dispose(bool disposing)
136 {
Jan Tattermusch04eb89c2015-06-12 13:03:05 -0700137 if (disposing && handle != null && !disposed)
Jan Tattermuscha7608b02015-02-03 17:54:38 -0800138 {
Jan Tattermusch04eb89c2015-06-12 13:03:05 -0700139 disposed = true;
Jan Tattermuscha7608b02015-02-03 17:54:38 -0800140 handle.Dispose();
141 }
142 }
Jan Tattermusch15329232015-03-02 15:32:47 -0800143
Jan Tattermusch2ddb5a62015-06-08 17:51:36 -0700144 /// <summary>
145 /// Look for SslTargetNameOverride option and return its value instead of originalTarget
146 /// if found.
147 /// </summary>
148 private static string GetOverridenTarget(string originalTarget, IEnumerable<ChannelOption> options)
Jan Tattermusch15329232015-03-02 15:32:47 -0800149 {
Jan Tattermusch2ddb5a62015-06-08 17:51:36 -0700150 if (options == null)
Jan Tattermusch15329232015-03-02 15:32:47 -0800151 {
Jan Tattermusch2ddb5a62015-06-08 17:51:36 -0700152 return originalTarget;
Jan Tattermusch15329232015-03-02 15:32:47 -0800153 }
Jan Tattermusch2ddb5a62015-06-08 17:51:36 -0700154 foreach (var option in options)
Jan Tattermusch15329232015-03-02 15:32:47 -0800155 {
Jan Tattermusch2ddb5a62015-06-08 17:51:36 -0700156 if (option.Type == ChannelOption.OptionType.String
157 && option.Name == ChannelOptions.SslTargetNameOverride)
158 {
159 return option.StringValue;
160 }
Jan Tattermusch15329232015-03-02 15:32:47 -0800161 }
Jan Tattermusch2ddb5a62015-06-08 17:51:36 -0700162 return originalTarget;
Jan Tattermusch15329232015-03-02 15:32:47 -0800163 }
164 }
Craig Tiller190d3602015-02-18 09:23:38 -0800165}