pace_core 0.19.0

pace-core - library to support timetracking on the command line
Documentation
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
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
use std::{collections::BTreeMap, sync::Arc};

use pace_time::{
    date::PaceDate,
    duration::{calculate_duration, PaceDurationRange},
    time_range::TimeRangeOptions,
};
use parking_lot::RwLock;

use merge::Merge;
use rayon::prelude::{IntoParallelRefIterator, ParallelIterator};
use tracing::debug;

use crate::{
    commands::{
        hold::HoldOptions, resume::ResumeOptions, DeleteOptions, EndOptions, KeywordOptions,
        UpdateOptions,
    },
    domain::{
        activity::{
            Activity, ActivityEndOptions, ActivityGuid, ActivityItem, ActivityKind,
            ActivityKindOptions,
        },
        activity_log::ActivityLog,
        filter::{ActivityFilterKind, FilteredActivities},
        status::ActivityStatusKind,
    },
    error::{ActivityLogErrorKind, PaceOptResult, PaceResult},
    storage::{
        ActivityQuerying, ActivityReadOps, ActivityStateManagement, ActivityStorage,
        ActivityWriteOps, SyncStorage,
    },
};

/// Type for shared `ActivityLog`
type SharedActivityLog = Arc<RwLock<ActivityLog>>;

/// In-memory storage for activities
#[derive(Debug, Clone)]
pub struct InMemoryActivityStorage {
    log: SharedActivityLog,
}

impl From<ActivityLog> for InMemoryActivityStorage {
    fn from(activities: ActivityLog) -> Self {
        Self::new_with_activity_log(activities)
    }
}

impl InMemoryActivityStorage {
    /// Create a new `InMemoryActivityStorage`
    #[must_use]
    pub fn new() -> Self {
        Self {
            log: Arc::new(RwLock::new(ActivityLog::default())),
        }
    }

    /// Creates a new `InMemoryActivityStorage` from an `ActivityLog`
    ///
    /// # Arguments
    ///
    /// * `activity_log` - The `ActivityLog` to use
    ///
    /// # Returns
    ///
    /// A new `InMemoryActivityStorage` with the given `ActivityLog`
    #[must_use]
    pub fn new_with_activity_log(activity_log: ActivityLog) -> Self {
        Self {
            log: Arc::new(RwLock::new(activity_log)),
        }
    }

    /// Try to convert the `InMemoryActivityStorage` into an `ActivityLog`
    pub fn get_activity_log(&self) -> ActivityLog {
        let activity_log = self.log.read();

        debug!("Got activity log");

        activity_log.clone()
    }
}

impl Default for InMemoryActivityStorage {
    fn default() -> Self {
        Self::new()
    }
}

impl ActivityStorage for InMemoryActivityStorage {
    fn setup_storage(&self) -> PaceResult<()> {
        debug!("Setting up in-memory storage");
        Ok(())
    }
}

impl SyncStorage for InMemoryActivityStorage {
    fn sync(&self) -> PaceResult<()> {
        debug!("Syncing in-memory storage");

        Ok(())
    }
}

impl ActivityReadOps for InMemoryActivityStorage {
    #[tracing::instrument(skip(self))]
    fn read_activity(&self, activity_id: ActivityGuid) -> PaceResult<ActivityItem> {
        let activities = self.log.read();

        let activity = activities
            .get(&activity_id)
            .cloned()
            .ok_or(ActivityLogErrorKind::ActivityNotFound(activity_id))?;

        drop(activities);

        debug!("Activity with id {:?} found: {:?}", activity_id, activity);

        Ok((activity_id, activity).into())
    }

    #[tracing::instrument(skip(self))]
    fn list_activities(&self, filter: ActivityFilterKind) -> PaceOptResult<FilteredActivities> {
        let activity_log = self.log.read();

        let filtered = activity_log
            .par_iter()
            .filter(|(_, activity)| match filter {
                ActivityFilterKind::Everything => true,
                ActivityFilterKind::OnlyActivities => activity.kind().is_activity(),
                ActivityFilterKind::Active => activity.is_in_progress(),
                ActivityFilterKind::ActiveIntermission => activity.is_active_intermission(),
                ActivityFilterKind::Ended => activity.is_completed(),
                ActivityFilterKind::Archived => activity.is_archived(),
                ActivityFilterKind::Held => activity.is_paused(),
                ActivityFilterKind::Intermission => activity.kind().is_intermission(),
                ActivityFilterKind::TimeRange(time_range_opts) => {
                    // TODO: When adding Pomodoro support, we should also check for Pomodoro activities
                    time_range_opts.is_in_range(*activity.begin()) && activity.kind().is_activity()
                }
            })
            .map(|(activity_id, _)| activity_id)
            .cloned()
            .collect::<Vec<ActivityGuid>>();

        drop(activity_log);

        debug!("Filtered activities: {:?}", filtered);

        if filtered.is_empty() {
            return Ok(None);
        }

        match filter {
            ActivityFilterKind::Everything => Ok(Some(FilteredActivities::Everything(filtered))),
            ActivityFilterKind::OnlyActivities => {
                Ok(Some(FilteredActivities::OnlyActivities(filtered)))
            }
            ActivityFilterKind::Active => Ok(Some(FilteredActivities::Active(filtered))),
            ActivityFilterKind::ActiveIntermission => {
                Ok(Some(FilteredActivities::ActiveIntermission(filtered)))
            }
            ActivityFilterKind::Archived => Ok(Some(FilteredActivities::Archived(filtered))),
            ActivityFilterKind::Ended => Ok(Some(FilteredActivities::Ended(filtered))),
            ActivityFilterKind::Held => Ok(Some(FilteredActivities::Held(filtered))),
            ActivityFilterKind::Intermission => {
                Ok(Some(FilteredActivities::Intermission(filtered)))
            }
            ActivityFilterKind::TimeRange(_) => Ok(Some(FilteredActivities::TimeRange(filtered))),
        }
    }
}

impl ActivityWriteOps for InMemoryActivityStorage {
    #[tracing::instrument(skip(self))]
    fn create_activity(&self, activity: Activity) -> PaceResult<ActivityItem> {
        let activities = self.log.read();

        let activity_item = ActivityItem::from(activity);

        // Search for the activity in the list of activities to see if the ID is already in use.
        // We use a ULID as the ID for the activity, so it should be unique and not collide with
        // other activities. But still, let's check if the ID is already in use. If so, let's return
        // an error.
        // FIXME: We could essentially handle the case where the ID is already in use by creating a
        // new ID and trying to insert the activity again. But for now, let's just return an error as
        // it's not expected to happen.
        if activities.contains_key(activity_item.guid()) {
            debug!("Activity ID already in use: {:?}", activity_item.guid());
            return Err(ActivityLogErrorKind::ActivityIdAlreadyInUse(*activity_item.guid()).into());
        }

        drop(activities);

        let mut activities = self.log.write();

        // We don't check for None here, because we know that the ID was not existing in the list of
        // activities.
        _ = activities
            .activities_mut()
            .insert(*activity_item.guid(), activity_item.activity().clone());

        drop(activities);

        Ok(activity_item)
    }

    #[tracing::instrument(skip(self))]
    fn update_activity(
        &self,
        activity_id: ActivityGuid,
        updated_activity: Activity,
        update_opts: UpdateOptions,
    ) -> PaceResult<ActivityItem> {
        let activities = self.log.read();

        let original_activity = activities
            .get(&activity_id)
            .cloned()
            .ok_or(ActivityLogErrorKind::ActivityNotFound(activity_id))?;

        debug!("Original activity: {:?}", original_activity);

        drop(activities);

        let mut activities = self.log.write();

        let _ = activities.entry(activity_id).and_modify(|activity| {
            debug!("Updating activity: {:?}", activity);
            activity.merge(updated_activity);
        });

        drop(activities);

        Ok((activity_id, original_activity).into())
    }

    #[tracing::instrument(skip(self))]
    fn delete_activity(
        &self,
        activity_id: ActivityGuid,
        delete_opts: DeleteOptions,
    ) -> PaceResult<ActivityItem> {
        let mut activities = self.log.write();

        let activity = activities
            .remove(&activity_id)
            .ok_or(ActivityLogErrorKind::ActivityNotFound(activity_id))?;

        drop(activities);

        Ok((activity_id, activity).into())
    }
}

impl ActivityStateManagement for InMemoryActivityStorage {
    #[tracing::instrument(skip(self))]
    fn end_activity(
        &self,
        activity_id: ActivityGuid,
        end_opts: EndOptions,
    ) -> PaceResult<ActivityItem> {
        let activities = self.log.read();

        let begin_time = *activities
            .get(&activity_id)
            .ok_or(ActivityLogErrorKind::ActivityNotFound(activity_id))?
            .begin();

        drop(activities);

        let end_opts = ActivityEndOptions::new(
            *end_opts.end_time(),
            calculate_duration(&begin_time, end_opts.end_time())?,
        );

        debug!("End options: {:?}", end_opts);

        let mut activities = self.log.write();

        let _ = activities
            .entry(activity_id)
            .and_modify(|activity| activity.end_activity(end_opts));

        drop(activities);

        self.read_activity(activity_id)
    }

    #[tracing::instrument(skip(self))]
    fn end_last_unfinished_activity(&self, end_opts: EndOptions) -> PaceOptResult<ActivityItem> {
        let Some(most_recent) = self.most_recent_active_activity()? else {
            debug!("No active activity found.");
            return Ok(None);
        };

        debug!("Most recent activity: {:?}", most_recent);

        let activity = self.end_activity(*most_recent.guid(), end_opts)?;

        Ok(Some(activity))
    }

    #[tracing::instrument(skip(self))]
    fn end_all_activities(&self, end_opts: EndOptions) -> PaceOptResult<Vec<ActivityItem>> {
        let activities = self.log.read();

        let endable_activities = activities
            .par_iter()
            .filter_map(|(activity_id, activity)| {
                if activity.is_completable() {
                    Some(*activity_id)
                } else {
                    None
                }
            })
            .collect::<Vec<ActivityGuid>>();

        drop(activities);

        debug!("Endable activities: {:?}", endable_activities);

        // There are no active activities
        if endable_activities.is_empty() {
            debug!("No active activities found.");
            return Ok(None);
        }

        let ended_activities = endable_activities
            .par_iter()
            .map(|activity_id| -> PaceResult<ActivityItem> {
                self.end_activity(*activity_id, end_opts.clone())
            })
            .collect::<PaceResult<Vec<ActivityItem>>>()?;

        debug!("Ended activities: {:?}", ended_activities);

        if ended_activities.len() != endable_activities.len() {
            debug!("Not all activities were ended.");

            // This is weird, we should return an error about it
            return Err(ActivityLogErrorKind::ActivityNotEnded.into());
        }

        Ok(Some(ended_activities))
    }

    #[tracing::instrument(skip(self))]
    fn hold_most_recent_active_activity(
        &self,
        hold_opts: HoldOptions,
    ) -> PaceOptResult<ActivityItem> {
        // Get id from last activity that is not ended
        let Some(active_activity) = self.most_recent_active_activity()? else {
            debug!("No active activity found.");

            // There are no active activities
            return Ok(None);
        };

        Some(self.hold_activity(*active_activity.guid(), hold_opts)).transpose()
    }

    #[tracing::instrument(skip(self))]
    fn end_all_active_intermissions(
        &self,
        end_opts: EndOptions,
    ) -> PaceOptResult<Vec<ActivityGuid>> {
        let Some(active_intermissions) = self.list_active_intermissions()? else {
            debug!("No active intermissions found.");

            // There are no active intermissions
            return Ok(None);
        };

        let ended_intermissions = active_intermissions
            .par_iter()
            .map(|activity_id| -> PaceResult<ActivityGuid> {
                let _ = self.end_activity(*activity_id, end_opts.clone())?;
                Ok(*activity_id)
            })
            .collect::<PaceResult<Vec<ActivityGuid>>>()?;

        debug!("Ended intermissions: {:?}", ended_intermissions);

        if ended_intermissions.len() != active_intermissions.len() {
            debug!("Not all intermissions were ended.");

            // This is weird, we should return an error about it
            return Err(ActivityLogErrorKind::ActivityNotEnded.into());
        }

        Ok(Some(ended_intermissions))
    }

    #[tracing::instrument(skip(self))]
    fn resume_activity(
        &self,
        activity_id: ActivityGuid,
        resume_opts: ResumeOptions,
    ) -> PaceResult<ActivityItem> {
        let resumable_activity = self.read_activity(activity_id)?;

        debug!("Resumable activity: {:?}", resumable_activity);

        // If the activity is active, return early with an error
        if resumable_activity.activity().is_in_progress() {
            debug!("Activity is already active.");
            return Err(ActivityLogErrorKind::ActiveActivityFound(activity_id).into());
        } else if resumable_activity.activity().is_completed() {
            debug!("Activity has ended.");
            return Err(ActivityLogErrorKind::ActivityAlreadyEnded(activity_id).into());
        } else if resumable_activity.activity().is_archived() {
            debug!("Activity is archived.");
            return Err(ActivityLogErrorKind::ActivityAlreadyArchived(activity_id).into());
        } else if !resumable_activity.activity().is_paused() {
            debug!("Activity is not held.");
            return Err(ActivityLogErrorKind::NoHeldActivityFound(activity_id).into());
        };

        // If there are active intermissions for any activity, end the intermissions
        // because the user wants to resume from an intermission and time is limited,
        // so you can't have multiple intermissions at once, only one at a time.
        let ended_intermission_ids = self.end_all_active_intermissions(resume_opts.into())?;

        debug!("Ended intermission ids: {:?}", ended_intermission_ids);

        // Update the activity to be active again
        let mut editable_activity = resumable_activity.clone();

        let updated_activity = editable_activity
            .activity_mut()
            .set_status(ActivityStatusKind::InProgress)
            .clone();

        debug!("Updated activity: {:?}", updated_activity);

        let _ = self.update_activity(
            *resumable_activity.guid(),
            updated_activity,
            UpdateOptions::default(),
        )?;

        Ok(resumable_activity)
    }

    #[tracing::instrument(skip(self))]
    fn hold_activity(
        &self,
        activity_id: ActivityGuid,
        hold_opts: HoldOptions,
    ) -> PaceResult<ActivityItem> {
        // Get ActivityItem for activity that
        let active_activity = self.read_activity(activity_id)?;

        debug!("Active activity: {:?}", active_activity);

        // make sure, the activity is not already ended or archived
        if !active_activity.activity().is_in_progress() {
            debug!("Activity is not active.");
            return Err(ActivityLogErrorKind::NoActiveActivityFound(activity_id).into());
        } else if active_activity.activity().is_completed() {
            debug!("Activity has ended.");
            return Err(ActivityLogErrorKind::ActivityAlreadyEnded(activity_id).into());
        } else if active_activity.activity().is_archived() {
            debug!("Activity is archived.");
            return Err(ActivityLogErrorKind::ActivityAlreadyArchived(activity_id).into());
        };

        // Check if the latest active activity is already having an intermission
        if let Some(intermissions) =
            self.list_active_intermissions_for_activity_id(*active_activity.guid())?
        {
            debug!("Active intermissions: {:?}", intermissions);

            // TODO!: What if there are any other intermissions ongoing for other activities?
            // TODO!: Should we end them as well? Or should we just end the intermission for the active activity?

            // If there are active intermissions and we want to extend return early with the active activity
            //
            // Handles the case, if someone wants to create an intermission for an
            // activity that already has an intermission, but hasn't set that we should
            // create a new intermission. In this case we don't want to create
            // another intermission, but return with the active activity.
            if !intermissions.is_empty() && hold_opts.action().is_extend() {
                debug!("Active intermission(s) found and action is extend.");

                return Ok(active_activity);
            }
        };

        // If there are active intermissions for any activity, end the intermissions
        // because the user wants to create a new intermission and time is limited,
        // so you can't have multiple intermissions at once, only one at a time.
        let active_intermission_ids =
            self.end_all_active_intermissions(hold_opts.clone().into())?;

        debug!(
            "Ended active intermission ids: {:?}",
            active_intermission_ids
        );

        // Create a new intermission for the active activity
        let activity_kind_opts = ActivityKindOptions::with_parent_id(*active_activity.guid());

        let description = hold_opts
            .reason()
            .clone()
            .unwrap_or_else(|| active_activity.activity().description().clone());

        let intermission = Activity::builder()
            .begin(*hold_opts.begin_time())
            .kind(ActivityKind::Intermission)
            .status(ActivityStatusKind::InProgress)
            .description(description)
            .category(active_activity.activity().category().clone())
            .activity_kind_options(Some(activity_kind_opts))
            .build();

        let created_intermission_item = self.begin_activity(intermission)?;

        debug!("Created intermission: {:?}", created_intermission_item);

        // Update the active activity to be held
        let mut editable_activity = active_activity.clone();

        let updated_activity = editable_activity
            .activity_mut()
            .set_status(ActivityStatusKind::Paused)
            .clone();

        debug!("Updated activity: {:?}", updated_activity);

        let _ = self.update_activity(
            *active_activity.guid(),
            updated_activity.clone(),
            UpdateOptions::default(),
        )?;

        Ok((*active_activity.guid(), updated_activity).into())
    }

    #[tracing::instrument(skip(self))]
    fn resume_most_recent_activity(
        &self,
        resume_opts: ResumeOptions,
    ) -> PaceOptResult<ActivityItem> {
        // Get id from last activity that is not ended
        let Some(active_activity) = self.most_recent_held_activity()? else {
            debug!("No held activity found.");

            // There are no active activities
            return Ok(None);
        };

        // TODO!: Check how applicable that is!
        // - If there are active intermissions for any activity, end the intermissions
        //   and resume the activity with the same id as the most recent intermission's parent_id
        // - If there are no active intermissions, but there are active activities, return the last active activity
        // - If there are no active intermissions, resume the activity with the given id or the last active activity

        Some(self.resume_activity(*active_activity.guid(), resume_opts)).transpose()
    }
}

impl ActivityQuerying for InMemoryActivityStorage {
    #[tracing::instrument(skip(self))]
    fn list_activities_by_id(&self) -> PaceOptResult<BTreeMap<ActivityGuid, Activity>> {
        let activities = self.log.read();

        let activities_by_id = activities.activities().clone();

        drop(activities);

        debug!("Activities by id: {:?}", activities_by_id.keys());

        if activities_by_id.is_empty() {
            debug!("No activities found.");

            return Ok(None);
        }

        Ok(Some(activities_by_id))
    }

    #[tracing::instrument(skip(self))]
    fn group_activities_by_duration_range(
        &self,
    ) -> PaceOptResult<BTreeMap<PaceDurationRange, Vec<ActivityItem>>> {
        todo!("Implement grouping activities by duration range")
    }

    #[tracing::instrument(skip(self))]
    fn group_activities_by_start_date(
        &self,
    ) -> PaceOptResult<BTreeMap<PaceDate, Vec<ActivityItem>>> {
        let activities = self.log.read();

        Some(activities.activities().iter().try_fold(
            BTreeMap::new(),
            |mut acc: BTreeMap<PaceDate, Vec<ActivityItem>>, (activity_id, activity)| {
                let begin_date = activity.begin().date_naive();

                debug!("Begin date: {:?}", begin_date);

                acc.entry(begin_date)
                    .or_default()
                    .push(ActivityItem::from((*activity_id, activity.clone())));

                Ok(acc)
            },
        ))
        .transpose()
    }

    #[tracing::instrument(skip(self))]
    fn list_activities_with_intermissions(
        &self,
    ) -> PaceOptResult<BTreeMap<ActivityGuid, Vec<ActivityItem>>> {
        let Some(intermissions) = self
            .list_activities(ActivityFilterKind::Intermission)?
            .map(FilteredActivities::into_vec)
        else {
            debug!("No intermissions found.");

            return Ok(None);
        };

        debug!("Intermissions: {:?}", intermissions);

        Some(intermissions.into_iter().try_fold(
            BTreeMap::new(),
            |mut acc: BTreeMap<ActivityGuid, Vec<ActivityItem>>, intermission_id| {
                let intermission = self.read_activity(intermission_id)?;

                debug!("Intermission: {:?}", intermission);

                let parent_id = intermission
                    .activity()
                    .activity_kind_options()
                    .as_ref()
                    .ok_or(ActivityLogErrorKind::ActivityKindOptionsNotFound(
                        intermission_id,
                    ))?
                    .parent_id()
                    .ok_or(ActivityLogErrorKind::ParentIdNotSet(intermission_id))?;

                debug!("Parent id: {:?}", parent_id);

                let parent_activity = self.read_activity(parent_id)?;

                debug!("Parent activity: {:?}", parent_activity);

                acc.entry(parent_id).or_default().push(parent_activity);

                Ok(acc)
            },
        ))
        .transpose()
    }

    #[tracing::instrument(skip(self))]
    fn group_activities_by_keywords(
        &self,
        keyword_opts: KeywordOptions,
    ) -> PaceOptResult<BTreeMap<String, Vec<ActivityItem>>> {
        let activities = self.log.read();

        Some(activities.activities().iter().try_fold(
            BTreeMap::new(),
            |mut acc: BTreeMap<String, Vec<ActivityItem>>, (activity_id, activity)| {
                // Group by category
                if let Some(category) = keyword_opts.category() {
                    let category = category.to_lowercase();

                    debug!("Category: {:?}", category);

                    if activity
                        .category()
                        .as_ref()
                        .ok_or(ActivityLogErrorKind::CategoryNotSet(*activity_id))?
                        .to_lowercase()
                        .contains(category.as_str())
                    {
                        acc.entry(category)
                            .or_default()
                            .push(ActivityItem::from((*activity_id, activity.clone())));
                    }
                } else {
                    // Use the existing activity category as the keyword

                    debug!("No category specified. Using 'Uncategorized' as the category.");

                    acc.entry(
                        activity
                            .category()
                            .as_ref()
                            .unwrap_or(&"Uncategorized".to_string())
                            .to_string(),
                    )
                    .or_default()
                    .push(ActivityItem::from((*activity_id, activity.clone())));
                }

                Ok(acc)
            },
        ))
        .transpose()
    }

    #[tracing::instrument(skip(self))]
    fn group_activities_by_kind(&self) -> PaceOptResult<BTreeMap<ActivityKind, Vec<ActivityItem>>> {
        let activities = self.log.read();

        Some(activities.activities().iter().try_fold(
            BTreeMap::new(),
            |mut acc: BTreeMap<ActivityKind, Vec<ActivityItem>>, (activity_id, activity)| {
                debug!(
                    "Activity kind: {:?} for item {:?} with id {:?}",
                    activity.kind(),
                    activity,
                    activity_id
                );

                acc.entry(*activity.kind())
                    .or_default()
                    .push(ActivityItem::from((*activity_id, activity.clone())));

                Ok(acc)
            },
        ))
        .transpose()
    }

    #[tracing::instrument(skip(self))]
    fn group_activities_by_status(
        &self,
    ) -> PaceOptResult<BTreeMap<ActivityStatusKind, Vec<ActivityItem>>> {
        let activities = self.log.read();

        Some(activities.activities().iter().try_fold(
            BTreeMap::new(),
            |mut acc: BTreeMap<ActivityStatusKind, Vec<ActivityItem>>, (activity_id, activity)| {
                debug!(
                    "Activity status: {:?} for item {:?} with id {:?}",
                    activity.status(),
                    activity,
                    activity_id
                );

                acc.entry(*activity.status())
                    .or_default()
                    .push(ActivityItem::from((*activity_id, activity.clone())));

                Ok(acc)
            },
        ))
        .transpose()
    }

    #[tracing::instrument(skip(self))]
    fn list_activities_by_time_range(
        &self,
        time_range_opts: TimeRangeOptions,
    ) -> PaceOptResult<Vec<ActivityGuid>> {
        let Some(filtered_activities) = self
            .list_activities(ActivityFilterKind::TimeRange(time_range_opts))?
            .map(FilteredActivities::into_vec)
        else {
            debug!(
                "No activities found in time range between {} and {}.",
                time_range_opts.start(),
                time_range_opts.end()
            );

            return Ok(None);
        };

        if filtered_activities.is_empty() {
            debug!(
                "No activities found in time range between {} and {}.",
                time_range_opts.start(),
                time_range_opts.end()
            );

            return Ok(None);
        }

        Ok(Some(filtered_activities))
    }
}

#[cfg(test)]
mod tests {

    use super::*;
    use crate::error::TestResult;
    use chrono::Local;
    use pace_time::date_time::PaceDateTime;
    use std::collections::HashSet;

    #[test]
    fn test_in_memory_activity_storage_passes() {
        let storage = InMemoryActivityStorage::new();

        assert_eq!(
            storage.get_activity_log().activities().len(),
            0,
            "Activity log is not empty."
        );
    }

    #[test]
    fn test_in_memory_activity_storage_from_activity_log_passes() {
        let activity_log = ActivityLog::default();
        let storage = InMemoryActivityStorage::from(activity_log);

        assert_eq!(
            storage.get_activity_log().activities().len(),
            0,
            "Activity log is not empty."
        );
    }

    #[test]
    fn test_create_read_activity_passes() -> TestResult<()> {
        let storage = InMemoryActivityStorage::new();

        let begin = Local::now().fixed_offset();
        let kind = ActivityKind::Activity;
        let description = "Test activity";
        let tags = vec!["test".to_string(), "activity".to_string()]
            .into_iter()
            .collect::<HashSet<String>>();

        let activity = Activity::builder()
            .begin(begin)
            .kind(kind)
            .description(description)
            .tags(tags)
            .build();

        let item = storage.create_activity(activity.clone())?;

        assert_eq!(
            storage.get_activity_log().activities().len(),
            1,
            "Activity was not created."
        );

        let stored_activity = storage.read_activity(*item.guid())?;

        assert_eq!(
            activity,
            *stored_activity.activity(),
            "Stored activity is not the same as the original activity."
        );

        Ok(())
    }

    #[test]
    fn test_list_activities_passes() -> TestResult<()> {
        let storage = InMemoryActivityStorage::new();

        let begin = Local::now().fixed_offset();
        let kind = ActivityKind::Activity;
        let description = "Test activity";
        let tags = vec!["test".to_string(), "activity".to_string()]
            .into_iter()
            .collect::<HashSet<String>>();

        let activity = Activity::builder()
            .begin(begin)
            .kind(kind)
            .description(description)
            .tags(tags)
            .build();

        let _activity_item = storage.create_activity(activity.clone())?;

        let filtered_activities = storage
            .list_activities(ActivityFilterKind::Everything)?
            .ok_or("No activities found.")?
            .into_vec();

        assert_eq!(
            filtered_activities.len(),
            1,
            "Amount of activities is not the same as the amount of created activities."
        );

        let stored_activity = storage.read_activity(filtered_activities[0])?;

        assert_eq!(
            activity,
            *stored_activity.activity(),
            "Filtered activities are not the same as the original activity."
        );

        Ok(())
    }

    #[test]
    fn test_update_activity_passes() -> TestResult<()> {
        let storage = InMemoryActivityStorage::new();

        let begin = Local::now().fixed_offset();
        let kind = ActivityKind::Activity;
        let description = "Test activity";
        let tags = vec!["test".to_string(), "activity".to_string()]
            .into_iter()
            .collect::<HashSet<String>>();

        let og_activity = Activity::builder()
            .begin(begin)
            .kind(kind)
            .description(description)
            .tags(tags)
            .build();

        let activity_item = storage.create_activity(og_activity.clone())?;

        let read_activity = storage.read_activity(*activity_item.guid())?;

        assert_eq!(
            og_activity,
            *read_activity.activity(),
            "Stored activity is not the same as the original activity."
        );

        let new_description = "Updated description";

        let tags = vec!["bla".to_string(), "test".to_string()]
            .into_iter()
            .collect::<HashSet<String>>();

        let new_begin = PaceDateTime::from(
            begin + chrono::TimeDelta::try_seconds(30).ok_or("Invalid time delta")?,
        );

        let updated_activity = Activity::builder()
            .begin(new_begin)
            .kind(ActivityKind::PomodoroWork)
            .status(ActivityStatusKind::InProgress)
            .description(new_description)
            .tags(tags.clone())
            .build();

        let old_activity = storage.update_activity(
            *activity_item.guid(),
            updated_activity,
            UpdateOptions::default(),
        )?;

        assert_eq!(
            og_activity,
            *old_activity.activity(),
            "Stored activity is not the same as the original activity."
        );

        let new_stored_activity = storage.read_activity(*activity_item.guid())?;

        assert_eq!(
            old_activity.guid(),
            new_stored_activity.guid(),
            "ID was updated, but shouldn't."
        );

        assert_eq!(
            new_stored_activity.activity().description(),
            new_description,
            "Description was not updated."
        );

        assert_eq!(
            *new_stored_activity.activity().tags(),
            Some(tags),
            "Tags were not updated, but should."
        );

        assert_eq!(
            old_activity.activity().kind(),
            new_stored_activity.activity().kind(),
            "Kind was updated, but shouldn't."
        );

        assert_eq!(
            &new_begin,
            new_stored_activity.activity().begin(),
            "Begin time was not updated, but should."
        );

        assert!(
            new_stored_activity.activity().is_in_progress(),
            "Activity should be active now, but was not updated."
        );

        Ok(())
    }

    #[test]
    fn test_crud_activity_passes() -> TestResult<()> {
        let storage = InMemoryActivityStorage::new();

        // Create activity
        let begin = Local::now().fixed_offset();
        let kind = ActivityKind::Activity;
        let description = "Test activity";
        let tags = vec!["test".to_string(), "activity".to_string()]
            .into_iter()
            .collect::<HashSet<String>>();

        let mut activity = Activity::builder()
            .begin(begin)
            .kind(kind)
            .description(description)
            .tags(tags)
            .build();

        assert_eq!(
            storage.get_activity_log().activities().len(),
            0,
            "Activity log is not empty."
        );

        let activity_item = storage.begin_activity(activity.clone())?;

        assert_eq!(
            storage.get_activity_log().activities().len(),
            1,
            "Activity was not created."
        );

        // Read activity
        let stored_activity = storage.read_activity(*activity_item.guid())?;

        // Make sure the activity is active now, as begin_activity should make it active automatically
        activity.make_active();

        assert_eq!(
            activity,
            *stored_activity.activity(),
            "Stored activity is not the same as the original activity."
        );

        assert_eq!(
            *stored_activity.activity().status(),
            ActivityStatusKind::InProgress,
            "Activity is not active."
        );

        // Update activity
        let new_description = "Updated description";

        let tags = vec!["bla".to_string(), "test".to_string()]
            .into_iter()
            .collect::<HashSet<String>>();

        let new_begin = PaceDateTime::from(
            begin + chrono::TimeDelta::try_seconds(30).ok_or("Invalid time delta")?,
        );

        let updated_activity = Activity::builder()
            .begin(new_begin)
            .kind(ActivityKind::PomodoroWork)
            .status(ActivityStatusKind::Created)
            .description(new_description)
            .tags(tags.clone())
            .build();

        let _ = storage.update_activity(
            *activity_item.guid(),
            updated_activity,
            UpdateOptions::default(),
        )?;

        let new_stored_activity = storage.read_activity(*activity_item.guid())?;

        assert_eq!(
            new_stored_activity.activity().description(),
            new_description,
            "Description was not updated."
        );

        assert_eq!(
            stored_activity.activity().kind(),
            new_stored_activity.activity().kind(),
            "Kind was updated, but shouldn't."
        );

        assert_eq!(
            Some(tags),
            *new_stored_activity.activity().tags(),
            "Tags were not updated, but should."
        );

        assert_eq!(
            &new_begin,
            new_stored_activity.activity().begin(),
            "Begin time was not updated, but should."
        );

        assert!(
            new_stored_activity.activity().is_inactive(),
            "Activity should be active now, but was not updated."
        );

        // Delete activity
        let deleted_activity =
            storage.delete_activity(*activity_item.guid(), DeleteOptions::default())?;

        assert_eq!(
            storage.get_activity_log().activities().len(),
            0,
            "Activity was not deleted."
        );

        assert_eq!(
            deleted_activity, new_stored_activity,
            "Deleted activity is not the same as the updated activity."
        );

        // Try to read the deleted activity

        let read_deleted_activity_result = storage.read_activity(*activity_item.guid());

        assert!(
            read_deleted_activity_result.is_err(),
            "Deleted activity was read."
        );

        Ok(())
    }

    #[test]
    fn test_end_single_activity_passes() -> TestResult<()> {
        let storage = InMemoryActivityStorage::new();
        let now = Local::now().fixed_offset();
        let begin_time = now - chrono::TimeDelta::try_seconds(30).ok_or("Invalid time delta")?;
        let end_time = now + chrono::TimeDelta::try_seconds(30).ok_or("Invalid time delta")?;
        let kind = ActivityKind::Activity;
        let description = "Test activity";
        let tags = vec!["test".to_string(), "activity".to_string()]
            .into_iter()
            .collect::<HashSet<String>>();

        let activity = Activity::builder()
            .begin(begin_time)
            .kind(kind)
            .description(description)
            .tags(tags)
            .build();

        let activity_item = storage.begin_activity(activity.clone())?;

        let end_opts = EndOptions::builder().end_time(end_time).build();

        let ended_activity = storage.end_activity(*activity_item.guid(), end_opts)?;

        assert_ne!(
            activity_item, ended_activity,
            "Activities do match, although they should be different."
        );

        assert!(ended_activity.activity().activity_end_options().is_some());

        let ended_activity = storage.read_activity(*activity_item.guid())?;

        assert!(
            ended_activity.activity().is_completed(),
            "Activity has not ended, but should have."
        );

        assert_eq!(
            activity.tags().as_ref().ok_or("Tags not set.")?,
            ended_activity
                .activity()
                .tags()
                .as_ref()
                .ok_or("Tags not set.")?,
            "Tags were updated, but shouldn't."
        );

        assert_eq!(
            ended_activity
                .activity()
                .activity_end_options()
                .as_ref()
                .ok_or("End options not set.")?
                .end(),
            &PaceDateTime::from(end_time),
            "End time was not set."
        );

        Ok(())
    }

    #[test]
    fn test_end_last_unfinished_activity_passes() -> TestResult<()> {
        let storage = InMemoryActivityStorage::new();
        let now = Local::now().fixed_offset();
        let begin_time = now - chrono::TimeDelta::try_seconds(30).ok_or("Invalid time delta")?;
        let kind = ActivityKind::Activity;
        let description = "Test activity";
        let tags = vec!["test".to_string(), "activity".to_string()]
            .into_iter()
            .collect::<HashSet<String>>();

        let activity = Activity::builder()
            .begin(begin_time)
            .kind(kind)
            .description(description)
            .tags(tags)
            .build();

        let activity_item = storage.begin_activity(activity.clone())?;

        let ended_activity = storage
            .end_last_unfinished_activity(EndOptions::builder().end_time(now).build())?
            .ok_or("Activity was not ended.")?;

        assert_eq!(
            ended_activity.guid(),
            activity_item.guid(),
            "Activity IDs do not match."
        );

        assert!(
            ended_activity.activity().is_completed(),
            "Activity has not ended, but should have."
        );

        assert_eq!(
            activity.tags().as_ref().ok_or("Tags not set.")?,
            ended_activity
                .activity()
                .tags()
                .as_ref()
                .ok_or("Tags not set.")?,
            "Tags were updated, but shouldn't."
        );

        assert_eq!(
            ended_activity
                .activity()
                .activity_end_options()
                .as_ref()
                .ok_or("End options not set.")?
                .end(),
            &PaceDateTime::from(now),
            "End time was not set."
        );

        Ok(())
    }

    #[test]
    fn test_begin_and_auto_end_for_multiple_activities_passes() -> TestResult<()> {
        let storage = InMemoryActivityStorage::new();
        let now = Local::now().fixed_offset();
        let begin_time = now - chrono::TimeDelta::try_seconds(30).ok_or("Invalid time delta")?;
        let kind = ActivityKind::Activity;
        let description = "Test activity";
        let tags = vec!["test".to_string(), "activity".to_string()]
            .into_iter()
            .collect::<HashSet<String>>();

        let activity = Activity::builder()
            .begin(begin_time)
            .kind(kind)
            .description(description)
            .tags(tags.clone())
            .build();

        // Begin the first activity
        let activity_item = storage.begin_activity(activity)?;

        let begin_time = now - chrono::TimeDelta::try_seconds(60).ok_or("Invalid time delta.")?;
        let kind = ActivityKind::Activity;
        let description = "Test activity 2";

        let activity2 = Activity::builder()
            .begin(begin_time)
            .kind(kind)
            .description(description)
            .tags(tags)
            .build();

        // Begin the second activity, the first one should be ended automatically now
        let activity_item2 = storage.begin_activity(activity2)?;

        let ended_activity = storage.read_activity(*activity_item.guid())?;

        assert!(
            ended_activity.activity().is_completed(),
            "Activity has not ended, but should have."
        );

        assert_eq!(
            ended_activity
                .activity()
                .activity_end_options()
                .as_ref()
                .ok_or("End options not set.")?
                .end(),
            &PaceDateTime::from(now),
            "End time was not set."
        );

        let ended_activity2 = storage.read_activity(*activity_item2.guid())?;

        assert!(
            ended_activity2.activity().is_in_progress(),
            "Activity has not ended, but should have."
        );

        assert!(
            ended_activity2.activity().activity_end_options().is_none(),
            "End time should not be set."
        );

        Ok(())
    }

    #[test]
    fn test_hold_most_recent_active_activity_passes() -> TestResult<()> {
        let storage = InMemoryActivityStorage::new();
        let now = Local::now().fixed_offset();
        let begin_time = now - chrono::TimeDelta::try_seconds(30).ok_or("Invalid time delta.")?;
        let kind = ActivityKind::Activity;
        let description = "Test activity";
        let tags = vec!["test".to_string(), "activity".to_string()]
            .into_iter()
            .collect::<HashSet<String>>();

        let activity = Activity::builder()
            .begin(begin_time)
            .kind(kind)
            .description(description)
            .tags(tags)
            .build();

        let activity_item = storage.begin_activity(activity.clone())?;

        let hold_time = now + chrono::TimeDelta::try_seconds(30).ok_or("Invalid time delta.")?;

        let hold_opts = HoldOptions::builder().begin_time(hold_time).build();

        let held_activity = storage
            .hold_most_recent_active_activity(hold_opts)?
            .ok_or("Activity was not held.")?;

        assert_eq!(
            held_activity.guid(),
            activity_item.guid(),
            "Activity IDs do not match."
        );

        assert_eq!(
            activity.tags().as_ref().ok_or("Tags not set.")?,
            held_activity
                .activity()
                .tags()
                .as_ref()
                .ok_or("Tags not set.")?,
            "Tags were updated, but shouldn't."
        );

        let intermission_guids = storage
            .list_active_intermissions_for_activity_id(*activity_item.guid())?
            .ok_or("Intermission was not created.")?;

        assert_eq!(intermission_guids.len(), 1, "Intermission was not created.");

        let intermission_item = storage.read_activity(intermission_guids[0])?;

        assert_eq!(
            *intermission_item.activity().kind(),
            ActivityKind::Intermission,
            "Intermission was not created."
        );

        assert_eq!(
            intermission_item
                .activity()
                .activity_kind_options()
                .as_ref()
                .ok_or("Activity kind options not set.")?
                .parent_id()
                .ok_or("Parent ID not set.")?,
            *activity_item.guid(),
            "Parent ID is not set."
        );

        Ok(())
    }

    #[test]
    fn test_hold_last_unfinished_activity_with_existing_intermission_does_nothing_passes(
    ) -> TestResult<()> {
        let storage = InMemoryActivityStorage::new();
        let now = Local::now().fixed_offset();
        let begin_time = now - chrono::TimeDelta::try_seconds(30).ok_or("Invalid time delta.")?;
        let kind = ActivityKind::Activity;
        let description = "Test activity";
        let tags = vec!["test".to_string(), "activity".to_string()]
            .into_iter()
            .collect::<HashSet<String>>();

        let activity = Activity::builder()
            .begin(begin_time)
            .kind(kind)
            .description(description)
            .tags(tags)
            .build();

        let active_activity_item = storage.begin_activity(activity)?;

        let hold_opts = HoldOptions::builder()
            .begin_time(now + chrono::TimeDelta::try_seconds(30).ok_or("Invalid time delta.")?)
            .build();

        let _held_item = storage
            .hold_most_recent_active_activity(hold_opts)?
            .ok_or("Activity was not held.")?;

        let held_activity = storage.read_activity(*active_activity_item.guid())?;

        assert_eq!(
            *held_activity.activity().status(),
            ActivityStatusKind::Paused,
            "Activity was not held."
        );

        let intermission_guids = storage
            .list_active_intermissions_for_activity_id(*active_activity_item.guid())?
            .ok_or("Intermission was not created.")?;

        assert_eq!(intermission_guids.len(), 1, "Intermission was not created.");

        let hold_opts = HoldOptions::builder()
            .begin_time(now + chrono::TimeDelta::try_seconds(60).ok_or("Invalid time delta.")?)
            .build();

        assert!(
            storage
                .hold_most_recent_active_activity(hold_opts)?
                .is_none(),
            "Activity was held again."
        );

        let intermission_guids = storage
            .list_active_intermissions_for_activity_id(*active_activity_item.guid())?
            .ok_or("Intermission was not created.")?;

        assert_eq!(
            intermission_guids.len(),
            1,
            "Intermission was created again."
        );

        let intermission_item = storage.read_activity(intermission_guids[0])?;

        assert_eq!(
            *intermission_item.activity().kind(),
            ActivityKind::Intermission,
            "Intermission was not created."
        );

        assert!(
            intermission_item.activity().tags().is_none(),
            "Intermission has tags, but shouldn't."
        );

        Ok(())
    }

    #[test]
    fn test_end_all_active_intermissions_passes() -> TestResult<()> {
        let storage = InMemoryActivityStorage::new();
        let now = Local::now().fixed_offset();
        let begin_time = now - chrono::TimeDelta::try_seconds(30).ok_or("Invalid time delta.")?;
        let end_time = now + chrono::TimeDelta::try_seconds(60).ok_or("Invalid time delta.")?;
        let kind = ActivityKind::Activity;
        let description = "Test activity";

        let activity = Activity::builder()
            .begin(begin_time)
            .kind(kind)
            .description(description)
            .build();

        let active_activity_item = storage.begin_activity(activity)?;

        let hold_opts = HoldOptions::builder()
            .begin_time(now + chrono::TimeDelta::try_seconds(30).ok_or("Invalid time delta.")?)
            .build();

        let _ = storage.hold_most_recent_active_activity(hold_opts)?;

        let intermission_guids = storage
            .list_active_intermissions_for_activity_id(*active_activity_item.guid())?
            .ok_or("Intermission was not created.")?;

        assert_eq!(intermission_guids.len(), 1, "Intermission was not created.");

        let end_opts = EndOptions::builder().end_time(end_time).build();

        let ended_intermissions = storage
            .end_all_active_intermissions(end_opts)?
            .ok_or("Intermissions were not ended.")?;

        assert_eq!(
            ended_intermissions.len(),
            1,
            "Not all intermissions were ended."
        );

        let ended_intermission = storage.read_activity(intermission_guids[0])?;

        assert!(
            ended_intermission.activity().is_completed(),
            "Intermission has not ended, but should have."
        );

        assert_eq!(
            ended_intermission
                .activity()
                .activity_end_options()
                .as_ref()
                .ok_or("End options not set.")?
                .end(),
            &PaceDateTime::from(end_time),
            "End time was not set."
        );

        Ok(())
    }

    #[test]
    fn test_group_activities_by_keywords_passes() -> TestResult<()> {
        let storage = InMemoryActivityStorage::new();
        let now = Local::now().fixed_offset();
        let begin_time = now - chrono::TimeDelta::try_seconds(30).ok_or("Invalid time delta")?;
        let kind = ActivityKind::Activity;
        let description = "Test activity";

        let activity = Activity::builder()
            .begin(begin_time)
            .kind(kind)
            .description(description)
            .category("Project::Test".to_string())
            .build();

        let activity_item = storage.begin_activity(activity)?;

        let keyword_opts = KeywordOptions::builder().category("Test").build();

        let grouped_activities = storage.group_activities_by_keywords(keyword_opts)?.ok_or(
            "Grouped activities by keywords returned None, but should have returned Some.",
        )?;

        assert_eq!(
            grouped_activities.len(),
            1,
            "Grouped activities do not match the amount of created activities."
        );

        let grouped_activity = grouped_activities
            .values()
            .next()
            .ok_or("Grouped activities are empty.")?
            .first()
            .ok_or("Grouped activities are empty.")?
            .clone();

        assert_eq!(
            *grouped_activity.guid(),
            *activity_item.guid(),
            "Grouped activity is not the same as the original activity."
        );

        Ok(())
    }

    #[test]
    fn test_group_activities_by_kind_passes() -> TestResult<()> {
        let storage = InMemoryActivityStorage::new();
        let now = Local::now().fixed_offset();
        let begin_time = now - chrono::TimeDelta::try_seconds(30).ok_or("Invalid time delta")?;
        let kind = ActivityKind::Activity;
        let description = "Test activity";

        let activity = Activity::builder()
            .begin(begin_time)
            .kind(kind)
            .description(description)
            .build();

        let activity_item = storage.begin_activity(activity)?;

        let grouped_activities = storage
            .group_activities_by_kind()?
            .ok_or("Grouped activities by kind returned None, but should have returned Some.")?;

        assert_eq!(
            grouped_activities.len(),
            1,
            "Grouped activities do not match the amount of created activities."
        );

        let grouped_activity = grouped_activities
            .values()
            .next()
            .ok_or("Grouped activities are empty.")?
            .first()
            .ok_or("Grouped activities are empty.")?
            .clone();

        assert_eq!(
            *grouped_activity.guid(),
            *activity_item.guid(),
            "Grouped activity is not the same as the original activity."
        );

        assert_eq!(
            *grouped_activity.activity().kind(),
            kind,
            "Grouped activity kind is not the same as the original activity kind."
        );

        assert_eq!(
            *grouped_activity.activity().description(),
            description,
            "Grouped activity description is not the same as the original activity description."
        );

        Ok(())
    }

    #[test]
    fn test_group_activities_by_status_passes() -> TestResult<()> {
        let storage = InMemoryActivityStorage::new();
        let now = Local::now().fixed_offset();
        let begin_time = now - chrono::TimeDelta::try_seconds(30).ok_or("Invalid time delta")?;
        let kind = ActivityKind::Activity;
        let description = "Test activity";

        let activity = Activity::builder()
            .begin(begin_time)
            .kind(kind)
            .description(description)
            .build();

        let activity_item = storage.begin_activity(activity)?;

        let grouped_activities = storage
            .group_activities_by_status()?
            .ok_or("Grouped activities by status returned None, but should have returned Some.")?;

        assert_eq!(
            grouped_activities.len(),
            1,
            "Grouped activities do not match the amount of created activities."
        );

        let grouped_activity = grouped_activities
            .values()
            .next()
            .ok_or("Grouped activities are empty.")?
            .first()
            .ok_or("Grouped activities are empty.")?
            .clone();

        assert_eq!(
            *grouped_activity.guid(),
            *activity_item.guid(),
            "Grouped activity is not the same as the original activity."
        );

        assert_eq!(
            *grouped_activity.activity().status(),
            ActivityStatusKind::InProgress,
            "Grouped activity status is not the same as the original activity status."
        );

        assert_eq!(
            *grouped_activity.activity().kind(),
            kind,
            "Grouped activity kind is not the same as the original activity kind."
        );

        assert_eq!(
            *grouped_activity.activity().description(),
            description,
            "Grouped activity description is not the same as the original activity description."
        );

        Ok(())
    }

    #[test]
    fn test_group_activities_by_start_date_passes() -> TestResult<()> {
        let storage = InMemoryActivityStorage::new();
        let now = Local::now().fixed_offset();
        let begin_time = now - chrono::TimeDelta::try_seconds(30).ok_or("Invalid time delta.")?;
        let kind = ActivityKind::Activity;
        let description = "Test activity";

        let activity = Activity::builder()
            .begin(begin_time)
            .kind(kind)
            .description(description)
            .build();

        let activity_item = storage.begin_activity(activity)?;

        let grouped_activities = storage.group_activities_by_start_date()?.ok_or(
            "Grouped activities by start date returned None, but should have returned Some.",
        )?;

        assert_eq!(
            grouped_activities.len(),
            1,
            "Grouped activities do not match the amount of created activities."
        );

        let grouped_activity = grouped_activities
            .values()
            .next()
            .ok_or("Grouped activities are empty?")?
            .first()
            .ok_or("Grouped activities are empty?")?
            .clone();

        assert_eq!(
            *grouped_activity.guid(),
            *activity_item.guid(),
            "Grouped activity is not the same as the original activity."
        );

        assert_eq!(
            grouped_activity.activity().begin().date_naive(),
            PaceDate::new(begin_time.date_naive()),
            "Grouped activity date is not the same as the original activity date."
        );

        assert_eq!(
            *grouped_activity.activity().kind(),
            kind,
            "Grouped activity kind is not the same as the original activity kind."
        );

        assert_eq!(
            *grouped_activity.activity().description(),
            description,
            "Grouped activity description is not the same as the original activity description."
        );

        Ok(())
    }

    // TODO!: Implement the following tests
    // #[test]
    // fn test_group_multiple_activities_by_status_passes() {
    // }

    // #[test]
    // fn test_group_multiple_activities_by_kind_passes() {
    // }

    // #[test]
    // fn test_group_multiple_activities_by_keywords_passes() {
    // }
}