]> git.tdb.fi Git - libs/core.git/blobdiff - source/time/datetime.cpp
Remove deprecated things
[libs/core.git] / source / time / datetime.cpp
index 13fba6332b25d8898abbb76066392b629aa43a19..e8170cc0246d26393b34d2d102d7005aa6d91e2e 100644 (file)
@@ -1,17 +1,9 @@
-/* $Id$
-
-This file is part of libmspcore     
-Copyright © 2006  Mikko Rasa, Mikkosoft Productions
-Distributed under the LGPL
-*/
-
 #include <cstdlib>
-#include <sstream>
-#include <iomanip>
-#include "../core/except.h"
+#include <stdexcept>
+#include <msp/strings/format.h>
+#include <msp/strings/regex.h>
 #include "datetime.h"
 #include "timestamp.h"
-#include "units.h"
 
 using namespace std;
 
@@ -100,17 +92,57 @@ void DateTime::init(int y, unsigned char m, unsigned char d, unsigned char h, un
        usec = u;
 
        if(usec>=1000000)
-               throw InvalidParameterValue("Microseconds out of range");
+               throw out_of_range("DateTime::DateTime usec");
        if(second>=60)
-               throw InvalidParameterValue("Seconds out of range");
+               throw out_of_range("DateTime::DateTime second");
        if(minute>=60)
-               throw InvalidParameterValue("Minutes out of range");
+               throw out_of_range("DateTime::DateTime minute");
        if(hour>=24)
-               throw InvalidParameterValue("Hours out of range");
+               throw out_of_range("DateTime::DateTime hour");
        if(month<1 || month>12)
-               throw InvalidParameterValue("Month out of range");
+               throw out_of_range("DateTime::DateTime month");
        if(mday<1 || mday>month_days(year, month))
-               throw InvalidParameterValue("Day of month out of range");
+               throw out_of_range("DateTime::DateTime mday");
+}
+
+DateTime DateTime::parse_rfc3339(const string &str)
+{
+       static Regex re("^([0-9]{4})-([0-9]{2})-([0-9]{2})T([0-9]{2}):([0-9]{2}):([0-9]{2})(.([0-9]+))?(Z|[-+]([0-9]{2}):([0-9]{2}))$");
+
+       RegMatch m = re.match(str);
+       if(!m)
+               throw invalid_argument("DateTime::parse_rfc3339");
+
+       unsigned year = lexical_cast<unsigned>(m[1].str);
+       unsigned month = lexical_cast<unsigned>(m[2].str);
+       unsigned mday = lexical_cast<unsigned>(m[3].str);
+       unsigned hr = lexical_cast<unsigned>(m[4].str);
+       unsigned minute = lexical_cast<unsigned>(m[5].str);
+       unsigned second = lexical_cast<unsigned>(m[6].str);
+       unsigned us = 0;
+       const string &sec_frac = m[8].str;
+       if(!sec_frac.empty())
+       {
+               us = lexical_cast<unsigned>(sec_frac);
+               for(unsigned i=sec_frac.size(); i<6; ++i)
+                       us *= 10;
+               for(unsigned i=sec_frac.size(); i>6; --i)
+                       us /= 10;
+       }
+
+       DateTime result = DateTime(year, month, mday, hr, minute, second, us);
+
+       int tzoff = 0;
+       if(m[9].str!="Z")
+       {
+               tzoff = lexical_cast<unsigned>(m[10].str)*60+lexical_cast<unsigned>(m[11].str);
+               if(m[9].str[0]=='-')
+                       tzoff = -tzoff;
+       }
+
+       result.set_timezone(tzoff);
+
+       return result;
 }
 
 void DateTime::add_days(int days)
@@ -129,7 +161,7 @@ void DateTime::add_days(int days)
        }
 
        // Fudge factor for leap day
-       int fudge = (month<=2)?1:0;
+       int fudge = (month<=2) ? 1 : 0;
 
        // (Almost) every 4 year cycle has 1 leap year and 3 normal years
        unsigned cycles = days/1461;
@@ -151,12 +183,12 @@ void DateTime::add_days(int days)
 
        new_year += cycles;
 
-       if((year-fudge)%4+cycles>=4)
+       if((year-fudge)%4+cycles>=4 && (new_year%100>=4 || new_year%400<4))
        {
                // We passed a leap year - decrement days
                if(days==0)
                {
-                       days = is_leap_year(new_year-fudge)?365:364;
+                       days = is_leap_year(new_year-fudge) ? 365 : 364;
                        --new_year;
                }
                else
@@ -187,7 +219,7 @@ void DateTime::set_timezone(const TimeZone &tz)
 
 void DateTime::convert_timezone(const TimeZone &tz)
 {
-       add_raw((zone.get_offset()-tz.get_offset()).raw());
+       add_raw((tz.get_offset()-zone.get_offset()).raw());
        zone = tz;
 }
 
@@ -239,7 +271,7 @@ int DateTime::cmp(const DateTime &dt) const
 TimeStamp DateTime::get_timestamp() const
 {
        if(year<-289701 || year>293641)
-               throw InvalidState("DateTime is not representable as a TimeStamp");
+               throw range_error("DateTime::get_timestamp");
 
        RawTime raw = (((hour*60LL)+minute)*60+second)*1000000+usec;
        int days = (year-1970)*365;
@@ -255,8 +287,7 @@ TimeStamp DateTime::get_timestamp() const
 
 string DateTime::format(const string &fmt) const
 {
-       ostringstream ss;
-       ss.fill('0');
+       string result;
        for(string::const_iterator i=fmt.begin(); i!=fmt.end(); ++i)
        {
                if(*i=='%')
@@ -265,43 +296,42 @@ string DateTime::format(const string &fmt) const
                        if(i==fmt.end())
                                break;
                        else if(*i=='d')
-                               ss<<setw(2)<<int(mday);
+                               result += Msp::format("%02d", mday);
                        else if(*i=='H')
-                               ss<<setw(2)<<int(hour);
+                               result += Msp::format("%02d", hour);
                        else if(*i=='I')
-                               ss<<setw(2)<<hour%12;
+                               result += Msp::format("%02d", hour%12);
                        else if(*i=='m')
-                               ss<<setw(2)<<int(month);
+                               result += Msp::format("%02d", month);
                        else if(*i=='M')
-                               ss<<setw(2)<<int(minute);
+                               result += Msp::format("%02d", minute);
                        else if(*i=='p')
-                               ss<<((hour>=12) ? "PM" : "AM");
+                               result += ((hour>=12) ? "PM" : "AM");
                        else if(*i=='S')
-                               ss<<setw(2)<<int(second);
+                               result += Msp::format("%02d", second);
                        else if(*i=='y')
-                               ss<<setw(2)<<year%100;
+                               result += Msp::format("%02d", year%100);
                        else if(*i=='Y')
-                               ss<<setw(4)<<internal<<year;
+                               result += Msp::format("%04d", year);
                        else if(*i=='%')
-                               ss<<'%';
+                               result += '%';
                }
                else
-                       ss<<*i;
+                       result += *i;
        }
 
-       return ss.str();
+       return result;
 }
 
 string DateTime::format_rfc3339() const
 {
        string result = format("%Y-%m-%dT%H:%M:%S");
+       if(usec)
+               result += Msp::format(".%06d", usec);
        if(const TimeDelta &offs = zone.get_offset())
        {
-               ostringstream ss;
-               ss.fill('0');
                int m = abs(static_cast<int>(offs/Time::min));
-               ss<<(offs<zero ? '+' : '-')<<setw(2)<<m/60<<':'<<setw(2)<<m%60;
-               result += ss.str();
+               result += Msp::format("%c%02d:%02d", (offs<zero ? '-' : '+'), m/60, m%60);
        }
        else
                result += 'Z';
@@ -318,10 +348,10 @@ void DateTime::add_raw(RawTime raw)
                raw += 86400000000LL;
        }
 
-       usec+=raw%1000000; raw /= 1000000;
-       second+=raw%60;    raw /= 60;
-       minute+=raw%60;    raw /= 60;
-       hour+=raw%24;      raw /= 24;
+       usec += raw%1000000; raw /= 1000000;
+       second += raw%60;    raw /= 60;
+       minute += raw%60;    raw /= 60;
+       hour += raw%24;      raw /= 24;
 
        add_days(days);
        normalize();