blob: 64c6adf2bfcd48d98777dd0224228dd57e50de68 [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 Tattermusch766d72b2015-07-21 20:09:25 -070031
Jan Tattermuscha7608b02015-02-03 17:54:38 -080032using System;
Jan Tattermusch2ddb5a62015-06-08 17:51:36 -070033using System.Collections.Generic;
Jan Tattermusch766d72b2015-07-21 20:09:25 -070034using System.Linq;
Jan Tattermuscha7608b02015-02-03 17:54:38 -080035using System.Runtime.InteropServices;
36using System.Threading;
37using System.Threading.Tasks;
Jan Tattermusch766d72b2015-07-21 20:09:25 -070038
Jan Tattermusch30868622015-02-19 09:22:33 -080039using Grpc.Core.Internal;
Jan Tattermuschd8bbdea2015-07-22 12:51:06 -070040using Grpc.Core.Logging;
41using Grpc.Core.Utils;
Jan Tattermuscha7608b02015-02-03 17:54:38 -080042
Jan Tattermusch30868622015-02-19 09:22:33 -080043namespace Grpc.Core
Jan Tattermuscha7608b02015-02-03 17:54:38 -080044{
Jan Tattermusch286975f2015-03-12 14:04:36 -070045 /// <summary>
46 /// gRPC Channel
47 /// </summary>
Jan Tattermusch15329232015-03-02 15:32:47 -080048 public class Channel : IDisposable
49 {
Jan Tattermuschd8bbdea2015-07-22 12:51:06 -070050 static readonly ILogger Logger = GrpcEnvironment.Logger.ForType<Channel>();
51
Jan Tattermusch0c140a82015-08-02 00:54:02 -070052 readonly string target;
Jan Tattermusch04eb89c2015-06-12 13:03:05 -070053 readonly GrpcEnvironment environment;
Jan Tattermuscha7608b02015-02-03 17:54:38 -080054 readonly ChannelSafeHandle handle;
Jan Tattermusch766d72b2015-07-21 20:09:25 -070055 readonly List<ChannelOption> options;
Jan Tattermusch04eb89c2015-06-12 13:03:05 -070056 bool disposed;
Jan Tattermuscha7608b02015-02-03 17:54:38 -080057
Jan Tattermusch15329232015-03-02 15:32:47 -080058 /// <summary>
Jan Tattermuschda71a4d2015-06-08 15:36:53 -070059 /// Creates a channel that connects to a specific host.
Jan Tattermuschd8bbdea2015-07-22 12:51:06 -070060 /// Port will default to 80 for an unsecure channel and to 443 for a secure channel.
Jan Tattermusch15329232015-03-02 15:32:47 -080061 /// </summary>
Jan Tattermusch0c140a82015-08-02 00:54:02 -070062 /// <param name="target">Target of the channel.</param>
Jan Tattermuscha96ac052015-07-24 14:49:30 -070063 /// <param name="credentials">Credentials to secure the channel.</param>
Jan Tattermusch2ddb5a62015-06-08 17:51:36 -070064 /// <param name="options">Channel options.</param>
Jan Tattermusch0c140a82015-08-02 00:54:02 -070065 public Channel(string target, Credentials credentials, IEnumerable<ChannelOption> options = null)
Jan Tattermusch15329232015-03-02 15:32:47 -080066 {
Jan Tattermusch0c140a82015-08-02 00:54:02 -070067 this.target = Preconditions.CheckNotNull(target, "target");
Jan Tattermusch04eb89c2015-06-12 13:03:05 -070068 this.environment = GrpcEnvironment.GetInstance();
Jan Tattermusch766d72b2015-07-21 20:09:25 -070069 this.options = options != null ? new List<ChannelOption>(options) : new List<ChannelOption>();
70
71 EnsureUserAgentChannelOption(this.options);
Jan Tattermuscha96ac052015-07-24 14:49:30 -070072 using (CredentialsSafeHandle nativeCredentials = credentials.ToNativeCredentials())
Jan Tattermusch766d72b2015-07-21 20:09:25 -070073 using (ChannelArgsSafeHandle nativeChannelArgs = ChannelOptions.CreateChannelArgs(this.options))
Jan Tattermusch15329232015-03-02 15:32:47 -080074 {
Jan Tattermuscha96ac052015-07-24 14:49:30 -070075 if (nativeCredentials != null)
Jan Tattermusch15329232015-03-02 15:32:47 -080076 {
Jan Tattermusch0c140a82015-08-02 00:54:02 -070077 this.handle = ChannelSafeHandle.CreateSecure(nativeCredentials, target, nativeChannelArgs);
Jan Tattermusch15329232015-03-02 15:32:47 -080078 }
79 else
80 {
Jan Tattermusch0c140a82015-08-02 00:54:02 -070081 this.handle = ChannelSafeHandle.CreateInsecure(target, nativeChannelArgs);
Jan Tattermusch15329232015-03-02 15:32:47 -080082 }
83 }
Jan Tattermusch15329232015-03-02 15:32:47 -080084 }
Jan Tattermuscha7608b02015-02-03 17:54:38 -080085
Jan Tattermuschda71a4d2015-06-08 15:36:53 -070086 /// <summary>
87 /// Creates a channel that connects to a specific host and port.
88 /// </summary>
Jan Tattermuschd8bbdea2015-07-22 12:51:06 -070089 /// <param name="host">The name or IP address of the host.</param>
90 /// <param name="port">The port.</param>
Jan Tattermuscha96ac052015-07-24 14:49:30 -070091 /// <param name="credentials">Credentials to secure the channel.</param>
Jan Tattermusch2ddb5a62015-06-08 17:51:36 -070092 /// <param name="options">Channel options.</param>
Jan Tattermuscha96ac052015-07-24 14:49:30 -070093 public Channel(string host, int port, Credentials credentials, IEnumerable<ChannelOption> options = null) :
Jan Tattermusch2ddb5a62015-06-08 17:51:36 -070094 this(string.Format("{0}:{1}", host, port), credentials, options)
Jan Tattermuscha7608b02015-02-03 17:54:38 -080095 {
Jan Tattermuscha7608b02015-02-03 17:54:38 -080096 }
97
Jan Tattermuschd8bbdea2015-07-22 12:51:06 -070098 /// <summary>
99 /// Gets current connectivity state of this channel.
100 /// </summary>
101 public ChannelState State
102 {
103 get
104 {
105 return handle.CheckConnectivityState(false);
106 }
107 }
108
109 /// <summary>
110 /// Returned tasks completes once channel state has become different from
111 /// given lastObservedState.
112 /// If deadline is reached or and error occurs, returned task is cancelled.
113 /// </summary>
114 public Task WaitForStateChangedAsync(ChannelState lastObservedState, DateTime? deadline = null)
115 {
116 Preconditions.CheckArgument(lastObservedState != ChannelState.FatalFailure,
117 "FatalFailure is a terminal state. No further state changes can occur.");
118 var tcs = new TaskCompletionSource<object>();
119 var deadlineTimespec = deadline.HasValue ? Timespec.FromDateTime(deadline.Value) : Timespec.InfFuture;
120 var handler = new BatchCompletionDelegate((success, ctx) =>
121 {
122 if (success)
123 {
124 tcs.SetResult(null);
125 }
126 else
127 {
128 tcs.SetCanceled();
129 }
130 });
131 handle.WatchConnectivityState(lastObservedState, deadlineTimespec, environment.CompletionQueue, environment.CompletionRegistry, handler);
132 return tcs.Task;
133 }
134
Jan Tattermusch0c140a82015-08-02 00:54:02 -0700135 /// <summary>Resolved address of the remote endpoint in URI format.</summary>
136 public string ResolvedTarget
Jan Tattermuschdead9052015-08-01 21:34:31 -0700137 {
138 get
139 {
140 return handle.GetTarget();
141 }
142 }
143
Jan Tattermusch0c140a82015-08-02 00:54:02 -0700144 /// <summary>The original target used to create the channel.</summary>
145 public string Target
146 {
147 get
148 {
149 return this.target;
150 }
151 }
152
Jan Tattermuschd8bbdea2015-07-22 12:51:06 -0700153 /// <summary>
154 /// Allows explicitly requesting channel to connect without starting an RPC.
155 /// Returned task completes once state Ready was seen. If the deadline is reached,
156 /// or channel enters the FatalFailure state, the task is cancelled.
157 /// There is no need to call this explicitly unless your use case requires that.
158 /// Starting an RPC on a new channel will request connection implicitly.
159 /// </summary>
160 public async Task ConnectAsync(DateTime? deadline = null)
161 {
162 var currentState = handle.CheckConnectivityState(true);
163 while (currentState != ChannelState.Ready)
164 {
165 if (currentState == ChannelState.FatalFailure)
166 {
167 throw new OperationCanceledException("Channel has reached FatalFailure state.");
168 }
169 await WaitForStateChangedAsync(currentState, deadline);
170 currentState = handle.CheckConnectivityState(false);
171 }
172 }
173
174 /// <summary>
175 /// Destroys the underlying channel.
176 /// </summary>
Jan Tattermuscha7608b02015-02-03 17:54:38 -0800177 public void Dispose()
178 {
179 Dispose(true);
180 GC.SuppressFinalize(this);
181 }
182
Jan Tattermuscha5272b62015-04-30 11:56:46 -0700183 internal ChannelSafeHandle Handle
184 {
185 get
186 {
187 return this.handle;
188 }
189 }
190
Jan Tattermusch04eb89c2015-06-12 13:03:05 -0700191 internal GrpcEnvironment Environment
192 {
193 get
194 {
195 return this.environment;
196 }
197 }
198
Jan Tattermuscha7608b02015-02-03 17:54:38 -0800199 protected virtual void Dispose(bool disposing)
200 {
Jan Tattermusch04eb89c2015-06-12 13:03:05 -0700201 if (disposing && handle != null && !disposed)
Jan Tattermuscha7608b02015-02-03 17:54:38 -0800202 {
Jan Tattermusch04eb89c2015-06-12 13:03:05 -0700203 disposed = true;
Jan Tattermuscha7608b02015-02-03 17:54:38 -0800204 handle.Dispose();
205 }
206 }
Jan Tattermusch15329232015-03-02 15:32:47 -0800207
Jan Tattermusch766d72b2015-07-21 20:09:25 -0700208 private static void EnsureUserAgentChannelOption(List<ChannelOption> options)
209 {
210 if (!options.Any((option) => option.Name == ChannelOptions.PrimaryUserAgentString))
211 {
212 options.Add(new ChannelOption(ChannelOptions.PrimaryUserAgentString, GetUserAgentString()));
213 }
214 }
215
216 private static string GetUserAgentString()
217 {
218 // TODO(jtattermusch): it would be useful to also provide .NET/mono version.
219 return string.Format("grpc-csharp/{0}", VersionInfo.CurrentVersion);
220 }
Jan Tattermusch15329232015-03-02 15:32:47 -0800221 }
Craig Tiller190d3602015-02-18 09:23:38 -0800222}