Support sub-second birthtime on cygwin.
[gnulib.git] / lib / stat-time.h
1 /* stat-related time functions.
2
3    Copyright (C) 2005, 2007 Free Software Foundation, Inc.
4
5    This program is free software; you can redistribute it and/or modify
6    it under the terms of the GNU General Public License as published by
7    the Free Software Foundation; either version 2, or (at your option)
8    any later version.
9
10    This program is distributed in the hope that it will be useful,
11    but WITHOUT ANY WARRANTY; without even the implied warranty of
12    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13    GNU General Public License for more details.
14
15    You should have received a copy of the GNU General Public License
16    along with this program; if not, write to the Free Software Foundation,
17    Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
18
19 /* Written by Paul Eggert.  */
20
21 #ifndef STAT_TIME_H
22 #define STAT_TIME_H 1
23
24 #include <sys/stat.h>
25 #include <time.h>
26
27 /* STAT_TIMESPEC (ST, ST_XTIM) is the ST_XTIM member for *ST of type
28    struct timespec, if available.  If not, then STAT_TIMESPEC_NS (ST,
29    ST_XTIM) is the nanosecond component of the ST_XTIM member for *ST,
30    if available.  ST_XTIM can be st_atim, st_ctim, st_mtim, or st_birthtim
31    for access, status change, data modification, or birth (creation)
32    time respectively.
33
34    These macros are private to stat-time.h.  */
35 #if defined HAVE_STRUCT_STAT_ST_ATIM_TV_NSEC
36 # ifdef TYPEOF_STRUCT_STAT_ST_ATIM_IS_STRUCT_TIMESPEC
37 #  define STAT_TIMESPEC(st, st_xtim) ((st)->st_xtim)
38 # else
39 #  define STAT_TIMESPEC_NS(st, st_xtim) ((st)->st_xtim.tv_nsec)
40 # endif
41 #elif defined HAVE_STRUCT_STAT_ST_ATIMESPEC_TV_NSEC
42 # define STAT_TIMESPEC(st, st_xtim) ((st)->st_xtim##espec)
43 #elif defined HAVE_STRUCT_STAT_ST_ATIMENSEC
44 # define STAT_TIMESPEC_NS(st, st_xtim) ((st)->st_xtim##ensec)
45 #elif defined HAVE_STRUCT_STAT_ST_ATIM_ST__TIM_TV_NSEC
46 # define STAT_TIMESPEC_NS(st, st_xtim) ((st)->st_xtim.st__tim.tv_nsec)
47 #endif
48
49 /* Return the nanosecond component of *ST's access time.  */
50 static inline long int
51 get_stat_atime_ns (struct stat const *st)
52 {
53 # if defined STAT_TIMESPEC
54   return STAT_TIMESPEC (st, st_atim).tv_nsec;
55 # elif defined STAT_TIMESPEC_NS
56   return STAT_TIMESPEC_NS (st, st_atim);
57 # else
58   return 0;
59 # endif
60 }
61
62 /* Return the nanosecond component of *ST's status change time.  */
63 static inline long int
64 get_stat_ctime_ns (struct stat const *st)
65 {
66 # if defined STAT_TIMESPEC
67   return STAT_TIMESPEC (st, st_ctim).tv_nsec;
68 # elif defined STAT_TIMESPEC_NS
69   return STAT_TIMESPEC_NS (st, st_ctim);
70 # else
71   return 0;
72 # endif
73 }
74
75 /* Return the nanosecond component of *ST's data modification time.  */
76 static inline long int
77 get_stat_mtime_ns (struct stat const *st)
78 {
79 # if defined STAT_TIMESPEC
80   return STAT_TIMESPEC (st, st_mtim).tv_nsec;
81 # elif defined STAT_TIMESPEC_NS
82   return STAT_TIMESPEC_NS (st, st_mtim);
83 # else
84   return 0;
85 # endif
86 }
87
88 /* Return the nanosecond component of *ST's birth time.  */
89 static inline long int
90 get_stat_birthtime_ns (struct stat const *st)
91 {
92 # if defined HAVE_STRUCT_STAT_ST_BIRTHTIMESPEC_TV_NSEC
93   return STAT_TIMESPEC (st, st_birthtim).tv_nsec;
94 # elif defined HAVE_STRUCT_STAT_ST_BIRTHTIMENSEC
95   return STAT_TIMESPEC_NS (st, st_birthtim);
96 # else
97   return 0;
98 # endif
99 }
100
101 /* Return *ST's access time.  */
102 static inline struct timespec
103 get_stat_atime (struct stat const *st)
104 {
105 #ifdef STAT_TIMESPEC
106   return STAT_TIMESPEC (st, st_atim);
107 #else
108   struct timespec t;
109   t.tv_sec = st->st_atime;
110   t.tv_nsec = get_stat_atime_ns (st);
111   return t;
112 #endif
113 }
114
115 /* Return *ST's status change time.  */
116 static inline struct timespec
117 get_stat_ctime (struct stat const *st)
118 {
119 #ifdef STAT_TIMESPEC
120   return STAT_TIMESPEC (st, st_ctim);
121 #else
122   struct timespec t;
123   t.tv_sec = st->st_ctime;
124   t.tv_nsec = get_stat_ctime_ns (st);
125   return t;
126 #endif
127 }
128
129 /* Return *ST's data modification time.  */
130 static inline struct timespec
131 get_stat_mtime (struct stat const *st)
132 {
133 #ifdef STAT_TIMESPEC
134   return STAT_TIMESPEC (st, st_mtim);
135 #else
136   struct timespec t;
137   t.tv_sec = st->st_mtime;
138   t.tv_nsec = get_stat_mtime_ns (st);
139   return t;
140 #endif
141 }
142
143 /* Return *ST's birth time, if available; otherwise return a value
144    with negative tv_nsec.  */
145 static inline struct timespec
146 get_stat_birthtime (struct stat const *st)
147 {
148   struct timespec t;
149
150 #if defined HAVE_STRUCT_STAT_ST_BIRTHTIMESPEC_TV_NSEC \
151   || defined HAVE_STRUCT_STAT_ST_BIRTHTIM_TV_NSEC
152   t = STAT_TIMESPEC (st, st_birthtim);
153 #elif defined HAVE_STRUCT_STAT_ST_BIRTHTIMENSEC
154   t.tv_sec = st->st_birthtime;
155   t.tv_nsec = st->st_birthtimensec;
156
157   /* NetBSD sometimes signals the absence of knowledge by using zero.
158      Attempt to work around this bug.  This sometimes reports failure
159      even for valid time stamps.  Also, sometimes NetBSD returns junk
160      in the birth time fields; work around this bug if it it is
161      detected.  There's no need to detect negative tv_nsec junk as
162      negative tv_nsec already indicates an error.  */
163   if (t.tv_sec == 0 || 1000000000 <= t.tv_nsec)
164     t.tv_nsec = -1;
165
166 #elif (defined _WIN32 || defined __WIN32__) && ! defined __CYGWIN__
167   /* Woe32 native platforms (but not Cygwin) put the "file creation
168      time" in st_ctime (!).  See
169      <http://msdn2.microsoft.com/de-de/library/14h5k7ff(VS.80).aspx>.  */
170   t.tv_sec = st->st_ctime;
171   t.tv_nsec = 0;
172 #else
173   /* Birth time is not supported.  Set tv_sec to avoid undefined behavior.  */
174   t.tv_sec = -1;
175   t.tv_nsec = -1;
176 #endif
177
178   return t;
179 }
180
181 #endif