summaryrefslogtreecommitdiffstats
path: root/src/relative_time.hh
blob: 73342172b399ceaedbe0fd18ff195ff5f7891686 (plain)
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
/**
 * Copyright (c) 2015, Timothy Stack
 *
 * All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions are met:
 *
 * * Redistributions of source code must retain the above copyright notice, this
 * list of conditions and the following disclaimer.
 * * Redistributions in binary form must reproduce the above copyright notice,
 * this list of conditions and the following disclaimer in the documentation
 * and/or other materials provided with the distribution.
 * * Neither the name of Timothy Stack nor the names of its contributors
 * may be used to endorse or promote products derived from this software
 * without specific prior written permission.
 *
 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ''AS IS'' AND ANY
 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
 * DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE FOR ANY
 * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 */

#ifndef LNAV_RELATIVE_TIME_HH
#define LNAV_RELATIVE_TIME_HH

#include <sys/time.h>

#define __STDC_FORMAT_MACROS
#include <array>
#include <chrono>
#include <set>
#include <string>

#include <inttypes.h>

#include "base/intern_string.hh"
#include "base/result.h"
#include "ptimec.hh"

class relative_time {
public:
    enum token_t {
        RTT_INVALID = -1,

        RTT_WHITE,
        RTT_AM,
        RTT_PM,
        RTT_A,
        RTT_AN,
        RTT_AT,
        RTT_TIME,
        RTT_NUMBER,

        RTT_SUNDAY,
        RTT_MONDAY,
        RTT_TUESDAY,
        RTT_WEDNESDAY,
        RTT_THURSDAY,
        RTT_FRIDAY,
        RTT_SATURDAY,

        RTT_MICROS,
        RTT_MILLIS,
        RTT_SECONDS,
        RTT_MINUTES,
        RTT_HOURS,
        RTT_DAYS,
        RTT_WEEKS,
        RTT_MONTHS,
        RTT_YEARS,
        RTT_TODAY,
        RTT_YESTERDAY,
        RTT_TOMORROW,
        RTT_NOON,
        RTT_AND,
        RTT_THE,
        RTT_AGO,
        RTT_LATER,
        RTT_BEFORE,
        RTT_AFTER,
        RTT_NOW,
        RTT_HERE,
        RTT_NEXT,
        RTT_PREVIOUS,

        RTT__MAX
    };

    enum rt_field_type {
        RTF_MICROSECONDS,
        RTF_SECONDS,
        RTF_MINUTES,
        RTF_HOURS,
        RTF_DAYS,
        RTF_MONTHS,
        RTF_YEARS,

        RTF__MAX
    };

    struct parse_error {
        int pe_column;
        std::string pe_msg;
    };

    static Result<relative_time, parse_error> from_str(string_fragment str);

    static relative_time from_timeval(const struct timeval& tv);

    static relative_time from_usecs(std::chrono::microseconds usecs);

    relative_time() { this->clear(); }

    void clear()
    {
        this->rt_field.fill({});
        this->rt_next = false;
        this->rt_previous = false;
        this->rt_absolute_field_end = 0;
    }

    void negate()
    {
        if (this->is_absolute()) {
            if (this->rt_next) {
                this->rt_next = false;
                this->rt_previous = true;
            } else if (this->rt_previous) {
                this->rt_next = true;
                this->rt_previous = false;
            }
            return;
        }
        for (int lpc = 0; lpc < RTF__MAX; lpc++) {
            if (this->rt_field[lpc].value != 0) {
                this->rt_field[lpc].value = -this->rt_field[lpc].value;
            }
        }
    }

    bool is_negative() const
    {
        if (this->rt_previous) {
            return true;
        }
        for (const auto& rtf : this->rt_field) {
            if (rtf.value < 0) {
                return true;
            }
        }
        return false;
    }

    bool is_absolute() const
    {
        return !this->rt_included_days.empty()
            || this->rt_absolute_field_end > 0;
    }

    bool is_absolute(rt_field_type rft) const
    {
        return rft < this->rt_absolute_field_end;
    }

    bool is_relative() const
    {
        return !this->is_absolute() || this->rt_next || this->rt_previous;
    }

    bool empty() const
    {
        if (!this->rt_included_days.empty()) {
            return false;
        }
        for (const auto& rtf : this->rt_field) {
            if (rtf.is_set) {
                return false;
            }
        }
        return true;
    }

    struct exttm adjust_now() const
    {
        struct exttm tm;
        time_t now;

        time(&now);
        tm.et_tm = *gmtime(&now);
        return this->adjust(tm);
    }

    struct exttm adjust(const struct timeval& tv) const
    {
        struct exttm tm;

        tm.et_tm = *gmtime(&tv.tv_sec);
        tm.et_nsec = tv.tv_usec * 1000;
        return this->adjust(tm);
    }

    struct exttm adjust(const struct exttm& tm) const;

    nonstd::optional<exttm> window_start(const struct exttm& tm) const;

    int64_t to_microseconds() const;

    void to_timeval(struct timeval& tv_out) const
    {
        int64_t us = this->to_microseconds();

        tv_out.tv_sec = us / (1000 * 1000);
        tv_out.tv_usec = us % (1000 * 1000);
    }

    struct timeval to_timeval() const
    {
        int64_t us = this->to_microseconds();
        struct timeval retval;

        retval.tv_sec = us / (1000 * 1000);
        retval.tv_usec = us % (1000 * 1000);
        return retval;
    }

    std::string to_string() const;

    void rollover();

    static const char FIELD_CHARS[RTF__MAX];

    struct _rt_field {
        _rt_field(int64_t value) : value(value), is_set(true) {}

        _rt_field() : value(0), is_set(false) {}

        void clear()
        {
            this->value = 0;
            this->is_set = false;
        }

        int64_t value;
        bool is_set;
    };

    std::array<_rt_field, RTF__MAX> rt_field;
    std::set<token_t> rt_included_days;
    std::chrono::microseconds rt_duration{0};

    bool rt_next;
    bool rt_previous;
    int rt_absolute_field_end;
};

#endif  // LNAV_RELATIVE_TIME_HH