-
Notifications
You must be signed in to change notification settings - Fork 99
/
Copy pathSampleProcessors.cs
90 lines (69 loc) · 2.01 KB
/
SampleProcessors.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
using System;
using System.Buffers;
using System.Collections.Generic;
using System.Net.Http;
using System.Net.Sockets;
using System.Threading.Tasks;
using ZLogger;
namespace ConsoleApp;
public class SimpleInMemoryLogProcessor : IAsyncLogProcessor
{
public event Action<string>? OnMessageReceived;
public void Post(IZLoggerEntry log)
{
var msg = log.ToString();
log.Return();
OnMessageReceived?.Invoke(msg);
}
public ValueTask DisposeAsync()
{
return default;
}
}
public class TcpLogProcessor : IAsyncLogProcessor
{
TcpClient tcpClient;
AsyncStreamLineMessageWriter writer;
public TcpLogProcessor(ZLoggerOptions options)
{
tcpClient = new TcpClient("127.0.0.1", 1111);
writer = new AsyncStreamLineMessageWriter(tcpClient.GetStream(), options);
}
public void Post(IZLoggerEntry log)
{
writer.Post(log);
}
public async ValueTask DisposeAsync()
{
await writer.DisposeAsync();
tcpClient.Dispose();
}
}
public class BatchingHttpLogProcessor : BatchingAsyncLogProcessor
{
HttpClient httpClient;
ArrayBufferWriter<byte> bufferWriter;
IZLoggerFormatter formatter;
public BatchingHttpLogProcessor(int batchSize, ZLoggerOptions options)
: base(batchSize, options)
{
httpClient = new HttpClient();
bufferWriter = new ArrayBufferWriter<byte>();
formatter = options.CreateFormatter();
}
protected override async ValueTask ProcessAsync(IReadOnlyList<INonReturnableZLoggerEntry> list)
{
foreach (var item in list)
{
item.FormatUtf8(bufferWriter, formatter);
}
var byteArrayContent = new ByteArrayContent(bufferWriter.WrittenSpan.ToArray());
await httpClient.PostAsync("http://foo", byteArrayContent).ConfigureAwait(false);
bufferWriter.Clear();
}
protected override ValueTask DisposeAsyncCore()
{
httpClient.Dispose();
return default;
}
}