Whamcloud - gitweb
d88af2ecce9847987a4c68dca25d203a8fdf335a
[fs/lustre-release.git] / libcfs / include / libcfs / user-time.h
1 /*
2  * GPL HEADER START
3  *
4  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License version 2 only,
8  * as published by the Free Software Foundation.
9  *
10  * This program is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * General Public License version 2 for more details (a copy is included
14  * in the LICENSE file that accompanied this code).
15  *
16  * You should have received a copy of the GNU General Public License
17  * version 2 along with this program; If not, see
18  * http://www.sun.com/software/products/lustre/docs/GPLv2.pdf
19  *
20  * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
21  * CA 95054 USA or visit www.sun.com if you need additional information or
22  * have any questions.
23  *
24  * GPL HEADER END
25  */
26 /*
27  * Copyright (c) 2008, 2010, Oracle and/or its affiliates. All rights reserved.
28  * Use is subject to license terms.
29  */
30 /*
31  * This file is part of Lustre, http://www.lustre.org/
32  * Lustre is a trademark of Sun Microsystems, Inc.
33  *
34  * libcfs/include/libcfs/user-time.h
35  *
36  * Implementation of portable time API for user-level.
37  *
38  * Author: Nikita Danilov <nikita@clusterfs.com>
39  */
40
41 #ifndef __LIBCFS_USER_TIME_H__
42 #define __LIBCFS_USER_TIME_H__
43
44 /* Portable time API */
45
46 /*
47  * Platform provides three opaque data-types:
48  *
49  *  cfs_time_t        represents point in time. This is internal kernel
50  *                    time rather than "wall clock". This time bears no
51  *                    relation to gettimeofday().
52  *
53  *  cfs_duration_t    represents time interval with resolution of internal
54  *                    platform clock
55  *
56  *  cfs_fs_time_t     represents instance in world-visible time. This is
57  *                    used in file-system time-stamps
58  *
59  *  cfs_time_t     cfs_time_current(void);
60  *  cfs_time_t     cfs_time_add    (cfs_time_t, cfs_duration_t);
61  *  cfs_duration_t cfs_time_sub    (cfs_time_t, cfs_time_t);
62  *  int            cfs_time_before (cfs_time_t, cfs_time_t);
63  *  int            cfs_time_beforeq(cfs_time_t, cfs_time_t);
64  *
65  *  cfs_duration_t cfs_duration_build(int64_t);
66  *
67  *  time_t         cfs_duration_sec (cfs_duration_t);
68  *  void           cfs_duration_usec(cfs_duration_t, struct timeval *);
69  *  void           cfs_duration_nsec(cfs_duration_t, struct timespec *);
70  *
71  *  void           cfs_fs_time_current(cfs_fs_time_t *);
72  *  time_t         cfs_fs_time_sec    (cfs_fs_time_t *);
73  *  void           cfs_fs_time_usec   (cfs_fs_time_t *, struct timeval *);
74  *  void           cfs_fs_time_nsec   (cfs_fs_time_t *, struct timespec *);
75  *  int            cfs_fs_time_before (cfs_fs_time_t *, cfs_fs_time_t *);
76  *  int            cfs_fs_time_beforeq(cfs_fs_time_t *, cfs_fs_time_t *);
77  *
78  *  CFS_TIME_FORMAT
79  *  CFS_DURATION_FORMAT
80  *
81  */
82
83 #ifndef __KERNEL__
84
85 #include <stdarg.h>
86 #include <stddef.h>
87 #include <stdint.h>
88 #include <stdio.h>
89 #include <sys/time.h>
90 #include <time.h>
91
92 #define ONE_BILLION ((uint64_t)1000000000)
93 #define ONE_MILLION 1000000
94
95 /*
96  * Liblustre. time(2) based implementation.
97  */
98
99 typedef time_t cfs_fs_time_t;
100 typedef time_t cfs_time_t;
101 typedef time_t cfs_duration_t;
102
103 #define cfs_time_before(a, b) ((long)(a) - (long)(b) < 0)
104 #define cfs_time_beforeq(a, b) ((long)(b) - (long)(a) >= 0)
105
106 static inline cfs_time_t cfs_time_current(void)
107 {
108         return time(NULL);
109 }
110
111 static inline cfs_duration_t cfs_time_seconds(cfs_time_t seconds)
112 {
113         return seconds;
114 }
115
116 static inline time_t cfs_time_current_sec(void)
117 {
118         return cfs_time_seconds(cfs_time_current());
119 }
120
121 static inline cfs_duration_t cfs_duration_build(int64_t nano)
122 {
123         return (cfs_duration_t) (nano / ONE_BILLION);
124 }
125
126 static inline time_t cfs_duration_sec(cfs_duration_t d)
127 {
128         return d;
129 }
130
131 static inline void cfs_duration_usec(cfs_duration_t d, struct timeval *s)
132 {
133         s->tv_sec = d;
134         s->tv_usec = 0;
135 }
136
137 static inline void cfs_duration_nsec(cfs_duration_t d, struct timespec *s)
138 {
139         s->tv_sec = d;
140         s->tv_nsec = 0;
141 }
142
143 static inline void cfs_fs_time_current(cfs_fs_time_t *t)
144 {
145         time(t);
146 }
147
148 static inline time_t cfs_fs_time_sec(cfs_fs_time_t *t)
149 {
150         return *t;
151 }
152
153 static inline void cfs_fs_time_usec(cfs_fs_time_t *t, struct timeval *v)
154 {
155         v->tv_sec = *t;
156         v->tv_usec = 0;
157 }
158
159 static inline void cfs_fs_time_nsec(cfs_fs_time_t *t, struct timespec *s)
160 {
161         s->tv_sec = *t;
162         s->tv_nsec = 0;
163 }
164
165 static inline int cfs_fs_time_before(cfs_fs_time_t *t1, cfs_fs_time_t *t2)
166 {
167         return *t1 < *t2;
168 }
169
170 static inline int cfs_fs_time_beforeq(cfs_fs_time_t *t1, cfs_fs_time_t *t2)
171 {
172         return *t1 <= *t2;
173 }
174
175 #define CFS_TICK                (1)
176
177 #define cfs_time_current_64 cfs_time_current
178 #define cfs_time_add_64     cfs_time_add
179 #define cfs_time_shift_64   cfs_time_shift
180 #define cfs_time_before_64  cfs_time_before
181 #define cfs_time_beforeq_64 cfs_time_beforeq
182
183 /* XXX needs to move to arch specific header or configured */
184 #ifndef CFS_TIME_T
185 #define CFS_TIME_T              "%lu"
186 #endif
187
188 #define CFS_DURATION_T          "%ld"
189
190 /* !__KERNEL__ */
191 #endif
192
193 /* __LIBCFS_USER_TIME_H__ */
194 #endif
195 /*
196  * Local variables:
197  * c-indentation-style: "K&R"
198  * c-basic-offset: 8
199  * tab-width: 8
200  * fill-column: 80
201  * scroll-step: 1
202  * End:
203  */