📄 qscriptecmadate.cpp
字号:
/******************************************************************************** Copyright (C) 1992-2007 Trolltech ASA. All rights reserved.**** This file is part of the QtScript module of the Qt Toolkit.**** This file may be used under the terms of the GNU General Public** License version 2.0 as published by the Free Software Foundation** and appearing in the file LICENSE.GPL included in the packaging of** this file. Please review the following information to ensure GNU** General Public Licensing requirements will be met:** http://trolltech.com/products/qt/licenses/licensing/opensource/**** If you are unsure which license is appropriate for your use, please** review the following information:** http://trolltech.com/products/qt/licenses/licensing/licensingoverview** or contact the sales department at sales@trolltech.com.**** In addition, as a special exception, Trolltech gives you certain** additional rights. These rights are described in the Trolltech GPL** Exception version 1.0, which can be found at** http://www.trolltech.com/products/qt/gplexception/ and in the file** GPL_EXCEPTION.txt in this package.**** In addition, as a special exception, Trolltech, as the sole copyright** holder for Qt Designer, grants users of the Qt/Eclipse Integration** plug-in the right for the Qt/Eclipse Integration to link to** functionality provided by Qt Designer and its related libraries.**** Trolltech reserves all rights not expressly granted herein.**** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.******************************************************************************/#include "qscriptecmadate_p.h"#ifndef QT_NO_SCRIPT#include "qscriptengine_p.h"#include "qscriptvalueimpl_p.h"#include "qscriptcontext_p.h"#include "qscriptmember_p.h"#include "qscriptobject_p.h"#include <QtCore/QDateTime>#include <QtCore/QRegExp>#include <QtCore/QtDebug>#include <QtCore/QLocale>#include <QtCore/qnumeric.h>#include <math.h>#ifndef Q_WS_WIN#include <time.h>#include <sys/time.h>#else#include <windows.h>#endifstatic const qsreal HoursPerDay = 24.0;static const qsreal MinutesPerHour = 60.0;static const qsreal SecondsPerMinute = 60.0;static const qsreal msPerSecond = 1000.0;static const qsreal msPerMinute = 60000.0;static const qsreal msPerHour = 3600000.0;static const qsreal msPerDay = 86400000.0;static qsreal LocalTZA = 0.0; // initialized at startupstatic inline qsreal TimeWithinDay(qsreal t){ qsreal r = ::fmod(t, msPerDay); return (r >= 0) ? r : r + msPerDay;}static inline int HourFromTime(qsreal t){ int r = int(::fmod(::floor(t / msPerHour), HoursPerDay)); return (r >= 0) ? r : r + int(HoursPerDay);}static inline int MinFromTime(qsreal t){ int r = int(::fmod(::floor(t / msPerMinute), MinutesPerHour)); return (r >= 0) ? r : r + int(MinutesPerHour);}static inline int SecFromTime(qsreal t){ int r = int(::fmod(::floor(t / msPerSecond), SecondsPerMinute)); return (r >= 0) ? r : r + int(SecondsPerMinute);}static inline int msFromTime(qsreal t){ int r = int(::fmod(t, msPerSecond)); return (r >= 0) ? r : r + int(msPerSecond);}static inline qsreal Day(qsreal t){ return ::floor(t / msPerDay);}static inline qsreal DaysInYear(qsreal y){ if (::fmod(y, 4)) return 365; else if (::fmod(y, 100)) return 366; else if (::fmod(y, 400)) return 365; return 366;}static inline qsreal DayFromYear(qsreal y){ return 365 * (y - 1970) + ::floor((y - 1969) / 4) - ::floor((y - 1901) / 100) + ::floor((y - 1601) / 400);}static inline qsreal TimeFromYear(qsreal y){ return msPerDay * DayFromYear(y);}static inline qsreal YearFromTime(qsreal t){ int y = 1970; y += (int) ::floor(t / (msPerDay * 365.2425)); qsreal t2 = TimeFromYear(y); return (t2 > t) ? y - 1 : ((t2 + msPerDay * DaysInYear(y)) <= t) ? y + 1 : y;}static inline bool InLeapYear(qsreal t){ qsreal x = DaysInYear(YearFromTime(t)); if (x == 365) return 0; Q_ASSERT (x == 366); return 1;}static inline qsreal DayWithinYear(qsreal t){ return Day(t) - DayFromYear(YearFromTime(t));}static inline qsreal MonthFromTime(qsreal t){ qsreal d = DayWithinYear(t); qsreal l = InLeapYear(t); if (d < 31.0) return 0; else if (d < 59.0 + l) return 1; else if (d < 90.0 + l) return 2; else if (d < 120.0 + l) return 3; else if (d < 151.0 + l) return 4; else if (d < 181.0 + l) return 5; else if (d < 212.0 + l) return 6; else if (d < 243.0 + l) return 7; else if (d < 273.0 + l) return 8; else if (d < 304.0 + l) return 9; else if (d < 334.0 + l) return 10; else if (d < 365.0 + l) return 11; return qSNaN(); // ### assert?}static inline qsreal DateFromTime(qsreal t){ int m = (int) QScriptEnginePrivate::toInteger(MonthFromTime(t)); qsreal d = DayWithinYear(t); qsreal l = InLeapYear(t); switch (m) { case 0: return d + 1.0; case 1: return d - 30.0; case 2: return d - 58.0 - l; case 3: return d - 89.0 - l; case 4: return d - 119.0 - l; case 5: return d - 150.0 - l; case 6: return d - 180.0 - l; case 7: return d - 211.0 - l; case 8: return d - 242.0 - l; case 9: return d - 272.0 - l; case 10: return d - 303.0 - l; case 11: return d - 333.0 - l; } return qSNaN(); // ### assert}static inline qsreal WeekDay(qsreal t){ qsreal r = ::fmod (Day(t) + 4.0, 7.0); return (r >= 0) ? r : r + 7.0;}static inline qsreal MakeTime(qsreal hour, qsreal min, qsreal sec, qsreal ms){ return ((hour * MinutesPerHour + min) * SecondsPerMinute + sec) * msPerSecond + ms;}static inline qsreal DayFromMonth(qsreal month, qsreal leap){ switch ((int) month) { case 0: return 0; case 1: return 31.0; case 2: return 59.0 + leap; case 3: return 90.0 + leap; case 4: return 120.0 + leap; case 5: return 151.0 + leap; case 6: return 181.0 + leap; case 7: return 212.0 + leap; case 8: return 243.0 + leap; case 9: return 273.0 + leap; case 10: return 304.0 + leap; case 11: return 334.0 + leap; } return qSNaN(); // ### assert?}static qsreal MakeDay(qsreal year, qsreal month, qsreal day){ year += ::floor(month / 12.0); month = ::fmod(month, 12.0); if (month < 0) month += 12.0; qsreal t = TimeFromYear(year); qsreal leap = InLeapYear(t); day += ::floor(t / msPerDay); day += DayFromMonth(month, leap); return day - 1;}static inline qsreal MakeDate(qsreal day, qsreal time){ return day * msPerDay + time;}static inline qsreal DaylightSavingTA(double t){#ifndef Q_WS_WIN long int tt = (long int)(t / msPerSecond); struct tm *tmtm = localtime((const time_t*)&tt); if (! tmtm) return 0; return (tmtm->tm_isdst > 0) ? msPerHour : 0;#else Q_UNUSED(t); /// ### implement me return 0;#endif}static inline qsreal LocalTime(qsreal t){ return t + LocalTZA + DaylightSavingTA(t);}static inline qsreal UTC(qsreal t){ return t - LocalTZA - DaylightSavingTA(t - LocalTZA);}static inline qsreal currentTime(){#ifndef Q_WS_WIN struct timeval tv; gettimeofday(&tv, 0); return ::floor(tv.tv_sec * msPerSecond + (tv.tv_usec / 1000.0));
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -