pacemaker
2.1.4-dc6eb4362
Scalable High-Availability cluster resource manager
|
#include <crm_internal.h>
#include <crm/crm.h>
#include <time.h>
#include <ctype.h>
#include <string.h>
#include <stdbool.h>
#include <crm/common/iso8601.h>
Go to the source code of this file.
Macros | |
#define | GMTOFF(tm) (-timezone+daylight) |
#define | HOUR_SECONDS (60 * 60) |
#define | DAY_SECONDS (HOUR_SECONDS * 24) |
#define | EPOCH_SECONDS 62135596800ULL /* Calculated using crm_time_get_seconds() */ |
#define | DATE_MAX 128 |
#define | do_cmp_field(l, r, field) |
#define | MS_IN_S (1000) |
#define | MS_IN_M (MS_IN_S * 60) |
#define | MS_IN_H (MS_IN_M * 60) |
#define | MS_IN_D (MS_IN_H * 24) |
#define | MAXSTR sizeof("..d..h..m..s...ms") |
Functions | |
crm_time_t * | crm_time_new (const char *date_time) |
crm_time_t * | crm_time_new_undefined () |
Allocate memory for an uninitialized time object. More... | |
bool | crm_time_is_defined (const crm_time_t *t) |
Check whether a time object has been initialized yet. More... | |
void | crm_time_free (crm_time_t *dt) |
int | crm_time_january1_weekday (int year) |
int | crm_time_weeks_in_year (int year) |
int | crm_time_days_in_month (int month, int year) |
Return number of days in given month of given year. More... | |
bool | crm_time_leapyear (int year) |
void | crm_time_log_alias (int log_level, const char *file, const char *function, int line, const char *prefix, crm_time_t *date_time, int flags) |
int | crm_time_get_timeofday (crm_time_t *dt, uint *h, uint *m, uint *s) |
int | crm_time_get_timezone (crm_time_t *dt, uint *h, uint *m) |
long long | crm_time_get_seconds (crm_time_t *dt) |
long long | crm_time_get_seconds_since_epoch (crm_time_t *dt) |
int | crm_time_get_gregorian (crm_time_t *dt, uint *y, uint *m, uint *d) |
int | crm_time_get_ordinal (crm_time_t *dt, uint *y, uint *d) |
int | crm_time_get_isoweek (crm_time_t *dt, uint *y, uint *w, uint *d) |
char * | crm_time_as_string (crm_time_t *date_time, int flags) |
crm_time_t * | crm_time_parse_duration (const char *period_s) |
Parse a time duration from an ISO 8601 duration specification. More... | |
crm_time_period_t * | crm_time_parse_period (const char *period_str) |
Parse a time period from an ISO 8601 interval specification. More... | |
void | crm_time_free_period (crm_time_period_t *period) |
Free a dynamically allocated time period object. More... | |
void | crm_time_set (crm_time_t *target, crm_time_t *source) |
void | crm_time_set_timet (crm_time_t *target, time_t *source) |
crm_time_t * | pcmk_copy_time (crm_time_t *source) |
crm_time_t * | crm_time_add (crm_time_t *dt, crm_time_t *value) |
crm_time_t * | crm_time_calculate_duration (crm_time_t *dt, crm_time_t *value) |
crm_time_t * | crm_time_subtract (crm_time_t *dt, crm_time_t *value) |
bool | crm_time_check (crm_time_t *dt) |
Check whether a time object represents a sensible date/time. More... | |
int | crm_time_compare (crm_time_t *a, crm_time_t *b) |
void | crm_time_add_seconds (crm_time_t *a_time, int extra) |
Add a given number of seconds to a date/time or duration. More... | |
void | crm_time_add_days (crm_time_t *a_time, int extra) |
void | crm_time_add_months (crm_time_t *a_time, int extra) |
void | crm_time_add_minutes (crm_time_t *a_time, int extra) |
void | crm_time_add_hours (crm_time_t *a_time, int extra) |
void | crm_time_add_weeks (crm_time_t *a_time, int extra) |
void | crm_time_add_years (crm_time_t *a_time, int extra) |
pcmk__time_hr_t * | pcmk__time_hr_convert (pcmk__time_hr_t *target, crm_time_t *dt) |
void | pcmk__time_set_hr_dt (crm_time_t *target, pcmk__time_hr_t *hr_dt) |
pcmk__time_hr_t * | pcmk__time_timeval_hr_convert (pcmk__time_hr_t *target, struct timeval *tv) |
pcmk__time_hr_t * | pcmk__time_hr_new (const char *date_time) |
void | pcmk__time_hr_free (pcmk__time_hr_t *hr_dt) |
char * | pcmk__time_format_hr (const char *format, pcmk__time_hr_t *hr_dt) |
const char * | pcmk__epoch2str (time_t *when) |
const char * | pcmk__readable_interval (guint interval_ms) |
#define DAY_SECONDS (HOUR_SECONDS * 24) |
#define do_cmp_field | ( | l, | |
r, | |||
field | |||
) |
#define EPOCH_SECONDS 62135596800ULL /* Calculated using crm_time_get_seconds() */ |
#define MAXSTR sizeof("..d..h..m..s...ms") |
#define MS_IN_D (MS_IN_H * 24) |
#define MS_IN_H (MS_IN_M * 60) |
#define MS_IN_M (MS_IN_S * 60) |
#define MS_IN_S (1000) |
crm_time_t* crm_time_add | ( | crm_time_t * | dt, |
crm_time_t * | value | ||
) |
void crm_time_add_days | ( | crm_time_t * | a_time, |
int | extra | ||
) |
void crm_time_add_hours | ( | crm_time_t * | a_time, |
int | extra | ||
) |
void crm_time_add_minutes | ( | crm_time_t * | a_time, |
int | extra | ||
) |
void crm_time_add_months | ( | crm_time_t * | a_time, |
int | extra | ||
) |
void crm_time_add_seconds | ( | crm_time_t * | a_time, |
int | extra | ||
) |
void crm_time_add_weeks | ( | crm_time_t * | a_time, |
int | extra | ||
) |
void crm_time_add_years | ( | crm_time_t * | a_time, |
int | extra | ||
) |
char* crm_time_as_string | ( | crm_time_t * | date_time, |
int | flags | ||
) |
crm_time_t* crm_time_calculate_duration | ( | crm_time_t * | dt, |
crm_time_t * | value | ||
) |
bool crm_time_check | ( | crm_time_t * | dt | ) |
int crm_time_compare | ( | crm_time_t * | a, |
crm_time_t * | b | ||
) |
int crm_time_days_in_month | ( | int | month, |
int | year | ||
) |
void crm_time_free | ( | crm_time_t * | dt | ) |
void crm_time_free_period | ( | crm_time_period_t * | period | ) |
int crm_time_get_gregorian | ( | crm_time_t * | dt, |
uint * | y, | ||
uint * | m, | ||
uint * | d | ||
) |
int crm_time_get_isoweek | ( | crm_time_t * | dt, |
uint * | y, | ||
uint * | w, | ||
uint * | d | ||
) |
int crm_time_get_ordinal | ( | crm_time_t * | dt, |
uint * | y, | ||
uint * | d | ||
) |
long long crm_time_get_seconds | ( | crm_time_t * | dt | ) |
long long crm_time_get_seconds_since_epoch | ( | crm_time_t * | dt | ) |
int crm_time_get_timeofday | ( | crm_time_t * | dt, |
uint * | h, | ||
uint * | m, | ||
uint * | s | ||
) |
int crm_time_get_timezone | ( | crm_time_t * | dt, |
uint * | h, | ||
uint * | m | ||
) |
bool crm_time_is_defined | ( | const crm_time_t * | t | ) |
void crm_time_log_alias | ( | int | log_level, |
const char * | file, | ||
const char * | function, | ||
int | line, | ||
const char * | prefix, | ||
crm_time_t * | date_time, | ||
int | flags | ||
) |
crm_time_t* crm_time_new | ( | const char * | date_time | ) |
crm_time_t* crm_time_new_undefined | ( | void | ) |
Allocate memory for an uninitialized time object.
crm_time_t* crm_time_parse_duration | ( | const char * | period_s | ) |
Parse a time duration from an ISO 8601 duration specification.
[in] | period_s | ISO 8601 duration specification (optionally followed by whitespace, after which the rest of the string will be ignored) |
crm_time_period_t* crm_time_parse_period | ( | const char * | period_str | ) |
Parse a time period from an ISO 8601 interval specification.
[in] | period_str | ISO 8601 interval specification (start/end, start/duration, or duration/end) |
void crm_time_set | ( | crm_time_t * | target, |
crm_time_t * | source | ||
) |
void crm_time_set_timet | ( | crm_time_t * | target, |
time_t * | source | ||
) |
crm_time_t* crm_time_subtract | ( | crm_time_t * | dt, |
crm_time_t * | value | ||
) |
char* pcmk__time_format_hr | ( | const char * | format, |
pcmk__time_hr_t * | hr_dt | ||
) |
pcmk__time_hr_t* pcmk__time_hr_convert | ( | pcmk__time_hr_t * | target, |
crm_time_t * | dt | ||
) |
void pcmk__time_hr_free | ( | pcmk__time_hr_t * | hr_dt | ) |
pcmk__time_hr_t* pcmk__time_hr_new | ( | const char * | date_time | ) |
void pcmk__time_set_hr_dt | ( | crm_time_t * | target, |
pcmk__time_hr_t * | hr_dt | ||
) |
pcmk__time_hr_t* pcmk__time_timeval_hr_convert | ( | pcmk__time_hr_t * | target, |
struct timeval * | tv | ||
) |
crm_time_t* pcmk_copy_time | ( | crm_time_t * | source | ) |