about summary refs log tree commit diff
path: root/Tests/LibMatrix.HomeserverEmulator/Services/RoomStore.cs
blob: 5cdc3ab2c1a333dea2c436456caaf99c008a200a (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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
using System.Collections.Concurrent;
using System.Collections.Frozen;
using System.Collections.Immutable;
using System.Collections.ObjectModel;
using System.Collections.Specialized;
using System.Text.Json;
using System.Text.Json.Nodes;
using ArcaneLibs;
using ArcaneLibs.Collections;
using ArcaneLibs.Extensions;
using LibMatrix.EventTypes.Spec.State;
using LibMatrix.HomeserverEmulator.Controllers.Rooms;
using LibMatrix.Responses;

namespace LibMatrix.HomeserverEmulator.Services;

public class RoomStore {
    private readonly ILogger<RoomStore> _logger;
    public ConcurrentBag<Room> _rooms = new();
    private FrozenDictionary<string, Room> _roomsById = FrozenDictionary<string, Room>.Empty;

    public RoomStore(ILogger<RoomStore> logger, HSEConfiguration config) {
        _logger = logger;
        if (config.StoreData) {
            var path = Path.Combine(config.DataStoragePath, "rooms");
            if (!Directory.Exists(path)) Directory.CreateDirectory(path);
            foreach (var file in Directory.GetFiles(path)) {
                var room = JsonSerializer.Deserialize<Room>(File.ReadAllText(file));
                if (room is not null) _rooms.Add(room);
            }
        }
        else
            Console.WriteLine("Data storage is disabled, not loading rooms from disk");

        RebuildIndexes();
    }

    private SemaphoreSlim a = new(1, 1);
    private void RebuildIndexes() {
        // a.Wait();
        // lock (_roomsById)
        // _roomsById = new ConcurrentDictionary<string, Room>(_rooms.ToDictionary(u => u.RoomId));
        // foreach (var room in _rooms) {
        //     _roomsById.AddOrUpdate(room.RoomId, room, (key, old) => room);
        // }
        //
        // var roomsArr = _rooms.ToArray();
        // foreach (var (id, room) in _roomsById) {
        //     if (!roomsArr.Any(x => x.RoomId == id))
        //         _roomsById.TryRemove(id, out _);
        // }
        
        // _roomsById = new ConcurrentDictionary<string, Room>(_rooms.ToDictionary(u => u.RoomId));
        _roomsById = _rooms.ToFrozenDictionary(u => u.RoomId);

        // a.Release();
    }

    public Room? GetRoomById(string roomId, bool createIfNotExists = false) {
        if (_roomsById.TryGetValue(roomId, out var room)) {
            return room;
        }

        if (!createIfNotExists)
            return null;

        return CreateRoom(new() { });
    }

    public Room CreateRoom(CreateRoomRequest request, UserStore.User? user = null) {
        var room = new Room(roomId: $"!{Guid.NewGuid().ToString()}");
        var newCreateEvent = new StateEvent() {
            Type = RoomCreateEventContent.EventId,
            RawContent = new() { }
        };

        foreach (var (key, value) in request.CreationContent) {
            newCreateEvent.RawContent[key] = value.DeepClone();
        }

        if (user != null) {
            newCreateEvent.RawContent["creator"] = user.UserId;
            var createEvent = room.SetStateInternal(newCreateEvent, user: user);
            createEvent.Sender = user.UserId;

            room.SetStateInternal(new() {
                Type = RoomMemberEventContent.EventId,
                StateKey = user.UserId,
                TypedContent = new RoomMemberEventContent() {
                    Membership = "join",
                    AvatarUrl = (user.Profile.GetOrNull("avatar_url") as JsonObject)?.GetOrNull("avatar_url")?.GetValue<string>(),
                    DisplayName = (user.Profile.GetOrNull("displayname") as string)
                }
            }, user: user);
        }

        if (!string.IsNullOrWhiteSpace(request.Name))
            room.SetStateInternal(new StateEvent() {
                Type = RoomNameEventContent.EventId,
                TypedContent = new RoomNameEventContent() {
                    Name = request.Name
                }
            });

        if (!string.IsNullOrWhiteSpace(request.RoomAliasName))
            room.SetStateInternal(new StateEvent() {
                Type = RoomCanonicalAliasEventContent.EventId,
                TypedContent = new RoomCanonicalAliasEventContent() {
                    Alias = $"#{request.RoomAliasName}:localhost"
                }
            });

        foreach (var stateEvent in request.InitialState ?? []) {
            room.SetStateInternal(stateEvent);
        }

        _rooms.Add(room);
        // _roomsById.TryAdd(room.RoomId, room);
        RebuildIndexes();
        return room;
    }

    public Room AddRoom(Room room) {
        _rooms.Add(room);
        RebuildIndexes();

        return room;
    }

    public class Room : NotifyPropertyChanged {
        private CancellationTokenSource _debounceCts = new();
        private ObservableCollection<StateEventResponse> _timeline;
        private ObservableDictionary<string, List<StateEventResponse>> _accountData;
        private ObservableDictionary<string, ReadMarkersData> _readMarkers;
        private FrozenSet<StateEventResponse> _stateCache;
        private int _timelineHash;

        public Room(string roomId) {
            if (string.IsNullOrWhiteSpace(roomId)) throw new ArgumentException("Value cannot be null or whitespace.", nameof(roomId));
            if (roomId[0] != '!') throw new ArgumentException("Room ID must start with !", nameof(roomId));
            RoomId = roomId;
            Timeline = new();
            AccountData = new();
            ReadMarkers = new();
        }

        public string RoomId { get; set; }

        public FrozenSet<StateEventResponse> State => _timelineHash == _timeline.GetHashCode() ? _stateCache : RebuildState();

        public ObservableCollection<StateEventResponse> Timeline {
            get => _timeline;
            set {
                if (Equals(value, _timeline)) return;
                _timeline = new(value);
                _timeline.CollectionChanged += (sender, args) => {
                    // we dont want to do this as it's rebuilt when the state is accessed

                    // if (args.Action == NotifyCollectionChangedAction.Add) {
                    //     foreach (StateEventResponse state in args.NewItems) {
                    //         if (state.StateKey is not null)
                    //             // we want state to be deduplicated by type and key, and we want the latest state to be the one that is returned
                    //             RebuildState();
                    //     }
                    // }

                    SaveDebounced();
                };
                // RebuildState();
                OnPropertyChanged();
            }
        }

        public ObservableDictionary<string, List<StateEventResponse>> AccountData {
            get => _accountData;
            set {
                if (Equals(value, _accountData)) return;
                _accountData = new(value);
                _accountData.CollectionChanged += (sender, args) => SaveDebounced();
                OnPropertyChanged();
            }
        }

        public ImmutableList<StateEventResponse> JoinedMembers =>
            State.Where(s => s is { Type: RoomMemberEventContent.EventId, TypedContent: RoomMemberEventContent { Membership: "join" } }).ToImmutableList();

        public ObservableDictionary<string, ReadMarkersData> ReadMarkers {
            get => _readMarkers;
            set {
                if (Equals(value, _readMarkers)) return;
                _readMarkers = new(value);
                _readMarkers.CollectionChanged += (sender, args) => SaveDebounced();
                OnPropertyChanged();
            }
        }

        internal StateEventResponse SetStateInternal(StateEvent request, string? senderId = null, UserStore.User? user = null) {
            var state = request as StateEventResponse ?? new StateEventResponse() {
                Type = request.Type,
                StateKey = request.StateKey ?? "",
                EventId = "$" + Guid.NewGuid().ToString(),
                RoomId = RoomId,
                OriginServerTs = DateTimeOffset.Now.ToUnixTimeMilliseconds(),
                Sender = user?.UserId ?? senderId ?? "",
                RawContent = request.RawContent ?? (request.TypedContent is not null
                    ? new JsonObject()
                    : JsonSerializer.Deserialize<JsonObject>(JsonSerializer.Serialize(request.TypedContent)))
            };
            Timeline.Add(state);
            if(state.StateKey != null)
                RebuildState();
            return state;
        }

        public StateEventResponse AddUser(string userId) {
            var state = SetStateInternal(new() {
                Type = RoomMemberEventContent.EventId,
                StateKey = userId,
                TypedContent = new RoomMemberEventContent() {
                    Membership = "join"
                },
            });

            state.Sender = userId;
            return state;
        }

        // public async Task SaveDebounced() {
            // if (!HSEConfiguration.Current.StoreData) return;
            // await _debounceCts.CancelAsync();
            // _debounceCts = new CancellationTokenSource();
            // try {
                // await Task.Delay(250, _debounceCts.Token);
                // // Ensure all state events are in the timeline
                // State.Where(s => !Timeline.Contains(s)).ToList().ForEach(s => Timeline.Add(s));
                // var path = Path.Combine(HSEConfiguration.Current.DataStoragePath, "rooms", $"{RoomId}.json");
                // Console.WriteLine($"Saving room {RoomId} to {path}!");
                // await File.WriteAllTextAsync(path, this.ToJson(ignoreNull: true));
            // }
            // catch (TaskCanceledException) { }
        // }

        private SemaphoreSlim saveSemaphore = new(1, 1);

        public async Task SaveDebounced() {
            Task.Run(async () => {
                await saveSemaphore.WaitAsync();
                try {
                    var path = Path.Combine(HSEConfiguration.Current.DataStoragePath, "rooms", $"{RoomId}.json");
                    Console.WriteLine($"Saving room {RoomId} to {path}!");
                    await File.WriteAllTextAsync(path, this.ToJson(ignoreNull: true));
                }
                finally {
                    saveSemaphore.Release();
                }
            });
        }

        private SemaphoreSlim stateRebuildSemaphore = new(1, 1);

        private FrozenSet<StateEventResponse> RebuildState() {
            stateRebuildSemaphore.Wait();
            while (true)
                try {
                    Console.WriteLine($"Rebuilding state for room {RoomId}");
                    // ReSharper disable once RedundantEnumerableCastCall - This sometimes happens when the collection is modified during enumeration
                    List<StateEventResponse>? timeline = null;
                    lock (_timeline) {
                        timeline = Timeline.OfType<StateEventResponse>().ToList();
                    }

                    foreach (var evt in timeline) {
                        if (evt == null) {
                            throw new InvalidOperationException("Event is null");
                        }

                        if (evt.EventId == null) {
                            evt.EventId = "$" + Guid.NewGuid();
                        }
                        else if (!evt.EventId.StartsWith('$')) {
                            evt.EventId = "$" + evt.EventId;
                            Console.WriteLine($"Sanitised invalid event ID {evt.EventId}");
                        }
                    }

                    _stateCache = timeline //.Where(s => s.Type == state.Type && s.StateKey == state.StateKey)
                        .Where(x => x.StateKey != null)
                        .OrderByDescending(s => s.OriginServerTs)
                        .DistinctBy(x => (x.Type, x.StateKey))
                        .ToFrozenSet();

                    _timelineHash = _timeline.GetHashCode();
                    stateRebuildSemaphore.Release();
                    return _stateCache;
                }
                finally { }
        }
    }

    public List<StateEventResponse> GetRoomsByMember(string userId) {
        // return _rooms
        // // .Where(r => r.State.Any(s => s.Type == RoomMemberEventContent.EventId && s.StateKey == userId))
        // .Select(r => (Room: r, MemberEvent: r.State.SingleOrDefault(s => s.Type == RoomMemberEventContent.EventId && s.StateKey == userId)))
        // .Where(r => r.MemberEvent != null)
        // .ToDictionary(x => x.Room, x => x.MemberEvent!);
        return _rooms.SelectMany(r => r.State.Where(s => s.Type == RoomMemberEventContent.EventId && s.StateKey == userId)).ToList();
    }
}