about summary refs log tree commit diff
path: root/MatrixRoomUtils.Core/RuntimeCache.cs
blob: 380a1501b8b0d88cb5f094873e295f04d491b530 (plain) (blame)
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
using MatrixRoomUtils.Core.Extensions;
using MatrixRoomUtils.Core.Responses;

namespace MatrixRoomUtils.Core;

public class RuntimeCache
{
    public static bool WasLoaded = false;
    public static string? LastUsedToken { get; set; }
    public static AuthenticatedHomeServer CurrentHomeServer { get; set; }
    public static Dictionary<string, UserInfo> LoginSessions { get; set; } = new();

    public static Dictionary<string, HomeServerResolutionResult> HomeserverResolutionCache { get; set; } = new();
    // public static Dictionary<string, (DateTime cachedAt, ProfileResponse response)> ProfileCache { get; set; } = new();

    public static Dictionary<string, ObjectCache<object>> GenericResponseCache { get; set; } = new();
    
    public static Action Save { get; set; } = () =>
    {
        Console.WriteLine("RuntimeCache.Save() was called, but no callback was set!");
    };
    public static Action<string, object> SaveObject { get; set; } = (key, value) =>
    {
        Console.WriteLine($"RuntimeCache.SaveObject({key}, {value}) was called, but no callback was set!");
    };

    static RuntimeCache()
    {
        Task.Run(async () =>
        {
            while (true)
            {
                await Task.Delay(1000);
                foreach (var (key, value) in RuntimeCache.GenericResponseCache)
                {
                    SaveObject("rory.matrixroomutils.generic_cache:" + key, value);    
                }
            }
        });
    }
}


public class UserInfo
{
    public ProfileResponse Profile { get; set; } = new();
    public LoginResponse LoginResponse { get; set; }
    public string AccessToken { get => LoginResponse.AccessToken; }
}

public class HomeServerResolutionResult
{
    public string Result { get; set; }
    public DateTime ResolutionTime { get; set; }
}
public class ObjectCache<T> where T : class
{
    public Dictionary<string, GenericResult<T>> Cache { get; set; } = new();
    public string Name { get; set; } = null!;
    public GenericResult<T> this[string key]
    {
        get
        {
            if (Cache.ContainsKey(key))
            {
                // Console.WriteLine($"cache.get({key}): hit");
                // Console.WriteLine($"Found item in cache: {key} - {Cache[key].Result.ToJson(indent: false)}");
                if(Cache[key].ExpiryTime < DateTime.Now)
                    Console.WriteLine($"WARNING: item {key} in cache {Name} expired at {Cache[key].ExpiryTime}:\n{Cache[key].Result.ToJson(indent: false)}");
                return Cache[key];
               
            }
            Console.WriteLine($"cache.get({key}): miss");
            return null;
        }
        set
        {
            Cache[key] = value;
            Console.WriteLine($"set({key}) = {Cache[key].Result.ToJson(indent:false)}");
            Console.WriteLine($"new_state: {this.ToJson(indent:false)}");
            // Console.WriteLine($"New item in cache: {key} - {Cache[key].Result.ToJson(indent: false)}");
            // Console.Error.WriteLine("Full cache: " + Cache.ToJson());
        }
    }
    
    public ObjectCache()
    {
        //expiry timer
        Task.Run(async () =>
        {
            while (true)
            {
                await Task.Delay(1000);
                foreach (var x in Cache.Where(x => x.Value.ExpiryTime < DateTime.Now).OrderBy(x => x.Value.ExpiryTime).Take(15).ToList())
                {
                    // Console.WriteLine($"Removing {x.Key} from cache");
                    Cache.Remove(x.Key);   
                }
                //RuntimeCache.SaveObject("rory.matrixroomutils.generic_cache:" + Name, this);
            }
        });
    }

    public bool ContainsKey(string key) => Cache.ContainsKey(key);
}
public class GenericResult<T>
{
    public T? Result { get; set; }
    public DateTime? ExpiryTime { get; set; } = DateTime.Now;
    
    public GenericResult()
    {
        //expiry timer
        
    }
    public GenericResult(T? result, DateTime? expiryTime = null) : this()
    {
        Result = result;
        ExpiryTime = expiryTime;
    }
}