LibreOffice
LibreOffice 24.2 SDK C/C++ API Reference
time.h
Go to the documentation of this file.
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3  * This file is part of the LibreOffice project.
4  *
5  * This Source Code Form is subject to the terms of the Mozilla Public
6  * License, v. 2.0. If a copy of the MPL was not distributed with this
7  * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8  *
9  * This file incorporates work covered by the following license notice:
10  *
11  * Licensed to the Apache Software Foundation (ASF) under one or more
12  * contributor license agreements. See the NOTICE file distributed
13  * with this work for additional information regarding copyright
14  * ownership. The ASF licenses this file to you under the Apache
15  * License, Version 2.0 (the "License"); you may not use this file
16  * except in compliance with the License. You may obtain a copy of
17  * the License at http://www.apache.org/licenses/LICENSE-2.0 .
18  */
19 
20 /*
21  * This file is part of LibreOffice published API.
22  */
23 
24 #ifndef INCLUDED_OSL_TIME_H
25 #define INCLUDED_OSL_TIME_H
26 
27 #include "sal/config.h"
28 
29 #if defined LIBO_INTERNAL_ONLY
30 #if defined __cplusplus
31 #include <chrono>
32 #endif
33 #endif
34 
35 #include "sal/saldllapi.h"
36 #include "sal/types.h"
37 
38 #ifdef _WIN32
39 # pragma pack(push, 8)
40 #endif
41 
48 #if defined LIBO_INTERNAL_ONLY && defined __cplusplus
49 
50 struct TimeValue {
51  TimeValue() = default;
52 
53  constexpr TimeValue(sal_uInt32 seconds, sal_uInt32 nanoseconds):
54  Seconds(seconds), Nanosec(nanoseconds) {}
55 
56  template<typename Rep, typename Period> constexpr
57  TimeValue(std::chrono::duration<Rep, Period> const & duration):
58  Seconds(
59  std::chrono::duration_cast<std::chrono::nanoseconds>(
60  duration).count() / 1000000000),
61  Nanosec(
62  std::chrono::duration_cast<std::chrono::nanoseconds>(
63  duration).count() % 1000000000)
64  {}
65 
66  sal_uInt32 Seconds;
67  sal_uInt32 Nanosec;
68 };
69 
70 #else
71 
72 #ifdef __cplusplus
73 extern "C" {
74 #endif
75 
76 typedef struct {
77  sal_uInt32 Seconds;
78  sal_uInt32 Nanosec;
79 } TimeValue;
80 
81 #ifdef __cplusplus
82 }
83 #endif
84 
85 #endif
86 
87 #if defined(_WIN32)
88 # pragma pack(pop)
89 #endif
90 
91 #ifdef __cplusplus
92 extern "C" {
93 #endif
94 
95 typedef struct _oslDateTime
96 {
99  sal_uInt32 NanoSeconds;
100 
103  sal_uInt16 Seconds;
104 
107  sal_uInt16 Minutes;
108 
111  sal_uInt16 Hours;
112 
115  sal_uInt16 Day;
116 
119  sal_uInt16 DayOfWeek;
120 
123  sal_uInt16 Month;
124 
127  sal_Int16 Year;
128 
129 } oslDateTime;
130 
131 
136  TimeValue* pTimeVal );
137 
138 
146  const TimeValue* pTimeVal, oslDateTime* pDateTime );
147 
148 
156  const oslDateTime* pDateTime, TimeValue* pTimeVal );
157 
158 
166  const TimeValue* pSystemTimeVal, TimeValue* pLocalTimeVal );
167 
168 
176  const TimeValue* pLocalTimeVal, TimeValue* pSystemTimeVal );
177 
178 
183 SAL_DLLPUBLIC sal_uInt32 SAL_CALL osl_getGlobalTimer(void);
184 
185 #ifdef __cplusplus
186 }
187 #endif
188 
189 #endif // INCLUDED_OSL_TIME_H
190 
191 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
sal_uInt16 Minutes
contains the minutes (0-59).
Definition: time.h:107
SAL_DLLPUBLIC sal_Bool osl_getTimeValueFromDateTime(const oslDateTime *pDateTime, TimeValue *pTimeVal)
Get the GMT from a oslDateTime and fill a TimeValue.
sal_uInt16 Hours
contains the hour (0-23).
Definition: time.h:111
#define SAL_DLLPUBLIC
Definition: saldllapi.h:34
struct _oslDateTime oslDateTime
SAL_DLLPUBLIC sal_Bool osl_getSystemTime(TimeValue *pTimeVal)
Get the current system time as TimeValue.
sal_uInt16 Day
is the day of month (1-31).
Definition: time.h:115
sal_uInt16 Seconds
contains the seconds (0-59).
Definition: time.h:103
sal_uInt32 Nanosec
Definition: time.h:78
Definition: time.h:95
SAL_DLLPUBLIC sal_uInt32 osl_getGlobalTimer(void)
Get the value of the global timer.
unsigned char sal_Bool
Definition: types.h:38
sal_uInt32 NanoSeconds
contains the nanoseconds
Definition: time.h:99
SAL_DLLPUBLIC sal_Bool osl_getLocalTimeFromSystemTime(const TimeValue *pSystemTimeVal, TimeValue *pLocalTimeVal)
Convert GMT to local time.
SAL_DLLPUBLIC sal_Bool osl_getSystemTimeFromLocalTime(const TimeValue *pLocalTimeVal, TimeValue *pSystemTimeVal)
Convert local time to GMT.
sal_uInt16 Month
is the month of year (1-12).
Definition: time.h:123
Time since Jan-01-1970.
Definition: time.h:76
sal_uInt32 Seconds
Definition: time.h:77
SAL_DLLPUBLIC sal_Bool osl_getDateTimeFromTimeValue(const TimeValue *pTimeVal, oslDateTime *pDateTime)
Get the GMT from a TimeValue and fill a struct oslDateTime.
sal_uInt16 DayOfWeek
is the day of week (0-6 , 0 : Sunday).
Definition: time.h:119
sal_Int16 Year
is the year.
Definition: time.h:127