view include/core/time.h @ 327:b5d6c27c308f

anime: refactor Anime::SeriesSeason to Season class ToLocalString has also been altered to take in both season and year because lots of locales actually treat formatting seasons differently! most notably is Russian which adds a suffix at the end to notate seasons(??)
author Paper <paper@paper.us.eu.org>
date Thu, 13 Jun 2024 01:49:18 -0400
parents d928ec7b6a0d
children
line wrap: on
line source

#ifndef MINORI_CORE_TIME_H_
#define MINORI_CORE_TIME_H_

#include <cstdint>
#include <string>
namespace Time {

/* this is in SECONDS */
using Timestamp = int64_t;

enum class Units {
	Seconds,
	Minutes
};

std::string GetSecondsAsRelativeString(Timestamp length);
std::string GetSecondsAsAbsoluteString(Units unit_cutoff, Timestamp amount, double unit_in_seconds = 1.0);

/* in UTC */
Timestamp GetSystemTime();

Timestamp ParseISO8601Time(const std::string& str);

}; // namespace Time

#endif // MINORI_CORE_TIME_H_