/* ============================================================================== This file is part of the JUCE library. Copyright (c) 2016 - ROLI Ltd. Permission is granted to use this software under the terms of the ISC license http://www.isc.org/downloads/software-support-policy/isc-license/ Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies. THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. ----------------------------------------------------------------------------- To release a closed-source product which uses other parts of JUCE not licensed under the ISC terms, commercial licenses are available: visit www.juce.com for more information. ============================================================================== */ namespace TimeHelpers { #if 0 static std::tm millisToLocal (int64 millis) noexcept { #if JUCE_WINDOWS && JUCE_MINGW time_t now = (time_t) (millis / 1000); return *localtime (&now); #elif JUCE_WINDOWS std::tm result; millis /= 1000; if (_localtime64_s (&result, &millis) != 0) zerostruct (result); return result; #else std::tm result; time_t now = (time_t) (millis / 1000); if (localtime_r (&now, &result) == nullptr) zerostruct (result); return result; #endif } static std::tm millisToUTC (int64 millis) noexcept { #if JUCE_WINDOWS && JUCE_MINGW time_t now = (time_t) (millis / 1000); return *gmtime (&now); #elif JUCE_WINDOWS std::tm result; millis /= 1000; if (_gmtime64_s (&result, &millis) != 0) zerostruct (result); return result; #else std::tm result; time_t now = (time_t) (millis / 1000); if (gmtime_r (&now, &result) == nullptr) zerostruct (result); return result; #endif } static int getUTCOffsetSeconds (const int64 millis) noexcept { std::tm utc = millisToUTC (millis); utc.tm_isdst = -1; // Treat this UTC time as local to find the offset return (int) ((millis / 1000) - (int64) mktime (&utc)); } static int extendedModulo (const int64 value, const int modulo) noexcept { return (int) (value >= 0 ? (value % modulo) : (value - ((value / modulo) + 1) * modulo)); } static inline String formatString (const String& format, const std::tm* const tm) { #if JUCE_ANDROID typedef CharPointer_UTF8 StringType; #elif JUCE_WINDOWS typedef CharPointer_UTF16 StringType; #else typedef CharPointer_UTF32 StringType; #endif #ifdef JUCE_MSVC if (tm->tm_year < -1900 || tm->tm_year > 8099) return String(); // Visual Studio's library can only handle 0 -> 9999 AD #endif for (size_t bufferSize = 256; ; bufferSize += 256) { HeapBlock buffer (bufferSize); const size_t numChars = #if JUCE_ANDROID strftime (buffer, bufferSize - 1, format.toUTF8(), tm); #elif JUCE_WINDOWS wcsftime (buffer, bufferSize - 1, format.toWideCharPointer(), tm); #else wcsftime (buffer, bufferSize - 1, format.toUTF32(), tm); #endif if (numChars > 0 || format.isEmpty()) return String (StringType (buffer), StringType (buffer) + (int) numChars); } } //============================================================================== static inline bool isLeapYear (int year) noexcept { return (year % 400 == 0) || ((year % 100 != 0) && (year % 4 == 0)); } static inline int daysFromJan1 (int year, int month) noexcept { const short dayOfYear[] = { 0, 31, 59, 90, 120, 151, 181, 212, 243, 273, 304, 334, 0, 31, 60, 91, 121, 152, 182, 213, 244, 274, 305, 335 }; return dayOfYear [(isLeapYear (year) ? 12 : 0) + month]; } static inline int64 daysFromYear0 (int year) noexcept { --year; return 365 * year + (year / 400) - (year / 100) + (year / 4); } static inline int64 daysFrom1970 (int year) noexcept { return daysFromYear0 (year) - daysFromYear0 (1970); } static inline int64 daysFrom1970 (int year, int month) noexcept { if (month > 11) { year += month / 12; month %= 12; } else if (month < 0) { const int numYears = (11 - month) / 12; year -= numYears; month += 12 * numYears; } return daysFrom1970 (year) + daysFromJan1 (year, month); } // There's no posix function that does a UTC version of mktime, // so annoyingly we need to implement this manually.. static inline int64 mktime_utc (const std::tm& t) noexcept { return 24 * 3600 * (daysFrom1970 (t.tm_year + 1900, t.tm_mon) + (t.tm_mday - 1)) + 3600 * t.tm_hour + 60 * t.tm_min + t.tm_sec; } #endif static uint32 lastMSCounterValue = 0; } //============================================================================== Time::Time() noexcept : millisSinceEpoch (0) { } Time::Time (const Time& other) noexcept : millisSinceEpoch (other.millisSinceEpoch) { } Time::Time (const int64 ms) noexcept : millisSinceEpoch (ms) { } #if 0 Time::Time (const int year, const int month, const int day, const int hours, const int minutes, const int seconds, const int milliseconds, const bool useLocalTime) noexcept { std::tm t; t.tm_year = year - 1900; t.tm_mon = month; t.tm_mday = day; t.tm_hour = hours; t.tm_min = minutes; t.tm_sec = seconds; t.tm_isdst = -1; millisSinceEpoch = 1000 * (useLocalTime ? (int64) mktime (&t) : TimeHelpers::mktime_utc (t)) + milliseconds; } #endif Time::~Time() noexcept { } Time& Time::operator= (const Time& other) noexcept { millisSinceEpoch = other.millisSinceEpoch; return *this; } //============================================================================== int64 Time::currentTimeMillis() noexcept { struct timeval tv; gettimeofday (&tv, nullptr); return ((int64) tv.tv_sec) * 1000 + tv.tv_usec / 1000; } #if 0 Time JUCE_CALLTYPE Time::getCurrentTime() noexcept { return Time (currentTimeMillis()); } #endif //============================================================================== static uint32 juce_millisecondsSinceStartup() noexcept { #ifdef CARLA_OS_WIN return (uint32) timeGetTime(); #else timespec t; clock_gettime (CLOCK_MONOTONIC, &t); return (uint32) (t.tv_sec * 1000 + t.tv_nsec / 1000000); #endif } uint32 Time::getMillisecondCounter() noexcept { const uint32 now = juce_millisecondsSinceStartup(); if (now < TimeHelpers::lastMSCounterValue) { // in multi-threaded apps this might be called concurrently, so // make sure that our last counter value only increases and doesn't // go backwards.. if (now < TimeHelpers::lastMSCounterValue - 1000) TimeHelpers::lastMSCounterValue = now; } else { TimeHelpers::lastMSCounterValue = now; } return now; } uint32 Time::getApproximateMillisecondCounter() noexcept { if (TimeHelpers::lastMSCounterValue == 0) getMillisecondCounter(); return TimeHelpers::lastMSCounterValue; } #if 0 void Time::waitForMillisecondCounter (const uint32 targetTime) noexcept { for (;;) { const uint32 now = getMillisecondCounter(); if (now >= targetTime) break; const int toWait = (int) (targetTime - now); if (toWait > 2) { Thread::sleep (jmin (20, toWait >> 1)); } else { // xxx should consider using mutex_pause on the mac as it apparently // makes it seem less like a spinlock and avoids lowering the thread pri. for (int i = 10; --i >= 0;) Thread::yield(); } } } //============================================================================== double Time::highResolutionTicksToSeconds (const int64 ticks) noexcept { return ticks / (double) getHighResolutionTicksPerSecond(); } int64 Time::secondsToHighResolutionTicks (const double seconds) noexcept { return (int64) (seconds * (double) getHighResolutionTicksPerSecond()); } //============================================================================== String Time::toString (const bool includeDate, const bool includeTime, const bool includeSeconds, const bool use24HourClock) const noexcept { String result; if (includeDate) { result << getDayOfMonth() << ' ' << getMonthName (true) << ' ' << getYear(); if (includeTime) result << ' '; } if (includeTime) { const int mins = getMinutes(); result << (use24HourClock ? getHours() : getHoursInAmPmFormat()) << (mins < 10 ? ":0" : ":") << mins; if (includeSeconds) { const int secs = getSeconds(); result << (secs < 10 ? ":0" : ":") << secs; } if (! use24HourClock) result << (isAfternoon() ? "pm" : "am"); } return result.trimEnd(); } String Time::formatted (const String& format) const { std::tm t (TimeHelpers::millisToLocal (millisSinceEpoch)); return TimeHelpers::formatString (format, &t); } //============================================================================== int Time::getYear() const noexcept { return TimeHelpers::millisToLocal (millisSinceEpoch).tm_year + 1900; } int Time::getMonth() const noexcept { return TimeHelpers::millisToLocal (millisSinceEpoch).tm_mon; } int Time::getDayOfYear() const noexcept { return TimeHelpers::millisToLocal (millisSinceEpoch).tm_yday; } int Time::getDayOfMonth() const noexcept { return TimeHelpers::millisToLocal (millisSinceEpoch).tm_mday; } int Time::getDayOfWeek() const noexcept { return TimeHelpers::millisToLocal (millisSinceEpoch).tm_wday; } int Time::getHours() const noexcept { return TimeHelpers::millisToLocal (millisSinceEpoch).tm_hour; } int Time::getMinutes() const noexcept { return TimeHelpers::millisToLocal (millisSinceEpoch).tm_min; } int Time::getSeconds() const noexcept { return TimeHelpers::extendedModulo (millisSinceEpoch / 1000, 60); } int Time::getMilliseconds() const noexcept { return TimeHelpers::extendedModulo (millisSinceEpoch, 1000); } int Time::getHoursInAmPmFormat() const noexcept { const int hours = getHours(); if (hours == 0) return 12; if (hours <= 12) return hours; return hours - 12; } bool Time::isAfternoon() const noexcept { return getHours() >= 12; } bool Time::isDaylightSavingTime() const noexcept { return TimeHelpers::millisToLocal (millisSinceEpoch).tm_isdst != 0; } String Time::getTimeZone() const noexcept { String zone[2]; #if JUCE_WINDOWS #if JUCE_MSVC || JUCE_CLANG _tzset(); for (int i = 0; i < 2; ++i) { char name[128] = { 0 }; size_t length; _get_tzname (&length, name, 127, i); zone[i] = name; } #else #warning "Can't find a replacement for tzset on mingw - ideas welcome!" #endif #else tzset(); const char** const zonePtr = (const char**) tzname; zone[0] = zonePtr[0]; zone[1] = zonePtr[1]; #endif if (isDaylightSavingTime()) { zone[0] = zone[1]; if (zone[0].length() > 3 && zone[0].containsIgnoreCase ("daylight") && zone[0].contains ("GMT")) zone[0] = "BST"; } return zone[0].substring (0, 3); } int Time::getUTCOffsetSeconds() const noexcept { return TimeHelpers::getUTCOffsetSeconds (millisSinceEpoch); } String Time::getUTCOffsetString (bool includeSemiColon) const { if (int seconds = getUTCOffsetSeconds()) { const int minutes = seconds / 60; return String::formatted (includeSemiColon ? "%+03d:%02d" : "%+03d%02d", minutes / 60, minutes % 60); } return "Z"; } String Time::toISO8601 (bool includeDividerCharacters) const { return String::formatted (includeDividerCharacters ? "%04d-%02d-%02dT%02d:%02d:%06.03f" : "%04d%02d%02dT%02d%02d%06.03f", getYear(), getMonth() + 1, getDayOfMonth(), getHours(), getMinutes(), getSeconds() + getMilliseconds() / 1000.0) + getUTCOffsetString (includeDividerCharacters); } static int parseFixedSizeIntAndSkip (String::CharPointerType& t, int numChars, char charToSkip) noexcept { int n = 0; for (int i = numChars; --i >= 0;) { const int digit = (int) (*t - '0'); if (! isPositiveAndBelow (digit, 10)) return -1; ++t; n = n * 10 + digit; } if (charToSkip != 0 && *t == (juce_wchar) charToSkip) ++t; return n; } Time Time::fromISO8601 (StringRef iso) noexcept { String::CharPointerType t = iso.text; const int year = parseFixedSizeIntAndSkip (t, 4, '-'); if (year < 0) return Time(); const int month = parseFixedSizeIntAndSkip (t, 2, '-'); if (month < 0) return Time(); const int day = parseFixedSizeIntAndSkip (t, 2, 0); if (day < 0) return Time(); int hours = 0, minutes = 0, milliseconds = 0; if (*t == 'T') { ++t; hours = parseFixedSizeIntAndSkip (t, 2, ':'); if (hours < 0) return Time(); minutes = parseFixedSizeIntAndSkip (t, 2, ':'); if (minutes < 0) return Time(); milliseconds = (int) (1000.0 * CharacterFunctions::readDoubleValue (t)); } const juce_wchar nextChar = t.getAndAdvance(); if (nextChar == '-' || nextChar == '+') { const int offsetHours = parseFixedSizeIntAndSkip (t, 2, ':'); if (offsetHours < 0) return Time(); const int offsetMinutes = parseFixedSizeIntAndSkip (t, 2, 0); if (offsetMinutes < 0) return Time(); const int offsetMs = (offsetHours * 60 + offsetMinutes) * 60 * 1000; milliseconds += nextChar == '-' ? offsetMs : -offsetMs; // NB: this seems backwards but is correct! } else if (nextChar != 0 && nextChar != 'Z') { return Time(); } return Time (year, month - 1, day, hours, minutes, 0, milliseconds, false); } String Time::getMonthName (const bool threeLetterVersion) const { return getMonthName (getMonth(), threeLetterVersion); } String Time::getWeekdayName (const bool threeLetterVersion) const { return getWeekdayName (getDayOfWeek(), threeLetterVersion); } static const char* const shortMonthNames[] = { "Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec" }; static const char* const longMonthNames[] = { "January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December" }; String Time::getMonthName (int monthNumber, const bool threeLetterVersion) { monthNumber %= 12; return TRANS (threeLetterVersion ? shortMonthNames [monthNumber] : longMonthNames [monthNumber]); } String Time::getWeekdayName (int day, const bool threeLetterVersion) { static const char* const shortDayNames[] = { "Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat" }; static const char* const longDayNames[] = { "Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday" }; day %= 7; return TRANS (threeLetterVersion ? shortDayNames [day] : longDayNames [day]); } //============================================================================== Time& Time::operator+= (RelativeTime delta) noexcept { millisSinceEpoch += delta.inMilliseconds(); return *this; } Time& Time::operator-= (RelativeTime delta) noexcept { millisSinceEpoch -= delta.inMilliseconds(); return *this; } Time operator+ (Time time, RelativeTime delta) noexcept { Time t (time); return t += delta; } Time operator- (Time time, RelativeTime delta) noexcept { Time t (time); return t -= delta; } Time operator+ (RelativeTime delta, Time time) noexcept { Time t (time); return t += delta; } const RelativeTime operator- (Time time1, Time time2) noexcept { return RelativeTime::milliseconds (time1.toMilliseconds() - time2.toMilliseconds()); } bool operator== (Time time1, Time time2) noexcept { return time1.toMilliseconds() == time2.toMilliseconds(); } bool operator!= (Time time1, Time time2) noexcept { return time1.toMilliseconds() != time2.toMilliseconds(); } bool operator< (Time time1, Time time2) noexcept { return time1.toMilliseconds() < time2.toMilliseconds(); } bool operator> (Time time1, Time time2) noexcept { return time1.toMilliseconds() > time2.toMilliseconds(); } bool operator<= (Time time1, Time time2) noexcept { return time1.toMilliseconds() <= time2.toMilliseconds(); } bool operator>= (Time time1, Time time2) noexcept { return time1.toMilliseconds() >= time2.toMilliseconds(); } static int getMonthNumberForCompileDate (const String& m) noexcept { for (int i = 0; i < 12; ++i) if (m.equalsIgnoreCase (shortMonthNames[i])) return i; // If you hit this because your compiler has an unusual __DATE__ // format, let us know so we can add support for it! jassertfalse; return 0; } Time Time::getCompilationDate() { StringArray dateTokens, timeTokens; dateTokens.addTokens (__DATE__, true); dateTokens.removeEmptyStrings (true); timeTokens.addTokens (__TIME__, ":", StringRef()); return Time (dateTokens[2].getIntValue(), getMonthNumberForCompileDate (dateTokens[0]), dateTokens[1].getIntValue(), timeTokens[0].getIntValue(), timeTokens[1].getIntValue()); } #endif