Mercurial > minori
annotate include/core/date.h @ 319:d928ec7b6a0d
services/kitsu: implement GetAnimeList()
it finally works!
author | Paper <paper@paper.us.eu.org> |
---|---|
date | Wed, 12 Jun 2024 17:52:26 -0400 |
parents | b1f4d1867ab1 |
children | b5d6c27c308f |
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); |
258 | 43 bool IsValid() const; |
44 void SetYear(Year y); | |
45 void SetMonth(Month m); | |
46 void SetDay(Day d); | |
47 void VoidYear(); | |
48 void VoidMonth(); | |
49 void VoidDay(); | |
50 std::optional<Year> GetYear() const; | |
51 std::optional<Month> GetMonth() const; | |
52 std::optional<Day> GetDay() const; | |
53 QDate GetAsQDate() const; | |
54 nlohmann::json GetAsAniListJson() const; | |
55 | |
56 private: | |
57 std::optional<Year> year; | |
58 std::optional<Month> month; | |
59 std::optional<Day> day; | |
9 | 60 }; |
85 | 61 |
261
3ec7804abf17
include: make header guards more sane
Paper <paper@paper.us.eu.org>
parents:
258
diff
changeset
|
62 #endif // MINORI_CORE_DATE_H_ |