This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Integrate win32/perlhost.h from maintenance branch.
[perl5.git] / ext / Time / HiRes / HiRes.xs
1 #ifdef __cplusplus
2 extern "C" {
3 #endif
4 #include "EXTERN.h"
5 #include "perl.h"
6 #include "XSUB.h"
7 #ifdef WIN32
8 #include <time.h>
9 #else
10 #include <sys/time.h>
11 #endif
12 #ifdef __cplusplus
13 }
14 #endif
15
16 static IV
17 constant(char *name, int arg)
18 {
19     errno = 0;
20     switch (*name) {
21     case 'I':
22       if (strEQ(name, "ITIMER_REAL"))
23 #ifdef ITIMER_REAL
24         return ITIMER_REAL;
25 #else
26         goto not_there;
27 #endif
28       if (strEQ(name, "ITIMER_REALPROF"))
29 #ifdef ITIMER_REALPROF
30         return ITIMER_REALPROF;
31 #else
32         goto not_there;
33 #endif
34       if (strEQ(name, "ITIMER_VIRTUAL"))
35 #ifdef ITIMER_VIRTUAL
36         return ITIMER_VIRTUAL;
37 #else
38         goto not_there;
39 #endif
40       if (strEQ(name, "ITIMER_PROF"))
41 #ifdef ITIMER_PROF
42         return ITIMER_PROF;
43 #else
44         goto not_there;
45 #endif
46       break;
47     }
48     errno = EINVAL;
49     return 0;
50
51 not_there:
52     errno = ENOENT;
53     return 0;
54 }
55
56 #if !defined(HAS_GETTIMEOFDAY) && defined(WIN32)
57 #define HAS_GETTIMEOFDAY
58
59 /* shows up in winsock.h?
60 struct timeval {
61  long tv_sec;
62  long tv_usec;
63 }
64 */
65
66 int
67 gettimeofday (struct timeval *tp, int nothing)
68 {
69  SYSTEMTIME st;
70  time_t tt;
71  struct tm tmtm;
72  /* mktime converts local to UTC */
73  GetLocalTime (&st);
74  tmtm.tm_sec = st.wSecond;
75  tmtm.tm_min = st.wMinute;
76  tmtm.tm_hour = st.wHour;
77  tmtm.tm_mday = st.wDay;
78  tmtm.tm_mon = st.wMonth - 1;
79  tmtm.tm_year = st.wYear - 1900;
80  tmtm.tm_isdst = -1;
81  tt = mktime (&tmtm);
82  tp->tv_sec = tt;
83  tp->tv_usec = st.wMilliseconds * 1000;
84  return 0;
85 }
86 #endif
87
88 #if !defined(HAS_GETTIMEOFDAY) && defined(VMS)
89 #define HAS_GETTIMEOFDAY
90
91 #include <time.h> /* gettimeofday */
92 #include <stdlib.h> /* qdiv */
93 #include <starlet.h> /* sys$gettim */
94 #include <descrip.h>
95 #ifdef __VAX
96 #include <lib$routines.h> /* lib$ediv() */
97 #endif
98
99 /*
100         VMS binary time is expressed in 100 nano-seconds since
101         system base time which is 17-NOV-1858 00:00:00.00
102 */
103
104 #define DIV_100NS_TO_SECS  10000000L
105 #define DIV_100NS_TO_USECS 10L
106
107 /* 
108         gettimeofday is supposed to return times since the epoch
109         so need to determine this in terms of VMS base time
110 */
111 static $DESCRIPTOR(dscepoch,"01-JAN-1970 00:00:00.00");
112
113 #ifdef __VAX
114 static long base_adjust[2]={0L,0L};
115 #else
116 static __int64 base_adjust=0;
117 #endif
118
119 int
120 gettimeofday (struct timeval *tp, void *tpz)
121 {
122  long ret;
123 #ifdef __VAX
124  long quad[2];
125  long quad1[2];
126  long div_100ns_to_secs;
127  long div_100ns_to_usecs;
128  long quo,rem;
129  long quo1,rem1;
130 #else
131  __int64 quad;
132  __qdiv_t ans1,ans2;
133 #endif
134 /*
135         In case of error, tv_usec = 0 and tv_sec = VMS condition code.
136         The return from function is also set to -1.
137         This is not exactly as per the manual page.
138 */
139
140  tp->tv_usec = 0;
141
142 #ifdef __VAX
143  if (base_adjust[0]==0 && base_adjust[1]==0) {
144 #else
145  if (base_adjust==0) { /* Need to determine epoch adjustment */
146 #endif
147         ret=sys$bintim(&dscepoch,&base_adjust);
148         if (1 != (ret &&1)) {
149                 tp->tv_sec = ret;
150                 return -1;
151         }
152  }
153
154  ret=sys$gettim(&quad); /* Get VMS system time */
155  if ((1 && ret) == 1) {
156 #ifdef __VAX
157         quad[0] -= base_adjust[0]; /* convert to epoch offset */
158         quad[1] -= base_adjust[1]; /* convert 2nd half of quadword */
159         div_100ns_to_secs = DIV_100NS_TO_SECS;
160         div_100ns_to_usecs = DIV_100NS_TO_USECS;
161         lib$ediv(&div_100ns_to_secs,&quad,&quo,&rem);
162         quad1[0] = rem;
163         quad1[1] = 0L;
164         lib$ediv(&div_100ns_to_usecs,&quad1,&quo1,&rem1);
165         tp->tv_sec = quo; /* Whole seconds */
166         tp->tv_usec = quo1; /* Micro-seconds */
167 #else
168         quad -= base_adjust; /* convert to epoch offset */
169         ans1=qdiv(quad,DIV_100NS_TO_SECS);
170         ans2=qdiv(ans1.rem,DIV_100NS_TO_USECS);
171         tp->tv_sec = ans1.quot; /* Whole seconds */
172         tp->tv_usec = ans2.quot; /* Micro-seconds */
173 #endif
174  } else {
175         tp->tv_sec = ret;
176         return -1;
177  }
178  return 0;
179 }
180 #endif
181
182 #if !defined(HAS_USLEEP) && defined(HAS_SELECT)
183 #ifndef SELECT_IS_BROKEN
184 #define HAS_USLEEP
185 #define usleep hrt_usleep  /* could conflict with ncurses for static build */
186
187 void
188 hrt_usleep(unsigned long usec)
189 {
190     struct timeval tv;
191     tv.tv_sec = 0;
192     tv.tv_usec = usec;
193     select(0, (Select_fd_set_t)NULL, (Select_fd_set_t)NULL,
194                 (Select_fd_set_t)NULL, &tv);
195 }
196 #endif
197 #endif
198
199 #if !defined(HAS_USLEEP) && defined(WIN32)
200 #define HAS_USLEEP
201 #define usleep hrt_usleep  /* could conflict with ncurses for static build */
202
203 void
204 hrt_usleep(unsigned long usec)
205 {
206     long msec;
207     msec = usec / 1000;
208     Sleep (msec);
209 }
210 #endif
211
212
213 #if !defined(HAS_UALARM) && defined(HAS_SETITIMER)
214 #define HAS_UALARM
215 #define ualarm hrt_ualarm  /* could conflict with ncurses for static build */
216
217 int
218 hrt_ualarm(int usec, int interval)
219 {
220    struct itimerval itv;
221    itv.it_value.tv_sec = usec / 1000000;
222    itv.it_value.tv_usec = usec % 1000000;
223    itv.it_interval.tv_sec = interval / 1000000;
224    itv.it_interval.tv_usec = interval % 1000000;
225    return setitimer(ITIMER_REAL, &itv, 0);
226 }
227 #endif
228
229 #ifdef HAS_GETTIMEOFDAY
230
231 static int
232 myU2time(UV *ret)
233 {
234   struct timeval Tp;
235   int status;
236   status = gettimeofday (&Tp, NULL);
237   ret[0] = Tp.tv_sec;
238   ret[1] = Tp.tv_usec;
239   return status;
240 }
241
242 static NV
243 myNVtime()
244 {
245   struct timeval Tp;
246   int status;
247   status = gettimeofday (&Tp, NULL);
248   return status == 0 ? Tp.tv_sec + (Tp.tv_usec / 1000000.) : -1.0;
249 }
250
251 #endif
252
253 MODULE = Time::HiRes            PACKAGE = Time::HiRes
254
255 PROTOTYPES: ENABLE
256
257 BOOT:
258 #ifdef HAS_GETTIMEOFDAY
259 {
260   UV auv[2];
261   hv_store(PL_modglobal, "Time::NVtime", 12, newSViv((IV) myNVtime()), 0);
262   if (myU2time(auv) == 0)
263     hv_store(PL_modglobal, "Time::U2time", 12, newSViv((IV) auv[0]), 0);
264 }
265 #endif
266
267 IV
268 constant(name, arg)
269         char *          name
270         int             arg
271
272 #ifdef HAS_USLEEP
273
274 void
275 usleep(useconds)
276         int useconds 
277
278 void
279 sleep(...)
280         CODE:
281         if (items > 0)
282             usleep((int)(SvNV(ST(0)) * 1000000));
283         else
284             PerlProc_pause();
285
286 #endif
287
288 #ifdef HAS_UALARM
289
290 int
291 ualarm(useconds,interval=0)
292         int useconds
293         int interval
294
295 int
296 alarm(fseconds,finterval=0)
297         NV fseconds
298         NV finterval
299         PREINIT:
300         int useconds, uinterval;
301         CODE:
302         useconds = fseconds * 1000000;
303         uinterval = finterval * 1000000;
304         RETVAL = ualarm (useconds, uinterval);
305
306         OUTPUT:
307         RETVAL
308
309 #endif
310
311 #ifdef HAS_GETTIMEOFDAY
312
313 void
314 gettimeofday()
315         PREINIT:
316         struct timeval Tp;
317         PPCODE:
318         int status;
319         status = gettimeofday (&Tp, NULL);
320         if (GIMME == G_ARRAY) {
321              EXTEND(sp, 2);
322              PUSHs(sv_2mortal(newSViv(Tp.tv_sec)));
323              PUSHs(sv_2mortal(newSViv(Tp.tv_usec)));
324         } else {
325              EXTEND(sp, 1);
326              PUSHs(sv_2mortal(newSVnv(Tp.tv_sec + (Tp.tv_usec / 1000000.0))));
327         }
328
329 NV
330 time()
331         PREINIT:
332         struct timeval Tp;
333         CODE:
334         int status;
335         status = gettimeofday (&Tp, NULL);
336         RETVAL = Tp.tv_sec + (Tp.tv_usec / 1000000.);
337         OUTPUT:
338         RETVAL
339
340 #endif
341
342 #if defined(HAS_GETITIMER) && defined(HAS_SETITIMER)
343
344 #define TV2NV(tv) ((NV)((tv).tv_sec) + 0.000001 * (NV)((tv).tv_usec))
345
346 void
347 setitimer(which, seconds, interval = 0)
348         int which
349         NV seconds
350         NV interval
351     PREINIT:
352         struct itimerval newit;
353         struct itimerval oldit;
354     PPCODE:
355         newit.it_value.tv_sec  = seconds;
356         newit.it_value.tv_usec =
357           (seconds  - (NV)newit.it_value.tv_sec)    * 1000000.0;
358         newit.it_interval.tv_sec  = interval;
359         newit.it_interval.tv_usec =
360           (interval - (NV)newit.it_interval.tv_sec) * 1000000.0;
361         if (setitimer(which, &newit, &oldit) == 0) {
362           EXTEND(sp, 1);
363           PUSHs(sv_2mortal(newSVnv(TV2NV(oldit.it_value))));
364           if (GIMME == G_ARRAY) {
365             EXTEND(sp, 1);
366             PUSHs(sv_2mortal(newSVnv(TV2NV(oldit.it_interval))));
367           }
368         }
369
370 void
371 getitimer(which)
372         int which
373     PREINIT:
374         struct itimerval nowit;
375     PPCODE:
376         if (getitimer(which, &nowit) == 0) {
377           EXTEND(sp, 1);
378           PUSHs(sv_2mortal(newSVnv(TV2NV(nowit.it_value))));
379           if (GIMME == G_ARRAY) {
380             EXTEND(sp, 1);
381             PUSHs(sv_2mortal(newSVnv(TV2NV(nowit.it_interval))));
382           }
383         }
384
385 #endif
386
387 # $Id: HiRes.xs,v 1.11 1999/03/16 02:27:38 wegscd Exp wegscd $
388
389 # $Log: HiRes.xs,v $
390 # Revision 1.11  1999/03/16 02:27:38  wegscd
391 # Add U2time, NVtime. Fix symbols for static link.
392 #
393 # Revision 1.10  1998/09/30 02:36:25  wegscd
394 # Add VMS changes.
395 #
396 # Revision 1.9  1998/07/07 02:42:06  wegscd
397 # Win32 usleep()
398 #
399 # Revision 1.8  1998/07/02 01:47:26  wegscd
400 # Add Win32 code for gettimeofday.
401 #
402 # Revision 1.7  1997/11/13 02:08:12  wegscd
403 # Add missing EXTEND in gettimeofday() scalar code.
404 #
405 # Revision 1.6  1997/11/11 02:32:35  wegscd
406 # Do something useful when calling gettimeofday() in a scalar context.
407 # The patch is courtesy of Gisle Aas.
408 #
409 # Revision 1.5  1997/11/06 03:10:47  wegscd
410 # Fake ualarm() if we have setitimer.
411 #
412 # Revision 1.4  1997/11/05 05:41:23  wegscd
413 # Turn prototypes ON (suggested by Gisle Aas)
414 #
415 # Revision 1.3  1997/10/13 20:56:15  wegscd
416 # Add PROTOTYPES: DISABLE
417 #
418 # Revision 1.2  1997/05/23 01:01:38  wegscd
419 # Conditional compilation, depending on what the OS gives us.
420 #
421 # Revision 1.1  1996/09/03 18:26:35  wegscd
422 # Initial revision
423 #
424 #