spinner.c
上传用户:qaz666999
上传日期:2022-08-06
资源大小:2570k
文件大小:3k
源码类别:

数学计算

开发平台:

Unix_Linux

  1. /* A stupid little spinning wheel designed to make it look like useful work
  2.    is being done.
  3. Copyright 1999, 2000, 2001 Free Software Foundation, Inc.
  4. This file is part of the GNU MP Library.
  5. The GNU MP Library is free software; you can redistribute it and/or modify
  6. it under the terms of the GNU Lesser General Public License as published by
  7. the Free Software Foundation; either version 3 of the License, or (at your
  8. option) any later version.
  9. The GNU MP Library is distributed in the hope that it will be useful, but
  10. WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
  11. or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public
  12. License for more details.
  13. You should have received a copy of the GNU Lesser General Public License
  14. along with the GNU MP Library.  If not, see http://www.gnu.org/licenses/.  */
  15. #include "config.h"
  16. #include <signal.h>
  17. #include <stdio.h>
  18. #include <stdlib.h>
  19. #if HAVE_UNISTD_H
  20. #include <unistd.h>     /* for isatty */
  21. #endif
  22. #include "gmp.h"
  23. #include "gmp-impl.h"
  24. #include "tests.h"
  25. /* "alarm" is not available on mingw32, and the SIGALRM constant is not
  26.    defined.  Don't bother with a spinner in this case.  */
  27. #if ! HAVE_ALARM || ! defined (SIGALRM)
  28. #define alarm(n)          abort()
  29. #define signal(sig,func)  SIG_ERR
  30. #endif
  31. /* An application can update this to get a count printed with the spinner.
  32.    If left at 0, no count is printed. */
  33. unsigned long  spinner_count = 0;
  34. int  spinner_wanted = -1;  /* -1 uninitialized, 1 wanted, 0 not */
  35. int  spinner_tick = 1;     /* 1 ready to print, 0 not */
  36. /*ARGSUSED*/
  37. RETSIGTYPE
  38. spinner_signal (int signum)
  39. {
  40.   spinner_tick = 1;
  41.   if (signal (SIGALRM, spinner_signal) == SIG_ERR)
  42.     {
  43.       printf ("spinner_signal(): Oops, cannot reinstall SIGALRMn");
  44.       abort ();
  45.     }
  46.   alarm (1);
  47. }
  48. /* Initialize the spinner.
  49.    This is done the first time spinner() is called, so an application
  50.    doesn't need to call this directly.
  51.    The spinner is only wanted if the output is a tty.  */
  52. #define SPINNER_WANTED_INIT() 
  53.   if (spinner_wanted < 0) spinner_init ()
  54. void
  55. spinner_init (void)
  56. {
  57.   spinner_wanted = isatty (fileno (stdout));
  58.   if (spinner_wanted == -1)
  59.     abort ();
  60.   if (!spinner_wanted)
  61.     return;
  62.   if (signal (SIGALRM, spinner_signal) == SIG_ERR)
  63.     {
  64.       printf ("(no spinner)r");
  65.       spinner_tick = 0;
  66.       return;
  67.     }
  68.   alarm (1);
  69.   /* unbufferred output so the spinner will show up */
  70.   setbuf (stdout, NULL);
  71. }
  72. void
  73. spinner (void)
  74. {
  75.   static const char  data[] = { '|', '/', '-', '\' };
  76.   static int         pos = 0;
  77.   char  buf[128];
  78.   SPINNER_WANTED_INIT ();
  79.   if (spinner_tick)
  80.     {
  81.       buf[0] = data[pos];
  82.       pos = (pos + 1) % numberof (data);
  83.       spinner_tick = 0;
  84.       if (spinner_count != 0)
  85. {
  86.   sprintf (buf+1, " %lur", spinner_count);
  87. }
  88.       else
  89. {
  90.   buf[1] = 'r';
  91.   buf[2] = '';
  92. }
  93.       fputs (buf, stdout);
  94.     }
  95. }