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
|
/** @file
A brief file description
@section license License
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.
*/
/****************************************************************************
ink_time.c
Timing routines for libts
****************************************************************************/
#include "ts/ink_platform.h"
#include "ts/ink_defs.h"
#include "ts/ink_time.h"
#include "ts/ink_assert.h"
#include "ts/ink_string.h"
#include <locale.h>
#include <sys/resource.h>
/*===========================================================================*
Timers
*===========================================================================*/
/*---------------------------------------------------------------------------*
uint64_t microseconds(which)
returns microsecond-resolution clock info
*---------------------------------------------------------------------------*/
uint64_t
ink_microseconds(int which)
{
struct timeval tp;
struct rusage ru;
switch (which) {
case MICRO_REAL:
gettimeofday(&tp, NULL);
break;
case MICRO_USER:
getrusage(RUSAGE_SELF, &ru);
tp = ru.ru_utime;
break;
case MICRO_SYS:
getrusage(RUSAGE_SELF, &ru);
tp = ru.ru_stime;
break;
default:
return 0;
}
return tp.tv_sec * 1000000 + tp.tv_usec;
}
/*---------------------------------------------------------------------------*
double ink_time_wall_seconds()
This routine returns a double precision number of wall clock seconds
elapsed since some fixed time in the past.
*---------------------------------------------------------------------------*/
double
ink_time_wall_seconds()
{
struct timeval s_val;
gettimeofday(&s_val, 0);
return ((double)s_val.tv_sec + 0.000001 * s_val.tv_usec);
} /* End ink_time_wall_seconds */
struct dtconv {
char *abbrev_month_names[12];
char *month_names[12];
char *abbrev_weekday_names[7];
char *weekday_names[7];
char *time_format;
char *sdate_format;
char *dtime_format;
char *am_string;
char *pm_string;
char *ldate_format;
};
/*
* The man page for cftime lies. It claims that it is thread safe.
* Instead, it silently trashes the heap (by freeing things more than
* once) when used in a mulithreaded program. Gack!
*/
int
cftime_replacement(char *s, int maxsize, const char *format, const time_t *clock)
{
struct tm tm;
ink_assert(ink_localtime_r(clock, &tm) != NULL);
return strftime(s, maxsize, format, &tm);
}
#undef cftime
/* Throw an error if they ever call plain-old cftime. */
int
cftime(char *s, char *format, const time_t *clock)
{
(void)s;
(void)format;
(void)clock;
printf("ERROR cftime is not thread safe -- call cftime_replacement\n");
ink_assert(!"cftime");
return 0;
}
#define DAYS_OFFSET 25508
ink_time_t
convert_tm(const struct tm *tp)
{
static const int days[12] = {305, 336, -1, 30, 60, 91, 121, 152, 183, 213, 244, 274};
ink_time_t t;
int year;
int month;
int mday;
year = tp->tm_year;
month = tp->tm_mon;
mday = tp->tm_mday;
/* what should we do? */
if ((year < 70) || (year > 137))
return (ink_time_t)UNDEFINED_TIME;
mday += days[month];
/* month base == march */
if (month < 2)
year -= 1;
mday += (year * 365) + (year / 4) - (year / 100) + (year / 100 + 3) / 4;
mday -= DAYS_OFFSET;
t = ((mday * 24 + tp->tm_hour) * 60 + tp->tm_min) * 60 + tp->tm_sec;
return t;
}
char *
ink_ctime_r(const ink_time_t *clock, char *buf)
{
return ctime_r(clock, buf);
}
struct tm *
ink_localtime_r(const ink_time_t *clock, struct tm *res)
{
return localtime_r(clock, res);
}
|