File: parsefromyear.cc

package info (click to toggle)
bobcat 6.11.00-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 15,292 kB
  • sloc: cpp: 21,370; fortran: 6,507; makefile: 2,787; sh: 724; perl: 401; ansic: 26
file content (32 lines) | stat: -rw-r--r-- 870 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#include "datetime.ih"

    // expects type 4: 2018-12-03 13:29:11+01:00, where d_tm.tm_year (2018)
    // has already been read.

    // spec. 4: 2018-12-03 13:29:11+01:00

void DateTime::Parse::fromYear()
{
    char sep;
    char sign;
    int hours;
    int minutes;

    if (not (
        d_in >> sep >>                      //  -
            d_tm.tm_mon >> sep >>           // 12 -
            d_tm.tm_mday >>                 // 03
            d_tm.tm_hour >> sep >>          // 13 :
            d_tm.tm_min >> sep >>           // 29 :
            d_tm.tm_sec >>                  // 11
            sign >> hours >> sep >> minutes // + 01 : 00
        )
    )
        throw 1;                            // caught by the constructor

    --d_tm.tm_mon;                          // tm_mon: 0-based

    setZoneShift(sign == '-', hours, minutes);

    d_format = 4;
}