2020-02-11 15:42:02 -03:00
|
|
|
/*
|
2024-10-04 08:19:50 -03:00
|
|
|
* Copyright (c) 2018-2020, Andreas Kling <andreas@ladybird.org>
|
2020-02-11 15:42:02 -03:00
|
|
|
*
|
2021-04-22 05:24:48 -03:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
2020-02-11 15:42:02 -03:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
2023-12-16 11:19:34 -03:00
|
|
|
#include <AK/ByteString.h>
|
2022-01-28 16:26:43 -03:00
|
|
|
#include <AK/StringView.h>
|
2020-02-11 15:42:02 -03:00
|
|
|
#include <time.h>
|
|
|
|
|
|
|
|
|
|
namespace Core {
|
|
|
|
|
|
2020-08-20 11:39:56 -03:00
|
|
|
// Represents a time in local time.
|
2020-02-11 15:42:02 -03:00
|
|
|
class DateTime {
|
|
|
|
|
public:
|
|
|
|
|
time_t timestamp() const { return m_timestamp; }
|
|
|
|
|
|
|
|
|
|
unsigned year() const { return m_year; }
|
|
|
|
|
unsigned month() const { return m_month; }
|
|
|
|
|
unsigned day() const { return m_day; }
|
|
|
|
|
|
|
|
|
|
unsigned hour() const { return m_hour; }
|
|
|
|
|
unsigned minute() const { return m_minute; }
|
|
|
|
|
unsigned second() const { return m_second; }
|
2020-03-10 18:41:01 -03:00
|
|
|
unsigned weekday() const;
|
|
|
|
|
unsigned days_in_month() const;
|
|
|
|
|
unsigned day_of_year() const;
|
|
|
|
|
bool is_leap_year() const;
|
2020-02-11 15:42:02 -03:00
|
|
|
|
2021-10-30 04:06:27 -03:00
|
|
|
void set_time(int year, int month = 1, int day = 1, int hour = 0, int minute = 0, int second = 0);
|
2023-11-17 15:23:08 -03:00
|
|
|
void set_time_only(int hour, int minute, Optional<int> second = {});
|
2023-11-17 15:23:43 -03:00
|
|
|
void set_date(Core::DateTime const& other);
|
2024-04-01 15:45:41 -03:00
|
|
|
|
2021-10-30 04:06:27 -03:00
|
|
|
static DateTime create(int year, int month = 1, int day = 1, int hour = 0, int minute = 0, int second = 0);
|
2020-02-11 15:42:02 -03:00
|
|
|
static DateTime now();
|
2020-02-11 15:48:46 -03:00
|
|
|
static DateTime from_timestamp(time_t);
|
2023-11-07 13:47:23 -03:00
|
|
|
static Optional<DateTime> parse(StringView format, StringView string);
|
2020-02-11 15:42:02 -03:00
|
|
|
|
2022-04-01 14:58:27 -03:00
|
|
|
bool operator<(DateTime const& other) const { return m_timestamp < other.m_timestamp; }
|
2023-11-17 17:51:04 -03:00
|
|
|
bool operator>(DateTime const& other) const { return m_timestamp > other.m_timestamp; }
|
|
|
|
|
bool operator<=(DateTime const& other) const { return m_timestamp <= other.m_timestamp; }
|
|
|
|
|
bool operator>=(DateTime const& other) const { return m_timestamp >= other.m_timestamp; }
|
2022-09-12 08:26:02 -03:00
|
|
|
bool operator==(DateTime const& other) const { return m_timestamp == other.m_timestamp; }
|
2020-05-07 01:41:07 -03:00
|
|
|
|
2020-02-11 15:42:02 -03:00
|
|
|
private:
|
|
|
|
|
time_t m_timestamp { 0 };
|
2021-08-19 13:16:03 -03:00
|
|
|
int m_year { 0 };
|
|
|
|
|
int m_month { 0 };
|
|
|
|
|
int m_day { 0 };
|
|
|
|
|
int m_hour { 0 };
|
|
|
|
|
int m_minute { 0 };
|
|
|
|
|
int m_second { 0 };
|
2020-02-11 15:42:02 -03:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
}
|
2021-04-15 11:33:28 -03:00
|
|
|
|
2022-09-12 08:26:02 -03:00
|
|
|
namespace AK {
|
2025-05-13 08:06:33 -03:00
|
|
|
|
2022-09-12 08:26:02 -03:00
|
|
|
template<>
|
|
|
|
|
struct Formatter<Core::DateTime> : StandardFormatter {
|
|
|
|
|
ErrorOr<void> format(FormatBuilder& builder, Core::DateTime const& value)
|
|
|
|
|
{
|
|
|
|
|
// Can't use DateTime::to_string() here: It doesn't propagate allocation failure.
|
2025-04-08 14:50:50 -03:00
|
|
|
return builder.builder().try_appendff("{:04d}-{:02d}-{:02d} {:02d}:{:02d}:{:02d}",
|
2022-09-12 08:26:02 -03:00
|
|
|
value.year(), value.month(), value.day(),
|
|
|
|
|
value.hour(), value.minute(), value.second());
|
|
|
|
|
}
|
|
|
|
|
};
|
2025-05-13 08:06:33 -03:00
|
|
|
|
2022-09-12 08:26:02 -03:00
|
|
|
}
|