Mercurial > minori
annotate include/core/date.h @ 367:8d45d892be88 default tip
*: instead of pugixml, use Qt XML features
this means we have one extra Qt dependency though...
author | Paper <paper@tflc.us> |
---|---|
date | Sun, 17 Nov 2024 22:55:47 -0500 |
parents | b5d6c27c308f |
children |
rev | line source |
---|---|
261
3ec7804abf17
include: make header guards more sane
Paper <paper@paper.us.eu.org>
parents:
258
diff
changeset
|
1 #ifndef MINORI_CORE_DATE_H_ |
3ec7804abf17
include: make header guards more sane
Paper <paper@paper.us.eu.org>
parents:
258
diff
changeset
|
2 #define MINORI_CORE_DATE_H_ |
85 | 3 |
187
9613d72b097e
*: multiple performance improvements
Paper <mrpapersonic@gmail.com>
parents:
174
diff
changeset
|
4 #include "json/json_fwd.hpp" |
9613d72b097e
*: multiple performance improvements
Paper <mrpapersonic@gmail.com>
parents:
174
diff
changeset
|
5 |
319
d928ec7b6a0d
services/kitsu: implement GetAnimeList()
Paper <paper@paper.us.eu.org>
parents:
317
diff
changeset
|
6 #include "core/time.h" |
d928ec7b6a0d
services/kitsu: implement GetAnimeList()
Paper <paper@paper.us.eu.org>
parents:
317
diff
changeset
|
7 |
196
f0ff06a45c42
date: use std::optional for values
Paper <mrpapersonic@gmail.com>
parents:
187
diff
changeset
|
8 #include <optional> |
317
b1f4d1867ab1
services: VERY initial Kitsu support
Paper <paper@paper.us.eu.org>
parents:
261
diff
changeset
|
9 #include <string> |
196
f0ff06a45c42
date: use std::optional for values
Paper <mrpapersonic@gmail.com>
parents:
187
diff
changeset
|
10 |
187
9613d72b097e
*: multiple performance improvements
Paper <mrpapersonic@gmail.com>
parents:
174
diff
changeset
|
11 class QDate; |
85 | 12 |
317
b1f4d1867ab1
services: VERY initial Kitsu support
Paper <paper@paper.us.eu.org>
parents:
261
diff
changeset
|
13 /* TODO: refactor constructors, as they aren't meant |
b1f4d1867ab1
services: VERY initial Kitsu support
Paper <paper@paper.us.eu.org>
parents:
261
diff
changeset
|
14 * to be used in this way and may cause problems down |
b1f4d1867ab1
services: VERY initial Kitsu support
Paper <paper@paper.us.eu.org>
parents:
261
diff
changeset
|
15 * the line */ |
b1f4d1867ab1
services: VERY initial Kitsu support
Paper <paper@paper.us.eu.org>
parents:
261
diff
changeset
|
16 |
9 | 17 class Date { |
258 | 18 public: |
19 using Year = unsigned int; | |
20 using Day = unsigned char; | |
21 enum class Month { | |
22 Jan = 0, | |
23 Feb, | |
24 Mar, | |
25 Apr, | |
26 May, | |
27 Jun, | |
28 Jul, | |
29 Aug, | |
30 Sep, | |
31 Oct, | |
32 Nov, | |
33 Dec | |
34 }; | |
9 | 35 |
258 | 36 Date(); |
37 Date(Year y); | |
38 Date(Year y, Month m, Day d); | |
317
b1f4d1867ab1
services: VERY initial Kitsu support
Paper <paper@paper.us.eu.org>
parents:
261
diff
changeset
|
39 Date(const std::string& str); |
258 | 40 Date(const QDate& date); |
41 Date(const nlohmann::json& json); | |
319
d928ec7b6a0d
services/kitsu: implement GetAnimeList()
Paper <paper@paper.us.eu.org>
parents:
317
diff
changeset
|
42 Date(Time::Timestamp timestamp); |
327
b5d6c27c308f
anime: refactor Anime::SeriesSeason to Season class
Paper <paper@paper.us.eu.org>
parents:
319
diff
changeset
|
43 |
258 | 44 bool IsValid() const; |
327
b5d6c27c308f
anime: refactor Anime::SeriesSeason to Season class
Paper <paper@paper.us.eu.org>
parents:
319
diff
changeset
|
45 |
258 | 46 void SetYear(Year y); |
47 void SetMonth(Month m); | |
48 void SetDay(Day d); | |
327
b5d6c27c308f
anime: refactor Anime::SeriesSeason to Season class
Paper <paper@paper.us.eu.org>
parents:
319
diff
changeset
|
49 |
258 | 50 void VoidYear(); |
51 void VoidMonth(); | |
52 void VoidDay(); | |
327
b5d6c27c308f
anime: refactor Anime::SeriesSeason to Season class
Paper <paper@paper.us.eu.org>
parents:
319
diff
changeset
|
53 |
258 | 54 std::optional<Year> GetYear() const; |
55 std::optional<Month> GetMonth() const; | |
56 std::optional<Day> GetDay() const; | |
57 QDate GetAsQDate() const; | |
58 nlohmann::json GetAsAniListJson() const; | |
59 | |
60 private: | |
61 std::optional<Year> year; | |
62 std::optional<Month> month; | |
63 std::optional<Day> day; | |
9 | 64 }; |
85 | 65 |
261
3ec7804abf17
include: make header guards more sane
Paper <paper@paper.us.eu.org>
parents:
258
diff
changeset
|
66 #endif // MINORI_CORE_DATE_H_ |