aboutsummaryrefslogtreecommitdiff
path: root/libs/VNLib.Plugins.Sessions.Cache.Client/src/SessionDataSerialzer.cs
diff options
context:
space:
mode:
authorLibravatar vnugent <public@vaughnnugent.com>2023-11-02 01:50:06 -0400
committerLibravatar vnugent <public@vaughnnugent.com>2023-11-02 01:50:06 -0400
commit9ddece0eac4dc3718c4f9279b4695d645a3e3cef (patch)
tree85f24fe1ee6f3845ef5bbb390530ea7e8042bbf2 /libs/VNLib.Plugins.Sessions.Cache.Client/src/SessionDataSerialzer.cs
parent43c9196b01799e334bde92e892f0bac47759901a (diff)
also carried away
Diffstat (limited to 'libs/VNLib.Plugins.Sessions.Cache.Client/src/SessionDataSerialzer.cs')
-rw-r--r--libs/VNLib.Plugins.Sessions.Cache.Client/src/SessionDataSerialzer.cs47
1 files changed, 42 insertions, 5 deletions
diff --git a/libs/VNLib.Plugins.Sessions.Cache.Client/src/SessionDataSerialzer.cs b/libs/VNLib.Plugins.Sessions.Cache.Client/src/SessionDataSerialzer.cs
index 1cebdf6..94bb1c3 100644
--- a/libs/VNLib.Plugins.Sessions.Cache.Client/src/SessionDataSerialzer.cs
+++ b/libs/VNLib.Plugins.Sessions.Cache.Client/src/SessionDataSerialzer.cs
@@ -25,9 +25,11 @@
using System;
using System.Text;
using System.Buffers;
+using System.Diagnostics;
using System.Collections.Generic;
using VNLib.Utils.Memory;
+using VNLib.Utils.Logging;
using VNLib.Utils.Extensions;
using VNLib.Data.Caching;
@@ -38,18 +40,48 @@ namespace VNLib.Plugins.Sessions.Cache.Client
/// Very basic session data serializer memory optimized for key-value
/// string pairs
/// </summary>
- internal sealed class SessionDataSerialzer : ICacheObjectSerialzer, ICacheObjectDeserialzer
+ internal sealed class SessionDataSerialzer : ICacheObjectSerializer, ICacheObjectDeserializer
{
const string KV_DELIMITER = "\0\0";
readonly int CharBufferSize;
+ readonly ILogProvider? _debugLog;
- public SessionDataSerialzer(int charBufferSize)
+ public SessionDataSerialzer(int charBufferSize, ILogProvider? debugLog)
{
CharBufferSize = charBufferSize;
+ _debugLog = debugLog;
+ debugLog?.Warn("Sensitive session logging is enabled. This will leak session data!");
}
- T? ICacheObjectDeserialzer.Deserialze<T>(ReadOnlySpan<byte> objectData) where T : default
+ [Conditional("DEBUG")]
+ private void DebugSessionItems(IDictionary<string, string> sessionData, bool serializing)
+ {
+ if (_debugLog is null)
+ {
+ return;
+ }
+
+ StringBuilder sdBuilder = new();
+ foreach (KeyValuePair<string, string> item in sessionData)
+ {
+ sdBuilder.Append(item.Key);
+ sdBuilder.Append('=');
+ sdBuilder.Append(item.Value);
+ sdBuilder.Append(", ");
+ }
+
+ if (serializing)
+ {
+ _debugLog.Debug("Serialzing session data: {sd} ", sdBuilder);
+ }
+ else
+ {
+ _debugLog.Debug("Deserialzing session data: {sd} ", sdBuilder);
+ }
+ }
+
+ T? ICacheObjectDeserializer.Deserialize<T>(ReadOnlySpan<byte> objectData) where T : default
{
if (!typeof(T).IsAssignableTo(typeof(IDictionary<string, string>)))
{
@@ -107,18 +139,23 @@ namespace VNLib.Plugins.Sessions.Cache.Client
reader.Advance(sep + 2);
}
+ DebugSessionItems(output, false);
+
return (T?)(output as object);
}
private static int GetNextToken(ref ForwardOnlyReader<char> reader) => reader.Window.IndexOf(KV_DELIMITER);
- void ICacheObjectSerialzer.Serialize<T>(T obj, IBufferWriter<byte> finiteWriter)
+ void ICacheObjectSerializer.Serialize<T>(T obj, IBufferWriter<byte> finiteWriter)
{
if(obj is not Dictionary<string, string> dict)
{
throw new NotSupportedException("Data type is not supported by this serializer");
}
-
+
+ //Write debug info
+ DebugSessionItems(dict, true);
+
//Alloc char buffer, sessions should be under 16k
using UnsafeMemoryHandle<char> charBuffer = MemoryUtil.UnsafeAllocNearestPage<char>(CharBufferSize);