xlnt/source/datetime.cpp

173 lines
4.6 KiB
C++
Raw Normal View History

2014-05-31 06:42:25 +08:00
#include <cmath>
#include <ctime>
2014-06-06 04:19:31 +08:00
#include "common/datetime.hpp"
2014-05-31 06:42:25 +08:00
namespace xlnt {
time time::from_number(long double raw_time, int base_year)
2014-05-31 06:42:25 +08:00
{
double integer_part;
2014-06-11 05:12:15 +08:00
double fractional_part = std::modf((double)raw_time, &integer_part);
2014-05-31 06:42:25 +08:00
fractional_part *= 24;
2014-06-12 04:41:34 +08:00
int hour = (int)fractional_part;
2014-05-31 06:42:25 +08:00
fractional_part = 60 * (fractional_part - hour);
2014-06-12 04:41:34 +08:00
int minute = (int)fractional_part;
2014-05-31 06:42:25 +08:00
fractional_part = 60 * (fractional_part - minute);
2014-06-12 04:41:34 +08:00
int second = (int)fractional_part;
2014-05-31 06:42:25 +08:00
fractional_part = 1000000 * (fractional_part - second);
2014-06-12 04:41:34 +08:00
int microsecond = (int)fractional_part;
if(microsecond == 999999 && fractional_part - microsecond > 0.5)
{
microsecond = 0;
second += 1;
if(second == 60)
{
second = 0;
minute += 1;
if(minute == 60)
{
minute = 0;
hour += 1;
}
}
}
2014-06-12 04:41:34 +08:00
return time(hour, minute, second, microsecond);
}
date date::from_number(long double number, int base_year)
2014-06-12 04:41:34 +08:00
{
int year = (int)number / 365;
number -= year * 365;
int month = (int)number / 30;
number -= month * 30;
int day = (int)number;
return date(year + base_year, month, day + 1);
2014-06-12 04:41:34 +08:00
}
datetime datetime::from_number(long double raw_time, int base_year)
2014-06-12 04:41:34 +08:00
{
double integer_part;
double fractional_part = std::modf((double)raw_time, &integer_part);
fractional_part *= 24;
int hour = (int)fractional_part;
fractional_part = 60 * (fractional_part - hour);
int minute = (int)fractional_part;
fractional_part = 60 * (fractional_part - minute);
int second = (int)fractional_part;
fractional_part = 1000000 * (fractional_part - second);
int microsecond = (int)fractional_part;
if(microsecond == 999999 && fractional_part - microsecond > 0.5)
{
microsecond = 0;
second += 1;
if(second == 60)
{
second = 0;
minute += 1;
if(minute == 60)
{
minute = 0;
hour += 1;
}
}
}
2014-06-12 04:41:34 +08:00
int year = (int)integer_part / 365;
integer_part -= year * 365;
int month = (int)integer_part / 30;
integer_part -= month * 30;
int day = (int)integer_part;
return datetime(year + base_year, month, day + 1, hour, minute, second, microsecond);
2014-06-12 04:41:34 +08:00
}
bool date::operator==(const date &comparand) const
{
return year == comparand.year
&& month == comparand.month
&& day == comparand.day;
}
bool time::operator==(const time &comparand) const
{
return hour == comparand.hour
&& minute == comparand.minute
&& second == comparand.second
&& microsecond == comparand.microsecond;
}
bool datetime::operator==(const datetime &comparand) const
{
return year == comparand.year
&& month == comparand.month
&& day == comparand.day
&& hour == comparand.hour
&& minute == comparand.minute
&& second == comparand.second
&& microsecond == comparand.microsecond;
2014-05-31 06:42:25 +08:00
}
2014-06-07 23:49:19 +08:00
time::time(const std::string &time_string) : hour(0), minute(0), second(0), microsecond(0)
{
std::string remaining = time_string;
auto colon_index = remaining.find(':');
hour = std::stoi(remaining.substr(0, colon_index));
remaining = remaining.substr(colon_index + 1);
colon_index = remaining.find(':');
minute = std::stoi(remaining.substr(0, colon_index));
colon_index = remaining.find(':');
if(colon_index != std::string::npos)
{
remaining = remaining.substr(colon_index + 1);
second = std::stoi(remaining);
}
}
double time::to_number(int base_year) const
2014-06-07 23:49:19 +08:00
{
double number = microsecond;
number /= 1000000;
number += second;
number /= 60;
number += minute;
number /= 60;
number += hour;
number /= 24;
return number;
}
double date::to_number(int base_year) const
2014-06-12 04:41:34 +08:00
{
double number = (day - 1) + month * 30 + (year - base_year) * 365;
2014-06-12 04:41:34 +08:00
return number;
}
double datetime::to_number(int base_year) const
2014-06-12 04:41:34 +08:00
{
double number = microsecond;
number /= 1000000;
number += second;
number /= 60;
number += minute;
number /= 60;
number += hour;
number /= 24;
number += (day - 1) + month * 30 + (year - base_year) * 365;
2014-06-12 04:41:34 +08:00
return number;
}
2014-06-11 06:36:31 +08:00
date date::today()
{
std::time_t raw_time = std::time(0);
std::tm now = *std::localtime(&raw_time);
return date(now.tm_year, now.tm_mon + 1, now.tm_mday);
}
2014-05-31 06:42:25 +08:00
datetime datetime::now()
{
std::time_t raw_time = std::time(0);
std::tm now = *std::localtime(&raw_time);
return datetime(now.tm_year, now.tm_mon + 1, now.tm_mday, now.tm_hour, now.tm_min, now.tm_sec);
}
} // namespace xlnt