blob: 2f8519dfa30c9c49087104d6a937f1d775f62ae3 [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 Tattermusch2b357952015-08-20 14:54:33 -070048 public class Channel
Jan Tattermusch15329232015-03-02 15:32:47 -080049 {
Jan Tattermuschd8bbdea2015-07-22 12:51:06 -070050 static readonly ILogger Logger = GrpcEnvironment.Logger.ForType<Channel>();
51
Jan Tattermusch2b357952015-08-20 14:54:33 -070052 readonly object myLock = new object();
53 readonly AtomicCounter activeCallCounter = new AtomicCounter();
54
Jan Tattermusch0c140a82015-08-02 00:54:02 -070055 readonly string target;
Jan Tattermusch04eb89c2015-06-12 13:03:05 -070056 readonly GrpcEnvironment environment;
Jan Tattermuscha7608b02015-02-03 17:54:38 -080057 readonly ChannelSafeHandle handle;
Jan Tattermusch766d72b2015-07-21 20:09:25 -070058 readonly List<ChannelOption> options;
Jan Tattermusch2b357952015-08-20 14:54:33 -070059
60 bool shutdownRequested;
Jan Tattermusch04eb89c2015-06-12 13:03:05 -070061 bool disposed;
Jan Tattermuscha7608b02015-02-03 17:54:38 -080062
Jan Tattermusch15329232015-03-02 15:32:47 -080063 /// <summary>
Jan Tattermuschda71a4d2015-06-08 15:36:53 -070064 /// Creates a channel that connects to a specific host.
Jan Tattermuschd8bbdea2015-07-22 12:51:06 -070065 /// Port will default to 80 for an unsecure channel and to 443 for a secure channel.
Jan Tattermusch15329232015-03-02 15:32:47 -080066 /// </summary>
Jan Tattermusch0c140a82015-08-02 00:54:02 -070067 /// <param name="target">Target of the channel.</param>
Jan Tattermuscha96ac052015-07-24 14:49:30 -070068 /// <param name="credentials">Credentials to secure the channel.</param>
Jan Tattermusch2ddb5a62015-06-08 17:51:36 -070069 /// <param name="options">Channel options.</param>
Jan Tattermusch0c140a82015-08-02 00:54:02 -070070 public Channel(string target, Credentials credentials, IEnumerable<ChannelOption> options = null)
Jan Tattermusch15329232015-03-02 15:32:47 -080071 {
Jan Tattermusch0c140a82015-08-02 00:54:02 -070072 this.target = Preconditions.CheckNotNull(target, "target");
Jan Tattermusch2b357952015-08-20 14:54:33 -070073 this.environment = GrpcEnvironment.AddRef();
Jan Tattermusch766d72b2015-07-21 20:09:25 -070074 this.options = options != null ? new List<ChannelOption>(options) : new List<ChannelOption>();
75
76 EnsureUserAgentChannelOption(this.options);
Jan Tattermuscha96ac052015-07-24 14:49:30 -070077 using (CredentialsSafeHandle nativeCredentials = credentials.ToNativeCredentials())
Jan Tattermusch766d72b2015-07-21 20:09:25 -070078 using (ChannelArgsSafeHandle nativeChannelArgs = ChannelOptions.CreateChannelArgs(this.options))
Jan Tattermusch15329232015-03-02 15:32:47 -080079 {
Jan Tattermuscha96ac052015-07-24 14:49:30 -070080 if (nativeCredentials != null)
Jan Tattermusch15329232015-03-02 15:32:47 -080081 {
Jan Tattermusch0c140a82015-08-02 00:54:02 -070082 this.handle = ChannelSafeHandle.CreateSecure(nativeCredentials, target, nativeChannelArgs);
Jan Tattermusch15329232015-03-02 15:32:47 -080083 }
84 else
85 {
Jan Tattermusch0c140a82015-08-02 00:54:02 -070086 this.handle = ChannelSafeHandle.CreateInsecure(target, nativeChannelArgs);
Jan Tattermusch15329232015-03-02 15:32:47 -080087 }
88 }
Jan Tattermusch15329232015-03-02 15:32:47 -080089 }
Jan Tattermuscha7608b02015-02-03 17:54:38 -080090
Jan Tattermuschda71a4d2015-06-08 15:36:53 -070091 /// <summary>
92 /// Creates a channel that connects to a specific host and port.
93 /// </summary>
Jan Tattermuschd8bbdea2015-07-22 12:51:06 -070094 /// <param name="host">The name or IP address of the host.</param>
95 /// <param name="port">The port.</param>
Jan Tattermuscha96ac052015-07-24 14:49:30 -070096 /// <param name="credentials">Credentials to secure the channel.</param>
Jan Tattermusch2ddb5a62015-06-08 17:51:36 -070097 /// <param name="options">Channel options.</param>
Jan Tattermuscha96ac052015-07-24 14:49:30 -070098 public Channel(string host, int port, Credentials credentials, IEnumerable<ChannelOption> options = null) :
Jan Tattermusch2ddb5a62015-06-08 17:51:36 -070099 this(string.Format("{0}:{1}", host, port), credentials, options)
Jan Tattermuscha7608b02015-02-03 17:54:38 -0800100 {
Jan Tattermuscha7608b02015-02-03 17:54:38 -0800101 }
102
Jan Tattermuschd8bbdea2015-07-22 12:51:06 -0700103 /// <summary>
104 /// Gets current connectivity state of this channel.
105 /// </summary>
106 public ChannelState State
107 {
108 get
109 {
110 return handle.CheckConnectivityState(false);
111 }
112 }
113
114 /// <summary>
115 /// Returned tasks completes once channel state has become different from
116 /// given lastObservedState.
117 /// If deadline is reached or and error occurs, returned task is cancelled.
118 /// </summary>
119 public Task WaitForStateChangedAsync(ChannelState lastObservedState, DateTime? deadline = null)
120 {
121 Preconditions.CheckArgument(lastObservedState != ChannelState.FatalFailure,
122 "FatalFailure is a terminal state. No further state changes can occur.");
123 var tcs = new TaskCompletionSource<object>();
124 var deadlineTimespec = deadline.HasValue ? Timespec.FromDateTime(deadline.Value) : Timespec.InfFuture;
125 var handler = new BatchCompletionDelegate((success, ctx) =>
126 {
127 if (success)
128 {
129 tcs.SetResult(null);
130 }
131 else
132 {
133 tcs.SetCanceled();
134 }
135 });
136 handle.WatchConnectivityState(lastObservedState, deadlineTimespec, environment.CompletionQueue, environment.CompletionRegistry, handler);
137 return tcs.Task;
138 }
139
Jan Tattermusch0c140a82015-08-02 00:54:02 -0700140 /// <summary>Resolved address of the remote endpoint in URI format.</summary>
141 public string ResolvedTarget
Jan Tattermuschdead9052015-08-01 21:34:31 -0700142 {
143 get
144 {
145 return handle.GetTarget();
146 }
147 }
148
Jan Tattermusch0c140a82015-08-02 00:54:02 -0700149 /// <summary>The original target used to create the channel.</summary>
150 public string Target
151 {
152 get
153 {
154 return this.target;
155 }
156 }
157
Jan Tattermuschd8bbdea2015-07-22 12:51:06 -0700158 /// <summary>
159 /// Allows explicitly requesting channel to connect without starting an RPC.
160 /// Returned task completes once state Ready was seen. If the deadline is reached,
161 /// or channel enters the FatalFailure state, the task is cancelled.
162 /// There is no need to call this explicitly unless your use case requires that.
163 /// Starting an RPC on a new channel will request connection implicitly.
164 /// </summary>
165 public async Task ConnectAsync(DateTime? deadline = null)
166 {
167 var currentState = handle.CheckConnectivityState(true);
168 while (currentState != ChannelState.Ready)
169 {
170 if (currentState == ChannelState.FatalFailure)
171 {
172 throw new OperationCanceledException("Channel has reached FatalFailure state.");
173 }
174 await WaitForStateChangedAsync(currentState, deadline);
175 currentState = handle.CheckConnectivityState(false);
176 }
177 }
178
179 /// <summary>
Jan Tattermusch2b357952015-08-20 14:54:33 -0700180 /// Waits until there are no more active calls for this channel and then cleans up
181 /// resources used by this channel.
Jan Tattermuschd8bbdea2015-07-22 12:51:06 -0700182 /// </summary>
Jan Tattermusch2b357952015-08-20 14:54:33 -0700183 public async Task ShutdownAsync()
Jan Tattermuscha7608b02015-02-03 17:54:38 -0800184 {
Jan Tattermusch2b357952015-08-20 14:54:33 -0700185 lock (myLock)
186 {
187 Preconditions.CheckState(!shutdownRequested);
188 shutdownRequested = true;
189 }
190
191 var activeCallCount = activeCallCounter.Count;
192 if (activeCallCount > 0)
193 {
194 Logger.Warning("Channel shutdown was called but there are still {0} active calls for that channel.", activeCallCount);
195 }
196
197 handle.Dispose();
198
199 await Task.Run(() => GrpcEnvironment.Release());
Jan Tattermuscha7608b02015-02-03 17:54:38 -0800200 }
201
Jan Tattermuscha5272b62015-04-30 11:56:46 -0700202 internal ChannelSafeHandle Handle
203 {
204 get
205 {
206 return this.handle;
207 }
208 }
209
Jan Tattermusch04eb89c2015-06-12 13:03:05 -0700210 internal GrpcEnvironment Environment
211 {
212 get
213 {
214 return this.environment;
215 }
216 }
217
Jan Tattermusch2b357952015-08-20 14:54:33 -0700218 internal void AddCallReference(object call)
Jan Tattermuscha7608b02015-02-03 17:54:38 -0800219 {
Jan Tattermusch2b357952015-08-20 14:54:33 -0700220 activeCallCounter.Increment();
221
222 bool success = false;
223 handle.DangerousAddRef(ref success);
224 Preconditions.CheckState(success);
225 }
226
227 internal void RemoveCallReference(object call)
228 {
229 handle.DangerousRelease();
230
231 activeCallCounter.Decrement();
Jan Tattermuscha7608b02015-02-03 17:54:38 -0800232 }
Jan Tattermusch15329232015-03-02 15:32:47 -0800233
Jan Tattermusch766d72b2015-07-21 20:09:25 -0700234 private static void EnsureUserAgentChannelOption(List<ChannelOption> options)
235 {
236 if (!options.Any((option) => option.Name == ChannelOptions.PrimaryUserAgentString))
237 {
238 options.Add(new ChannelOption(ChannelOptions.PrimaryUserAgentString, GetUserAgentString()));
239 }
240 }
241
242 private static string GetUserAgentString()
243 {
244 // TODO(jtattermusch): it would be useful to also provide .NET/mono version.
245 return string.Format("grpc-csharp/{0}", VersionInfo.CurrentVersion);
246 }
Jan Tattermusch15329232015-03-02 15:32:47 -0800247 }
Craig Tiller190d3602015-02-18 09:23:38 -0800248}