2016-03-25 13:28:07 +01:00
|
|
|
// ------------------------------------------------------------------------------------------------
|
|
|
|
#include "Library/Chrono/Timestamp.hpp"
|
|
|
|
#include "Library/Chrono/Timer.hpp"
|
2016-06-04 21:33:34 +02:00
|
|
|
#include "Library/Chrono/Date.hpp"
|
|
|
|
#include "Library/Chrono/Time.hpp"
|
|
|
|
#include "Library/Chrono/Datetime.hpp"
|
2016-06-04 23:00:59 +02:00
|
|
|
#include "Library/Numeric/LongInt.hpp"
|
2016-03-25 13:28:07 +01:00
|
|
|
|
|
|
|
// ------------------------------------------------------------------------------------------------
|
|
|
|
namespace SqMod {
|
|
|
|
|
|
|
|
// ------------------------------------------------------------------------------------------------
|
|
|
|
Timestamp::Timestamp(const SLongInt & t)
|
|
|
|
: m_Timestamp(t.GetNum())
|
|
|
|
{
|
|
|
|
/* ... */
|
|
|
|
}
|
|
|
|
|
|
|
|
// ------------------------------------------------------------------------------------------------
|
|
|
|
Int32 Timestamp::Cmp(const Timestamp & o) const
|
|
|
|
{
|
|
|
|
if (m_Timestamp == o.m_Timestamp)
|
2016-06-04 21:33:34 +02:00
|
|
|
{
|
2016-03-25 13:28:07 +01:00
|
|
|
return 0;
|
2016-06-04 21:33:34 +02:00
|
|
|
}
|
2016-03-25 13:28:07 +01:00
|
|
|
else if (m_Timestamp > o.m_Timestamp)
|
2016-06-04 21:33:34 +02:00
|
|
|
{
|
2016-03-25 13:28:07 +01:00
|
|
|
return 1;
|
2016-06-04 21:33:34 +02:00
|
|
|
}
|
2016-03-25 13:28:07 +01:00
|
|
|
else
|
2016-06-04 21:33:34 +02:00
|
|
|
{
|
2016-03-25 13:28:07 +01:00
|
|
|
return -1;
|
2016-06-04 21:33:34 +02:00
|
|
|
}
|
2016-03-25 13:28:07 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// ------------------------------------------------------------------------------------------------
|
|
|
|
CSStr Timestamp::ToString() const
|
|
|
|
{
|
|
|
|
return ToStrF("%lld", m_Timestamp);
|
|
|
|
}
|
|
|
|
|
|
|
|
// ------------------------------------------------------------------------------------------------
|
|
|
|
void Timestamp::SetNow()
|
|
|
|
{
|
2016-06-04 18:17:42 +02:00
|
|
|
m_Timestamp = Chrono::GetCurrentSysTime();
|
2016-03-25 13:28:07 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// ------------------------------------------------------------------------------------------------
|
|
|
|
SLongInt Timestamp::GetMicroseconds() const
|
|
|
|
{
|
|
|
|
return SLongInt(m_Timestamp);
|
|
|
|
}
|
|
|
|
|
|
|
|
// ------------------------------------------------------------------------------------------------
|
|
|
|
void Timestamp::SetMicroseconds(const SLongInt & ammount)
|
|
|
|
{
|
|
|
|
m_Timestamp = ammount.GetNum();
|
|
|
|
}
|
|
|
|
|
|
|
|
// ------------------------------------------------------------------------------------------------
|
|
|
|
SLongInt Timestamp::GetMilliseconds() const
|
|
|
|
{
|
|
|
|
return SLongInt(m_Timestamp / 1000L);
|
|
|
|
}
|
|
|
|
|
|
|
|
// ------------------------------------------------------------------------------------------------
|
|
|
|
void Timestamp::SetMilliseconds(const SLongInt & ammount)
|
|
|
|
{
|
|
|
|
m_Timestamp = (ammount.GetNum() * 1000L);
|
|
|
|
}
|
|
|
|
|
|
|
|
// ------------------------------------------------------------------------------------------------
|
|
|
|
static Timestamp SqGetEpochTimeNow()
|
|
|
|
{
|
2016-06-04 18:17:42 +02:00
|
|
|
return Timestamp(Chrono::GetEpochTimeMicro());
|
2016-03-25 13:28:07 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// ------------------------------------------------------------------------------------------------
|
|
|
|
static Timestamp SqGetMicrosecondsRaw(Int64 ammount)
|
|
|
|
{
|
|
|
|
return Timestamp(ammount);
|
|
|
|
}
|
|
|
|
|
|
|
|
// ------------------------------------------------------------------------------------------------
|
|
|
|
static Timestamp SqGetMicroseconds(const SLongInt & ammount)
|
|
|
|
{
|
|
|
|
return Timestamp(ammount);
|
|
|
|
}
|
|
|
|
|
|
|
|
// ------------------------------------------------------------------------------------------------
|
|
|
|
static Timestamp SqGetMilliseconds(SQInteger ammount)
|
|
|
|
{
|
|
|
|
return Timestamp(Int64(Int64(ammount) * 1000L));
|
|
|
|
}
|
|
|
|
|
|
|
|
// ------------------------------------------------------------------------------------------------
|
|
|
|
static Timestamp SqGetSeconds(SQFloat ammount)
|
|
|
|
{
|
|
|
|
return Timestamp(Int64(Float64(ammount) * 1000000L));
|
|
|
|
}
|
|
|
|
|
|
|
|
// ------------------------------------------------------------------------------------------------
|
|
|
|
static Timestamp SqGetMinutes(SQFloat ammount)
|
|
|
|
{
|
|
|
|
return Timestamp(Int64((Float64(ammount) * 60000000L)));
|
|
|
|
}
|
|
|
|
|
|
|
|
// ------------------------------------------------------------------------------------------------
|
|
|
|
static Timestamp SqGetHours(SQFloat ammount)
|
|
|
|
{
|
|
|
|
return Timestamp(Int64(Float64(ammount) * 3600000000LL));
|
|
|
|
}
|
|
|
|
|
|
|
|
// ------------------------------------------------------------------------------------------------
|
|
|
|
static Timestamp SqGetDays(SQFloat ammount)
|
|
|
|
{
|
|
|
|
return Timestamp(Int64(Float64(ammount) * 86400000000LL));
|
|
|
|
}
|
|
|
|
|
|
|
|
// ------------------------------------------------------------------------------------------------
|
|
|
|
static Timestamp SqGetYears(SQFloat ammount)
|
|
|
|
{
|
|
|
|
return Timestamp(Int64(Float64(ammount) * 31557600000000LL));
|
|
|
|
}
|
|
|
|
|
|
|
|
// ================================================================================================
|
2016-03-26 17:18:41 +01:00
|
|
|
void Register_ChronoTimestamp(HSQUIRRELVM vm, Table & /*cns*/)
|
2016-03-25 13:28:07 +01:00
|
|
|
{
|
2016-06-04 21:33:34 +02:00
|
|
|
RootTable(vm).Bind(_SC("SqTimestamp"), Class< Timestamp >(vm, _SC("SqTimestamp"))
|
2016-03-25 13:28:07 +01:00
|
|
|
// Constructors
|
|
|
|
.Ctor()
|
|
|
|
.Ctor< const Timestamp & >()
|
2016-06-03 20:26:19 +02:00
|
|
|
// Core Meta-methods
|
2016-03-25 13:28:07 +01:00
|
|
|
.Func(_SC("_tostring"), &Timestamp::ToString)
|
|
|
|
.Func(_SC("_cmp"), &Timestamp::Cmp)
|
2016-06-03 20:26:19 +02:00
|
|
|
// Meta-methods
|
2016-03-25 13:28:07 +01:00
|
|
|
.Func< Timestamp (Timestamp::*)(const Timestamp &) const >(_SC("_add"), &Timestamp::operator +)
|
|
|
|
.Func< Timestamp (Timestamp::*)(const Timestamp &) const >(_SC("_sub"), &Timestamp::operator -)
|
|
|
|
.Func< Timestamp (Timestamp::*)(const Timestamp &) const >(_SC("_mul"), &Timestamp::operator *)
|
|
|
|
.Func< Timestamp (Timestamp::*)(const Timestamp &) const >(_SC("_div"), &Timestamp::operator /)
|
|
|
|
// Properties
|
|
|
|
.Prop(_SC("Microseconds"), &Timestamp::GetMicroseconds, &Timestamp::SetMicroseconds)
|
|
|
|
.Prop(_SC("MicrosecondsRaw"), &Timestamp::GetMicrosecondsRaw, &Timestamp::SetMicrosecondsRaw)
|
|
|
|
.Prop(_SC("Milliseconds"), &Timestamp::GetMilliseconds, &Timestamp::SetMilliseconds)
|
|
|
|
.Prop(_SC("MillisecondsRaw"), &Timestamp::GetMillisecondsRaw, &Timestamp::SetMillisecondsRaw)
|
|
|
|
.Prop(_SC("SecondsF"), &Timestamp::GetSecondsF, &Timestamp::SetSecondsF)
|
|
|
|
.Prop(_SC("SecondsI"), &Timestamp::GetSecondsI, &Timestamp::SetSecondsI)
|
|
|
|
.Prop(_SC("MinutesF"), &Timestamp::GetMinutesF, &Timestamp::SetMinutesF)
|
|
|
|
.Prop(_SC("MinutesI"), &Timestamp::GetMinutesI, &Timestamp::SetMinutesI)
|
|
|
|
.Prop(_SC("HoursF"), &Timestamp::GetHoursF, &Timestamp::SetHoursF)
|
|
|
|
.Prop(_SC("HoursI"), &Timestamp::GetHoursI, &Timestamp::SetHoursI)
|
|
|
|
.Prop(_SC("DaysF"), &Timestamp::GetDaysF, &Timestamp::SetDaysF)
|
|
|
|
.Prop(_SC("DaysI"), &Timestamp::GetDaysI, &Timestamp::SetDaysI)
|
|
|
|
.Prop(_SC("YearsF"), &Timestamp::GetYearsF, &Timestamp::SetYearsF)
|
|
|
|
.Prop(_SC("YearsI"), &Timestamp::GetYearsI, &Timestamp::SetYearsI)
|
|
|
|
// Member Methods
|
|
|
|
.Func(_SC("SetNow"), &Timestamp::SetNow)
|
|
|
|
// Static Functions
|
|
|
|
.StaticFunc(_SC("GetNow"), &SqGetEpochTimeNow)
|
|
|
|
.StaticFunc(_SC("GetMicrosRaw"), &SqGetMicrosecondsRaw)
|
|
|
|
.StaticFunc(_SC("GetMicrosecondsRaw"), &SqGetMicrosecondsRaw)
|
|
|
|
.StaticFunc(_SC("GetMicros"), &SqGetMicroseconds)
|
|
|
|
.StaticFunc(_SC("GetMicroseconds"), &SqGetMicroseconds)
|
|
|
|
.StaticFunc(_SC("GetMillis"), &SqGetMilliseconds)
|
|
|
|
.StaticFunc(_SC("GetMilliseconds"), &SqGetMilliseconds)
|
|
|
|
.StaticFunc(_SC("GetSeconds"), &SqGetSeconds)
|
|
|
|
.StaticFunc(_SC("GetMinutes"), &SqGetMinutes)
|
|
|
|
.StaticFunc(_SC("GetHours"), &SqGetHours)
|
|
|
|
.StaticFunc(_SC("GetDays"), &SqGetDays)
|
|
|
|
.StaticFunc(_SC("GetYears"), &SqGetYears)
|
|
|
|
);
|
|
|
|
;
|
|
|
|
}
|
|
|
|
|
|
|
|
} // Namespace:: SqMod
|