Snippets

Stefan Glienke Spring4D RX

Created by Stefan Glienke
  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
program ReactiveX;

{$APPTYPE CONSOLE}

uses
  Spring,
  Spring.Collections,
  SysUtils;

type
  IDisposable = interface
    procedure Dispose;
  end;

  IObserver<T> = interface
    procedure OnNext(const value: T);
    procedure OnError(const error: Exception);
    procedure OnCompleted;
  end;

  IObservable<T> = interface
    function Subscribe(const observer: IObserver<T>): IDisposable;
  end;

  TMyConsoleObserver<T> = class(TInterfacedObject, IObserver<T>)
    procedure OnNext(const value: T);
    procedure OnError(const error: Exception);
    procedure OnCompleted;
  end;

{ TMyConsoleObserver<T> }

procedure TMyConsoleObserver<T>.OnCompleted;
begin
  Writeln('Sequence terminated');
end;

procedure TMyConsoleObserver<T>.OnError(const error: Exception);
begin
  Writeln('Sequence faulted with ', error.Message);
end;

procedure TMyConsoleObserver<T>.OnNext(const value: T);
begin
  Writeln('Received value ', TValue.From<T>(value).ToString);
end;

type
  TMySequenceOfNumbers = class(TInterfacedObject, IObservable<Integer>)
    function Subscribe(const observer: IObserver<Integer>): IDisposable;
  end;

{ TMySequenceOfNumbers }

function TMySequenceOfNumbers.Subscribe(
  const observer: IObserver<Integer>): IDisposable;
begin
  observer.OnNext(1);
  observer.OnNext(2);
  observer.OnNext(3);
  observer.OnCompleted();
end;

type
  ISubject<T> = interface(IObservable<T>)
    procedure OnNext(const value: T);
    procedure OnError(const error: Exception);
    procedure OnCompleted;
  end;

  TSubject<T> = class(TInterfacedObject, ISubject<T>, IObserver<T>, IObservable<T>)
  private
    fObservers: IList<IObserver<T>>;
    procedure Unsubscribe(const observer: IObserver<T>);
  public
    constructor Create;

    procedure OnNext(const value: T);
    procedure OnError(const error: Exception);
    procedure OnCompleted;

    function Subscribe(const observer: IObserver<T>): IDisposable;

    type
      TSubscription = class(TInterfacedObject, IDisposable)
      private
        fSubject: TSubject<T>;//unsafe
        fObserver: IObserver<T>;
      public
        constructor Create(const subject: TSubject<T>; const observer: IObserver<T>);

        procedure Dispose;
      end;
  end;

procedure Main;
var
  numbers: IObservable<Integer>;
  observer: IObserver<Integer>;
begin
  numbers := TMySequenceOfNumbers.Create;
  observer := TMyConsoleObserver<Integer>.Create;
  numbers.Subscribe(observer);
end;

{ TSubject<T> }

constructor TSubject<T>.Create;
begin
  fObservers := TCollections.CreateInterfaceList<IObserver<T>>;
end;

procedure TSubject<T>.OnCompleted;
begin

end;

procedure TSubject<T>.OnError(const error: Exception);
begin

end;

procedure TSubject<T>.OnNext(const value: T);
var
  observer: IObserver<T>;
begin
  for observer in fObservers.ToArray do
    observer.OnNext(value);
end;

function TSubject<T>.Subscribe(const observer: IObserver<T>): IDisposable;
begin
  fObservers.Add(observer);
  Result := TSubscription.Create(Self, observer);
end;

procedure TSubject<T>.Unsubscribe(const observer: IObserver<T>);
begin
  fObservers.Remove(observer);
end;

{ TSubject<T>.TSubscription }

constructor TSubject<T>.TSubscription.Create(const subject: TSubject<T>;
  const observer: IObserver<T>);
begin
  inherited Create;
  fSubject := subject;
  fObserver := observer;
end;

procedure TSubject<T>.TSubscription.Dispose;
begin
  if Assigned(fSubject) then
    fSubject.Unsubscribe(fObserver);
end;

type
  Console = record
    class procedure WriteLine(const s: string); static;
  end;

  TAnonymousObserver<T> = class sealed(TInterfacedObject, IObserver<T>)
  private
    fOnNext: TAction<T>;
    fOnError: TAction<Exception>;
    fOnComplected: TProc;
  public
    constructor Create(const onNext: TAction<T>;
      const onError: TAction<Exception>; const onCompleted: TProc); overload;
    constructor Create(const onNext: TAction<T>); overload;

    procedure OnNext(const value: T);
    procedure OnError(const error: Exception);
    procedure OnCompleted;
  end;

procedure WriteSequenceToConsole(const sequence: IObservable<string>);
begin
  sequence.Subscribe(TAnonymousObserver<string>.Create(Console.WriteLine));
end;

procedure Main2;
var
  subject: ISubject<string>;
begin
  subject := TSubject<string>.Create;
  WriteSequenceToConsole(subject);
  subject.OnNext('a');
  subject.OnNext('b');
  subject.OnNext('c');
end;

{ Console }

class procedure Console.WriteLine(const s: string);
begin
  Writeln(s);
end;

{ TAnonymousObserver<T> }

constructor TAnonymousObserver<T>.Create(const onNext: TAction<T>;
  const onError: TAction<Exception>; const onCompleted: TProc);
begin
  inherited Create;
  fOnNext := onNext;
  fOnError := onError;
  fOnComplected := onCompleted;
end;

constructor TAnonymousObserver<T>.Create(const onNext: TAction<T>);
begin
  // TODO: take from global stubs
  Create(onNext,
    procedure(const e: Exception) begin raise e; end,
    procedure begin end);
//    Stubs.Throw, Stubs.Nop);
end;

procedure TAnonymousObserver<T>.OnCompleted;
begin
  fOnComplected();
end;

procedure TAnonymousObserver<T>.OnError(const error: Exception);
begin
  fOnError(error);
end;

procedure TAnonymousObserver<T>.OnNext(const value: T);
begin
  fOnNext(value);
end;

type
  TTimeInterval<T> = record
  private
    fInterval: TTimeSpan;
    fValue: T;
  public
    constructor Create(const value: T; const interval: TTimeSpan);
    property Interval: TTimeSpan read fInterval;
    property Value: T read fValue;
  end;

  TReplaySubject<T> = class(TInterfacedObject, ISubject<T>)
  private const
    InfiniteBufferSize = MaxInt;
  private
    fQueue: IQueue<TTimeInterval<T>>;
    fObservers: IList<IObserver<T>>;
    fBufferSize: Integer;
    fWindow: TTimeSpan;
    fStopwatch: TStopwatch;
    procedure Unsubscribe(const observer: IObserver<T>);
  protected
    procedure Next(const value: T);
    function Replay(const observer: IObserver<T>): Integer;
    procedure Trim;
  public
    constructor Create(bufferSize: Integer; const window: TTimeSpan); overload;
    constructor Create(bufferSize: Integer = InfiniteBufferSize); overload;
    constructor Create(const window: TTimeSpan); overload;

    procedure OnNext(const value: T);
    procedure OnError(const error: Exception);
    procedure OnCompleted;

    function Subscribe(const observer: IObserver<T>): IDisposable;

    type
      TSubscription = class(TInterfacedObject, IDisposable)
      private
        fSubject: TReplaySubject<T>;//unsafe
        fObserver: IObserver<T>;
      public
        constructor Create(const subject: TReplaySubject<T>; const observer: IObserver<T>);

        procedure Dispose;
      end;
  end;

{ TReplaySubject<T> }

constructor TReplaySubject<T>.Create(bufferSize: Integer;
  const window: TTimeSpan);
begin
  inherited Create;
  fQueue := TCollections.CreateQueue<TTimeInterval<T>>;
  fObservers := TCollections.CreateInterfaceList<IObserver<T>>;
  fBufferSize := bufferSize;
  fWindow := window;
  fStopwatch.Start;
end;

constructor TReplaySubject<T>.Create(bufferSize: Integer);
begin
  Create(bufferSize, TTimeSpan.MaxValue);
end;

constructor TReplaySubject<T>.Create(const window: TTimeSpan);
begin
  Create(InfiniteBufferSize, window);
end;

procedure TReplaySubject<T>.Next(const value: T);
begin
  fQueue.Enqueue(TTimeInterval<T>.Create(value, fStopwatch.Elapsed));
end;

procedure TReplaySubject<T>.OnCompleted;
var
  observer: IObserver<T>;
begin
  for observer in fObservers.ToArray do
    observer.OnCompleted;
end;

procedure TReplaySubject<T>.OnError(const error: Exception);
var
  observer: IObserver<T>;
begin
  for observer in fObservers.ToArray do
    observer.OnError(error);
end;

procedure TReplaySubject<T>.OnNext(const value: T);
var
  observer: IObserver<T>;
begin
  Trim;
  Next(value);
  for observer in fObservers.ToArray do
    observer.OnNext(value);
end;

function TReplaySubject<T>.Replay(const observer: IObserver<T>): Integer;
var
  item: TTimeInterval<T>;
begin
  Result := fQueue.Count;
  for item in fQueue do
    observer.OnNext(item.Value);
end;

function TReplaySubject<T>.Subscribe(const observer: IObserver<T>): IDisposable;
begin
  Trim;
  Replay(observer);
  fObservers.Add(observer);
  Result := TSubscription.Create(Self, observer);
end;

procedure TReplaySubject<T>.Trim;
var
  now: TTimeSpan;
begin
  now := fStopwatch.Elapsed;
  while fQueue.Count > fBufferSize do
    fQueue.Dequeue;
  while (fQueue.Count > 0) and (now.Subtract(fQueue.Peek.Interval) > fWindow) do
    fQueue.Dequeue;
end;

procedure TReplaySubject<T>.Unsubscribe(const observer: IObserver<T>);
begin
  fObservers.Remove(observer);
end;

{ TReplaySubject<T>.TSubscription }

constructor TReplaySubject<T>.TSubscription.Create(
  const subject: TReplaySubject<T>; const observer: IObserver<T>);
begin
  inherited Create;
  fSubject := subject;
  fObserver := observer;
end;

procedure TReplaySubject<T>.TSubscription.Dispose;
begin
  if Assigned(fSubject) then
    fSubject.Unsubscribe(fObserver);
end;

procedure Main3;
var
  subject: ISubject<string>;
begin
  subject := TReplaySubject<string>.Create;
  subject.OnNext('a');
  WriteSequenceToConsole(subject);
  subject.OnNext('b');
  subject.OnNext('c');
end;

procedure Main4;
var
  subject: ISubject<string>;
begin
  subject := TReplaySubject<string>.Create(2);
  subject.OnNext('a');
  subject.OnNext('b');
  subject.OnNext('c');
  WriteSequenceToConsole(subject);
  subject.OnNext('d');
end;

procedure Main5;
var
  subject: ISubject<string>;
begin
  subject := TReplaySubject<string>.Create(TTimeSpan.FromMilliseconds(150));
  subject.OnNext('w');
  Sleep(100);
  subject.OnNext('x');
  Sleep(100);
  subject.OnNext('y');
  WriteSequenceToConsole(subject);
  subject.OnNext('z');
end;


{ TTimeInterval<T> }

constructor TTimeInterval<T>.Create(const value: T; const interval: TTimeSpan);
begin
  fInterval := interval;
  fValue := value;
end;

begin
  try
    Main5;
  except
    on E: Exception do
      Writeln(E.ClassName, ': ', E.Message);
  end;
  Readln;
end.

Comments (0)

HTTPS SSH

You can clone a snippet to your computer for local editing. Learn more.