-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProgram.cs
120 lines (98 loc) · 2.61 KB
/
Program.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
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
using Pixeval.Caching;
namespace Pixeval.Caching;
public class CacheKey : IEquatable<CacheKey>
{
public string Key { get; set; }
public int DataLength { get; set; }
public bool Equals(CacheKey? other)
{
if (other is null)
{
return false;
}
if (ReferenceEquals(this, other))
{
return true;
}
return Key == other.Key;
}
public override bool Equals(object? obj)
{
if (obj is null)
{
return false;
}
if (ReferenceEquals(this, obj))
{
return true;
}
if (obj.GetType() != GetType())
{
return false;
}
return Equals((CacheKey) obj);
}
public override int GetHashCode()
{
return Key.GetHashCode();
}
}
[StructLayout(LayoutKind.Sequential)]
public record struct CacheHeader(int DataLength);
public class CacheProtocol : ICacheProtocol<CacheKey, CacheHeader>
{
public CacheHeader GetHeader(CacheKey key)
{
return new CacheHeader(key.DataLength);
}
public Span<byte> SerializeHeader(CacheHeader header)
{
return ConvertToBytes(header);
}
public unsafe CacheHeader DeserializeHeader(Span<byte> span)
{
var ptr = (int*) Unsafe.AsPointer(ref span.GetPinnableReference());
return new CacheHeader(*ptr);
}
public static unsafe int GetHeaderLength()
{
return sizeof(CacheHeader);
}
public int GetDataLength(CacheHeader header)
{
return header.DataLength;
}
public static unsafe byte[] ConvertToBytes<T>(T value) where T : unmanaged
{
var pointer = (byte*) &value;
var bytes = new byte[sizeof(T)];
for (int i = 0; i < sizeof(T); i++)
{
bytes[i] = pointer[i];
}
return bytes;
}
}
public class Program
{
public static void Main(string[] args)
{
/*var memoryManager = new MemoryMappedFileMemoryManager("D://mmaptest", 8);
var cacheTable = new CacheTable<CacheKey, CacheHeader, CacheProtocol>(memoryManager, new CacheProtocol());
Span<byte> span = stackalloc byte[512];
span.Fill(15);
var cacheKey = new CacheKey()
{
DataLength = span.Length,
Key = "test",
};
cacheTable.TryCache(cacheKey, span);
if (cacheTable.TryReadCache(cacheKey, out var readSpan))
{
Console.WriteLine("Cache read success");
}*/
Test.CacheTest();
}
}