1 | using System;
|
---|
2 | using JetBrains.Annotations;
|
---|
3 | using UnityEngine;
|
---|
4 | using Utf8Json;
|
---|
5 | using Webserver.UrlHandlers;
|
---|
6 | using Webserver.WebAPI;
|
---|
7 |
|
---|
8 | namespace Webserver.SSE {
|
---|
9 | [UsedImplicitly]
|
---|
10 | public class EventLog : AbsEvent {
|
---|
11 | public EventLog (SseHandler _parent) : base (_parent, _name: "log") {
|
---|
12 | Log.LogCallbacksExtended += LogCallback;
|
---|
13 | }
|
---|
14 |
|
---|
15 | private static readonly byte[] jsonMsgKey = JsonWriter.GetEncodedPropertyNameWithBeginObject ("msg");
|
---|
16 | private static readonly byte[] jsonTypeKey = JsonWriter.GetEncodedPropertyNameWithPrefixValueSeparator ("type");
|
---|
17 | private static readonly byte[] jsonTraceKey = JsonWriter.GetEncodedPropertyNameWithPrefixValueSeparator ("trace");
|
---|
18 | private static readonly byte[] jsonIsotimeKey = JsonWriter.GetEncodedPropertyNameWithPrefixValueSeparator ("isotime");
|
---|
19 | private static readonly byte[] jsonUptimeKey = JsonWriter.GetEncodedPropertyNameWithPrefixValueSeparator ("uptime");
|
---|
20 |
|
---|
21 | private void LogCallback (string _formattedMsg, string _plainMsg, string _trace, LogType _type, DateTime _timestamp, long _uptime) {
|
---|
22 | string uptime = _uptime.ToString ();
|
---|
23 |
|
---|
24 | JsonWriter writer = new JsonWriter ();
|
---|
25 |
|
---|
26 | writer.WriteRaw (jsonMsgKey);
|
---|
27 | writer.WriteString (_plainMsg);
|
---|
28 |
|
---|
29 | writer.WriteRaw (jsonTypeKey);
|
---|
30 | writer.WriteString (_type.ToStringCached ());
|
---|
31 |
|
---|
32 | writer.WriteRaw (jsonTraceKey);
|
---|
33 | writer.WriteString (_trace);
|
---|
34 |
|
---|
35 | writer.WriteRaw (jsonIsotimeKey);
|
---|
36 | JsonCommons.WriteDateTime (ref writer, _timestamp);
|
---|
37 |
|
---|
38 | writer.WriteRaw (jsonUptimeKey);
|
---|
39 | writer.WriteString (uptime);
|
---|
40 |
|
---|
41 | writer.WriteEndObject ();
|
---|
42 |
|
---|
43 | SendData ("logLine", writer.ToString ());
|
---|
44 | }
|
---|
45 | }
|
---|
46 | }
|
---|