blob: c5ab69305061baeb352e8ac42b344e7e1e6c1ce4 [file] [log] [blame]
Bram Moolenaar0a8fed62020-02-14 13:22:17 +01001/* vi:set ts=8 sts=4 sw=4 noet:
2 *
3 * VIM - Vi IMproved by Bram Moolenaar
4 *
5 * Do ":help uganda" in Vim to read copying and usage conditions.
6 * Do ":help credits" in Vim to see a list of people who contributed.
7 * See README.txt for an overview of the Vim source code.
8 */
9
10/*
11 * time.c: functions related to time and timers
12 */
13
14#include "vim.h"
15
16/*
17 * Cache of the current timezone name as retrieved from TZ, or an empty string
18 * where unset, up to 64 octets long including trailing null byte.
19 */
20#if defined(HAVE_LOCALTIME_R) && defined(HAVE_TZSET)
21static char tz_cache[64];
22#endif
23
Bram Moolenaar00d253e2020-04-06 22:13:01 +020024#define FOR_ALL_TIMERS(t) \
25 for ((t) = first_timer; (t) != NULL; (t) = (t)->tr_next)
26
Bram Moolenaar0a8fed62020-02-14 13:22:17 +010027/*
28 * Call either localtime(3) or localtime_r(3) from POSIX libc time.h, with the
29 * latter version preferred for reentrancy.
30 *
31 * If we use localtime_r(3) and we have tzset(3) available, check to see if the
32 * environment variable TZ has changed since the last run, and call tzset(3) to
33 * update the global timezone variables if it has. This is because the POSIX
34 * standard doesn't require localtime_r(3) implementations to do that as it
35 * does with localtime(3), and we don't want to call tzset(3) every time.
36 */
37 static struct tm *
38vim_localtime(
39 const time_t *timep, // timestamp for local representation
40 struct tm *result UNUSED) // pointer to caller return buffer
41{
42#ifdef HAVE_LOCALTIME_R
43# ifdef HAVE_TZSET
44 char *tz; // pointer for TZ environment var
45
46 tz = (char *)mch_getenv((char_u *)"TZ");
47 if (tz == NULL)
48 tz = "";
49 if (STRNCMP(tz_cache, tz, sizeof(tz_cache) - 1) != 0)
50 {
51 tzset();
52 vim_strncpy((char_u *)tz_cache, (char_u *)tz, sizeof(tz_cache) - 1);
53 }
54# endif // HAVE_TZSET
55 return localtime_r(timep, result);
56#else
57 return localtime(timep);
58#endif // HAVE_LOCALTIME_R
59}
60
61/*
62 * Return the current time in seconds. Calls time(), unless test_settime()
63 * was used.
64 */
65 time_T
66vim_time(void)
67{
68# ifdef FEAT_EVAL
69 return time_for_testing == 0 ? time(NULL) : time_for_testing;
70# else
71 return time(NULL);
72# endif
73}
74
75/*
76 * Replacement for ctime(), which is not safe to use.
77 * Requires strftime(), otherwise returns "(unknown)".
78 * If "thetime" is invalid returns "(invalid)". Never returns NULL.
79 * When "add_newline" is TRUE add a newline like ctime() does.
80 * Uses a static buffer.
81 */
82 char *
83get_ctime(time_t thetime, int add_newline)
84{
85 static char buf[50];
86#ifdef HAVE_STRFTIME
87 struct tm tmval;
88 struct tm *curtime;
89
90 curtime = vim_localtime(&thetime, &tmval);
91 // MSVC returns NULL for an invalid value of seconds.
92 if (curtime == NULL)
93 vim_strncpy((char_u *)buf, (char_u *)_("(Invalid)"), sizeof(buf) - 1);
94 else
95 {
96 (void)strftime(buf, sizeof(buf) - 1, _("%a %b %d %H:%M:%S %Y"),
97 curtime);
98# ifdef MSWIN
99 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
100 {
101 char_u *to_free = NULL;
102 int len;
103
104 acp_to_enc((char_u *)buf, (int)strlen(buf), &to_free, &len);
105 if (to_free != NULL)
106 {
107 STRCPY(buf, to_free);
108 vim_free(to_free);
109 }
110 }
111# endif
112 }
113#else
114 STRCPY(buf, "(unknown)");
115#endif
116 if (add_newline)
117 STRCAT(buf, "\n");
118 return buf;
119}
120
121#if defined(FEAT_EVAL) || defined(PROTO)
122
123#if defined(MACOS_X)
124# include <time.h> // for time_t
125#endif
126
127/*
128 * "localtime()" function
129 */
130 void
131f_localtime(typval_T *argvars UNUSED, typval_T *rettv)
132{
133 rettv->vval.v_number = (varnumber_T)time(NULL);
134}
135
136# if defined(FEAT_RELTIME)
137/*
138 * Convert a List to proftime_T.
139 * Return FAIL when there is something wrong.
140 */
141 static int
142list2proftime(typval_T *arg, proftime_T *tm)
143{
144 long n1, n2;
145 int error = FALSE;
146
147 if (arg->v_type != VAR_LIST || arg->vval.v_list == NULL
148 || arg->vval.v_list->lv_len != 2)
149 return FAIL;
150 n1 = list_find_nr(arg->vval.v_list, 0L, &error);
151 n2 = list_find_nr(arg->vval.v_list, 1L, &error);
152# ifdef MSWIN
153 tm->HighPart = n1;
154 tm->LowPart = n2;
155# else
156 tm->tv_sec = n1;
157 tm->tv_usec = n2;
158# endif
159 return error ? FAIL : OK;
160}
161# endif // FEAT_RELTIME
162
163/*
164 * "reltime()" function
165 */
166 void
167f_reltime(typval_T *argvars UNUSED, typval_T *rettv UNUSED)
168{
169# ifdef FEAT_RELTIME
170 proftime_T res;
171 proftime_T start;
172
173 if (argvars[0].v_type == VAR_UNKNOWN)
174 {
175 // No arguments: get current time.
176 profile_start(&res);
177 }
178 else if (argvars[1].v_type == VAR_UNKNOWN)
179 {
180 if (list2proftime(&argvars[0], &res) == FAIL)
181 return;
182 profile_end(&res);
183 }
184 else
185 {
186 // Two arguments: compute the difference.
187 if (list2proftime(&argvars[0], &start) == FAIL
188 || list2proftime(&argvars[1], &res) == FAIL)
189 return;
190 profile_sub(&res, &start);
191 }
192
193 if (rettv_list_alloc(rettv) == OK)
194 {
195 long n1, n2;
196
197# ifdef MSWIN
198 n1 = res.HighPart;
199 n2 = res.LowPart;
200# else
201 n1 = res.tv_sec;
202 n2 = res.tv_usec;
203# endif
204 list_append_number(rettv->vval.v_list, (varnumber_T)n1);
205 list_append_number(rettv->vval.v_list, (varnumber_T)n2);
206 }
207# endif
208}
209
210# ifdef FEAT_FLOAT
211/*
212 * "reltimefloat()" function
213 */
214 void
215f_reltimefloat(typval_T *argvars UNUSED, typval_T *rettv)
216{
217# ifdef FEAT_RELTIME
218 proftime_T tm;
219# endif
220
221 rettv->v_type = VAR_FLOAT;
222 rettv->vval.v_float = 0;
223# ifdef FEAT_RELTIME
224 if (list2proftime(&argvars[0], &tm) == OK)
225 rettv->vval.v_float = profile_float(&tm);
226# endif
227}
228# endif
229
230/*
231 * "reltimestr()" function
232 */
233 void
234f_reltimestr(typval_T *argvars UNUSED, typval_T *rettv)
235{
236# ifdef FEAT_RELTIME
237 proftime_T tm;
238# endif
239
240 rettv->v_type = VAR_STRING;
241 rettv->vval.v_string = NULL;
242# ifdef FEAT_RELTIME
243 if (list2proftime(&argvars[0], &tm) == OK)
244 rettv->vval.v_string = vim_strsave((char_u *)profile_msg(&tm));
245# endif
246}
247
248# if defined(HAVE_STRFTIME) || defined(PROTO)
249/*
250 * "strftime({format}[, {time}])" function
251 */
252 void
253f_strftime(typval_T *argvars, typval_T *rettv)
254{
255 char_u result_buf[256];
256 struct tm tmval;
257 struct tm *curtime;
258 time_t seconds;
259 char_u *p;
260
261 rettv->v_type = VAR_STRING;
262
263 p = tv_get_string(&argvars[0]);
264 if (argvars[1].v_type == VAR_UNKNOWN)
265 seconds = time(NULL);
266 else
267 seconds = (time_t)tv_get_number(&argvars[1]);
268 curtime = vim_localtime(&seconds, &tmval);
269 // MSVC returns NULL for an invalid value of seconds.
270 if (curtime == NULL)
271 rettv->vval.v_string = vim_strsave((char_u *)_("(Invalid)"));
272 else
273 {
274 vimconv_T conv;
275 char_u *enc;
276
277 conv.vc_type = CONV_NONE;
278 enc = enc_locale();
279 convert_setup(&conv, p_enc, enc);
280 if (conv.vc_type != CONV_NONE)
281 p = string_convert(&conv, p, NULL);
282 if (p != NULL)
283 (void)strftime((char *)result_buf, sizeof(result_buf),
284 (char *)p, curtime);
285 else
286 result_buf[0] = NUL;
287
288 if (conv.vc_type != CONV_NONE)
289 vim_free(p);
290 convert_setup(&conv, enc, p_enc);
291 if (conv.vc_type != CONV_NONE)
292 rettv->vval.v_string = string_convert(&conv, result_buf, NULL);
293 else
294 rettv->vval.v_string = vim_strsave(result_buf);
295
296 // Release conversion descriptors
297 convert_setup(&conv, NULL, NULL);
298 vim_free(enc);
299 }
300}
301# endif
302
303# if defined(HAVE_STRPTIME) || defined(PROTO)
304/*
305 * "strptime({format}, {timestring})" function
306 */
307 void
308f_strptime(typval_T *argvars, typval_T *rettv)
309{
310 struct tm tmval;
311 char_u *fmt;
312 char_u *str;
313 vimconv_T conv;
314 char_u *enc;
315
Bram Moolenaara80faa82020-04-12 19:37:17 +0200316 CLEAR_FIELD(tmval);
Bram Moolenaarea1233f2020-06-10 16:54:13 +0200317 tmval.tm_isdst = -1;
Bram Moolenaar0a8fed62020-02-14 13:22:17 +0100318 fmt = tv_get_string(&argvars[0]);
319 str = tv_get_string(&argvars[1]);
320
321 conv.vc_type = CONV_NONE;
322 enc = enc_locale();
323 convert_setup(&conv, p_enc, enc);
324 if (conv.vc_type != CONV_NONE)
325 fmt = string_convert(&conv, fmt, NULL);
326 if (fmt == NULL
327 || strptime((char *)str, (char *)fmt, &tmval) == NULL
328 || (rettv->vval.v_number = mktime(&tmval)) == -1)
329 rettv->vval.v_number = 0;
330
331 if (conv.vc_type != CONV_NONE)
332 vim_free(fmt);
333 convert_setup(&conv, NULL, NULL);
334 vim_free(enc);
335}
336# endif
337
338# if defined(FEAT_TIMERS) || defined(PROTO)
339static timer_T *first_timer = NULL;
340static long last_timer_id = 0;
341
342/*
343 * Return time left until "due". Negative if past "due".
344 */
345 long
346proftime_time_left(proftime_T *due, proftime_T *now)
347{
348# ifdef MSWIN
349 LARGE_INTEGER fr;
350
351 if (now->QuadPart > due->QuadPart)
352 return 0;
353 QueryPerformanceFrequency(&fr);
354 return (long)(((double)(due->QuadPart - now->QuadPart)
355 / (double)fr.QuadPart) * 1000);
356# else
357 if (now->tv_sec > due->tv_sec)
358 return 0;
359 return (due->tv_sec - now->tv_sec) * 1000
360 + (due->tv_usec - now->tv_usec) / 1000;
361# endif
362}
363
364/*
365 * Insert a timer in the list of timers.
366 */
367 static void
368insert_timer(timer_T *timer)
369{
370 timer->tr_next = first_timer;
371 timer->tr_prev = NULL;
372 if (first_timer != NULL)
373 first_timer->tr_prev = timer;
374 first_timer = timer;
375 did_add_timer = TRUE;
376}
377
378/*
379 * Take a timer out of the list of timers.
380 */
381 static void
382remove_timer(timer_T *timer)
383{
384 if (timer->tr_prev == NULL)
385 first_timer = timer->tr_next;
386 else
387 timer->tr_prev->tr_next = timer->tr_next;
388 if (timer->tr_next != NULL)
389 timer->tr_next->tr_prev = timer->tr_prev;
390}
391
392 static void
393free_timer(timer_T *timer)
394{
395 free_callback(&timer->tr_callback);
396 vim_free(timer);
397}
398
399/*
400 * Create a timer and return it. NULL if out of memory.
401 * Caller should set the callback.
402 */
403 timer_T *
404create_timer(long msec, int repeat)
405{
406 timer_T *timer = ALLOC_CLEAR_ONE(timer_T);
407 long prev_id = last_timer_id;
408
409 if (timer == NULL)
410 return NULL;
411 if (++last_timer_id <= prev_id)
412 // Overflow! Might cause duplicates...
413 last_timer_id = 0;
414 timer->tr_id = last_timer_id;
415 insert_timer(timer);
416 if (repeat != 0)
417 timer->tr_repeat = repeat - 1;
418 timer->tr_interval = msec;
419
420 profile_setlimit(msec, &timer->tr_due);
421 return timer;
422}
423
424/*
425 * Invoke the callback of "timer".
426 */
427 static void
428timer_callback(timer_T *timer)
429{
430 typval_T rettv;
431 typval_T argv[2];
432
433 argv[0].v_type = VAR_NUMBER;
434 argv[0].vval.v_number = (varnumber_T)timer->tr_id;
435 argv[1].v_type = VAR_UNKNOWN;
436
437 call_callback(&timer->tr_callback, -1, &rettv, 1, argv);
438 clear_tv(&rettv);
439}
440
441/*
442 * Call timers that are due.
443 * Return the time in msec until the next timer is due.
444 * Returns -1 if there are no pending timers.
445 */
446 long
447check_due_timer(void)
448{
449 timer_T *timer;
450 timer_T *timer_next;
451 long this_due;
452 long next_due = -1;
453 proftime_T now;
454 int did_one = FALSE;
455 int need_update_screen = FALSE;
456 long current_id = last_timer_id;
457
458 // Don't run any timers while exiting or dealing with an error.
459 if (exiting || aborting())
460 return next_due;
461
462 profile_start(&now);
463 for (timer = first_timer; timer != NULL && !got_int; timer = timer_next)
464 {
465 timer_next = timer->tr_next;
466
467 if (timer->tr_id == -1 || timer->tr_firing || timer->tr_paused)
468 continue;
469 this_due = proftime_time_left(&timer->tr_due, &now);
470 if (this_due <= 1)
471 {
472 // Save and restore a lot of flags, because the timer fires while
473 // waiting for a character, which might be halfway a command.
474 int save_timer_busy = timer_busy;
475 int save_vgetc_busy = vgetc_busy;
476 int save_did_emsg = did_emsg;
477 int save_called_emsg = called_emsg;
478 int save_must_redraw = must_redraw;
479 int save_trylevel = trylevel;
480 int save_did_throw = did_throw;
Bram Moolenaara0f7f732021-01-20 22:22:49 +0100481 int save_need_rethrow = need_rethrow;
Bram Moolenaar0a8fed62020-02-14 13:22:17 +0100482 int save_ex_pressedreturn = get_pressedreturn();
483 int save_may_garbage_collect = may_garbage_collect;
484 except_T *save_current_exception = current_exception;
485 vimvars_save_T vvsave;
486
487 // Create a scope for running the timer callback, ignoring most of
488 // the current scope, such as being inside a try/catch.
489 timer_busy = timer_busy > 0 || vgetc_busy > 0;
490 vgetc_busy = 0;
491 called_emsg = 0;
492 did_emsg = FALSE;
493 did_uncaught_emsg = FALSE;
494 must_redraw = 0;
495 trylevel = 0;
496 did_throw = FALSE;
Bram Moolenaara0f7f732021-01-20 22:22:49 +0100497 need_rethrow = FALSE;
Bram Moolenaar0a8fed62020-02-14 13:22:17 +0100498 current_exception = NULL;
499 may_garbage_collect = FALSE;
500 save_vimvars(&vvsave);
501
Bram Moolenaar22286892020-11-05 20:50:51 +0100502 // Invoke the callback.
Bram Moolenaar0a8fed62020-02-14 13:22:17 +0100503 timer->tr_firing = TRUE;
504 timer_callback(timer);
505 timer->tr_firing = FALSE;
506
Bram Moolenaar22286892020-11-05 20:50:51 +0100507 // Restore stuff.
Bram Moolenaar0a8fed62020-02-14 13:22:17 +0100508 timer_next = timer->tr_next;
509 did_one = TRUE;
510 timer_busy = save_timer_busy;
511 vgetc_busy = save_vgetc_busy;
512 if (did_uncaught_emsg)
513 ++timer->tr_emsg_count;
514 did_emsg = save_did_emsg;
515 called_emsg = save_called_emsg;
516 trylevel = save_trylevel;
517 did_throw = save_did_throw;
Bram Moolenaara0f7f732021-01-20 22:22:49 +0100518 need_rethrow = save_need_rethrow;
Bram Moolenaar0a8fed62020-02-14 13:22:17 +0100519 current_exception = save_current_exception;
520 restore_vimvars(&vvsave);
521 if (must_redraw != 0)
522 need_update_screen = TRUE;
523 must_redraw = must_redraw > save_must_redraw
524 ? must_redraw : save_must_redraw;
525 set_pressedreturn(save_ex_pressedreturn);
526 may_garbage_collect = save_may_garbage_collect;
527
528 // Only fire the timer again if it repeats and stop_timer() wasn't
529 // called while inside the callback (tr_id == -1).
530 if (timer->tr_repeat != 0 && timer->tr_id != -1
531 && timer->tr_emsg_count < 3)
532 {
533 profile_setlimit(timer->tr_interval, &timer->tr_due);
534 this_due = proftime_time_left(&timer->tr_due, &now);
535 if (this_due < 1)
536 this_due = 1;
537 if (timer->tr_repeat > 0)
538 --timer->tr_repeat;
539 }
540 else
541 {
542 this_due = -1;
543 remove_timer(timer);
544 free_timer(timer);
545 }
546 }
547 if (this_due > 0 && (next_due == -1 || next_due > this_due))
548 next_due = this_due;
549 }
550
551 if (did_one)
552 redraw_after_callback(need_update_screen);
553
554#ifdef FEAT_BEVAL_TERM
555 if (bevalexpr_due_set)
556 {
557 this_due = proftime_time_left(&bevalexpr_due, &now);
558 if (this_due <= 1)
559 {
560 bevalexpr_due_set = FALSE;
561 if (balloonEval == NULL)
562 {
563 balloonEval = ALLOC_CLEAR_ONE(BalloonEval);
564 balloonEvalForTerm = TRUE;
565 }
566 if (balloonEval != NULL)
567 {
568 general_beval_cb(balloonEval, 0);
569 setcursor();
570 out_flush();
571 }
572 }
573 else if (next_due == -1 || next_due > this_due)
574 next_due = this_due;
575 }
576#endif
577#ifdef FEAT_TERMINAL
578 // Some terminal windows may need their buffer updated.
579 next_due = term_check_timers(next_due, &now);
580#endif
581
582 return current_id != last_timer_id ? 1 : next_due;
583}
584
585/*
586 * Find a timer by ID. Returns NULL if not found;
587 */
588 static timer_T *
589find_timer(long id)
590{
591 timer_T *timer;
592
593 if (id >= 0)
594 {
Bram Moolenaar00d253e2020-04-06 22:13:01 +0200595 FOR_ALL_TIMERS(timer)
Bram Moolenaar0a8fed62020-02-14 13:22:17 +0100596 if (timer->tr_id == id)
597 return timer;
598 }
599 return NULL;
600}
601
602
603/*
604 * Stop a timer and delete it.
605 */
606 void
607stop_timer(timer_T *timer)
608{
609 if (timer->tr_firing)
610 // Free the timer after the callback returns.
611 timer->tr_id = -1;
612 else
613 {
614 remove_timer(timer);
615 free_timer(timer);
616 }
617}
618
619 static void
620stop_all_timers(void)
621{
622 timer_T *timer;
623 timer_T *timer_next;
624
625 for (timer = first_timer; timer != NULL; timer = timer_next)
626 {
627 timer_next = timer->tr_next;
628 stop_timer(timer);
629 }
630}
631
632 static void
633add_timer_info(typval_T *rettv, timer_T *timer)
634{
635 list_T *list = rettv->vval.v_list;
636 dict_T *dict = dict_alloc();
637 dictitem_T *di;
638 long remaining;
639 proftime_T now;
640
641 if (dict == NULL)
642 return;
643 list_append_dict(list, dict);
644
645 dict_add_number(dict, "id", timer->tr_id);
646 dict_add_number(dict, "time", (long)timer->tr_interval);
647
648 profile_start(&now);
649 remaining = proftime_time_left(&timer->tr_due, &now);
650 dict_add_number(dict, "remaining", (long)remaining);
651
652 dict_add_number(dict, "repeat",
653 (long)(timer->tr_repeat < 0 ? -1 : timer->tr_repeat + 1));
654 dict_add_number(dict, "paused", (long)(timer->tr_paused));
655
656 di = dictitem_alloc((char_u *)"callback");
657 if (di != NULL)
658 {
659 if (dict_add(dict, di) == FAIL)
660 vim_free(di);
661 else
662 put_callback(&timer->tr_callback, &di->di_tv);
663 }
664}
665
666 static void
667add_timer_info_all(typval_T *rettv)
668{
669 timer_T *timer;
670
Bram Moolenaar00d253e2020-04-06 22:13:01 +0200671 FOR_ALL_TIMERS(timer)
Bram Moolenaar0a8fed62020-02-14 13:22:17 +0100672 if (timer->tr_id != -1)
673 add_timer_info(rettv, timer);
674}
675
676/*
677 * Mark references in partials of timers.
678 */
679 int
680set_ref_in_timer(int copyID)
681{
682 int abort = FALSE;
683 timer_T *timer;
684 typval_T tv;
685
686 for (timer = first_timer; !abort && timer != NULL; timer = timer->tr_next)
687 {
688 if (timer->tr_callback.cb_partial != NULL)
689 {
690 tv.v_type = VAR_PARTIAL;
691 tv.vval.v_partial = timer->tr_callback.cb_partial;
692 }
693 else
694 {
695 tv.v_type = VAR_FUNC;
696 tv.vval.v_string = timer->tr_callback.cb_name;
697 }
698 abort = abort || set_ref_in_item(&tv, copyID, NULL, NULL);
699 }
700 return abort;
701}
702
703# if defined(EXITFREE) || defined(PROTO)
704 void
705timer_free_all()
706{
707 timer_T *timer;
708
709 while (first_timer != NULL)
710 {
711 timer = first_timer;
712 remove_timer(timer);
713 free_timer(timer);
714 }
715}
716# endif
717
718/*
719 * "timer_info([timer])" function
720 */
721 void
722f_timer_info(typval_T *argvars, typval_T *rettv)
723{
724 timer_T *timer = NULL;
725
726 if (rettv_list_alloc(rettv) != OK)
727 return;
728 if (argvars[0].v_type != VAR_UNKNOWN)
729 {
730 if (argvars[0].v_type != VAR_NUMBER)
731 emsg(_(e_number_exp));
732 else
733 {
734 timer = find_timer((int)tv_get_number(&argvars[0]));
735 if (timer != NULL)
736 add_timer_info(rettv, timer);
737 }
738 }
739 else
740 add_timer_info_all(rettv);
741}
742
743/*
744 * "timer_pause(timer, paused)" function
745 */
746 void
747f_timer_pause(typval_T *argvars, typval_T *rettv UNUSED)
748{
749 timer_T *timer = NULL;
Bram Moolenaar418155d2020-09-06 18:39:38 +0200750 int paused = (int)tv_get_bool(&argvars[1]);
Bram Moolenaar0a8fed62020-02-14 13:22:17 +0100751
752 if (argvars[0].v_type != VAR_NUMBER)
753 emsg(_(e_number_exp));
754 else
755 {
756 timer = find_timer((int)tv_get_number(&argvars[0]));
757 if (timer != NULL)
758 timer->tr_paused = paused;
759 }
760}
761
762/*
763 * "timer_start(time, callback [, options])" function
764 */
765 void
766f_timer_start(typval_T *argvars, typval_T *rettv)
767{
768 long msec = (long)tv_get_number(&argvars[0]);
769 timer_T *timer;
770 int repeat = 0;
771 callback_T callback;
772 dict_T *dict;
773
774 rettv->vval.v_number = -1;
775 if (check_secure())
776 return;
777 if (argvars[2].v_type != VAR_UNKNOWN)
778 {
779 if (argvars[2].v_type != VAR_DICT
780 || (dict = argvars[2].vval.v_dict) == NULL)
781 {
782 semsg(_(e_invarg2), tv_get_string(&argvars[2]));
783 return;
784 }
785 if (dict_find(dict, (char_u *)"repeat", -1) != NULL)
786 repeat = dict_get_number(dict, (char_u *)"repeat");
787 }
788
789 callback = get_callback(&argvars[1]);
790 if (callback.cb_name == NULL)
791 return;
792
793 timer = create_timer(msec, repeat);
794 if (timer == NULL)
795 free_callback(&callback);
796 else
797 {
798 set_callback(&timer->tr_callback, &callback);
799 rettv->vval.v_number = (varnumber_T)timer->tr_id;
800 }
801}
802
803/*
804 * "timer_stop(timer)" function
805 */
806 void
807f_timer_stop(typval_T *argvars, typval_T *rettv UNUSED)
808{
809 timer_T *timer;
810
811 if (argvars[0].v_type != VAR_NUMBER)
812 {
813 emsg(_(e_number_exp));
814 return;
815 }
816 timer = find_timer((int)tv_get_number(&argvars[0]));
817 if (timer != NULL)
818 stop_timer(timer);
819}
820
821/*
822 * "timer_stopall()" function
823 */
824 void
825f_timer_stopall(typval_T *argvars UNUSED, typval_T *rettv UNUSED)
826{
827 stop_all_timers();
828}
829
830# endif // FEAT_TIMERS
831
832# if defined(STARTUPTIME) || defined(PROTO)
833static struct timeval prev_timeval;
834
835# ifdef MSWIN
836/*
837 * Windows doesn't have gettimeofday(), although it does have struct timeval.
838 */
839 static int
840gettimeofday(struct timeval *tv, char *dummy UNUSED)
841{
842 long t = clock();
843 tv->tv_sec = t / CLOCKS_PER_SEC;
844 tv->tv_usec = (t - tv->tv_sec * CLOCKS_PER_SEC) * 1000000 / CLOCKS_PER_SEC;
845 return 0;
846}
847# endif
848
849/*
850 * Save the previous time before doing something that could nest.
851 * set "*tv_rel" to the time elapsed so far.
852 */
853 void
854time_push(void *tv_rel, void *tv_start)
855{
856 *((struct timeval *)tv_rel) = prev_timeval;
857 gettimeofday(&prev_timeval, NULL);
858 ((struct timeval *)tv_rel)->tv_usec = prev_timeval.tv_usec
859 - ((struct timeval *)tv_rel)->tv_usec;
860 ((struct timeval *)tv_rel)->tv_sec = prev_timeval.tv_sec
861 - ((struct timeval *)tv_rel)->tv_sec;
862 if (((struct timeval *)tv_rel)->tv_usec < 0)
863 {
864 ((struct timeval *)tv_rel)->tv_usec += 1000000;
865 --((struct timeval *)tv_rel)->tv_sec;
866 }
867 *(struct timeval *)tv_start = prev_timeval;
868}
869
870/*
871 * Compute the previous time after doing something that could nest.
872 * Subtract "*tp" from prev_timeval;
873 * Note: The arguments are (void *) to avoid trouble with systems that don't
874 * have struct timeval.
875 */
876 void
877time_pop(
878 void *tp) // actually (struct timeval *)
879{
880 prev_timeval.tv_usec -= ((struct timeval *)tp)->tv_usec;
881 prev_timeval.tv_sec -= ((struct timeval *)tp)->tv_sec;
882 if (prev_timeval.tv_usec < 0)
883 {
884 prev_timeval.tv_usec += 1000000;
885 --prev_timeval.tv_sec;
886 }
887}
888
889 static void
890time_diff(struct timeval *then, struct timeval *now)
891{
892 long usec;
893 long msec;
894
895 usec = now->tv_usec - then->tv_usec;
896 msec = (now->tv_sec - then->tv_sec) * 1000L + usec / 1000L,
897 usec = usec % 1000L;
898 fprintf(time_fd, "%03ld.%03ld", msec, usec >= 0 ? usec : usec + 1000L);
899}
900
901 void
902time_msg(
903 char *mesg,
904 void *tv_start) // only for do_source: start time; actually
905 // (struct timeval *)
906{
907 static struct timeval start;
908 struct timeval now;
909
910 if (time_fd != NULL)
911 {
912 if (strstr(mesg, "STARTING") != NULL)
913 {
914 gettimeofday(&start, NULL);
915 prev_timeval = start;
916 fprintf(time_fd, "\n\ntimes in msec\n");
917 fprintf(time_fd, " clock self+sourced self: sourced script\n");
918 fprintf(time_fd, " clock elapsed: other lines\n\n");
919 }
920 gettimeofday(&now, NULL);
921 time_diff(&start, &now);
922 if (((struct timeval *)tv_start) != NULL)
923 {
924 fprintf(time_fd, " ");
925 time_diff(((struct timeval *)tv_start), &now);
926 }
927 fprintf(time_fd, " ");
928 time_diff(&prev_timeval, &now);
929 prev_timeval = now;
930 fprintf(time_fd, ": %s\n", mesg);
931 }
932}
933# endif // STARTUPTIME
934#endif // FEAT_EVAL
935
936#if defined(FEAT_SPELL) || defined(FEAT_PERSISTENT_UNDO) || defined(PROTO)
937/*
938 * Read 8 bytes from "fd" and turn them into a time_T, MSB first.
939 * Returns -1 when encountering EOF.
940 */
941 time_T
942get8ctime(FILE *fd)
943{
944 int c;
945 time_T n = 0;
946 int i;
947
948 for (i = 0; i < 8; ++i)
949 {
950 c = getc(fd);
951 if (c == EOF) return -1;
952 n = (n << 8) + c;
953 }
954 return n;
955}
956
957#ifdef _MSC_VER
958# if (_MSC_VER <= 1200)
959// This line is required for VC6 without the service pack. Also see the
960// matching #pragma below.
961 # pragma optimize("", off)
962# endif
963#endif
964
965/*
966 * Write time_T to file "fd" in 8 bytes.
967 * Returns FAIL when the write failed.
968 */
969 int
970put_time(FILE *fd, time_T the_time)
971{
972 char_u buf[8];
973
974 time_to_bytes(the_time, buf);
975 return fwrite(buf, (size_t)8, (size_t)1, fd) == 1 ? OK : FAIL;
976}
977
978/*
979 * Write time_T to "buf[8]".
980 */
981 void
982time_to_bytes(time_T the_time, char_u *buf)
983{
984 int c;
985 int i;
986 int bi = 0;
987 time_T wtime = the_time;
988
989 // time_T can be up to 8 bytes in size, more than long_u, thus we
990 // can't use put_bytes() here.
991 // Another problem is that ">>" may do an arithmetic shift that keeps the
992 // sign. This happens for large values of wtime. A cast to long_u may
993 // truncate if time_T is 8 bytes. So only use a cast when it is 4 bytes,
994 // it's safe to assume that long_u is 4 bytes or more and when using 8
995 // bytes the top bit won't be set.
996 for (i = 7; i >= 0; --i)
997 {
998 if (i + 1 > (int)sizeof(time_T))
999 // ">>" doesn't work well when shifting more bits than avail
1000 buf[bi++] = 0;
1001 else
1002 {
1003#if defined(SIZEOF_TIME_T) && SIZEOF_TIME_T > 4
1004 c = (int)(wtime >> (i * 8));
1005#else
1006 c = (int)((long_u)wtime >> (i * 8));
1007#endif
1008 buf[bi++] = c;
1009 }
1010 }
1011}
1012
1013#ifdef _MSC_VER
1014# if (_MSC_VER <= 1200)
1015 # pragma optimize("", on)
1016# endif
1017#endif
1018
1019#endif
1020
1021/*
1022 * Put timestamp "tt" in "buf[buflen]" in a nice format.
1023 */
1024 void
1025add_time(char_u *buf, size_t buflen, time_t tt)
1026{
1027#ifdef HAVE_STRFTIME
1028 struct tm tmval;
1029 struct tm *curtime;
1030
1031 if (vim_time() - tt >= 100)
1032 {
1033 curtime = vim_localtime(&tt, &tmval);
1034 if (vim_time() - tt < (60L * 60L * 12L))
1035 // within 12 hours
1036 (void)strftime((char *)buf, buflen, "%H:%M:%S", curtime);
1037 else
1038 // longer ago
1039 (void)strftime((char *)buf, buflen, "%Y/%m/%d %H:%M:%S", curtime);
1040 }
1041 else
1042#endif
1043 {
1044 long seconds = (long)(vim_time() - tt);
1045
1046 vim_snprintf((char *)buf, buflen,
1047 NGETTEXT("%ld second ago", "%ld seconds ago", seconds),
1048 seconds);
1049 }
1050}