blob: f1942727cde48a9837a533332e7f9a34bcd3aac1 [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>
Jan Tattermusch12855fc2015-08-24 16:43:23 -070046 /// Represents a gRPC channel. Channels are an abstraction of long-lived connections to remote servers.
47 /// More client objects can reuse the same channel. Creating a channel is an expensive operation compared to invoking
48 /// a remote call so in general you should reuse a single channel for as many calls as possible.
Jan Tattermusch286975f2015-03-12 14:04:36 -070049 /// </summary>
Jan Tattermusch2b357952015-08-20 14:54:33 -070050 public class Channel
Jan Tattermusch15329232015-03-02 15:32:47 -080051 {
Jan Tattermuschd8bbdea2015-07-22 12:51:06 -070052 static readonly ILogger Logger = GrpcEnvironment.Logger.ForType<Channel>();
53
Jan Tattermusch2b357952015-08-20 14:54:33 -070054 readonly object myLock = new object();
55 readonly AtomicCounter activeCallCounter = new AtomicCounter();
56
Jan Tattermusch0c140a82015-08-02 00:54:02 -070057 readonly string target;
Jan Tattermusch04eb89c2015-06-12 13:03:05 -070058 readonly GrpcEnvironment environment;
Jan Tattermuscha7608b02015-02-03 17:54:38 -080059 readonly ChannelSafeHandle handle;
Jan Tattermusch766d72b2015-07-21 20:09:25 -070060 readonly List<ChannelOption> options;
Jan Tattermusch2b357952015-08-20 14:54:33 -070061
62 bool shutdownRequested;
Jan Tattermuscha7608b02015-02-03 17:54:38 -080063
Jan Tattermusch15329232015-03-02 15:32:47 -080064 /// <summary>
Jan Tattermuschda71a4d2015-06-08 15:36:53 -070065 /// Creates a channel that connects to a specific host.
Jan Tattermuschd8bbdea2015-07-22 12:51:06 -070066 /// Port will default to 80 for an unsecure channel and to 443 for a secure channel.
Jan Tattermusch15329232015-03-02 15:32:47 -080067 /// </summary>
Jan Tattermusch0c140a82015-08-02 00:54:02 -070068 /// <param name="target">Target of the channel.</param>
Jan Tattermuscha96ac052015-07-24 14:49:30 -070069 /// <param name="credentials">Credentials to secure the channel.</param>
Jan Tattermusch2ddb5a62015-06-08 17:51:36 -070070 /// <param name="options">Channel options.</param>
Jan Tattermusch0c140a82015-08-02 00:54:02 -070071 public Channel(string target, Credentials credentials, IEnumerable<ChannelOption> options = null)
Jan Tattermusch15329232015-03-02 15:32:47 -080072 {
Jan Tattermusch0c140a82015-08-02 00:54:02 -070073 this.target = Preconditions.CheckNotNull(target, "target");
Jan Tattermusch2b357952015-08-20 14:54:33 -070074 this.environment = GrpcEnvironment.AddRef();
Jan Tattermusch766d72b2015-07-21 20:09:25 -070075 this.options = options != null ? new List<ChannelOption>(options) : new List<ChannelOption>();
76
77 EnsureUserAgentChannelOption(this.options);
Jan Tattermuscha96ac052015-07-24 14:49:30 -070078 using (CredentialsSafeHandle nativeCredentials = credentials.ToNativeCredentials())
Jan Tattermusch766d72b2015-07-21 20:09:25 -070079 using (ChannelArgsSafeHandle nativeChannelArgs = ChannelOptions.CreateChannelArgs(this.options))
Jan Tattermusch15329232015-03-02 15:32:47 -080080 {
Jan Tattermuscha96ac052015-07-24 14:49:30 -070081 if (nativeCredentials != null)
Jan Tattermusch15329232015-03-02 15:32:47 -080082 {
Jan Tattermusch0c140a82015-08-02 00:54:02 -070083 this.handle = ChannelSafeHandle.CreateSecure(nativeCredentials, target, nativeChannelArgs);
Jan Tattermusch15329232015-03-02 15:32:47 -080084 }
85 else
86 {
Jan Tattermusch0c140a82015-08-02 00:54:02 -070087 this.handle = ChannelSafeHandle.CreateInsecure(target, nativeChannelArgs);
Jan Tattermusch15329232015-03-02 15:32:47 -080088 }
89 }
Jan Tattermusch15329232015-03-02 15:32:47 -080090 }
Jan Tattermuscha7608b02015-02-03 17:54:38 -080091
Jan Tattermuschda71a4d2015-06-08 15:36:53 -070092 /// <summary>
93 /// Creates a channel that connects to a specific host and port.
94 /// </summary>
Jan Tattermuschd8bbdea2015-07-22 12:51:06 -070095 /// <param name="host">The name or IP address of the host.</param>
96 /// <param name="port">The port.</param>
Jan Tattermuscha96ac052015-07-24 14:49:30 -070097 /// <param name="credentials">Credentials to secure the channel.</param>
Jan Tattermusch2ddb5a62015-06-08 17:51:36 -070098 /// <param name="options">Channel options.</param>
Jan Tattermuscha96ac052015-07-24 14:49:30 -070099 public Channel(string host, int port, Credentials credentials, IEnumerable<ChannelOption> options = null) :
Jan Tattermusch2ddb5a62015-06-08 17:51:36 -0700100 this(string.Format("{0}:{1}", host, port), credentials, options)
Jan Tattermuscha7608b02015-02-03 17:54:38 -0800101 {
Jan Tattermuscha7608b02015-02-03 17:54:38 -0800102 }
103
Jan Tattermuschd8bbdea2015-07-22 12:51:06 -0700104 /// <summary>
105 /// Gets current connectivity state of this channel.
106 /// </summary>
107 public ChannelState State
108 {
109 get
110 {
111 return handle.CheckConnectivityState(false);
112 }
113 }
114
115 /// <summary>
116 /// Returned tasks completes once channel state has become different from
117 /// given lastObservedState.
118 /// If deadline is reached or and error occurs, returned task is cancelled.
119 /// </summary>
120 public Task WaitForStateChangedAsync(ChannelState lastObservedState, DateTime? deadline = null)
121 {
122 Preconditions.CheckArgument(lastObservedState != ChannelState.FatalFailure,
123 "FatalFailure is a terminal state. No further state changes can occur.");
124 var tcs = new TaskCompletionSource<object>();
125 var deadlineTimespec = deadline.HasValue ? Timespec.FromDateTime(deadline.Value) : Timespec.InfFuture;
126 var handler = new BatchCompletionDelegate((success, ctx) =>
127 {
128 if (success)
129 {
130 tcs.SetResult(null);
131 }
132 else
133 {
134 tcs.SetCanceled();
135 }
136 });
137 handle.WatchConnectivityState(lastObservedState, deadlineTimespec, environment.CompletionQueue, environment.CompletionRegistry, handler);
138 return tcs.Task;
139 }
140
Jan Tattermusch0c140a82015-08-02 00:54:02 -0700141 /// <summary>Resolved address of the remote endpoint in URI format.</summary>
142 public string ResolvedTarget
Jan Tattermuschdead9052015-08-01 21:34:31 -0700143 {
144 get
145 {
146 return handle.GetTarget();
147 }
148 }
149
Jan Tattermusch0c140a82015-08-02 00:54:02 -0700150 /// <summary>The original target used to create the channel.</summary>
151 public string Target
152 {
153 get
154 {
155 return this.target;
156 }
157 }
158
Jan Tattermuschd8bbdea2015-07-22 12:51:06 -0700159 /// <summary>
160 /// Allows explicitly requesting channel to connect without starting an RPC.
161 /// Returned task completes once state Ready was seen. If the deadline is reached,
162 /// or channel enters the FatalFailure state, the task is cancelled.
163 /// There is no need to call this explicitly unless your use case requires that.
164 /// Starting an RPC on a new channel will request connection implicitly.
165 /// </summary>
Jan Tattermusch12855fc2015-08-24 16:43:23 -0700166 /// <param name="deadline">The deadline. <c>null</c> indicates no deadline.</param>
Jan Tattermuschd8bbdea2015-07-22 12:51:06 -0700167 public async Task ConnectAsync(DateTime? deadline = null)
168 {
169 var currentState = handle.CheckConnectivityState(true);
170 while (currentState != ChannelState.Ready)
171 {
172 if (currentState == ChannelState.FatalFailure)
173 {
174 throw new OperationCanceledException("Channel has reached FatalFailure state.");
175 }
176 await WaitForStateChangedAsync(currentState, deadline);
177 currentState = handle.CheckConnectivityState(false);
178 }
179 }
180
181 /// <summary>
Jan Tattermusch2b357952015-08-20 14:54:33 -0700182 /// Waits until there are no more active calls for this channel and then cleans up
183 /// resources used by this channel.
Jan Tattermuschd8bbdea2015-07-22 12:51:06 -0700184 /// </summary>
Jan Tattermusch2b357952015-08-20 14:54:33 -0700185 public async Task ShutdownAsync()
Jan Tattermuscha7608b02015-02-03 17:54:38 -0800186 {
Jan Tattermusch2b357952015-08-20 14:54:33 -0700187 lock (myLock)
188 {
189 Preconditions.CheckState(!shutdownRequested);
190 shutdownRequested = true;
191 }
192
193 var activeCallCount = activeCallCounter.Count;
194 if (activeCallCount > 0)
195 {
196 Logger.Warning("Channel shutdown was called but there are still {0} active calls for that channel.", activeCallCount);
197 }
198
199 handle.Dispose();
200
201 await Task.Run(() => GrpcEnvironment.Release());
Jan Tattermuscha7608b02015-02-03 17:54:38 -0800202 }
203
Jan Tattermuscha5272b62015-04-30 11:56:46 -0700204 internal ChannelSafeHandle Handle
205 {
206 get
207 {
208 return this.handle;
209 }
210 }
211
Jan Tattermusch04eb89c2015-06-12 13:03:05 -0700212 internal GrpcEnvironment Environment
213 {
214 get
215 {
216 return this.environment;
217 }
218 }
219
Jan Tattermusch2b357952015-08-20 14:54:33 -0700220 internal void AddCallReference(object call)
Jan Tattermuscha7608b02015-02-03 17:54:38 -0800221 {
Jan Tattermusch2b357952015-08-20 14:54:33 -0700222 activeCallCounter.Increment();
223
224 bool success = false;
225 handle.DangerousAddRef(ref success);
226 Preconditions.CheckState(success);
227 }
228
229 internal void RemoveCallReference(object call)
230 {
231 handle.DangerousRelease();
232
233 activeCallCounter.Decrement();
Jan Tattermuscha7608b02015-02-03 17:54:38 -0800234 }
Jan Tattermusch15329232015-03-02 15:32:47 -0800235
Jan Tattermusch766d72b2015-07-21 20:09:25 -0700236 private static void EnsureUserAgentChannelOption(List<ChannelOption> options)
237 {
238 if (!options.Any((option) => option.Name == ChannelOptions.PrimaryUserAgentString))
239 {
240 options.Add(new ChannelOption(ChannelOptions.PrimaryUserAgentString, GetUserAgentString()));
241 }
242 }
243
244 private static string GetUserAgentString()
245 {
246 // TODO(jtattermusch): it would be useful to also provide .NET/mono version.
247 return string.Format("grpc-csharp/{0}", VersionInfo.CurrentVersion);
248 }
Jan Tattermusch15329232015-03-02 15:32:47 -0800249 }
Craig Tiller190d3602015-02-18 09:23:38 -0800250}