-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathStatement.cs
199 lines (167 loc) · 7.24 KB
/
Statement.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
/*
* Copyright 2018 Stanislav Muhametsin. All rights Reserved.
*
* 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.
*/
using System;
using System.Collections.Generic;
using System.Text;
using System.Threading.Tasks;
using UtilPack;
using TDataProducerResult = System.Threading.Tasks.ValueTask<System.Collections.Generic.IEnumerable<CBAM.NATS.NATSPublishData>>;
namespace CBAM.NATS
{
using TDataProducer = Func<TDataProducerResult>;
namespace Implementation
{
using TDataProducerFactory = Func<TDataProducer>;
// TODO Move to UtilPack
internal sealed class Reference<T>
{
public T Value { get; set; }
}
internal abstract class NATSStatementInformationImpl : NATSStatementInformation
{
public NATSStatementInformationImpl( String subject )
{
this.Subject = ArgumentValidator.ValidateNotEmpty( nameof( subject ), subject );
if ( subject.ContainsNonASCIICharacters( IsInvalidASCIICharacter ) )
{
throw new ArgumentException( "Invalid subject name: " + subject );
}
}
public String Subject { get; }
public static Boolean IsInvalidASCIICharacter( Byte ch )
{
return ch <= 0x20;
}
}
internal sealed class NATSSubscribeStatementInformationImpl : NATSStatementInformationImpl, NATSSubscribeStatementInformation
{
private readonly Reference<String> _queue;
private readonly Reference<Int64> _autoUnsubscribeAfter;
private readonly Reference<Func<NATSMessage, Boolean>> _dynamicUnsubscribe;
public NATSSubscribeStatementInformationImpl(
String subject,
Reference<String> queue,
Reference<Int64> autoUnsubscribeAfter,
Reference<Func<NATSMessage, Boolean>> dynamicUnsubscribe
) : base( subject )
{
this._queue = ArgumentValidator.ValidateNotNull( nameof( queue ), queue );
this._autoUnsubscribeAfter = ArgumentValidator.ValidateNotNull( nameof( autoUnsubscribeAfter ), autoUnsubscribeAfter );
this._dynamicUnsubscribe = ArgumentValidator.ValidateNotNull( nameof( dynamicUnsubscribe ), dynamicUnsubscribe );
}
public String Queue => this._queue.Value;
public Int64 AutoUnsubscribeAfter => this._autoUnsubscribeAfter.Value;
public Func<NATSMessage, Boolean> DynamicUnsubscription => this._dynamicUnsubscribe.Value;
}
internal abstract class NATSStatementImpl : NATSStatement
{
internal NATSStatementImpl(
NATSStatementInformationImpl information
)
{
this.NATSStatementInformation = information;
}
public NATSStatementInformation NATSStatementInformation { get; }
public String Subject => this.NATSStatementInformation.Subject;
}
internal sealed class NATSSubscribeStatementImpl : NATSStatementImpl, NATSSubscribeStatement
{
private readonly Reference<String> _queue;
private readonly Reference<Int64> _autoUnsubscribeAfter;
private readonly Reference<Func<NATSMessage, Boolean>> _dynamicUnsubscribe;
internal NATSSubscribeStatementImpl(
NATSSubscribeStatementInformationImpl information,
Reference<String> queue,
Reference<Int64> autoUnsubscribeAfter,
Reference<Func<NATSMessage, Boolean>> dynamicUnsubscribe
) : base( information )
{
this._queue = ArgumentValidator.ValidateNotNull( nameof( queue ), queue );
this._autoUnsubscribeAfter = ArgumentValidator.ValidateNotNull( nameof( autoUnsubscribeAfter ), autoUnsubscribeAfter );
this._dynamicUnsubscribe = ArgumentValidator.ValidateNotNull( nameof( dynamicUnsubscribe ), dynamicUnsubscribe );
}
public String Queue
{
get => this._queue.Value;
set => this._queue.Value = value;
}
public Int64 AutoUnsubscribeAfter
{
get => this._autoUnsubscribeAfter.Value;
set => this._autoUnsubscribeAfter.Value = value;
}
public Func<NATSMessage, Boolean> DynamicUnsubscription
{
get => this._dynamicUnsubscribe.Value;
set => this._dynamicUnsubscribe.Value = value;
}
String NATSSubscribeStatementInformation.Queue => this.Queue;
Func<NATSMessage, Boolean> NATSSubscribeStatementInformation.DynamicUnsubscription => this.DynamicUnsubscription;
}
internal sealed class NATSPublishStatementImpl : NATSPublishStatement
{
private readonly Reference<TDataProducerFactory> _dataProducer;
internal NATSPublishStatementImpl(
NATSPublishStatementInformationImpl information,
Reference<TDataProducerFactory> dataProducer
)
{
this.NATSStatementInformation = ArgumentValidator.ValidateNotNull( nameof( information ), information );
this._dataProducer = ArgumentValidator.ValidateNotNull( nameof( dataProducer ), dataProducer );
}
public TDataProducerFactory DataProducerFactory
{
get => this._dataProducer.Value;
set => this._dataProducer.Value = value;
}
public NATSPublishStatementInformation NATSStatementInformation { get; }
TDataProducerFactory NATSPublishStatementInformation.DataProducerFactory => this.DataProducerFactory;
}
internal sealed class NATSPublishStatementInformationImpl : NATSPublishStatementInformation
{
private readonly Reference<TDataProducerFactory> _dataProducer;
public NATSPublishStatementInformationImpl(
Reference<TDataProducerFactory> dataProducer
)
{
this._dataProducer = ArgumentValidator.ValidateNotNull( nameof( dataProducer ), dataProducer );
}
public TDataProducerFactory DataProducerFactory => this._dataProducer.Value;
}
}
}
namespace UtilPack
{
public static partial class UtilPackExtensions
{
public static Boolean ContainsNonASCIICharacters( this String str, Func<Byte, Boolean> additionalCheck = null )
{
var max = str.Length;
var retVal = false;
for ( var i = 0; i < str.Length && !retVal; ++i )
{
var ch = str[i];
if ( ch > Byte.MaxValue || ( additionalCheck?.Invoke( (Byte) ch ) ?? false ) )
{
retVal = true;
}
}
return retVal;
}
}
}