GeneralizedTime.h 2.53 KB
Newer Older
Lev Walkin's avatar
Lev Walkin committed
1 2 3 4 5 6 7 8 9
/*-
 * Copyright (c) 2003, 2004 Lev Walkin <vlm@lionet.info>. All rights reserved.
 * Redistribution and modifications are permitted subject to BSD license.
 */
#ifndef	_GeneralizedTime_H_
#define	_GeneralizedTime_H_

#include <OCTET_STRING.h>

Lev Walkin's avatar
Lev Walkin committed
10 11 12 13
#ifdef __cplusplus
extern "C" {
#endif

Lev Walkin's avatar
Lev Walkin committed
14
typedef OCTET_STRING_t GeneralizedTime_t;  /* Implemented via OCTET STRING */
Lev Walkin's avatar
Lev Walkin committed
15

Lev Walkin's avatar
Lev Walkin committed
16
extern asn_TYPE_descriptor_t asn_DEF_GeneralizedTime;
Lev Walkin's avatar
Lev Walkin committed
17

Lev Walkin's avatar
Lev Walkin committed
18
asn_struct_print_f GeneralizedTime_print;
Lev Walkin's avatar
Lev Walkin committed
19
asn_constr_check_f GeneralizedTime_constraint;
20
der_type_encoder_f GeneralizedTime_encode_der;
Lev Walkin's avatar
Lev Walkin committed
21
xer_type_encoder_f GeneralizedTime_encode_xer;
Lev Walkin's avatar
Lev Walkin committed
22

23
#define GeneralizedTime_free           OCTET_STRING_free
Bi-Ruei, Chiu's avatar
Bi-Ruei, Chiu committed
24
#define GeneralizedTime_compare        OCTET_STRING_compare
25 26 27 28 29
#define GeneralizedTime_decode_ber     OCTET_STRING_decode_ber
#define GeneralizedTime_decode_xer     OCTET_STRING_decode_xer_utf8
#define GeneralizedTime_decode_uper    OCTET_STRING_decode_uper
#define GeneralizedTime_encode_uper    OCTET_STRING_encode_uper

Lev Walkin's avatar
Lev Walkin committed
30 31 32 33 34
/***********************
 * Some handy helpers. *
 ***********************/

struct tm;	/* <time.h> */
35 36 37 38 39 40 41 42 43 44 45

/*
 * Convert a GeneralizedTime structure into time_t
 * and optionally into struct tm.
 * If as_gmt is given, the resulting _optional_tm4fill will have a GMT zone,
 * instead of default local one.
 * On error returns -1 and errno set to EINVAL
 */
time_t asn_GT2time(const GeneralizedTime_t *, struct tm *_optional_tm4fill,
	int as_gmt);

46 47
/* A version of the above function also returning the fractions of seconds */
time_t asn_GT2time_frac(const GeneralizedTime_t *,
Lev Walkin's avatar
Lev Walkin committed
48 49 50 51 52 53 54 55 56 57
	int *frac_value, int *frac_digits,	/* (value / (10 ^ digits)) */
	struct tm *_optional_tm4fill, int as_gmt);

/*
 * Another version returning fractions with defined precision
 * For example, parsing of the time ending with ".1" seconds
 * with frac_digits=3 (msec) would yield frac_value = 100.
 */
time_t asn_GT2time_prec(const GeneralizedTime_t *,
	int *frac_value, int frac_digits,
58 59
	struct tm *_optional_tm4fill, int as_gmt);

60 61
/*
 * Convert a struct tm into GeneralizedTime.
62
 * If _optional_gt is not given, this function will try to allocate one.
63
 * If force_gmt is given, the resulting GeneralizedTime will be forced
Lev Walkin's avatar
Lev Walkin committed
64
 * into a GMT time zone (encoding ends with a "Z").
65 66
 * On error, this function returns 0 and sets errno.
 */
67 68 69
GeneralizedTime_t *asn_time2GT(GeneralizedTime_t *_optional_gt,
	const struct tm *, int force_gmt);
GeneralizedTime_t *asn_time2GT_frac(GeneralizedTime_t *_optional_gt,
Lev Walkin's avatar
Lev Walkin committed
70
	const struct tm *, int frac_value, int frac_digits, int force_gmt);
Lev Walkin's avatar
Lev Walkin committed
71

Lev Walkin's avatar
Lev Walkin committed
72 73 74 75
#ifdef __cplusplus
}
#endif

Lev Walkin's avatar
Lev Walkin committed
76
#endif	/* _GeneralizedTime_H_ */