utils.c 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197
  1. /*\
  2. *
  3. * COPYRIGHT 1990
  4. * DIGITAL EQUIPMENT CORPORATION
  5. * MAYNARD, MASSACHUSETTS
  6. * ALL RIGHTS RESERVED.
  7. *
  8. * THE INFORMATION IN THIS SOFTWARE IS SUBJECT TO CHANGE WITHOUT NOTICE AND
  9. * SHOULD NOT BE CONSTRUED AS A COMMITMENT BY DIGITAL EQUIPMENT CORPORATION.
  10. * DIGITAL MAKES NO REPRESENTATIONS ABOUT THE SUITABILITY OF THIS SOFTWARE
  11. * FOR ANY PURPOSE. IT IS SUPPLIED "AS IS" WITHOUT EXPRESS OR IMPLIED
  12. * WARRANTY.
  13. *
  14. * IF THE SOFTWARE IS MODIFIED IN A MANNER CREATING DERIVATIVE COPYRIGHT
  15. * RIGHTS, APPROPRIATE LEGENDS MAY BE PLACED ON THE DERIVATIVE WORK IN
  16. * ADDITION TO THAT SET FORTH ABOVE.
  17. *
  18. * Permission to use, copy, modify, and distribute this software and its
  19. * documentation for any purpose and without fee is hereby granted, provided
  20. * that the above copyright notice appear in all copies and that both that
  21. * copyright notice and this permission notice appear in supporting
  22. * documentation, and that the name of Digital Equipment Corporation not be
  23. * used in advertising or publicity pertaining to distribution of the
  24. * software without specific, written prior permission.
  25. \*/
  26. #include "utils.h"
  27. #include <ctype.h>
  28. #include <stdlib.h>
  29. /***====================================================================***/
  30. /*** PRINT FUNCTIONS ***/
  31. /***====================================================================***/
  32. static FILE *errorFile = NULL;
  33. Boolean
  34. uSetErrorFile(const char *name)
  35. {
  36. if ((errorFile != NULL) && (errorFile != stderr)) {
  37. fprintf(errorFile, "switching to %s\n", name ? name : "stderr");
  38. fclose(errorFile);
  39. }
  40. if (name != NullString)
  41. errorFile = fopen(name, "w");
  42. else
  43. errorFile = stderr;
  44. if (errorFile == NULL) {
  45. errorFile = stderr;
  46. return (False);
  47. }
  48. return (True);
  49. }
  50. void
  51. uInformation(const char *s, ...)
  52. {
  53. va_list ap;
  54. va_start(ap, s);
  55. vfprintf(errorFile, s, ap);
  56. fflush(errorFile);
  57. va_end(ap);
  58. return;
  59. }
  60. /***====================================================================***/
  61. void
  62. uAction(const char *s, ...)
  63. {
  64. va_list ap;
  65. va_start(ap, s);
  66. fprintf(errorFile, " ");
  67. vfprintf(errorFile, s, ap);
  68. fflush(errorFile);
  69. va_end(ap);
  70. return;
  71. }
  72. /***====================================================================***/
  73. void
  74. uWarning(const char *s, ...)
  75. {
  76. va_list ap;
  77. va_start(ap, s);
  78. fprintf(errorFile, "Warning: ");
  79. vfprintf(errorFile, s, ap);
  80. fflush(errorFile);
  81. va_end(ap);
  82. return;
  83. }
  84. /***====================================================================***/
  85. void
  86. uError(const char *s, ...)
  87. {
  88. va_list ap;
  89. va_start(ap, s);
  90. fprintf(errorFile, "Error: ");
  91. vfprintf(errorFile, s, ap);
  92. fflush(errorFile);
  93. va_end(ap);
  94. return;
  95. }
  96. /***====================================================================***/
  97. void
  98. uFatalError(const char *s, ...)
  99. {
  100. va_list ap;
  101. va_start(ap, s);
  102. fprintf(errorFile, "Fatal Error: ");
  103. vfprintf(errorFile, s, ap);
  104. fprintf(errorFile, " Exiting\n");
  105. fflush(errorFile);
  106. va_end(ap);
  107. exit(1);
  108. /* NOTREACHED */
  109. }
  110. /***====================================================================***/
  111. void
  112. uInternalError(const char *s, ...)
  113. {
  114. va_list ap;
  115. va_start(ap, s);
  116. fprintf(errorFile, "Internal error: ");
  117. vfprintf(errorFile, s, ap);
  118. fflush(errorFile);
  119. va_end(ap);
  120. return;
  121. }
  122. /***====================================================================***/
  123. #ifndef HAVE_STRCASECMP
  124. int
  125. uStrCaseCmp(const char *str1, const char *str2)
  126. {
  127. char buf1[512], buf2[512];
  128. char c, *s;
  129. register int n;
  130. for (n = 0, s = buf1; (c = *str1++); n++) {
  131. if (isupper(c))
  132. c = tolower(c);
  133. if (n > 510)
  134. break;
  135. *s++ = c;
  136. }
  137. *s = '\0';
  138. for (n = 0, s = buf2; (c = *str2++); n++) {
  139. if (isupper(c))
  140. c = tolower(c);
  141. if (n > 510)
  142. break;
  143. *s++ = c;
  144. }
  145. *s = '\0';
  146. return (strcmp(buf1, buf2));
  147. }
  148. int
  149. uStrCasePrefix(const char *prefix, const char *str)
  150. {
  151. char c1;
  152. char c2;
  153. while (((c1 = *prefix) != '\0') && ((c2 = *str) != '\0')) {
  154. if (isupper(c1))
  155. c1 = tolower(c1);
  156. if (isupper(c2))
  157. c2 = tolower(c2);
  158. if (c1 != c2)
  159. return 0;
  160. prefix++;
  161. str++;
  162. }
  163. if (c1 != '\0')
  164. return 0;
  165. return 1;
  166. }
  167. #endif