blob: 44b610f65b872bd1293a964cec1af2253258647e [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;
32using System.Runtime.InteropServices;
33using System.Threading;
34using System.Threading.Tasks;
Jan Tattermusch30868622015-02-19 09:22:33 -080035using Grpc.Core.Internal;
Jan Tattermuscha7608b02015-02-03 17:54:38 -080036
Jan Tattermusch30868622015-02-19 09:22:33 -080037namespace Grpc.Core
Jan Tattermuscha7608b02015-02-03 17:54:38 -080038{
Jan Tattermusch286975f2015-03-12 14:04:36 -070039 /// <summary>
40 /// gRPC Channel
41 /// </summary>
Jan Tattermusch15329232015-03-02 15:32:47 -080042 public class Channel : IDisposable
43 {
Jan Tattermuscha7608b02015-02-03 17:54:38 -080044 readonly ChannelSafeHandle handle;
Jan Tattermusch075dde42015-03-11 18:21:00 -070045 readonly string target;
Jan Tattermuscha7608b02015-02-03 17:54:38 -080046
Jan Tattermusch15329232015-03-02 15:32:47 -080047 /// <summary>
Jan Tattermuschda71a4d2015-06-08 15:36:53 -070048 /// Creates a channel that connects to a specific host.
49 /// Port will default to 80 for an unsecure channel and to 443 a secure channel.
Jan Tattermusch15329232015-03-02 15:32:47 -080050 /// </summary>
Jan Tattermuschda71a4d2015-06-08 15:36:53 -070051 /// <param name="host">The DNS name of IP address of the host.</param>
52 /// <param name="credentials">Optional credentials to create a secure channel.</param>
53 /// <param name="channelArgs">Optional channel arguments.</param>
54 public Channel(string host, Credentials credentials = null, ChannelArgs channelArgs = null)
Jan Tattermusch15329232015-03-02 15:32:47 -080055 {
56 using (ChannelArgsSafeHandle nativeChannelArgs = CreateNativeChannelArgs(channelArgs))
57 {
58 if (credentials != null)
59 {
60 using (CredentialsSafeHandle nativeCredentials = credentials.ToNativeCredentials())
61 {
Jan Tattermuschda71a4d2015-06-08 15:36:53 -070062 this.handle = ChannelSafeHandle.CreateSecure(nativeCredentials, host, nativeChannelArgs);
Jan Tattermusch15329232015-03-02 15:32:47 -080063 }
64 }
65 else
66 {
Jan Tattermuschda71a4d2015-06-08 15:36:53 -070067 this.handle = ChannelSafeHandle.Create(host, nativeChannelArgs);
Jan Tattermusch15329232015-03-02 15:32:47 -080068 }
69 }
Jan Tattermuschda71a4d2015-06-08 15:36:53 -070070 this.target = GetOverridenTarget(host, channelArgs);
Jan Tattermusch15329232015-03-02 15:32:47 -080071 }
Jan Tattermuscha7608b02015-02-03 17:54:38 -080072
Jan Tattermuschda71a4d2015-06-08 15:36:53 -070073 /// <summary>
74 /// Creates a channel that connects to a specific host and port.
75 /// </summary>
76 /// <param name="host">DNS name or IP address</param>
77 /// <param name="port">the port</param>
78 /// <param name="credentials">Optional credentials to create a secure channel.</param>
79 /// <param name="channelArgs">Optional channel arguments.</param>
80 public Channel(string host, int port, Credentials credentials = null, ChannelArgs channelArgs = null) :
81 this(string.Format("{0}:{1}", host, port), credentials, channelArgs)
Jan Tattermuscha7608b02015-02-03 17:54:38 -080082 {
Jan Tattermuscha7608b02015-02-03 17:54:38 -080083 }
84
85 public void Dispose()
86 {
87 Dispose(true);
88 GC.SuppressFinalize(this);
89 }
90
Jan Tattermuschda71a4d2015-06-08 15:36:53 -070091 internal string Target
92 {
93 get
94 {
95 return target;
96 }
97 }
98
Jan Tattermuscha5272b62015-04-30 11:56:46 -070099 internal ChannelSafeHandle Handle
100 {
101 get
102 {
103 return this.handle;
104 }
105 }
106
Jan Tattermuscha7608b02015-02-03 17:54:38 -0800107 protected virtual void Dispose(bool disposing)
108 {
109 if (handle != null && !handle.IsInvalid)
110 {
111 handle.Dispose();
112 }
113 }
Jan Tattermusch15329232015-03-02 15:32:47 -0800114
115 private static string GetOverridenTarget(string target, ChannelArgs args)
116 {
117 if (args != null && !string.IsNullOrEmpty(args.GetSslTargetNameOverride()))
118 {
119 return args.GetSslTargetNameOverride();
120 }
121 return target;
122 }
123
124 private static ChannelArgsSafeHandle CreateNativeChannelArgs(ChannelArgs args)
125 {
126 if (args == null)
127 {
128 return ChannelArgsSafeHandle.CreateNull();
129 }
130 return args.ToNativeChannelArgs();
131 }
132 }
Craig Tiller190d3602015-02-18 09:23:38 -0800133}