blob: f457c9dbf1e8b3093079b1bf613301bf76f0eaba [file] [log] [blame]
Jan Tattermuschafab5412016-01-12 17:57:25 -08001#region Copyright notice and license
2
Craig Tiller6169d5f2016-03-31 07:46:18 -07003// Copyright 2015, Google Inc.
Jan Tattermuschafab5412016-01-12 17:57:25 -08004// All rights reserved.
5//
6// Redistribution and use in source and binary forms, with or without
7// modification, are permitted provided that the following conditions are
8// met:
9//
10// * Redistributions of source code must retain the above copyright
11// notice, this list of conditions and the following disclaimer.
12// * Redistributions in binary form must reproduce the above
13// copyright notice, this list of conditions and the following disclaimer
14// in the documentation and/or other materials provided with the
15// distribution.
16// * Neither the name of Google Inc. nor the names of its
17// contributors may be used to endorse or promote products derived from
18// this software without specific prior written permission.
19//
20// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
21// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
22// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
23// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
24// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
25// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
26// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
27// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
28// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
29// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
30// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31
32#endregion
33
34using System;
35using System.Collections.Concurrent;
36using System.Diagnostics;
37using System.IO;
38using System.Reflection;
39using System.Runtime.InteropServices;
40using System.Threading;
41
42using Grpc.Core.Logging;
43using Grpc.Core.Utils;
44
45namespace Grpc.Core.Internal
46{
47 /// <summary>
48 /// Provides access to all native methods provided by <c>NativeExtension</c>.
49 /// An extra level of indirection is added to P/Invoke calls to allow intelligent loading
50 /// of the right configuration of the native extension based on current platform, architecture etc.
51 /// </summary>
52 internal class NativeMethods
53 {
54 #region Native methods
55
56 public readonly Delegates.grpcsharp_init_delegate grpcsharp_init;
57 public readonly Delegates.grpcsharp_shutdown_delegate grpcsharp_shutdown;
58 public readonly Delegates.grpcsharp_version_string_delegate grpcsharp_version_string;
59
60 public readonly Delegates.grpcsharp_batch_context_create_delegate grpcsharp_batch_context_create;
61 public readonly Delegates.grpcsharp_batch_context_recv_initial_metadata_delegate grpcsharp_batch_context_recv_initial_metadata;
62 public readonly Delegates.grpcsharp_batch_context_recv_message_length_delegate grpcsharp_batch_context_recv_message_length;
63 public readonly Delegates.grpcsharp_batch_context_recv_message_to_buffer_delegate grpcsharp_batch_context_recv_message_to_buffer;
64 public readonly Delegates.grpcsharp_batch_context_recv_status_on_client_status_delegate grpcsharp_batch_context_recv_status_on_client_status;
65 public readonly Delegates.grpcsharp_batch_context_recv_status_on_client_details_delegate grpcsharp_batch_context_recv_status_on_client_details;
66 public readonly Delegates.grpcsharp_batch_context_recv_status_on_client_trailing_metadata_delegate grpcsharp_batch_context_recv_status_on_client_trailing_metadata;
67 public readonly Delegates.grpcsharp_batch_context_server_rpc_new_call_delegate grpcsharp_batch_context_server_rpc_new_call;
68 public readonly Delegates.grpcsharp_batch_context_server_rpc_new_method_delegate grpcsharp_batch_context_server_rpc_new_method;
69 public readonly Delegates.grpcsharp_batch_context_server_rpc_new_host_delegate grpcsharp_batch_context_server_rpc_new_host;
70 public readonly Delegates.grpcsharp_batch_context_server_rpc_new_deadline_delegate grpcsharp_batch_context_server_rpc_new_deadline;
71 public readonly Delegates.grpcsharp_batch_context_server_rpc_new_request_metadata_delegate grpcsharp_batch_context_server_rpc_new_request_metadata;
72 public readonly Delegates.grpcsharp_batch_context_recv_close_on_server_cancelled_delegate grpcsharp_batch_context_recv_close_on_server_cancelled;
73 public readonly Delegates.grpcsharp_batch_context_destroy_delegate grpcsharp_batch_context_destroy;
74
75 public readonly Delegates.grpcsharp_composite_call_credentials_create_delegate grpcsharp_composite_call_credentials_create;
76 public readonly Delegates.grpcsharp_call_credentials_release_delegate grpcsharp_call_credentials_release;
77
78 public readonly Delegates.grpcsharp_call_cancel_delegate grpcsharp_call_cancel;
79 public readonly Delegates.grpcsharp_call_cancel_with_status_delegate grpcsharp_call_cancel_with_status;
80 public readonly Delegates.grpcsharp_call_start_unary_delegate grpcsharp_call_start_unary;
81 public readonly Delegates.grpcsharp_call_start_client_streaming_delegate grpcsharp_call_start_client_streaming;
82 public readonly Delegates.grpcsharp_call_start_server_streaming_delegate grpcsharp_call_start_server_streaming;
83 public readonly Delegates.grpcsharp_call_start_duplex_streaming_delegate grpcsharp_call_start_duplex_streaming;
84 public readonly Delegates.grpcsharp_call_send_message_delegate grpcsharp_call_send_message;
85 public readonly Delegates.grpcsharp_call_send_close_from_client_delegate grpcsharp_call_send_close_from_client;
86 public readonly Delegates.grpcsharp_call_send_status_from_server_delegate grpcsharp_call_send_status_from_server;
87 public readonly Delegates.grpcsharp_call_recv_message_delegate grpcsharp_call_recv_message;
88 public readonly Delegates.grpcsharp_call_recv_initial_metadata_delegate grpcsharp_call_recv_initial_metadata;
89 public readonly Delegates.grpcsharp_call_start_serverside_delegate grpcsharp_call_start_serverside;
90 public readonly Delegates.grpcsharp_call_send_initial_metadata_delegate grpcsharp_call_send_initial_metadata;
91 public readonly Delegates.grpcsharp_call_set_credentials_delegate grpcsharp_call_set_credentials;
92 public readonly Delegates.grpcsharp_call_get_peer_delegate grpcsharp_call_get_peer;
93 public readonly Delegates.grpcsharp_call_destroy_delegate grpcsharp_call_destroy;
94
95 public readonly Delegates.grpcsharp_channel_args_create_delegate grpcsharp_channel_args_create;
96 public readonly Delegates.grpcsharp_channel_args_set_string_delegate grpcsharp_channel_args_set_string;
97 public readonly Delegates.grpcsharp_channel_args_set_integer_delegate grpcsharp_channel_args_set_integer;
98 public readonly Delegates.grpcsharp_channel_args_destroy_delegate grpcsharp_channel_args_destroy;
99
Jan Tattermusch660c15b2016-02-02 06:39:10 -0800100 public readonly Delegates.grpcsharp_override_default_ssl_roots grpcsharp_override_default_ssl_roots;
Jan Tattermuschafab5412016-01-12 17:57:25 -0800101 public readonly Delegates.grpcsharp_ssl_credentials_create_delegate grpcsharp_ssl_credentials_create;
102 public readonly Delegates.grpcsharp_composite_channel_credentials_create_delegate grpcsharp_composite_channel_credentials_create;
103 public readonly Delegates.grpcsharp_channel_credentials_release_delegate grpcsharp_channel_credentials_release;
104
105 public readonly Delegates.grpcsharp_insecure_channel_create_delegate grpcsharp_insecure_channel_create;
106 public readonly Delegates.grpcsharp_secure_channel_create_delegate grpcsharp_secure_channel_create;
107 public readonly Delegates.grpcsharp_channel_create_call_delegate grpcsharp_channel_create_call;
108 public readonly Delegates.grpcsharp_channel_check_connectivity_state_delegate grpcsharp_channel_check_connectivity_state;
109 public readonly Delegates.grpcsharp_channel_watch_connectivity_state_delegate grpcsharp_channel_watch_connectivity_state;
110 public readonly Delegates.grpcsharp_channel_get_target_delegate grpcsharp_channel_get_target;
111 public readonly Delegates.grpcsharp_channel_destroy_delegate grpcsharp_channel_destroy;
112
113 public readonly Delegates.grpcsharp_sizeof_grpc_event_delegate grpcsharp_sizeof_grpc_event;
114
115 public readonly Delegates.grpcsharp_completion_queue_create_delegate grpcsharp_completion_queue_create;
116 public readonly Delegates.grpcsharp_completion_queue_shutdown_delegate grpcsharp_completion_queue_shutdown;
117 public readonly Delegates.grpcsharp_completion_queue_next_delegate grpcsharp_completion_queue_next;
118 public readonly Delegates.grpcsharp_completion_queue_pluck_delegate grpcsharp_completion_queue_pluck;
119 public readonly Delegates.grpcsharp_completion_queue_destroy_delegate grpcsharp_completion_queue_destroy;
120
121 public readonly Delegates.gprsharp_free_delegate gprsharp_free;
122
123 public readonly Delegates.grpcsharp_metadata_array_create_delegate grpcsharp_metadata_array_create;
124 public readonly Delegates.grpcsharp_metadata_array_add_delegate grpcsharp_metadata_array_add;
125 public readonly Delegates.grpcsharp_metadata_array_count_delegate grpcsharp_metadata_array_count;
126 public readonly Delegates.grpcsharp_metadata_array_get_key_delegate grpcsharp_metadata_array_get_key;
127 public readonly Delegates.grpcsharp_metadata_array_get_value_delegate grpcsharp_metadata_array_get_value;
128 public readonly Delegates.grpcsharp_metadata_array_get_value_length_delegate grpcsharp_metadata_array_get_value_length;
129 public readonly Delegates.grpcsharp_metadata_array_destroy_full_delegate grpcsharp_metadata_array_destroy_full;
130
131 public readonly Delegates.grpcsharp_redirect_log_delegate grpcsharp_redirect_log;
132
133 public readonly Delegates.grpcsharp_metadata_credentials_create_from_plugin_delegate grpcsharp_metadata_credentials_create_from_plugin;
134 public readonly Delegates.grpcsharp_metadata_credentials_notify_from_plugin_delegate grpcsharp_metadata_credentials_notify_from_plugin;
135
136 public readonly Delegates.grpcsharp_ssl_server_credentials_create_delegate grpcsharp_ssl_server_credentials_create;
137 public readonly Delegates.grpcsharp_server_credentials_release_delegate grpcsharp_server_credentials_release;
138
139 public readonly Delegates.grpcsharp_server_create_delegate grpcsharp_server_create;
Jan Tattermusch5ee8e772016-05-24 16:17:10 -0400140 public readonly Delegates.grpcsharp_server_register_completion_queue_delegate grpcsharp_server_register_completion_queue;
Jan Tattermuschafab5412016-01-12 17:57:25 -0800141 public readonly Delegates.grpcsharp_server_add_insecure_http2_port_delegate grpcsharp_server_add_insecure_http2_port;
142 public readonly Delegates.grpcsharp_server_add_secure_http2_port_delegate grpcsharp_server_add_secure_http2_port;
143 public readonly Delegates.grpcsharp_server_start_delegate grpcsharp_server_start;
144 public readonly Delegates.grpcsharp_server_request_call_delegate grpcsharp_server_request_call;
145 public readonly Delegates.grpcsharp_server_cancel_all_calls_delegate grpcsharp_server_cancel_all_calls;
146 public readonly Delegates.grpcsharp_server_shutdown_and_notify_callback_delegate grpcsharp_server_shutdown_and_notify_callback;
147 public readonly Delegates.grpcsharp_server_destroy_delegate grpcsharp_server_destroy;
148
149 public readonly Delegates.gprsharp_now_delegate gprsharp_now;
150 public readonly Delegates.gprsharp_inf_future_delegate gprsharp_inf_future;
151 public readonly Delegates.gprsharp_inf_past_delegate gprsharp_inf_past;
152 public readonly Delegates.gprsharp_convert_clock_type_delegate gprsharp_convert_clock_type;
153 public readonly Delegates.gprsharp_sizeof_timespec_delegate gprsharp_sizeof_timespec;
154
155 public readonly Delegates.grpcsharp_test_callback_delegate grpcsharp_test_callback;
156 public readonly Delegates.grpcsharp_test_nop_delegate grpcsharp_test_nop;
157
158 #endregion
159
160 public NativeMethods(UnmanagedLibrary library)
161 {
Jon Skeet3fcd20f2016-07-08 14:38:39 +0100162 this.grpcsharp_init = GetMethodDelegate<Delegates.grpcsharp_init_delegate>(library);
163 this.grpcsharp_shutdown = GetMethodDelegate<Delegates.grpcsharp_shutdown_delegate>(library);
164 this.grpcsharp_version_string = GetMethodDelegate<Delegates.grpcsharp_version_string_delegate>(library);
Jan Tattermuschafab5412016-01-12 17:57:25 -0800165
Jon Skeet3fcd20f2016-07-08 14:38:39 +0100166 this.grpcsharp_batch_context_create = GetMethodDelegate<Delegates.grpcsharp_batch_context_create_delegate>(library);
167 this.grpcsharp_batch_context_recv_initial_metadata = GetMethodDelegate<Delegates.grpcsharp_batch_context_recv_initial_metadata_delegate>(library);
168 this.grpcsharp_batch_context_recv_message_length = GetMethodDelegate<Delegates.grpcsharp_batch_context_recv_message_length_delegate>(library);
169 this.grpcsharp_batch_context_recv_message_to_buffer = GetMethodDelegate<Delegates.grpcsharp_batch_context_recv_message_to_buffer_delegate>(library);
170 this.grpcsharp_batch_context_recv_status_on_client_status = GetMethodDelegate<Delegates.grpcsharp_batch_context_recv_status_on_client_status_delegate>(library);
171 this.grpcsharp_batch_context_recv_status_on_client_details = GetMethodDelegate<Delegates.grpcsharp_batch_context_recv_status_on_client_details_delegate>(library);
172 this.grpcsharp_batch_context_recv_status_on_client_trailing_metadata = GetMethodDelegate<Delegates.grpcsharp_batch_context_recv_status_on_client_trailing_metadata_delegate>(library);
173 this.grpcsharp_batch_context_server_rpc_new_call = GetMethodDelegate<Delegates.grpcsharp_batch_context_server_rpc_new_call_delegate>(library);
174 this.grpcsharp_batch_context_server_rpc_new_method = GetMethodDelegate<Delegates.grpcsharp_batch_context_server_rpc_new_method_delegate>(library);
175 this.grpcsharp_batch_context_server_rpc_new_host = GetMethodDelegate<Delegates.grpcsharp_batch_context_server_rpc_new_host_delegate>(library);
176 this.grpcsharp_batch_context_server_rpc_new_deadline = GetMethodDelegate<Delegates.grpcsharp_batch_context_server_rpc_new_deadline_delegate>(library);
177 this.grpcsharp_batch_context_server_rpc_new_request_metadata = GetMethodDelegate<Delegates.grpcsharp_batch_context_server_rpc_new_request_metadata_delegate>(library);
178 this.grpcsharp_batch_context_recv_close_on_server_cancelled = GetMethodDelegate<Delegates.grpcsharp_batch_context_recv_close_on_server_cancelled_delegate>(library);
179 this.grpcsharp_batch_context_destroy = GetMethodDelegate<Delegates.grpcsharp_batch_context_destroy_delegate>(library);
Jan Tattermuschafab5412016-01-12 17:57:25 -0800180
Jon Skeet3fcd20f2016-07-08 14:38:39 +0100181 this.grpcsharp_composite_call_credentials_create = GetMethodDelegate<Delegates.grpcsharp_composite_call_credentials_create_delegate>(library);
182 this.grpcsharp_call_credentials_release = GetMethodDelegate<Delegates.grpcsharp_call_credentials_release_delegate>(library);
Jan Tattermuschafab5412016-01-12 17:57:25 -0800183
Jon Skeet3fcd20f2016-07-08 14:38:39 +0100184 this.grpcsharp_call_cancel = GetMethodDelegate<Delegates.grpcsharp_call_cancel_delegate>(library);
185 this.grpcsharp_call_cancel_with_status = GetMethodDelegate<Delegates.grpcsharp_call_cancel_with_status_delegate>(library);
186 this.grpcsharp_call_start_unary = GetMethodDelegate<Delegates.grpcsharp_call_start_unary_delegate>(library);
187 this.grpcsharp_call_start_client_streaming = GetMethodDelegate<Delegates.grpcsharp_call_start_client_streaming_delegate>(library);
188 this.grpcsharp_call_start_server_streaming = GetMethodDelegate<Delegates.grpcsharp_call_start_server_streaming_delegate>(library);
189 this.grpcsharp_call_start_duplex_streaming = GetMethodDelegate<Delegates.grpcsharp_call_start_duplex_streaming_delegate>(library);
190 this.grpcsharp_call_send_message = GetMethodDelegate<Delegates.grpcsharp_call_send_message_delegate>(library);
191 this.grpcsharp_call_send_close_from_client = GetMethodDelegate<Delegates.grpcsharp_call_send_close_from_client_delegate>(library);
192 this.grpcsharp_call_send_status_from_server = GetMethodDelegate<Delegates.grpcsharp_call_send_status_from_server_delegate>(library);
193 this.grpcsharp_call_recv_message = GetMethodDelegate<Delegates.grpcsharp_call_recv_message_delegate>(library);
194 this.grpcsharp_call_recv_initial_metadata = GetMethodDelegate<Delegates.grpcsharp_call_recv_initial_metadata_delegate>(library);
195 this.grpcsharp_call_start_serverside = GetMethodDelegate<Delegates.grpcsharp_call_start_serverside_delegate>(library);
196 this.grpcsharp_call_send_initial_metadata = GetMethodDelegate<Delegates.grpcsharp_call_send_initial_metadata_delegate>(library);
197 this.grpcsharp_call_set_credentials = GetMethodDelegate<Delegates.grpcsharp_call_set_credentials_delegate>(library);
198 this.grpcsharp_call_get_peer = GetMethodDelegate<Delegates.grpcsharp_call_get_peer_delegate>(library);
199 this.grpcsharp_call_destroy = GetMethodDelegate<Delegates.grpcsharp_call_destroy_delegate>(library);
Jan Tattermuschafab5412016-01-12 17:57:25 -0800200
Jon Skeet3fcd20f2016-07-08 14:38:39 +0100201 this.grpcsharp_channel_args_create = GetMethodDelegate<Delegates.grpcsharp_channel_args_create_delegate>(library);
202 this.grpcsharp_channel_args_set_string = GetMethodDelegate<Delegates.grpcsharp_channel_args_set_string_delegate>(library);
203 this.grpcsharp_channel_args_set_integer = GetMethodDelegate<Delegates.grpcsharp_channel_args_set_integer_delegate>(library);
204 this.grpcsharp_channel_args_destroy = GetMethodDelegate<Delegates.grpcsharp_channel_args_destroy_delegate>(library);
Jan Tattermuschafab5412016-01-12 17:57:25 -0800205
Jon Skeet3fcd20f2016-07-08 14:38:39 +0100206 this.grpcsharp_override_default_ssl_roots = GetMethodDelegate<Delegates.grpcsharp_override_default_ssl_roots>(library);
207 this.grpcsharp_ssl_credentials_create = GetMethodDelegate<Delegates.grpcsharp_ssl_credentials_create_delegate>(library);
208 this.grpcsharp_composite_channel_credentials_create = GetMethodDelegate<Delegates.grpcsharp_composite_channel_credentials_create_delegate>(library);
209 this.grpcsharp_channel_credentials_release = GetMethodDelegate<Delegates.grpcsharp_channel_credentials_release_delegate>(library);
Jan Tattermuschafab5412016-01-12 17:57:25 -0800210
Jon Skeet3fcd20f2016-07-08 14:38:39 +0100211 this.grpcsharp_insecure_channel_create = GetMethodDelegate<Delegates.grpcsharp_insecure_channel_create_delegate>(library);
212 this.grpcsharp_secure_channel_create = GetMethodDelegate<Delegates.grpcsharp_secure_channel_create_delegate>(library);
213 this.grpcsharp_channel_create_call = GetMethodDelegate<Delegates.grpcsharp_channel_create_call_delegate>(library);
214 this.grpcsharp_channel_check_connectivity_state = GetMethodDelegate<Delegates.grpcsharp_channel_check_connectivity_state_delegate>(library);
215 this.grpcsharp_channel_watch_connectivity_state = GetMethodDelegate<Delegates.grpcsharp_channel_watch_connectivity_state_delegate>(library);
216 this.grpcsharp_channel_get_target = GetMethodDelegate<Delegates.grpcsharp_channel_get_target_delegate>(library);
217 this.grpcsharp_channel_destroy = GetMethodDelegate<Delegates.grpcsharp_channel_destroy_delegate>(library);
Jan Tattermuschafab5412016-01-12 17:57:25 -0800218
Jon Skeet3fcd20f2016-07-08 14:38:39 +0100219 this.grpcsharp_sizeof_grpc_event = GetMethodDelegate<Delegates.grpcsharp_sizeof_grpc_event_delegate>(library);
Jan Tattermuschafab5412016-01-12 17:57:25 -0800220
Jon Skeet3fcd20f2016-07-08 14:38:39 +0100221 this.grpcsharp_completion_queue_create = GetMethodDelegate<Delegates.grpcsharp_completion_queue_create_delegate>(library);
222 this.grpcsharp_completion_queue_shutdown = GetMethodDelegate<Delegates.grpcsharp_completion_queue_shutdown_delegate>(library);
223 this.grpcsharp_completion_queue_next = GetMethodDelegate<Delegates.grpcsharp_completion_queue_next_delegate>(library);
224 this.grpcsharp_completion_queue_pluck = GetMethodDelegate<Delegates.grpcsharp_completion_queue_pluck_delegate>(library);
225 this.grpcsharp_completion_queue_destroy = GetMethodDelegate<Delegates.grpcsharp_completion_queue_destroy_delegate>(library);
Jan Tattermuschafab5412016-01-12 17:57:25 -0800226
Jon Skeet3fcd20f2016-07-08 14:38:39 +0100227 this.gprsharp_free = GetMethodDelegate<Delegates.gprsharp_free_delegate>(library);
Jan Tattermuschafab5412016-01-12 17:57:25 -0800228
Jon Skeet3fcd20f2016-07-08 14:38:39 +0100229 this.grpcsharp_metadata_array_create = GetMethodDelegate<Delegates.grpcsharp_metadata_array_create_delegate>(library);
230 this.grpcsharp_metadata_array_add = GetMethodDelegate<Delegates.grpcsharp_metadata_array_add_delegate>(library);
231 this.grpcsharp_metadata_array_count = GetMethodDelegate<Delegates.grpcsharp_metadata_array_count_delegate>(library);
232 this.grpcsharp_metadata_array_get_key = GetMethodDelegate<Delegates.grpcsharp_metadata_array_get_key_delegate>(library);
233 this.grpcsharp_metadata_array_get_value = GetMethodDelegate<Delegates.grpcsharp_metadata_array_get_value_delegate>(library);
234 this.grpcsharp_metadata_array_get_value_length = GetMethodDelegate<Delegates.grpcsharp_metadata_array_get_value_length_delegate>(library);
235 this.grpcsharp_metadata_array_destroy_full = GetMethodDelegate<Delegates.grpcsharp_metadata_array_destroy_full_delegate>(library);
Jan Tattermuschafab5412016-01-12 17:57:25 -0800236
Jon Skeet3fcd20f2016-07-08 14:38:39 +0100237 this.grpcsharp_redirect_log = GetMethodDelegate<Delegates.grpcsharp_redirect_log_delegate>(library);
Jan Tattermuschafab5412016-01-12 17:57:25 -0800238
Jon Skeet3fcd20f2016-07-08 14:38:39 +0100239 this.grpcsharp_metadata_credentials_create_from_plugin = GetMethodDelegate<Delegates.grpcsharp_metadata_credentials_create_from_plugin_delegate>(library);
240 this.grpcsharp_metadata_credentials_notify_from_plugin = GetMethodDelegate<Delegates.grpcsharp_metadata_credentials_notify_from_plugin_delegate>(library);
Jan Tattermuschafab5412016-01-12 17:57:25 -0800241
Jon Skeet3fcd20f2016-07-08 14:38:39 +0100242 this.grpcsharp_ssl_server_credentials_create = GetMethodDelegate<Delegates.grpcsharp_ssl_server_credentials_create_delegate>(library);
243 this.grpcsharp_server_credentials_release = GetMethodDelegate<Delegates.grpcsharp_server_credentials_release_delegate>(library);
Jan Tattermuschafab5412016-01-12 17:57:25 -0800244
Jon Skeet3fcd20f2016-07-08 14:38:39 +0100245 this.grpcsharp_server_create = GetMethodDelegate<Delegates.grpcsharp_server_create_delegate>(library);
246 this.grpcsharp_server_register_completion_queue = GetMethodDelegate<Delegates.grpcsharp_server_register_completion_queue_delegate>(library);
247 this.grpcsharp_server_add_insecure_http2_port = GetMethodDelegate<Delegates.grpcsharp_server_add_insecure_http2_port_delegate>(library);
248 this.grpcsharp_server_add_secure_http2_port = GetMethodDelegate<Delegates.grpcsharp_server_add_secure_http2_port_delegate>(library);
249 this.grpcsharp_server_start = GetMethodDelegate<Delegates.grpcsharp_server_start_delegate>(library);
250 this.grpcsharp_server_request_call = GetMethodDelegate<Delegates.grpcsharp_server_request_call_delegate>(library);
251 this.grpcsharp_server_cancel_all_calls = GetMethodDelegate<Delegates.grpcsharp_server_cancel_all_calls_delegate>(library);
252 this.grpcsharp_server_shutdown_and_notify_callback = GetMethodDelegate<Delegates.grpcsharp_server_shutdown_and_notify_callback_delegate>(library);
253 this.grpcsharp_server_destroy = GetMethodDelegate<Delegates.grpcsharp_server_destroy_delegate>(library);
Jan Tattermuschafab5412016-01-12 17:57:25 -0800254
Jon Skeet3fcd20f2016-07-08 14:38:39 +0100255 this.gprsharp_now = GetMethodDelegate<Delegates.gprsharp_now_delegate>(library);
256 this.gprsharp_inf_future = GetMethodDelegate<Delegates.gprsharp_inf_future_delegate>(library);
257 this.gprsharp_inf_past = GetMethodDelegate<Delegates.gprsharp_inf_past_delegate>(library);
258 this.gprsharp_convert_clock_type = GetMethodDelegate<Delegates.gprsharp_convert_clock_type_delegate>(library);
259 this.gprsharp_sizeof_timespec = GetMethodDelegate<Delegates.gprsharp_sizeof_timespec_delegate>(library);
Jan Tattermuschafab5412016-01-12 17:57:25 -0800260
Jon Skeet3fcd20f2016-07-08 14:38:39 +0100261 this.grpcsharp_test_callback = GetMethodDelegate<Delegates.grpcsharp_test_callback_delegate>(library);
262 this.grpcsharp_test_nop = GetMethodDelegate<Delegates.grpcsharp_test_nop_delegate>(library);
Jan Tattermuschafab5412016-01-12 17:57:25 -0800263 }
264
265 /// <summary>
266 /// Gets singleton instance of this class.
267 /// </summary>
268 public static NativeMethods Get()
269 {
270 return NativeExtension.Get().NativeMethods;
271 }
272
273 static T GetMethodDelegate<T>(UnmanagedLibrary library)
274 where T : class
275 {
276 var methodName = RemoveStringSuffix(typeof(T).Name, "_delegate");
277 return library.GetNativeMethodDelegate<T>(methodName);
278 }
279
280 static string RemoveStringSuffix(string str, string toRemove)
281 {
282 if (!str.EndsWith(toRemove))
283 {
284 return str;
285 }
286 return str.Substring(0, str.Length - toRemove.Length);
287 }
288
289 /// <summary>
290 /// Delegate types for all published native methods. Declared under inner class to prevent scope pollution.
291 /// </summary>
292 public class Delegates
293 {
294 public delegate void grpcsharp_init_delegate();
295 public delegate void grpcsharp_shutdown_delegate();
296 public delegate IntPtr grpcsharp_version_string_delegate(); // returns not-owned const char*
297
298 public delegate BatchContextSafeHandle grpcsharp_batch_context_create_delegate();
299 public delegate IntPtr grpcsharp_batch_context_recv_initial_metadata_delegate(BatchContextSafeHandle ctx);
300 public delegate IntPtr grpcsharp_batch_context_recv_message_length_delegate(BatchContextSafeHandle ctx);
301 public delegate void grpcsharp_batch_context_recv_message_to_buffer_delegate(BatchContextSafeHandle ctx, byte[] buffer, UIntPtr bufferLen);
302 public delegate StatusCode grpcsharp_batch_context_recv_status_on_client_status_delegate(BatchContextSafeHandle ctx);
303 public delegate IntPtr grpcsharp_batch_context_recv_status_on_client_details_delegate(BatchContextSafeHandle ctx); // returns const char*
304 public delegate IntPtr grpcsharp_batch_context_recv_status_on_client_trailing_metadata_delegate(BatchContextSafeHandle ctx);
305 public delegate CallSafeHandle grpcsharp_batch_context_server_rpc_new_call_delegate(BatchContextSafeHandle ctx);
306 public delegate IntPtr grpcsharp_batch_context_server_rpc_new_method_delegate(BatchContextSafeHandle ctx); // returns const char*
307 public delegate IntPtr grpcsharp_batch_context_server_rpc_new_host_delegate(BatchContextSafeHandle ctx); // returns const char*
308 public delegate Timespec grpcsharp_batch_context_server_rpc_new_deadline_delegate(BatchContextSafeHandle ctx);
309 public delegate IntPtr grpcsharp_batch_context_server_rpc_new_request_metadata_delegate(BatchContextSafeHandle ctx);
310 public delegate int grpcsharp_batch_context_recv_close_on_server_cancelled_delegate(BatchContextSafeHandle ctx);
311 public delegate void grpcsharp_batch_context_destroy_delegate(IntPtr ctx);
312
313 public delegate CallCredentialsSafeHandle grpcsharp_composite_call_credentials_create_delegate(CallCredentialsSafeHandle creds1, CallCredentialsSafeHandle creds2);
314 public delegate void grpcsharp_call_credentials_release_delegate(IntPtr credentials);
315
Jan Tattermusche0af2862016-05-18 21:02:03 -0700316 public delegate CallError grpcsharp_call_cancel_delegate(CallSafeHandle call);
317 public delegate CallError grpcsharp_call_cancel_with_status_delegate(CallSafeHandle call, StatusCode status, string description);
318 public delegate CallError grpcsharp_call_start_unary_delegate(CallSafeHandle call,
Jan Tattermusch305ffd42016-05-04 10:26:24 -0700319 BatchContextSafeHandle ctx, byte[] sendBuffer, UIntPtr sendBufferLen, MetadataArraySafeHandle metadataArray, WriteFlags writeFlags);
Jan Tattermusche0af2862016-05-18 21:02:03 -0700320 public delegate CallError grpcsharp_call_start_client_streaming_delegate(CallSafeHandle call,
Jan Tattermuschafab5412016-01-12 17:57:25 -0800321 BatchContextSafeHandle ctx, MetadataArraySafeHandle metadataArray);
Jan Tattermusche0af2862016-05-18 21:02:03 -0700322 public delegate CallError grpcsharp_call_start_server_streaming_delegate(CallSafeHandle call,
Jan Tattermusch305ffd42016-05-04 10:26:24 -0700323 BatchContextSafeHandle ctx, byte[] sendBuffer, UIntPtr sendBufferLen,
Jan Tattermuschafab5412016-01-12 17:57:25 -0800324 MetadataArraySafeHandle metadataArray, WriteFlags writeFlags);
Jan Tattermusche0af2862016-05-18 21:02:03 -0700325 public delegate CallError grpcsharp_call_start_duplex_streaming_delegate(CallSafeHandle call,
Jan Tattermuschafab5412016-01-12 17:57:25 -0800326 BatchContextSafeHandle ctx, MetadataArraySafeHandle metadataArray);
Jan Tattermusche0af2862016-05-18 21:02:03 -0700327 public delegate CallError grpcsharp_call_send_message_delegate(CallSafeHandle call,
Jan Tattermusch305ffd42016-05-04 10:26:24 -0700328 BatchContextSafeHandle ctx, byte[] sendBuffer, UIntPtr sendBufferLen, WriteFlags writeFlags, bool sendEmptyInitialMetadata);
Jan Tattermusche0af2862016-05-18 21:02:03 -0700329 public delegate CallError grpcsharp_call_send_close_from_client_delegate(CallSafeHandle call,
Jan Tattermuschafab5412016-01-12 17:57:25 -0800330 BatchContextSafeHandle ctx);
Jan Tattermusche0af2862016-05-18 21:02:03 -0700331 public delegate CallError grpcsharp_call_send_status_from_server_delegate(CallSafeHandle call,
Jan Tattermusch305ffd42016-05-04 10:26:24 -0700332 BatchContextSafeHandle ctx, StatusCode statusCode, string statusMessage, MetadataArraySafeHandle metadataArray, bool sendEmptyInitialMetadata,
333 byte[] optionalSendBuffer, UIntPtr optionalSendBufferLen, WriteFlags writeFlags);
Jan Tattermusche0af2862016-05-18 21:02:03 -0700334 public delegate CallError grpcsharp_call_recv_message_delegate(CallSafeHandle call,
Jan Tattermuschafab5412016-01-12 17:57:25 -0800335 BatchContextSafeHandle ctx);
Jan Tattermusche0af2862016-05-18 21:02:03 -0700336 public delegate CallError grpcsharp_call_recv_initial_metadata_delegate(CallSafeHandle call,
Jan Tattermuschafab5412016-01-12 17:57:25 -0800337 BatchContextSafeHandle ctx);
Jan Tattermusche0af2862016-05-18 21:02:03 -0700338 public delegate CallError grpcsharp_call_start_serverside_delegate(CallSafeHandle call,
Jan Tattermuschafab5412016-01-12 17:57:25 -0800339 BatchContextSafeHandle ctx);
Jan Tattermusche0af2862016-05-18 21:02:03 -0700340 public delegate CallError grpcsharp_call_send_initial_metadata_delegate(CallSafeHandle call,
Jan Tattermuschafab5412016-01-12 17:57:25 -0800341 BatchContextSafeHandle ctx, MetadataArraySafeHandle metadataArray);
Jan Tattermusche0af2862016-05-18 21:02:03 -0700342 public delegate CallError grpcsharp_call_set_credentials_delegate(CallSafeHandle call, CallCredentialsSafeHandle credentials);
Jan Tattermuschafab5412016-01-12 17:57:25 -0800343 public delegate CStringSafeHandle grpcsharp_call_get_peer_delegate(CallSafeHandle call);
344 public delegate void grpcsharp_call_destroy_delegate(IntPtr call);
345
346 public delegate ChannelArgsSafeHandle grpcsharp_channel_args_create_delegate(UIntPtr numArgs);
347 public delegate void grpcsharp_channel_args_set_string_delegate(ChannelArgsSafeHandle args, UIntPtr index, string key, string value);
348 public delegate void grpcsharp_channel_args_set_integer_delegate(ChannelArgsSafeHandle args, UIntPtr index, string key, int value);
349 public delegate void grpcsharp_channel_args_destroy_delegate(IntPtr args);
350
Jan Tattermusch660c15b2016-02-02 06:39:10 -0800351 public delegate void grpcsharp_override_default_ssl_roots(string pemRootCerts);
Jan Tattermuschafab5412016-01-12 17:57:25 -0800352 public delegate ChannelCredentialsSafeHandle grpcsharp_ssl_credentials_create_delegate(string pemRootCerts, string keyCertPairCertChain, string keyCertPairPrivateKey);
353 public delegate ChannelCredentialsSafeHandle grpcsharp_composite_channel_credentials_create_delegate(ChannelCredentialsSafeHandle channelCreds, CallCredentialsSafeHandle callCreds);
354 public delegate void grpcsharp_channel_credentials_release_delegate(IntPtr credentials);
355
356 public delegate ChannelSafeHandle grpcsharp_insecure_channel_create_delegate(string target, ChannelArgsSafeHandle channelArgs);
357 public delegate ChannelSafeHandle grpcsharp_secure_channel_create_delegate(ChannelCredentialsSafeHandle credentials, string target, ChannelArgsSafeHandle channelArgs);
358 public delegate CallSafeHandle grpcsharp_channel_create_call_delegate(ChannelSafeHandle channel, CallSafeHandle parentCall, ContextPropagationFlags propagationMask, CompletionQueueSafeHandle cq, string method, string host, Timespec deadline);
359 public delegate ChannelState grpcsharp_channel_check_connectivity_state_delegate(ChannelSafeHandle channel, int tryToConnect);
360 public delegate void grpcsharp_channel_watch_connectivity_state_delegate(ChannelSafeHandle channel, ChannelState lastObservedState,
361 Timespec deadline, CompletionQueueSafeHandle cq, BatchContextSafeHandle ctx);
362 public delegate CStringSafeHandle grpcsharp_channel_get_target_delegate(ChannelSafeHandle call);
363 public delegate void grpcsharp_channel_destroy_delegate(IntPtr channel);
364
365 public delegate int grpcsharp_sizeof_grpc_event_delegate();
366
367 public delegate CompletionQueueSafeHandle grpcsharp_completion_queue_create_delegate();
368 public delegate void grpcsharp_completion_queue_shutdown_delegate(CompletionQueueSafeHandle cq);
369 public delegate CompletionQueueEvent grpcsharp_completion_queue_next_delegate(CompletionQueueSafeHandle cq);
370 public delegate CompletionQueueEvent grpcsharp_completion_queue_pluck_delegate(CompletionQueueSafeHandle cq, IntPtr tag);
371 public delegate void grpcsharp_completion_queue_destroy_delegate(IntPtr cq);
372
373 public delegate void gprsharp_free_delegate(IntPtr ptr);
374
375 public delegate MetadataArraySafeHandle grpcsharp_metadata_array_create_delegate(UIntPtr capacity);
376 public delegate void grpcsharp_metadata_array_add_delegate(MetadataArraySafeHandle array, string key, byte[] value, UIntPtr valueLength);
377 public delegate UIntPtr grpcsharp_metadata_array_count_delegate(IntPtr metadataArray);
378 public delegate IntPtr grpcsharp_metadata_array_get_key_delegate(IntPtr metadataArray, UIntPtr index);
379 public delegate IntPtr grpcsharp_metadata_array_get_value_delegate(IntPtr metadataArray, UIntPtr index);
380 public delegate UIntPtr grpcsharp_metadata_array_get_value_length_delegate(IntPtr metadataArray, UIntPtr index);
381 public delegate void grpcsharp_metadata_array_destroy_full_delegate(IntPtr array);
382
383 public delegate void grpcsharp_redirect_log_delegate(GprLogDelegate callback);
384
385 public delegate CallCredentialsSafeHandle grpcsharp_metadata_credentials_create_from_plugin_delegate(NativeMetadataInterceptor interceptor);
386 public delegate void grpcsharp_metadata_credentials_notify_from_plugin_delegate(IntPtr callbackPtr, IntPtr userData, MetadataArraySafeHandle metadataArray, StatusCode statusCode, string errorDetails);
387
388 public delegate ServerCredentialsSafeHandle grpcsharp_ssl_server_credentials_create_delegate(string pemRootCerts, string[] keyCertPairCertChainArray, string[] keyCertPairPrivateKeyArray, UIntPtr numKeyCertPairs, bool forceClientAuth);
389 public delegate void grpcsharp_server_credentials_release_delegate(IntPtr credentials);
390
Jan Tattermusch5ee8e772016-05-24 16:17:10 -0400391 public delegate ServerSafeHandle grpcsharp_server_create_delegate(ChannelArgsSafeHandle args);
392 public delegate void grpcsharp_server_register_completion_queue_delegate(ServerSafeHandle server, CompletionQueueSafeHandle cq);
Jan Tattermuschafab5412016-01-12 17:57:25 -0800393 public delegate int grpcsharp_server_add_insecure_http2_port_delegate(ServerSafeHandle server, string addr);
394 public delegate int grpcsharp_server_add_secure_http2_port_delegate(ServerSafeHandle server, string addr, ServerCredentialsSafeHandle creds);
395 public delegate void grpcsharp_server_start_delegate(ServerSafeHandle server);
Jan Tattermusche0af2862016-05-18 21:02:03 -0700396 public delegate CallError grpcsharp_server_request_call_delegate(ServerSafeHandle server, CompletionQueueSafeHandle cq, BatchContextSafeHandle ctx);
Jan Tattermuschafab5412016-01-12 17:57:25 -0800397 public delegate void grpcsharp_server_cancel_all_calls_delegate(ServerSafeHandle server);
398 public delegate void grpcsharp_server_shutdown_and_notify_callback_delegate(ServerSafeHandle server, CompletionQueueSafeHandle cq, BatchContextSafeHandle ctx);
399 public delegate void grpcsharp_server_destroy_delegate(IntPtr server);
400
Jan Tattermusche0af2862016-05-18 21:02:03 -0700401 public delegate Timespec gprsharp_now_delegate(ClockType clockType);
402 public delegate Timespec gprsharp_inf_future_delegate(ClockType clockType);
403 public delegate Timespec gprsharp_inf_past_delegate(ClockType clockType);
Jan Tattermuschafab5412016-01-12 17:57:25 -0800404
Jan Tattermusche0af2862016-05-18 21:02:03 -0700405 public delegate Timespec gprsharp_convert_clock_type_delegate(Timespec t, ClockType targetClock);
Jan Tattermuschafab5412016-01-12 17:57:25 -0800406 public delegate int gprsharp_sizeof_timespec_delegate();
407
Jan Tattermusche0af2862016-05-18 21:02:03 -0700408 public delegate CallError grpcsharp_test_callback_delegate([MarshalAs(UnmanagedType.FunctionPtr)] OpCompletionDelegate callback);
Jan Tattermuschafab5412016-01-12 17:57:25 -0800409 public delegate IntPtr grpcsharp_test_nop_delegate(IntPtr ptr);
410 }
Jan Tattermuschafab5412016-01-12 17:57:25 -0800411 }
412}