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 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325
|
/* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include <stdio.h>
#include <apr_lib.h>
#include <apr_strings.h>
#include <apr_time.h>
#include "md.h"
#include "md_time.h"
apr_time_t md_timeperiod_length(const md_timeperiod_t *period)
{
return (period->start < period->end)? (period->end - period->start) : 0;
}
int md_timeperiod_contains(const md_timeperiod_t *period, apr_time_t time)
{
return md_timeperiod_has_started(period, time)
&& !md_timeperiod_has_ended(period, time);
}
int md_timeperiod_has_started(const md_timeperiod_t *period, apr_time_t time)
{
return (time >= period->start);
}
int md_timeperiod_has_ended(const md_timeperiod_t *period, apr_time_t time)
{
return (time >= period->start) && (time <= period->end);
}
apr_interval_time_t md_timeperiod_remaining(const md_timeperiod_t *period, apr_time_t time)
{
if (time < period->start) return md_timeperiod_length(period);
if (time < period->end) return period->end - time;
return 0;
}
char *md_timeperiod_print(apr_pool_t *p, const md_timeperiod_t *period)
{
char tstart[APR_RFC822_DATE_LEN];
char tend[APR_RFC822_DATE_LEN];
apr_rfc822_date(tstart, period->start);
apr_rfc822_date(tend, period->end);
return apr_pstrcat(p, tstart, " - ", tend, NULL);
}
static const char *duration_print(apr_pool_t *p, int roughly, apr_interval_time_t duration)
{
const char *s = "", *sep = "";
long days = (long)(apr_time_sec(duration) / MD_SECS_PER_DAY);
int rem = (int)(apr_time_sec(duration) % MD_SECS_PER_DAY);
s = roughly? "~" : "";
if (days > 0) {
s = apr_psprintf(p, "%s%ld days", s, days);
if (roughly) return s;
sep = " ";
}
if (rem > 0) {
int hours = (rem / MD_SECS_PER_HOUR);
rem = (rem % MD_SECS_PER_HOUR);
if (hours > 0) {
s = apr_psprintf(p, "%s%s%d hours", s, sep, hours);
if (roughly) return s;
sep = " ";
}
if (rem > 0) {
int minutes = (rem / 60);
rem = (rem % 60);
if (minutes > 0) {
s = apr_psprintf(p, "%s%s%d minutes", s, sep, minutes);
if (roughly) return s;
sep = " ";
}
if (rem > 0) {
s = apr_psprintf(p, "%s%s%d seconds", s, sep, rem);
if (roughly) return s;
sep = " ";
}
}
}
else if (days == 0) {
s = "0 seconds";
if (duration != 0) {
s = apr_psprintf(p, "%d ms", (int)apr_time_msec(duration));
}
}
return s;
}
const char *md_duration_print(apr_pool_t *p, apr_interval_time_t duration)
{
return duration_print(p, 0, duration);
}
const char *md_duration_roughly(apr_pool_t *p, apr_interval_time_t duration)
{
return duration_print(p, 1, duration);
}
static const char *duration_format(apr_pool_t *p, apr_interval_time_t duration)
{
const char *s = "0";
int units = (int)(apr_time_sec(duration) / MD_SECS_PER_DAY);
int rem = (int)(apr_time_sec(duration) % MD_SECS_PER_DAY);
if (rem == 0) {
s = apr_psprintf(p, "%dd", units);
}
else {
units = (int)(apr_time_sec(duration) / MD_SECS_PER_HOUR);
rem = (int)(apr_time_sec(duration) % MD_SECS_PER_HOUR);
if (rem == 0) {
s = apr_psprintf(p, "%dh", units);
}
else {
units = (int)(apr_time_sec(duration) / 60);
rem = (int)(apr_time_sec(duration) % 60);
if (rem == 0) {
s = apr_psprintf(p, "%dmi", units);
}
else {
units = (int)(apr_time_sec(duration));
rem = (int)(apr_time_msec(duration) % 1000);
if (rem == 0) {
s = apr_psprintf(p, "%ds", units);
}
else {
s = apr_psprintf(p, "%dms", (int)(apr_time_msec(duration)));
}
}
}
}
return s;
}
const char *md_duration_format(apr_pool_t *p, apr_interval_time_t duration)
{
return duration_format(p, duration);
}
apr_status_t md_duration_parse(apr_interval_time_t *ptimeout, const char *value,
const char *def_unit)
{
char *endp;
apr_int64_t n;
n = apr_strtoi64(value, &endp, 10);
if (errno) {
return errno;
}
if (!endp || !*endp) {
if (!def_unit) def_unit = "s";
}
else if (endp == value) {
return APR_EINVAL;
}
else {
def_unit = endp;
}
switch (*def_unit) {
case 'D':
case 'd':
*ptimeout = apr_time_from_sec(n * MD_SECS_PER_DAY);
break;
case 's':
case 'S':
*ptimeout = (apr_interval_time_t) apr_time_from_sec(n);
break;
case 'h':
case 'H':
/* Time is in hours */
*ptimeout = (apr_interval_time_t) apr_time_from_sec(n * MD_SECS_PER_HOUR);
break;
case 'm':
case 'M':
switch (*(++def_unit)) {
/* Time is in milliseconds */
case 's':
case 'S':
*ptimeout = (apr_interval_time_t) n * 1000;
break;
/* Time is in minutes */
case 'i':
case 'I':
*ptimeout = (apr_interval_time_t) apr_time_from_sec(n * 60);
break;
default:
return APR_EGENERAL;
}
break;
default:
return APR_EGENERAL;
}
return APR_SUCCESS;
}
static apr_status_t percentage_parse(const char *value, int *ppercent)
{
char *endp;
apr_int64_t n;
n = apr_strtoi64(value, &endp, 10);
if (errno) {
return errno;
}
if (*endp == '%') {
if (n < 0) {
return APR_BADARG;
}
*ppercent = (int)n;
return APR_SUCCESS;
}
return APR_EINVAL;
}
apr_status_t md_timeslice_create(md_timeslice_t **pts, apr_pool_t *p,
apr_interval_time_t norm, apr_interval_time_t len)
{
md_timeslice_t *ts;
ts = apr_pcalloc(p, sizeof(*ts));
ts->norm = norm;
ts->len = len;
*pts = ts;
return APR_SUCCESS;
}
const char *md_timeslice_parse(md_timeslice_t **pts, apr_pool_t *p,
const char *val, apr_interval_time_t norm)
{
md_timeslice_t *ts;
int percent = 0;
*pts = NULL;
if (!val) {
return "cannot parse NULL value";
}
ts = apr_pcalloc(p, sizeof(*ts));
if (md_duration_parse(&ts->len, val, "d") == APR_SUCCESS) {
*pts = ts;
return NULL;
}
else {
switch (percentage_parse(val, &percent)) {
case APR_SUCCESS:
ts->norm = norm;
ts->len = apr_time_from_sec((apr_time_sec(norm) * percent / 100L));
*pts = ts;
return NULL;
case APR_BADARG:
return "percent must be less than 100";
}
}
return "has unrecognized format";
}
const char *md_timeslice_format(const md_timeslice_t *ts, apr_pool_t *p) {
if (ts->norm > 0) {
int percent = (int)(((long)apr_time_sec(ts->len)) * 100L
/ ((long)apr_time_sec(ts->norm)));
return apr_psprintf(p, "%d%%", percent);
}
return duration_format(p, ts->len);
}
md_timeperiod_t md_timeperiod_slice_before_end(const md_timeperiod_t *period,
const md_timeslice_t *ts)
{
md_timeperiod_t r;
apr_time_t duration = ts->len;
if (ts->norm > 0) {
int percent = (int)(((long)apr_time_sec(ts->len)) * 100L
/ ((long)apr_time_sec(ts->norm)));
apr_time_t plen = md_timeperiod_length(period);
if (apr_time_sec(plen) > 100) {
duration = apr_time_from_sec(apr_time_sec(plen) * percent / 100);
}
else {
duration = plen * percent / 100;
}
}
r.start = period->end - duration;
r.end = period->end;
return r;
}
int md_timeslice_eq(const md_timeslice_t *ts1, const md_timeslice_t *ts2)
{
if (ts1 == ts2) return 1;
if (!ts1 || !ts2) return 0;
return (ts1->norm == ts2->norm) && (ts1->len == ts2->len);
}
md_timeperiod_t md_timeperiod_common(const md_timeperiod_t *a, const md_timeperiod_t *b)
{
md_timeperiod_t c;
c.start = (a->start > b->start)? a->start : b->start;
c.end = (a->end < b->end)? a->end : b->end;
if (c.start > c.end) {
c.start = c.end = 0;
}
return c;
}
|