This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Bump version of Data::Dumper
[perl5.git] / dist / Time-HiRes / HiRes.pm
CommitLineData
dcf686c9
JH
1package Time::HiRes;
2
90e44bf6 3{ use 5.006; }
dcf686c9 4use strict;
dcf686c9
JH
5
6require Exporter;
b9a5a78f 7use XSLoader ();
dcf686c9 8
b9a5a78f 9our @ISA = qw(Exporter);
dcf686c9 10
90e44bf6 11our @EXPORT = qw( );
727404d0 12# More or less this same list is in Makefile.PL. Should unify.
90e44bf6 13our @EXPORT_OK = qw (usleep sleep ualarm alarm gettimeofday time tv_interval
ced84e60 14 getitimer setitimer nanosleep clock_gettime clock_getres
170c5524 15 clock clock_nanosleep
8da08029
CBW
16 CLOCKS_PER_SEC
17 CLOCK_BOOTTIME
18 CLOCK_HIGHRES
19 CLOCK_MONOTONIC
20 CLOCK_MONOTONIC_COARSE
21 CLOCK_MONOTONIC_FAST
22 CLOCK_MONOTONIC_PRECISE
23 CLOCK_MONOTONIC_RAW
0915f2cb 24 CLOCK_PROCESS_CPUTIME_ID
8da08029
CBW
25 CLOCK_PROF
26 CLOCK_REALTIME
27 CLOCK_REALTIME_COARSE
28 CLOCK_REALTIME_FAST
29 CLOCK_REALTIME_PRECISE
30 CLOCK_REALTIME_RAW
31 CLOCK_SECOND
32 CLOCK_SOFTTIME
33 CLOCK_THREAD_CPUTIME_ID
34 CLOCK_TIMEOFDAY
35 CLOCK_UPTIME
36 CLOCK_UPTIME_COARSE
37 CLOCK_UPTIME_FAST
38 CLOCK_UPTIME_PRECISE
39 CLOCK_UPTIME_RAW
40 CLOCK_VIRTUAL
41 ITIMER_PROF
42 ITIMER_REAL
43 ITIMER_REALPROF
44 ITIMER_VIRTUAL
170c5524 45 TIMER_ABSTIME
3f2ee006 46 d_usleep d_ualarm d_gettimeofday d_getitimer d_setitimer
de3293c0
CBW
47 d_nanosleep d_clock_gettime d_clock_getres
48 d_clock d_clock_nanosleep d_hires_stat
49 d_futimens d_utimensat d_hires_utime
c4a535af 50 stat lstat utime
75d5269b 51 );
bf8300de 52
eedb5413 53our $VERSION = '1.9760';
90e44bf6 54our $XS_VERSION = $VERSION;
105cd853 55$VERSION = eval $VERSION;
3c72ec00 56
90e44bf6 57our $AUTOLOAD;
3c72ec00
JH
58sub AUTOLOAD {
59 my $constname;
98b50af3 60 ($constname = $AUTOLOAD) =~ s/.*:://;
ced84e60 61 # print "AUTOLOAD: constname = $constname ($AUTOLOAD)\n";
98b50af3
JH
62 die "&Time::HiRes::constant not defined" if $constname eq 'constant';
63 my ($error, $val) = constant($constname);
ced84e60 64 # print "AUTOLOAD: error = $error, val = $val\n";
0cf8ddea
RGS
65 if ($error) {
66 my (undef,$file,$line) = caller;
67 die "$error at $file line $line.\n";
68 }
3c72ec00
JH
69 {
70 no strict 'refs';
71 *$AUTOLOAD = sub { $val };
72 }
73 goto &$AUTOLOAD;
74}
dcf686c9 75
ced84e60
SP
76sub import {
77 my $this = shift;
78 for my $i (@_) {
170c5524
SP
79 if (($i eq 'clock_getres' && !&d_clock_getres) ||
80 ($i eq 'clock_gettime' && !&d_clock_gettime) ||
81 ($i eq 'clock_nanosleep' && !&d_clock_nanosleep) ||
82 ($i eq 'clock' && !&d_clock) ||
83 ($i eq 'nanosleep' && !&d_nanosleep) ||
84 ($i eq 'usleep' && !&d_usleep) ||
c4a535af 85 ($i eq 'utime' && !&d_hires_utime) ||
170c5524 86 ($i eq 'ualarm' && !&d_ualarm)) {
ced84e60
SP
87 require Carp;
88 Carp::croak("Time::HiRes::$i(): unimplemented in this platform");
89 }
90 }
91 Time::HiRes->export_to_level(1, $this, @_);
92}
93
b9a5a78f 94XSLoader::load( 'Time::HiRes', $XS_VERSION );
dcf686c9
JH
95
96# Preloaded methods go here.
97
727404d0
TR
98sub tv_interval {
99 # probably could have been done in C
100 my ($a, $b) = @_;
101 $b = [gettimeofday()] unless defined($b);
102 (${$b}[0] - ${$a}[0]) + ((${$b}[1] - ${$a}[1]) / 1_000_000);
103}
104
dcf686c9
JH
105# Autoload methods go after =cut, and are processed by the autosplit program.
106
1071;
108__END__
109
110=head1 NAME
111
f7916ddb 112Time::HiRes - High resolution alarm, sleep, gettimeofday, interval timers
dcf686c9
JH
113
114=head1 SYNOPSIS
115
ced84e60 116 use Time::HiRes qw( usleep ualarm gettimeofday tv_interval nanosleep
75d5269b 117 clock_gettime clock_getres clock_nanosleep clock
c4a535af 118 stat lstat utime);
dcf686c9
JH
119
120 usleep ($microseconds);
44d3ce20 121 nanosleep ($nanoseconds);
dcf686c9
JH
122
123 ualarm ($microseconds);
124 ualarm ($microseconds, $interval_microseconds);
125
126 $t0 = [gettimeofday];
127 ($seconds, $microseconds) = gettimeofday;
128
129 $elapsed = tv_interval ( $t0, [$seconds, $microseconds]);
130 $elapsed = tv_interval ( $t0, [gettimeofday]);
131 $elapsed = tv_interval ( $t0 );
132
133 use Time::HiRes qw ( time alarm sleep );
3c72ec00 134
dcf686c9
JH
135 $now_fractions = time;
136 sleep ($floating_seconds);
137 alarm ($floating_seconds);
138 alarm ($floating_seconds, $floating_interval);
139
bfe77af1 140 use Time::HiRes qw( setitimer getitimer );
3c72ec00
JH
141
142 setitimer ($which, $floating_seconds, $floating_interval );
143 getitimer ($which);
144
bfe77af1 145 use Time::HiRes qw( clock_gettime clock_getres clock_nanosleep
e46aa1dd
KW
146 ITIMER_REAL ITIMER_VIRTUAL ITIMER_PROF
147 ITIMER_REALPROF );
bfe77af1 148
82cbdcc3
SP
149 $realtime = clock_gettime(CLOCK_REALTIME);
150 $resolution = clock_getres(CLOCK_REALTIME);
ced84e60 151
a8fb48f7
SP
152 clock_nanosleep(CLOCK_REALTIME, 1.5e9);
153 clock_nanosleep(CLOCK_REALTIME, time()*1e9 + 10e9, TIMER_ABSTIME);
170c5524
SP
154
155 my $ticktock = clock();
156
0f0eae2c 157 use Time::HiRes qw( stat lstat );
bfe77af1 158
c09e847b 159 my @stat = stat("file");
75d5269b 160 my @stat = stat(FH);
0f0eae2c 161 my @stat = lstat("file");
75d5269b 162
c4a535af
SH
163 use Time::HiRes qw( utime );
164 utime $floating_seconds, $floating_seconds, file...;
165
dcf686c9
JH
166=head1 DESCRIPTION
167
4ed0e2d4 168The C<Time::HiRes> module implements a Perl interface to the
44d3ce20
RGS
169C<usleep>, C<nanosleep>, C<ualarm>, C<gettimeofday>, and
170C<setitimer>/C<getitimer> system calls, in other words, high
171resolution time and timers. See the L</EXAMPLES> section below and the
172test scripts for usage; see your system documentation for the
173description of the underlying C<nanosleep> or C<usleep>, C<ualarm>,
174C<gettimeofday>, and C<setitimer>/C<getitimer> calls.
dcf686c9 175
6937b144 176If your system lacks C<gettimeofday()> or an emulation of it you don't
4ed0e2d4 177get C<gettimeofday()> or the one-argument form of C<tv_interval()>.
82cbdcc3
SP
178If your system lacks all of C<nanosleep()>, C<usleep()>,
179C<select()>, and C<poll>, you don't get C<Time::HiRes::usleep()>,
180C<Time::HiRes::nanosleep()>, or C<Time::HiRes::sleep()>.
181If your system lacks both C<ualarm()> and C<setitimer()> you don't get
44d3ce20 182C<Time::HiRes::ualarm()> or C<Time::HiRes::alarm()>.
3f2ee006
HS
183
184If you try to import an unimplemented function in the C<use> statement
185it will fail at compile time.
186
4ed0e2d4
RGS
187If your subsecond sleeping is implemented with C<nanosleep()> instead
188of C<usleep()>, you can mix subsecond sleeping with signals since
64a7a97c
RGS
189C<nanosleep()> does not use signals. This, however, is not portable,
190and you should first check for the truth value of
4ed0e2d4
RGS
191C<&Time::HiRes::d_nanosleep> to see whether you have nanosleep, and
192then carefully read your C<nanosleep()> C API documentation for any
44d3ce20 193peculiarities.
0be47ac6 194
0cf8ddea
RGS
195If you are using C<nanosleep> for something else than mixing sleeping
196with signals, give some thought to whether Perl is the tool you should
197be using for work requiring nanosecond accuracies.
dcf686c9 198
bfe77af1
SP
199Remember that unless you are working on a I<hard realtime> system,
200any clocks and timers will be imprecise, especially so if you are working
201in a pre-emptive multiuser system. Understand the difference between
202I<wallclock time> and process time (in UNIX-like systems the sum of
203I<user> and I<system> times). Any attempt to sleep for X seconds will
0f0eae2c 204most probably end up sleeping B<more> than that, but don't be surprised
bfe77af1
SP
205if you end up sleeping slightly B<less>.
206
3c72ec00
JH
207The following functions can be imported from this module.
208No functions are exported by default.
dcf686c9
JH
209
210=over 4
211
212=item gettimeofday ()
213
0be47ac6 214In array context returns a two-element array with the seconds and
f7916ddb 215microseconds since the epoch. In scalar context returns floating
6937b144 216seconds like C<Time::HiRes::time()> (see below).
dcf686c9
JH
217
218=item usleep ( $useconds )
219
44d3ce20 220Sleeps for the number of microseconds (millionths of a second)
bfe77af1
SP
221specified. Returns the number of microseconds actually slept.
222Can sleep for more than one second, unlike the C<usleep> system call.
223Can also sleep for zero seconds, which often works like a I<thread yield>.
170c5524
SP
224See also C<Time::HiRes::usleep()>, C<Time::HiRes::sleep()>, and
225C<Time::HiRes::clock_nanosleep()>.
44d3ce20
RGS
226
227Do not expect usleep() to be exact down to one microsecond.
228
229=item nanosleep ( $nanoseconds )
230
231Sleeps for the number of nanoseconds (1e9ths of a second) specified.
232Returns the number of nanoseconds actually slept (accurate only to
233microseconds, the nearest thousand of them). Can sleep for more than
bfe77af1
SP
234one second. Can also sleep for zero seconds, which often works like
235a I<thread yield>. See also C<Time::HiRes::sleep()>,
170c5524 236C<Time::HiRes::usleep()>, and C<Time::HiRes::clock_nanosleep()>.
44d3ce20
RGS
237
238Do not expect nanosleep() to be exact down to one nanosecond.
239Getting even accuracy of one thousand nanoseconds is good.
dcf686c9
JH
240
241=item ualarm ( $useconds [, $interval_useconds ] )
242
6937b144
MJD
243Issues a C<ualarm> call; the C<$interval_useconds> is optional and
244will be zero if unspecified, resulting in C<alarm>-like behaviour.
dcf686c9 245
bf8300de
RGS
246Returns the remaining time in the alarm in microseconds, or C<undef>
247if an error occurred.
248
bfe77af1
SP
249ualarm(0) will cancel an outstanding ualarm().
250
993164ab 251Note that the interaction between alarms and sleeps is unspecified.
64a7a97c 252
443572f5
RB
253=item tv_interval
254
0be47ac6 255tv_interval ( $ref_to_gettimeofday [, $ref_to_later_gettimeofday] )
dcf686c9 256
f7916ddb 257Returns the floating seconds between the two times, which should have
6937b144 258been returned by C<gettimeofday()>. If the second argument is omitted,
f7916ddb 259then the current time is used.
dcf686c9
JH
260
261=item time ()
262
f7916ddb 263Returns a floating seconds since the epoch. This function can be
6937b144
MJD
264imported, resulting in a nice drop-in replacement for the C<time>
265provided with core Perl; see the L</EXAMPLES> below.
dcf686c9 266
6937b144
MJD
267B<NOTE 1>: This higher resolution timer can return values either less
268or more than the core C<time()>, depending on whether your platform
269rounds the higher resolution timer values up, down, or to the nearest second
270to get the core C<time()>, but naturally the difference should be never
ced84e60
SP
271more than half a second. See also L</clock_getres>, if available
272in your system.
f7916ddb 273
6937b144
MJD
274B<NOTE 2>: Since Sunday, September 9th, 2001 at 01:46:40 AM GMT, when
275the C<time()> seconds since epoch rolled over to 1_000_000_000, the
0be47ac6
JH
276default floating point format of Perl and the seconds since epoch have
277conspired to produce an apparent bug: if you print the value of
4ed0e2d4
RGS
278C<Time::HiRes::time()> you seem to be getting only five decimals, not
279six as promised (microseconds). Not to worry, the microseconds are
64a7a97c 280there (assuming your platform supports such granularity in the first
4ed0e2d4
RGS
281place). What is going on is that the default floating point format of
282Perl only outputs 15 digits. In this case that means ten digits
283before the decimal separator and five after. To see the microseconds
284you can use either C<printf>/C<sprintf> with C<"%.6f">, or the
285C<gettimeofday()> function in list context, which will give you the
286seconds and microseconds as two separate values.
389199d8 287
dcf686c9
JH
288=item sleep ( $floating_seconds )
289
f7916ddb 290Sleeps for the specified amount of seconds. Returns the number of
64a7a97c
RGS
291seconds actually slept (a floating point value). This function can
292be imported, resulting in a nice drop-in replacement for the C<sleep>
6937b144 293provided with perl, see the L</EXAMPLES> below.
dcf686c9 294
993164ab 295Note that the interaction between alarms and sleeps is unspecified.
64a7a97c 296
dcf686c9
JH
297=item alarm ( $floating_seconds [, $interval_floating_seconds ] )
298
6937b144 299The C<SIGALRM> signal is sent after the specified number of seconds.
bf8300de
RGS
300Implemented using C<setitimer()> if available, C<ualarm()> if not.
301The C<$interval_floating_seconds> argument is optional and will be
302zero if unspecified, resulting in C<alarm()>-like behaviour. This
303function can be imported, resulting in a nice drop-in replacement for
304the C<alarm> provided with perl, see the L</EXAMPLES> below.
305
306Returns the remaining time in the alarm in seconds, or C<undef>
307if an error occurred.
dcf686c9 308
64a7a97c
RGS
309B<NOTE 1>: With some combinations of operating systems and Perl
310releases C<SIGALRM> restarts C<select()>, instead of interrupting it.
311This means that an C<alarm()> followed by a C<select()> may together
858dcda5 312take the sum of the times specified for the C<alarm()> and the
64a7a97c
RGS
313C<select()>, not just the time of the C<alarm()>.
314
993164ab 315Note that the interaction between alarms and sleeps is unspecified.
3f2ee006 316
6937b144 317=item setitimer ( $which, $floating_seconds [, $interval_floating_seconds ] )
3c72ec00 318
bfe77af1 319Start up an interval timer: after a certain time, a signal ($which) arrives,
64a7a97c
RGS
320and more signals may keep arriving at certain intervals. To disable
321an "itimer", use C<$floating_seconds> of zero. If the
322C<$interval_floating_seconds> is set to zero (or unspecified), the
323timer is disabled B<after> the next delivered signal.
3c72ec00 324
6937b144
MJD
325Use of interval timers may interfere with C<alarm()>, C<sleep()>,
326and C<usleep()>. In standard-speak the "interaction is unspecified",
0be47ac6 327which means that I<anything> may happen: it may work, it may not.
3c72ec00
JH
328
329In scalar context, the remaining time in the timer is returned.
330
331In list context, both the remaining time and the interval are returned.
332
bfe77af1 333There are usually three or four interval timers (signals) available: the
4ed0e2d4
RGS
334C<$which> can be C<ITIMER_REAL>, C<ITIMER_VIRTUAL>, C<ITIMER_PROF>, or
335C<ITIMER_REALPROF>. Note that which ones are available depends: true
e5620114
RGS
336UNIX platforms usually have the first three, but only Solaris seems to
337have C<ITIMER_REALPROF> (which is used to profile multithreaded programs).
0f0eae2c 338Win32 unfortunately does not have interval timers.
3c72ec00 339
993164ab 340C<ITIMER_REAL> results in C<alarm()>-like behaviour. Time is counted in
6937b144 341I<real time>; that is, wallclock time. C<SIGALRM> is delivered when
3c72ec00
JH
342the timer expires.
343
4ed0e2d4
RGS
344C<ITIMER_VIRTUAL> counts time in (process) I<virtual time>; that is,
345only when the process is running. In multiprocessor/user/CPU systems
346this may be more or less than real or wallclock time. (This time is
347also known as the I<user time>.) C<SIGVTALRM> is delivered when the
348timer expires.
3c72ec00 349
6937b144 350C<ITIMER_PROF> counts time when either the process virtual time or when
0be47ac6
JH
351the operating system is running on behalf of the process (such as I/O).
352(This time is also known as the I<system time>.) (The sum of user
6937b144
MJD
353time and system time is known as the I<CPU time>.) C<SIGPROF> is
354delivered when the timer expires. C<SIGPROF> can interrupt system calls.
3c72ec00
JH
355
356The semantics of interval timers for multithreaded programs are
357system-specific, and some systems may support additional interval
bfe77af1
SP
358timers. For example, it is unspecified which thread gets the signals.
359See your C<setitimer()> documentation.
3c72ec00
JH
360
361=item getitimer ( $which )
362
6937b144 363Return the remaining time in the interval timer specified by C<$which>.
3c72ec00
JH
364
365In scalar context, the remaining time is returned.
366
367In list context, both the remaining time and the interval are returned.
6937b144 368The interval is always what you put in using C<setitimer()>.
3c72ec00 369
ced84e60
SP
370=item clock_gettime ( $which )
371
372Return as seconds the current value of the POSIX high resolution timer
373specified by C<$which>. All implementations that support POSIX high
374resolution timers are supposed to support at least the C<$which> value
375of C<CLOCK_REALTIME>, which is supposed to return results close to the
376results of C<gettimeofday>, or the number of seconds since 00:00:00:00
377January 1, 1970 Greenwich Mean Time (GMT). Do not assume that
378CLOCK_REALTIME is zero, it might be one, or something else.
379Another potentially useful (but not available everywhere) value is
380C<CLOCK_MONOTONIC>, which guarantees a monotonically increasing time
e5620114
RGS
381value (unlike time() or gettimeofday(), which can be adjusted).
382See your system documentation for other possibly supported values.
ced84e60
SP
383
384=item clock_getres ( $which )
385
386Return as seconds the resolution of the POSIX high resolution timer
387specified by C<$which>. All implementations that support POSIX high
388resolution timers are supposed to support at least the C<$which> value
170c5524
SP
389of C<CLOCK_REALTIME>, see L</clock_gettime>.
390
98f12c0e
JH
391B<NOTE>: the resolution returned may be highly optimistic. Even if
392the resolution is high (a small number), all it means is that you'll
393be able to specify the arguments to clock_gettime() and clock_nanosleep()
394with that resolution. The system might not actually be able to measure
395events at that resolution, and the various overheads and the overall system
396load are certain to affect any timings.
397
a8fb48f7 398=item clock_nanosleep ( $which, $nanoseconds, $flags = 0)
170c5524 399
a8fb48f7
SP
400Sleeps for the number of nanoseconds (1e9ths of a second) specified.
401Returns the number of nanoseconds actually slept. The $which is the
170c5524
SP
402"clock id", as with clock_gettime() and clock_getres(). The flags
403default to zero but C<TIMER_ABSTIME> can specified (must be exported
404explicitly) which means that C<$nanoseconds> is not a time interval
405(as is the default) but instead an absolute time. Can sleep for more
406than one second. Can also sleep for zero seconds, which often works
407like a I<thread yield>. See also C<Time::HiRes::sleep()>,
408C<Time::HiRes::usleep()>, and C<Time::HiRes::nanosleep()>.
409
410Do not expect clock_nanosleep() to be exact down to one nanosecond.
411Getting even accuracy of one thousand nanoseconds is good.
412
413=item clock()
414
415Return as seconds the I<process time> (user + system time) spent by
416the process since the first call to clock() (the definition is B<not>
417"since the start of the process", though if you are lucky these times
418may be quite close to each other, depending on the system). What this
419means is that you probably need to store the result of your first call
420to clock(), and subtract that value from the following results of clock().
421
422The time returned also includes the process times of the terminated
423child processes for which wait() has been executed. This value is
424somewhat like the second value returned by the times() of core Perl,
425but not necessarily identical. Note that due to backward
ff7df920
SP
426compatibility limitations the returned value may wrap around at about
4272147 seconds or at about 36 minutes.
ced84e60 428
75d5269b
SP
429=item stat
430
431=item stat FH
432
433=item stat EXPR
434
0f0eae2c
Z
435=item lstat
436
437=item lstat FH
438
439=item lstat EXPR
440
441As L<perlfunc/stat> or L<perlfunc/lstat>
442but with the access/modify/change file timestamps
75d5269b
SP
443in subsecond resolution, if the operating system and the filesystem
444both support such timestamps. To override the standard stat():
445
446 use Time::HiRes qw(stat);
447
448Test for the value of &Time::HiRes::d_hires_stat to find out whether
449the operating system supports subsecond file timestamps: a value
450larger than zero means yes. There are unfortunately no easy
451ways to find out whether the filesystem supports such timestamps.
c09e847b
SP
452UNIX filesystems often do; NTFS does; FAT doesn't (FAT timestamp
453granularity is B<two> seconds).
75d5269b
SP
454
455A zero return value of &Time::HiRes::d_hires_stat means that
0f0eae2c
Z
456Time::HiRes::stat is a no-op passthrough for CORE::stat()
457(and likewise for lstat),
75d5269b 458and therefore the timestamps will stay integers. The same
bfe77af1 459thing will happen if the filesystem does not do subsecond timestamps,
c09e847b 460even if the &Time::HiRes::d_hires_stat is non-zero.
75d5269b
SP
461
462In any case do not expect nanosecond resolution, or even a microsecond
bfe77af1
SP
463resolution. Also note that the modify/access timestamps might have
464different resolutions, and that they need not be synchronized, e.g.
465if the operations are
466
467 write
468 stat # t1
469 read
470 stat # t2
471
472the access time stamp from t2 need not be greater-than the modify
473time stamp from t1: it may be equal or I<less>.
75d5269b 474
c4a535af
SH
475=item utime LIST
476
477As L<perlfunc/utime>
478but with the ability to set the access/modify file timestamps
de3293c0
CBW
479in subsecond resolution, if the operating system and the filesystem,
480and the mount options of the filesystem, all support such timestamps.
481
482To override the standard utime():
c4a535af
SH
483
484 use Time::HiRes qw(utime);
485
486Test for the value of &Time::HiRes::d_hires_utime to find out whether
487the operating system supports setting subsecond file timestamps.
488
489As with CORE::utime(), passing undef as both the atime and mtime will
490call the syscall with a NULL argument.
491
492The actual achievable subsecond resolution depends on the combination
493of the operating system and the filesystem.
494
de3293c0
CBW
495Modifying the timestamps may not be possible at all: for example, the
496C<noatime> filesystem mount option may prohibit you from changing the
497access time timestamp.
498
c4a535af
SH
499Returns the number of files successfully changed.
500
dcf686c9
JH
501=back
502
503=head1 EXAMPLES
504
505 use Time::HiRes qw(usleep ualarm gettimeofday tv_interval);
506
507 $microseconds = 750_000;
70cf0185 508 usleep($microseconds);
dcf686c9
JH
509
510 # signal alarm in 2.5s & every .1s thereafter
70cf0185 511 ualarm(2_500_000, 100_000);
bfe77af1
SP
512 # cancel that ualarm
513 ualarm(0);
dcf686c9
JH
514
515 # get seconds and microseconds since the epoch
70cf0185 516 ($s, $usec) = gettimeofday();
dcf686c9
JH
517
518 # measure elapsed time
519 # (could also do by subtracting 2 gettimeofday return values)
520 $t0 = [gettimeofday];
521 # do bunch of stuff here
522 $t1 = [gettimeofday];
523 # do more stuff here
524 $t0_t1 = tv_interval $t0, $t1;
0be47ac6 525
dcf686c9
JH
526 $elapsed = tv_interval ($t0, [gettimeofday]);
527 $elapsed = tv_interval ($t0); # equivalent code
528
529 #
530 # replacements for time, alarm and sleep that know about
531 # floating seconds
532 #
533 use Time::HiRes;
534 $now_fractions = Time::HiRes::time;
535 Time::HiRes::sleep (2.5);
536 Time::HiRes::alarm (10.6666666);
0be47ac6 537
dcf686c9
JH
538 use Time::HiRes qw ( time alarm sleep );
539 $now_fractions = time;
540 sleep (2.5);
541 alarm (10.6666666);
542
3c72ec00
JH
543 # Arm an interval timer to go off first at 10 seconds and
544 # after that every 2.5 seconds, in process virtual time
545
546 use Time::HiRes qw ( setitimer ITIMER_VIRTUAL time );
547
36d6c396 548 $SIG{VTALRM} = sub { print time, "\n" };
3c72ec00
JH
549 setitimer(ITIMER_VIRTUAL, 10, 2.5);
550
1a7d3a53
SP
551 use Time::HiRes qw( clock_gettime clock_getres CLOCK_REALTIME );
552 # Read the POSIX high resolution timer.
0f0eae2c 553 my $high = clock_gettime(CLOCK_REALTIME);
1a7d3a53
SP
554 # But how accurate we can be, really?
555 my $reso = clock_getres(CLOCK_REALTIME);
ced84e60 556
170c5524
SP
557 use Time::HiRes qw( clock_nanosleep TIMER_ABSTIME );
558 clock_nanosleep(CLOCK_REALTIME, 1e6);
559 clock_nanosleep(CLOCK_REALTIME, 2e9, TIMER_ABSTIME);
560
561 use Time::HiRes qw( clock );
562 my $clock0 = clock();
563 ... # Do something.
564 my $clock1 = clock();
565 my $clockd = $clock1 - $clock0;
566
c09e847b
SP
567 use Time::HiRes qw( stat );
568 my ($atime, $mtime, $ctime) = (stat("istics"))[8, 9, 10];
569
dcf686c9
JH
570=head1 C API
571
572In addition to the perl API described above, a C API is available for
573extension writers. The following C functions are available in the
574modglobal hash:
575
576 name C prototype
577 --------------- ----------------------
120b53f9 578 Time::NVtime NV (*)()
06252d99 579 Time::U2time void (*)(pTHX_ UV ret[2])
dcf686c9 580
6937b144
MJD
581Both functions return equivalent information (like C<gettimeofday>)
582but with different representations. The names C<NVtime> and C<U2time>
dcf686c9 583were selected mainly because they are operating system independent.
56c1b3bd
RGS
584(C<gettimeofday> is Unix-centric, though some platforms like Win32 and
585VMS have emulations for it.)
dcf686c9 586
6937b144 587Here is an example of using C<NVtime> from C:
dcf686c9 588
120b53f9 589 NV (*myNVtime)(); /* Returns -1 on failure. */
07e4dd7a 590 SV **svp = hv_fetchs(PL_modglobal, "Time::NVtime", 0);
dcf686c9
JH
591 if (!svp) croak("Time::HiRes is required");
592 if (!SvIOK(*svp)) croak("Time::NVtime isn't a function pointer");
120b53f9
RS
593 myNVtime = INT2PTR(NV(*)(), SvIV(*svp));
594 printf("The current time is: %" NVff "\n", (*myNVtime)());
dcf686c9 595
db0b859f
JH
596=head1 DIAGNOSTICS
597
34f69483
SP
598=head2 useconds or interval more than ...
599
600In ualarm() you tried to use number of microseconds or interval (also
601in microseconds) more than 1_000_000 and setitimer() is not available
602in your system to emulate that case.
603
db0b859f
JH
604=head2 negative time not invented yet
605
606You tried to use a negative time argument.
607
608=head2 internal error: useconds < 0 (unsigned ... signed ...)
609
610Something went horribly wrong-- the number of microseconds that cannot
611become negative just became negative. Maybe your compiler is broken?
612
bf8300de
RGS
613=head2 useconds or uinterval equal to or more than 1000000
614
615In some platforms it is not possible to get an alarm with subsecond
616resolution and later than one second.
617
618=head2 unimplemented in this platform
619
620Some calls simply aren't available, real or emulated, on every platform.
621
f03b998d
JH
622=head1 CAVEATS
623
6937b144 624Notice that the core C<time()> maybe rounding rather than truncating.
d8cb5b61
RGS
625What this means is that the core C<time()> may be reporting the time
626as one second later than C<gettimeofday()> and C<Time::HiRes::time()>.
627
628Adjusting the system clock (either manually or by services like ntp)
629may cause problems, especially for long running programs that assume
630a monotonously increasing time (note that all platforms do not adjust
631time as gracefully as UNIX ntp does). For example in Win32 (and derived
632platforms like Cygwin and MinGW) the Time::HiRes::time() may temporarily
633drift off from the system clock (and the original time()) by up to 0.5
634seconds. Time::HiRes will notice this eventually and recalibrate.
ced84e60 635Note that since Time::HiRes 1.77 the clock_gettime(CLOCK_MONOTONIC)
1a7d3a53 636might help in this (in case your system supports CLOCK_MONOTONIC).
f03b998d 637
e5620114
RGS
638Some systems have APIs but not implementations: for example QNX and Haiku
639have the interval timer APIs but not the functionality.
640
c4a535af
SH
641In pre-Sierra macOS (pre-10.12, OS X) clock_getres(), clock_gettime()
642and clock_nanosleep() are emulated using the Mach timers; as a side
643effect of being emulated the CLOCK_REALTIME and CLOCK_MONOTONIC are
644the same timer.
645
646gnukfreebsd seems to have non-functional futimens() and utimensat()
647(at least as of 10.1): therefore the hires utime() does not work.
3b614a59 648
26e22fd9
RGS
649=head1 SEE ALSO
650
ced84e60
SP
651Perl modules L<BSD::Resource>, L<Time::TAI64>.
652
bfe77af1
SP
653Your system documentation for C<clock>, C<clock_gettime>,
654C<clock_getres>, C<clock_nanosleep>, C<clock_settime>, C<getitimer>,
655C<gettimeofday>, C<setitimer>, C<sleep>, C<stat>, C<ualarm>.
26e22fd9 656
dcf686c9
JH
657=head1 AUTHORS
658
659D. Wegscheid <wegscd@whirlpool.com>
660R. Schertler <roderick@argon.org>
661J. Hietaniemi <jhi@iki.fi>
662G. Aas <gisle@aas.no>
663
3f2ee006 664=head1 COPYRIGHT AND LICENSE
dcf686c9 665
3f2ee006 666Copyright (c) 1996-2002 Douglas E. Wegscheid. All rights reserved.
dcf686c9 667
bf8300de
RGS
668Copyright (c) 2002, 2003, 2004, 2005, 2006, 2007, 2008 Jarkko Hietaniemi.
669All rights reserved.
dcf686c9 670
0f0eae2c 671Copyright (C) 2011, 2012, 2013 Andrew Main (Zefram) <zefram@fysh.org>
91a2e9f6 672
3f2ee006
HS
673This program is free software; you can redistribute it and/or modify
674it under the same terms as Perl itself.
dcf686c9
JH
675
676=cut