forked from confluentinc/confluent-kafka-dotnet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCachedSchemaRegistryClient.cs
986 lines (841 loc) · 43.5 KB
/
CachedSchemaRegistryClient.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
// Copyright 2016-2020 Confluent Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
// Refer to LICENSE for more information.
// Disable obsolete warnings. ConstructValueSubjectName is still used a an internal implementation detail.
#pragma warning disable CS0618
#pragma warning disable CS0612
using System.Collections.Generic;
using System.Threading.Tasks;
using System.Linq;
using System;
using System.Net.Http;
using System.Collections.Concurrent;
using System.Net;
using System.Threading;
using System.Security.Cryptography.X509Certificates;
using Confluent.Kafka;
using Microsoft.Extensions.Caching.Memory;
namespace Confluent.SchemaRegistry
{
/// <summary>
/// A caching Schema Registry client.
///
/// The following method calls cache results:
/// - <see cref="CachedSchemaRegistryClient.GetSchemaIdAsync(string, Schema, bool)" />
/// - <see cref="CachedSchemaRegistryClient.GetSchemaIdAsync(string, string, bool)" />
/// - <see cref="CachedSchemaRegistryClient.GetSchemaAsync(int, string)" />
/// - <see cref="CachedSchemaRegistryClient.GetSchemaBySubjectAndIdAsync(string, int, string)" />
/// - <see cref="CachedSchemaRegistryClient.RegisterSchemaAsync(string, Schema, bool)" />
/// - <see cref="CachedSchemaRegistryClient.RegisterSchemaAsync(string, string, bool)" />
/// - <see cref="CachedSchemaRegistryClient.GetRegisteredSchemaAsync(string, int, bool)" />
/// - <see cref="CachedSchemaRegistryClient.LookupSchemaAsync(string, Schema, bool, bool)" />
///
/// The following method calls do NOT cache results:
/// - <see cref="CachedSchemaRegistryClient.GetLatestSchemaAsync(string)" />
/// - <see cref="CachedSchemaRegistryClient.GetAllSubjectsAsync" />
/// - <see cref="CachedSchemaRegistryClient.GetSubjectVersionsAsync(string)" />
/// - <see cref="CachedSchemaRegistryClient.IsCompatibleAsync(string, Schema)" />
/// - <see cref="CachedSchemaRegistryClient.IsCompatibleAsync(string, string)" />
/// - <see cref="CachedSchemaRegistryClient.GetCompatibilityAsync(string)" />
/// - <see cref="CachedSchemaRegistryClient.UpdateCompatibilityAsync(Compatibility, string)" />
/// </summary>
public class CachedSchemaRegistryClient : ISchemaRegistryClient
{
private readonly List<SchemaReference> EmptyReferencesList = new List<SchemaReference>();
private IEnumerable<KeyValuePair<string, string>> config;
private IAuthenticationHeaderValueProvider authHeaderProvider;
private IWebProxy proxy;
private IRestService restService;
private int identityMapCapacity;
private int latestCacheTtlSecs;
private readonly ConcurrentDictionary<int, Schema> schemaById = new ConcurrentDictionary<int, Schema>();
private readonly ConcurrentDictionary<string /*subject*/, ConcurrentDictionary<Schema, int>> idBySchemaBySubject =
new ConcurrentDictionary<string, ConcurrentDictionary<Schema, int>>();
private readonly ConcurrentDictionary<string /*subject*/, ConcurrentDictionary<int, RegisteredSchema>> schemaByVersionBySubject =
new ConcurrentDictionary<string, ConcurrentDictionary<int, RegisteredSchema>>();
private readonly ConcurrentDictionary<string /*subject*/, ConcurrentDictionary<Schema, RegisteredSchema>> registeredSchemaBySchemaBySubject =
new ConcurrentDictionary<string, ConcurrentDictionary<Schema, RegisteredSchema>>();
private readonly MemoryCache latestVersionBySubject = new MemoryCache(new MemoryCacheOptions());
private readonly MemoryCache latestWithMetadataBySubject = new MemoryCache(new MemoryCacheOptions());
private readonly SemaphoreSlim cacheMutex = new SemaphoreSlim(1);
private SubjectNameStrategyDelegate keySubjectNameStrategy;
private SubjectNameStrategyDelegate valueSubjectNameStrategy;
/// <summary>
/// The default timeout value for Schema Registry REST API calls.
/// </summary>
public const int DefaultTimeout = 30000;
/// <summary>
/// The default maximum number of retries.
/// </summary>
public const int DefaultMaxRetries = RestService.DefaultMaxRetries;
/// <summary>
/// The default time to wait for the first retry.
/// </summary>
public const int DefaultRetriesWaitMs = RestService.DefaultRetriesWaitMs;
/// <summary>
/// The default time to wait for any retry.
/// </summary>
public const int DefaultRetriesMaxWaitMs = RestService.DefaultRetriesMaxWaitMs;
/// <summary>
/// The default maximum capacity of the local schema cache.
/// </summary>
public const int DefaultMaxCachedSchemas = 1000;
/// <summary>
/// The default TTL for caches holding latest schemas.
/// </summary>
public const int DefaultLatestCacheTtlSecs = -1;
/// <summary>
/// The default SSL server certificate verification for Schema Registry REST API calls.
/// </summary>
public const bool DefaultEnableSslCertificateVerification = true;
/// <summary>
/// The default key subject name strategy.
/// </summary>
public const SubjectNameStrategy DefaultKeySubjectNameStrategy = SubjectNameStrategy.Topic;
/// <summary>
/// The default value subject name strategy.
/// </summary>
public const SubjectNameStrategy DefaultValueSubjectNameStrategy = SubjectNameStrategy.Topic;
/// <inheritdoc />
public IEnumerable<KeyValuePair<string, string>> Config
=> config;
/// <inheritdoc />
public IAuthenticationHeaderValueProvider AuthHeaderProvider
=> authHeaderProvider;
/// <inheritdoc />
public IWebProxy Proxy
=> proxy;
/// <inheritdoc />
public int MaxCachedSchemas
=> identityMapCapacity;
[Obsolete]
private static SubjectNameStrategyDelegate GetKeySubjectNameStrategy(
IEnumerable<KeyValuePair<string, string>> config)
{
var keySubjectNameStrategyString = config.FirstOrDefault(prop =>
prop.Key.ToLower() == SchemaRegistryConfig.PropertyNames
.SchemaRegistryKeySubjectNameStrategy).Value ??
"";
SubjectNameStrategy keySubjectNameStrategy = SubjectNameStrategy.Topic;
if (keySubjectNameStrategyString != "" &&
!Enum.TryParse<SubjectNameStrategy>(keySubjectNameStrategyString, out keySubjectNameStrategy))
{
throw new ArgumentException($"Unknown KeySubjectNameStrategy: {keySubjectNameStrategyString}");
}
return keySubjectNameStrategy.ToDelegate();
}
[Obsolete]
private static SubjectNameStrategyDelegate GetValueSubjectNameStrategy(
IEnumerable<KeyValuePair<string, string>> config)
{
var valueSubjectNameStrategyString = config.FirstOrDefault(prop =>
prop.Key.ToLower() == SchemaRegistryConfig.PropertyNames.SchemaRegistryValueSubjectNameStrategy)
.Value ?? "";
SubjectNameStrategy valueSubjectNameStrategy = SubjectNameStrategy.Topic;
if (valueSubjectNameStrategyString != "" &&
!Enum.TryParse<SubjectNameStrategy>(valueSubjectNameStrategyString, out valueSubjectNameStrategy))
{
throw new ArgumentException($"Unknown ValueSubjectNameStrategy: {valueSubjectNameStrategyString}");
}
return valueSubjectNameStrategy.ToDelegate();
}
/// <summary>
/// Initialize a new instance of the SchemaRegistryClient class with a custom <see cref="IAuthenticationHeaderValueProvider"/>
/// </summary>
/// <param name="config">
/// Configuration properties.
/// </param>
/// <param name="authenticationHeaderValueProvider">
/// The authentication header value provider
/// </param>
/// <param name="proxy">
/// The proxy server to use for connections
/// </param>
public CachedSchemaRegistryClient(IEnumerable<KeyValuePair<string, string>> config,
IAuthenticationHeaderValueProvider authenticationHeaderValueProvider,
IWebProxy proxy = null)
{
if (config == null)
{
throw new ArgumentNullException("config");
}
this.config = config;
this.authHeaderProvider = authenticationHeaderValueProvider;
this.proxy = proxy;
keySubjectNameStrategy = GetKeySubjectNameStrategy(config);
valueSubjectNameStrategy = GetValueSubjectNameStrategy(config);
var schemaRegistryUrisMaybe = config.FirstOrDefault(prop =>
prop.Key.ToLower() == SchemaRegistryConfig.PropertyNames.SchemaRegistryUrl);
if (schemaRegistryUrisMaybe.Value == null)
{
throw new ArgumentException(
$"{SchemaRegistryConfig.PropertyNames.SchemaRegistryUrl} configuration property must be specified.");
}
var schemaRegistryUris = (string)schemaRegistryUrisMaybe.Value;
var timeoutMsMaybe = config.FirstOrDefault(prop =>
prop.Key.ToLower() == SchemaRegistryConfig.PropertyNames.SchemaRegistryRequestTimeoutMs);
int timeoutMs;
try
{
timeoutMs = timeoutMsMaybe.Value == null ? DefaultTimeout : Convert.ToInt32(timeoutMsMaybe.Value);
}
catch (FormatException)
{
throw new ArgumentException(
$"Configured value for {SchemaRegistryConfig.PropertyNames.SchemaRegistryRequestTimeoutMs} must be an integer.");
}
var maxRetriesMaybe = config.FirstOrDefault(prop =>
prop.Key.ToLower() == SchemaRegistryConfig.PropertyNames.SchemaRegistryMaxRetries);
int maxRetries;
try
{
maxRetries = maxRetriesMaybe.Value == null ? DefaultMaxRetries : Convert.ToInt32(maxRetriesMaybe.Value);
}
catch (FormatException)
{
throw new ArgumentException(
$"Configured value for {SchemaRegistryConfig.PropertyNames.SchemaRegistryMaxRetries} must be an integer.");
}
var retriesWaitMsMaybe = config.FirstOrDefault(prop =>
prop.Key.ToLower() == SchemaRegistryConfig.PropertyNames.SchemaRegistryRetriesWaitMs);
int retriesWaitMs;
try
{
retriesWaitMs = retriesWaitMsMaybe.Value == null ? DefaultRetriesWaitMs : Convert.ToInt32(retriesWaitMsMaybe.Value);
}
catch (FormatException)
{
throw new ArgumentException(
$"Configured value for {SchemaRegistryConfig.PropertyNames.SchemaRegistryRetriesWaitMs} must be an integer.");
}
var retriesMaxWaitMsMaybe = config.FirstOrDefault(prop =>
prop.Key.ToLower() == SchemaRegistryConfig.PropertyNames.SchemaRegistryRetriesMaxWaitMs);
int retriesMaxWaitMs;
try
{
retriesMaxWaitMs = retriesMaxWaitMsMaybe.Value == null ? DefaultRetriesMaxWaitMs : Convert.ToInt32(retriesMaxWaitMsMaybe.Value);
}
catch (FormatException)
{
throw new ArgumentException(
$"Configured value for {SchemaRegistryConfig.PropertyNames.SchemaRegistryRetriesMaxWaitMs} must be an integer.");
}
var identityMapCapacityMaybe = config.FirstOrDefault(prop =>
prop.Key.ToLower() == SchemaRegistryConfig.PropertyNames.SchemaRegistryMaxCachedSchemas);
try
{
this.identityMapCapacity = identityMapCapacityMaybe.Value == null
? DefaultMaxCachedSchemas
: Convert.ToInt32(identityMapCapacityMaybe.Value);
}
catch (FormatException)
{
throw new ArgumentException(
$"Configured value for {SchemaRegistryConfig.PropertyNames.SchemaRegistryMaxCachedSchemas} must be an integer.");
}
var latestCacheTtlSecsMaybe = config.FirstOrDefault(prop =>
prop.Key.ToLower() == SchemaRegistryConfig.PropertyNames.SchemaRegistryLatestCacheTtlSecs);
try
{
this.latestCacheTtlSecs = latestCacheTtlSecsMaybe.Value == null
? DefaultLatestCacheTtlSecs
: Convert.ToInt32(latestCacheTtlSecsMaybe.Value);
}
catch (FormatException)
{
throw new ArgumentException(
$"Configured value for {SchemaRegistryConfig.PropertyNames.SchemaRegistryLatestCacheTtlSecs} must be an integer.");
}
var basicAuthSource = config.FirstOrDefault(prop =>
prop.Key.ToLower() == SchemaRegistryConfig.PropertyNames.SchemaRegistryBasicAuthCredentialsSource)
.Value ?? "";
var basicAuthInfo = config.FirstOrDefault(prop =>
prop.Key.ToLower() == SchemaRegistryConfig.PropertyNames.SchemaRegistryBasicAuthUserInfo).Value ?? "";
string username = null;
string password = null;
if (basicAuthSource == "USER_INFO" || basicAuthSource == "")
{
if (basicAuthInfo != "")
{
var userPass = basicAuthInfo.Split(new char[] { ':' }, 2);
if (userPass.Length != 2)
{
throw new ArgumentException(
$"Configuration property {SchemaRegistryConfig.PropertyNames.SchemaRegistryBasicAuthUserInfo} must be of the form 'username:password'.");
}
username = userPass[0];
password = userPass[1];
if (authenticationHeaderValueProvider != null)
{
throw new ArgumentException(
$"Invalid authentication header value provider configuration: Cannot specify both custom provider and username/password");
}
authenticationHeaderValueProvider = new BasicAuthenticationHeaderValueProvider(username, password);
}
}
else if (basicAuthSource == "SASL_INHERIT")
{
if (basicAuthInfo != "")
{
throw new ArgumentException(
$"{SchemaRegistryConfig.PropertyNames.SchemaRegistryBasicAuthCredentialsSource} set to 'SASL_INHERIT', but {SchemaRegistryConfig.PropertyNames.SchemaRegistryBasicAuthUserInfo} as also specified.");
}
var saslUsername = config.FirstOrDefault(prop => prop.Key == "sasl.username");
var saslPassword = config.FirstOrDefault(prop => prop.Key == "sasl.password");
if (saslUsername.Value == null)
{
throw new ArgumentException(
$"{SchemaRegistryConfig.PropertyNames.SchemaRegistryBasicAuthCredentialsSource} set to 'SASL_INHERIT', but 'sasl.username' property not specified.");
}
if (saslPassword.Value == null)
{
throw new ArgumentException(
$"{SchemaRegistryConfig.PropertyNames.SchemaRegistryBasicAuthCredentialsSource} set to 'SASL_INHERIT', but 'sasl.password' property not specified.");
}
username = saslUsername.Value;
password = saslPassword.Value;
if (authenticationHeaderValueProvider != null)
{
throw new ArgumentException(
$"Invalid authentication header value provider configuration: Cannot specify both custom provider and username/password");
}
authenticationHeaderValueProvider = new BasicAuthenticationHeaderValueProvider(username, password);
}
else
{
throw new ArgumentException(
$"Invalid value '{basicAuthSource}' specified for property '{SchemaRegistryConfig.PropertyNames.SchemaRegistryBasicAuthCredentialsSource}'");
}
var bearerAuthSource = config.FirstOrDefault(prop =>
prop.Key.ToLower() == SchemaRegistryConfig.PropertyNames.SchemaRegistryBearerAuthCredentialsSource).Value ?? "";
if (bearerAuthSource != "" && basicAuthSource != "")
{
throw new ArgumentException(
$"Invalid authentication header value provider configuration: Cannot specify both basic and bearer authentication");
}
string logicalCluster = null;
string identityPoolId = null;
string bearerToken = null;
string clientId = null;
string clientSecret = null;
string scope = null;
string tokenEndpointUrl = null;
if (bearerAuthSource == "STATIC_TOKEN" || bearerAuthSource == "OAUTHBEARER")
{
if (authenticationHeaderValueProvider != null)
{
throw new ArgumentException(
$"Invalid authentication header value provider configuration: Cannot specify both custom provider and bearer authentication");
}
logicalCluster = config.FirstOrDefault(prop =>
prop.Key.ToLower() == SchemaRegistryConfig.PropertyNames.SchemaRegistryBearerAuthLogicalCluster).Value;
identityPoolId = config.FirstOrDefault(prop =>
prop.Key.ToLower() == SchemaRegistryConfig.PropertyNames.SchemaRegistryBearerAuthIdentityPoolId).Value;
if (logicalCluster == null || identityPoolId == null)
{
throw new ArgumentException(
$"Invalid bearer authentication provider configuration: Logical cluster and identity pool ID must be specified");
}
}
switch (bearerAuthSource)
{
case "STATIC_TOKEN":
bearerToken = config.FirstOrDefault(prop =>
prop.Key.ToLower() == SchemaRegistryConfig.PropertyNames.SchemaRegistryBearerAuthToken).Value;
if (bearerToken == null)
{
throw new ArgumentException(
$"Invalid authentication header value provider configuration: Bearer authentication token not specified");
}
authenticationHeaderValueProvider = new StaticBearerAuthenticationHeaderValueProvider(bearerToken, logicalCluster, identityPoolId);
break;
case "OAUTHBEARER":
clientId = config.FirstOrDefault(prop =>
prop.Key.ToLower() == SchemaRegistryConfig.PropertyNames.SchemaRegistryBearerAuthClientId).Value;
clientSecret = config.FirstOrDefault(prop =>
prop.Key.ToLower() == SchemaRegistryConfig.PropertyNames.SchemaRegistryBearerAuthClientSecret).Value;
scope = config.FirstOrDefault(prop =>
prop.Key.ToLower() == SchemaRegistryConfig.PropertyNames.SchemaRegistryBearerAuthScope).Value;
tokenEndpointUrl = config.FirstOrDefault(prop =>
prop.Key.ToLower() == SchemaRegistryConfig.PropertyNames.SchemaRegistryBearerAuthTokenEndpointUrl).Value;
if (tokenEndpointUrl == null || clientId == null || clientSecret == null || scope == null)
{
throw new ArgumentException(
$"Invalid bearer authentication provider configuration: Token endpoint URL, client ID, client secret, and scope must be specified");
}
authenticationHeaderValueProvider = new BearerAuthenticationHeaderValueProvider(
new HttpClient(), clientId, clientSecret, scope, tokenEndpointUrl, logicalCluster, identityPoolId, maxRetries, retriesWaitMs, retriesMaxWaitMs);
break;
case "CUSTOM":
if (authenticationHeaderValueProvider == null)
{
throw new ArgumentException(
$"Invalid authentication header value provider configuration: Custom authentication provider must be specified");
}
if(!(authenticationHeaderValueProvider is IAuthenticationBearerHeaderValueProvider))
{
throw new ArgumentException(
$"Invalid authentication header value provider configuration: Custom authentication provider must implement IAuthenticationBearerHeaderValueProvider");
}
break;
case "":
break;
default:
throw new ArgumentException(
$"Invalid value '{bearerAuthSource}' specified for property '{SchemaRegistryConfig.PropertyNames.SchemaRegistryBearerAuthCredentialsSource}'");
}
foreach (var property in config)
{
if (!property.Key.StartsWith("schema.registry."))
{
continue;
}
if (property.Key != SchemaRegistryConfig.PropertyNames.SchemaRegistryUrl &&
property.Key != SchemaRegistryConfig.PropertyNames.SchemaRegistryRequestTimeoutMs &&
property.Key != SchemaRegistryConfig.PropertyNames.SchemaRegistryMaxRetries &&
property.Key != SchemaRegistryConfig.PropertyNames.SchemaRegistryRetriesWaitMs &&
property.Key != SchemaRegistryConfig.PropertyNames.SchemaRegistryRetriesMaxWaitMs &&
property.Key != SchemaRegistryConfig.PropertyNames.SchemaRegistryMaxCachedSchemas &&
property.Key != SchemaRegistryConfig.PropertyNames.SchemaRegistryLatestCacheTtlSecs &&
property.Key != SchemaRegistryConfig.PropertyNames.SchemaRegistryBasicAuthCredentialsSource &&
property.Key != SchemaRegistryConfig.PropertyNames.SchemaRegistryBasicAuthUserInfo &&
property.Key != SchemaRegistryConfig.PropertyNames.SchemaRegistryBearerAuthCredentialsSource &&
property.Key != SchemaRegistryConfig.PropertyNames.SchemaRegistryBearerAuthToken &&
property.Key != SchemaRegistryConfig.PropertyNames.SchemaRegistryBearerAuthClientId &&
property.Key != SchemaRegistryConfig.PropertyNames.SchemaRegistryBearerAuthClientSecret &&
property.Key != SchemaRegistryConfig.PropertyNames.SchemaRegistryBearerAuthScope &&
property.Key != SchemaRegistryConfig.PropertyNames.SchemaRegistryBearerAuthTokenEndpointUrl &&
property.Key != SchemaRegistryConfig.PropertyNames.SchemaRegistryBearerAuthLogicalCluster &&
property.Key != SchemaRegistryConfig.PropertyNames.SchemaRegistryBearerAuthIdentityPoolId &&
property.Key != SchemaRegistryConfig.PropertyNames.SchemaRegistryKeySubjectNameStrategy &&
property.Key != SchemaRegistryConfig.PropertyNames.SchemaRegistryValueSubjectNameStrategy &&
property.Key != SchemaRegistryConfig.PropertyNames.SslCaLocation &&
property.Key != SchemaRegistryConfig.PropertyNames.SslKeystoreLocation &&
property.Key != SchemaRegistryConfig.PropertyNames.SslKeystorePassword &&
property.Key != SchemaRegistryConfig.PropertyNames.EnableSslCertificateVerification)
{
throw new ArgumentException($"Unknown configuration parameter {property.Key}");
}
}
var sslVerificationMaybe = config.FirstOrDefault(prop =>
prop.Key.ToLower() == SchemaRegistryConfig.PropertyNames.EnableSslCertificateVerification);
bool sslVerify;
try
{
sslVerify = sslVerificationMaybe.Value == null
? DefaultEnableSslCertificateVerification
: bool.Parse(sslVerificationMaybe.Value);
}
catch (FormatException)
{
throw new ArgumentException(
$"Configured value for {SchemaRegistryConfig.PropertyNames.EnableSslCertificateVerification} must be a bool.");
}
var sslCaLocation = config.FirstOrDefault(prop => prop.Key.ToLower() == SchemaRegistryConfig.PropertyNames.SslCaLocation).Value;
var sslCaCertificate = string.IsNullOrEmpty(sslCaLocation) ? null : new X509Certificate2(sslCaLocation);
this.restService = new RestService(schemaRegistryUris, timeoutMs, authenticationHeaderValueProvider,
SetSslConfig(config), sslVerify, sslCaCertificate, proxy, maxRetries, retriesWaitMs, retriesMaxWaitMs);
}
/// <summary>
/// Initialize a new instance of the SchemaRegistryClient class.
/// </summary>
/// <param name="config">
/// Configuration properties.
/// </param>
public CachedSchemaRegistryClient(IEnumerable<KeyValuePair<string, string>> config)
: this(config, null)
{
}
/// <summary>
/// Initialize a new instance of the SchemaRegistryClient class.
/// </summary>
/// <param name="config">
/// Configuration properties.
/// </param>
/// <param name="proxy">
/// The proxy server to use for connections
/// </param>
public CachedSchemaRegistryClient(IEnumerable<KeyValuePair<string, string>> config, IWebProxy proxy)
: this(config, null, proxy)
{
}
/// <remarks>
/// This is to make sure memory doesn't explode in the case of incorrect usage.
///
/// It's behavior is pretty extreme - remove everything and start again if the
/// cache gets full. However, in practical situations this is not expected.
///
/// TODO: Implement an LRU Cache here or something instead.
/// </remarks>
private bool CleanCacheIfFull()
{
if (schemaById.Count >= identityMapCapacity)
{
// TODO: maybe log something somehow if this happens. Maybe throwing an exception (fail fast) is better.
this.schemaById.Clear();
this.idBySchemaBySubject.Clear();
this.schemaByVersionBySubject.Clear();
this.registeredSchemaBySchemaBySubject.Clear();
return true;
}
return false;
}
/// <summary>
/// Add certificates for SSL handshake.
/// </summary>
/// <param name="config">
/// Configuration properties.
/// </param>
private List<X509Certificate2> SetSslConfig(IEnumerable<KeyValuePair<string, string>> config)
{
var certificates = new List<X509Certificate2>();
var certificateLocation = config.FirstOrDefault(prop =>
prop.Key.ToLower() == SchemaRegistryConfig.PropertyNames.SslKeystoreLocation).Value ?? "";
var certificatePassword = config.FirstOrDefault(prop =>
prop.Key.ToLower() == SchemaRegistryConfig.PropertyNames.SslKeystorePassword).Value ?? "";
if (!String.IsNullOrEmpty(certificateLocation))
{
certificates.Add(new X509Certificate2(certificateLocation, certificatePassword));
}
return certificates;
}
/// <inheritdoc/>
public Task<int> GetSchemaIdAsync(string subject, string avroSchema, bool normalize = false)
=> GetSchemaIdAsync(subject, new Schema(avroSchema, EmptyReferencesList, SchemaType.Avro), normalize);
/// <inheritdoc/>
public async Task<int> GetSchemaIdAsync(string subject, Schema schema, bool normalize = false)
{
if (idBySchemaBySubject.TryGetValue(subject, out var idBySchema))
{
if (idBySchema.TryGetValue(schema, out int schemaId))
{
return schemaId;
}
}
await cacheMutex.WaitAsync().ConfigureAwait(continueOnCapturedContext: false);
try
{
if (!this.idBySchemaBySubject.TryGetValue(subject, out idBySchema))
{
idBySchema = new ConcurrentDictionary<Schema, int>();
this.idBySchemaBySubject.TryAdd(subject, idBySchema);
}
// TODO: The following could be optimized in the usual case where idBySchema only
// contains very few elements and the schema string passed in is always the same
// instance.
if (!idBySchema.TryGetValue(schema, out int schemaId))
{
CleanCacheIfFull();
// throws SchemaRegistryException if schema is not known.
var registeredSchema = await restService.LookupSchemaAsync(subject, schema, true, normalize)
.ConfigureAwait(continueOnCapturedContext: false);
idBySchema[schema] = registeredSchema.Id;
schemaById[registeredSchema.Id] = registeredSchema.Schema;
schemaId = registeredSchema.Id;
}
return schemaId;
}
finally
{
cacheMutex.Release();
}
}
/// <inheritdoc/>
public async Task<int> RegisterSchemaAsync(string subject, Schema schema, bool normalize = false)
{
if (idBySchemaBySubject.TryGetValue(subject, out var idBySchema))
{
if (idBySchema.TryGetValue(schema, out var schemaId))
{
return schemaId;
}
}
await cacheMutex.WaitAsync().ConfigureAwait(continueOnCapturedContext: false);
try
{
if (!this.idBySchemaBySubject.TryGetValue(subject, out idBySchema))
{
idBySchema = new ConcurrentDictionary<Schema, int>();
idBySchemaBySubject.TryAdd(subject, idBySchema);
}
// TODO: This could be optimized in the usual case where idBySchema only
// contains very few elements and the schema string passed in is always
// the same instance.
if (!idBySchema.TryGetValue(schema, out int schemaId))
{
CleanCacheIfFull();
schemaId = await restService.RegisterSchemaAsync(subject, schema, normalize)
.ConfigureAwait(continueOnCapturedContext: false);
idBySchema[schema] = schemaId;
}
return schemaId;
}
finally
{
cacheMutex.Release();
}
}
/// <inheritdoc/>
public Task<int> RegisterSchemaAsync(string subject, string avroSchema, bool normalize = false)
=> RegisterSchemaAsync(subject, new Schema(avroSchema, EmptyReferencesList, SchemaType.Avro), normalize);
/// <summary>
/// Check if the given schema string matches a given format name.
/// </summary>
private bool checkSchemaMatchesFormat(string format, string schemaString)
{
// if a format isn't specified, then assume text is desired.
if (format == null)
{
// If schemaString is not Base64, infer the schemaString format is text.
return !Utils.IsBase64String(schemaString);
}
else
{
if (format != "serialized")
{
throw new ArgumentException($"Invalid schema format was specified: {format}.");
}
return Utils.IsBase64String(schemaString);
}
}
/// <inheritdoc/>
public async Task<RegisteredSchema> LookupSchemaAsync(string subject, Schema schema, bool ignoreDeletedSchemas,
bool normalize = false)
{
if (registeredSchemaBySchemaBySubject.TryGetValue(subject, out var registeredSchemaBySchema))
{
if (registeredSchemaBySchema.TryGetValue(schema, out var registeredSchema))
{
return registeredSchema;
}
}
await cacheMutex.WaitAsync().ConfigureAwait(continueOnCapturedContext: false);
try
{
if (!registeredSchemaBySchemaBySubject.TryGetValue(subject, out registeredSchemaBySchema))
{
CleanCacheIfFull();
registeredSchemaBySchema = new ConcurrentDictionary<Schema, RegisteredSchema>();
registeredSchemaBySchemaBySubject[subject] = registeredSchemaBySchema;
}
if (!registeredSchemaBySchema.TryGetValue(schema, out var registeredSchema))
{
registeredSchema = await restService.LookupSchemaAsync(subject, schema, ignoreDeletedSchemas, normalize).ConfigureAwait(continueOnCapturedContext: false);
registeredSchemaBySchema[schema] = registeredSchema;
}
return registeredSchema;
}
finally
{
cacheMutex.Release();
}
}
/// <inheritdoc/>
public async Task<Schema> GetSchemaAsync(int id, string format = null)
{
if (schemaById.TryGetValue(id, out var schema) && checkSchemaMatchesFormat(format, schema.SchemaString))
{
return schema;
}
await cacheMutex.WaitAsync().ConfigureAwait(continueOnCapturedContext: false);
try
{
if (!this.schemaById.TryGetValue(id, out schema) ||
!checkSchemaMatchesFormat(format, schema.SchemaString))
{
CleanCacheIfFull();
schema = (await restService.GetSchemaAsync(id, format)
.ConfigureAwait(continueOnCapturedContext: false));
schemaById[id] = schema;
}
return schema;
}
finally
{
cacheMutex.Release();
}
}
/// <inheritdoc/>
public async Task<Schema> GetSchemaBySubjectAndIdAsync(string subject, int id, string format = null)
{
if (this.schemaById.TryGetValue(id, out var schema) && checkSchemaMatchesFormat(format, schema.SchemaString))
{
return schema;
}
await cacheMutex.WaitAsync().ConfigureAwait(continueOnCapturedContext: false);
try
{
if (!this.schemaById.TryGetValue(id, out schema) || !checkSchemaMatchesFormat(format, schema.SchemaString))
{
CleanCacheIfFull();
schema = (await restService.GetSchemaBySubjectAndIdAsync(subject, id, format)
.ConfigureAwait(continueOnCapturedContext: false));
schemaById[id] = schema;
}
return schema;
}
finally
{
cacheMutex.Release();
}
}
/// <inheritdoc/>
public async Task<RegisteredSchema> GetRegisteredSchemaAsync(string subject, int version, bool ignoreDeletedSchemas = true)
{
if (schemaByVersionBySubject.TryGetValue(subject, out var schemaByVersion) &&
schemaByVersion.TryGetValue(version, out var schema))
{
return schema;
}
await cacheMutex.WaitAsync().ConfigureAwait(continueOnCapturedContext: false);
try
{
CleanCacheIfFull();
if (!schemaByVersionBySubject.TryGetValue(subject, out schemaByVersion))
{
schemaByVersion = new ConcurrentDictionary<int, RegisteredSchema>();
schemaByVersionBySubject[subject] = schemaByVersion;
}
if (!schemaByVersion.TryGetValue(version, out schema))
{
schema = await restService.GetSchemaAsync(subject, version)
.ConfigureAwait(continueOnCapturedContext: false);
schemaByVersion[version] = schema;
schemaById[schema.Id] = schema.Schema;
}
return schema;
}
finally
{
cacheMutex.Release();
}
}
/// <inheritdoc/>
[Obsolete(
"Superseded by GetRegisteredSchemaAsync(string subject, int version). This method will be removed in a future release.")]
public async Task<string> GetSchemaAsync(string subject, int version)
=> (await GetRegisteredSchemaAsync(subject, version)).SchemaString;
/// <inheritdoc/>
public async Task<RegisteredSchema> GetLatestSchemaAsync(string subject)
{
RegisteredSchema schema;
if (!latestVersionBySubject.TryGetValue(subject, out schema))
{
schema = await restService.GetLatestSchemaAsync(subject).ConfigureAwait(continueOnCapturedContext: false);
MemoryCacheEntryOptions opts = new MemoryCacheEntryOptions();
if (latestCacheTtlSecs > 0)
{
opts.AbsoluteExpirationRelativeToNow = TimeSpan.FromSeconds(latestCacheTtlSecs);
}
latestVersionBySubject.Set(subject, schema, opts);
}
return schema;
}
/// <inheritdoc/>
public async Task<RegisteredSchema> GetLatestWithMetadataAsync(string subject,
IDictionary<string, string> metadata, bool ignoreDeletedSchemas)
{
var key = (subject, metadata, ignoreDeletedSchemas);
RegisteredSchema schema;
if (!latestWithMetadataBySubject.TryGetValue(key, out schema))
{
schema = await restService.GetLatestWithMetadataAsync(subject, metadata, ignoreDeletedSchemas).ConfigureAwait(continueOnCapturedContext: false);
MemoryCacheEntryOptions opts = new MemoryCacheEntryOptions();
if (latestCacheTtlSecs > 0)
{
opts.AbsoluteExpirationRelativeToNow = TimeSpan.FromSeconds(latestCacheTtlSecs);
}
latestWithMetadataBySubject.Set(key, schema, opts);
}
return schema;
}
/// <inheritdoc/>
public Task<List<string>> GetAllSubjectsAsync()
=> restService.GetSubjectsAsync();
/// <inheritdoc/>
public async Task<List<int>> GetSubjectVersionsAsync(string subject)
=> await restService.GetSubjectVersionsAsync(subject).ConfigureAwait(continueOnCapturedContext: false);
/// <inheritdoc/>
public async Task<bool> IsCompatibleAsync(string subject, Schema schema)
=> await restService.TestLatestCompatibilityAsync(subject, schema)
.ConfigureAwait(continueOnCapturedContext: false);
/// <inheritdoc/>
public async Task<bool> IsCompatibleAsync(string subject, string avroSchema)
=> await restService
.TestLatestCompatibilityAsync(subject, new Schema(avroSchema, EmptyReferencesList, SchemaType.Avro))
.ConfigureAwait(continueOnCapturedContext: false);
/// <inheritdoc />
[Obsolete(
"SubjectNameStrategy should now be specified via serializer configuration. This method will be removed in a future release.")]
public string ConstructKeySubjectName(string topic, string recordType = null)
=> keySubjectNameStrategy(new SerializationContext(MessageComponentType.Key, topic), recordType);
/// <inheritdoc />
[Obsolete(
"SubjectNameStrategy should now be specified via serializer configuration. This method will be removed in a future release.")]
public string ConstructValueSubjectName(string topic, string recordType = null)
=> valueSubjectNameStrategy(new SerializationContext(MessageComponentType.Value, topic), recordType);
/// <inheritdoc />
public async Task<Compatibility> GetCompatibilityAsync(string subject = null)
=> await restService.GetCompatibilityAsync(subject)
.ConfigureAwait(continueOnCapturedContext: false);
/// <inheritdoc />
public async Task<Compatibility> UpdateCompatibilityAsync(Compatibility compatibility, string subject = null)
=> await restService.UpdateCompatibilityAsync(subject, compatibility)
.ConfigureAwait(continueOnCapturedContext: false);
/// <summary>
/// Clears caches of latest versions.
/// </summary>
public void ClearLatestCaches()
{
latestVersionBySubject.Clear();
latestWithMetadataBySubject.Clear();
}
/// <summary>
/// Clears all caches.
/// </summary>
public void ClearCaches()
{
schemaById.Clear();
idBySchemaBySubject.Clear();
schemaByVersionBySubject.Clear();
registeredSchemaBySchemaBySubject.Clear();
latestVersionBySubject.Clear();
latestWithMetadataBySubject.Clear();
}
/// <summary>
/// Releases unmanaged resources owned by this CachedSchemaRegistryClient instance.
/// </summary>
public void Dispose()
{
Dispose(true);
GC.SuppressFinalize(this);
}
/// <summary>
/// Releases the unmanaged resources used by this object
/// and optionally disposes the managed resources.
/// </summary>
/// <param name="disposing">
/// true to release both managed and unmanaged resources;
/// false to release only unmanaged resources.
/// </param>
protected virtual void Dispose(bool disposing)
{
if (disposing)
{
restService.Dispose();
}
}
}
}