blob: 664ee8ef4ef5cbe9eead7fce5e7eb44602d1f5e9 [file] [log] [blame]
/*
* 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.
*/
#ifndef __UTIL_DATETIME_H
#define __UTIL_DATETIME_H
#ifdef __cplusplus
extern "C" {
#endif
struct os_timeval;
struct os_timezone;
#define DATETIME_BUFSIZE 33
/*
* Format the time specified by 'utctime' and 'tz' as per RFC 3339 in
* the 'output' string. The size of the buffer pointed to by 'output'
* is specified by 'olen'.
*
* Returns 0 on success and non-zero on failure.
*/
int datetime_format(const struct os_timeval *utctime,
const struct os_timezone *tz, char *output, int olen);
/*
* Parse 'input' in the Internet date/time format specified by RFC 3339.
* https://www.ietf.org/rfc/rfc3339.txt
*
* We deviate from the RFC in that if the 'time offset' is left unspecified
* then we default to UTC time.
*
* Return 0 if 'input' could be parsed successfully and non-zero otherwise.
* 'utctime' and 'tz' are updated if 'input' was parsed successfully.
*/
int datetime_parse(const char *input, struct os_timeval *utctime,
struct os_timezone *tz);
#ifdef __cplusplus
}
#endif
#endif /* __UTIL_DATETIME_H */