GLOBAL.CPP
上传用户:datang2001
上传日期:2007-02-01
资源大小:53269k
文件大小:7k
源码类别:

操作系统开发

开发平台:

C/C++

  1. /*
  2. FIPS - the First nondestructive Interactive Partition Splitting program
  3. Module global.cpp
  4. RCS - Header:
  5. $Header: c:/daten/fips/source/main/RCS/global.cpp 1.4 1995/01/19 00:00:52 schaefer Exp schaefer $
  6. Copyright (C) 1993 Arno Schaefer
  7. This program is free software; you can redistribute it and/or modify
  8. it under the terms of the GNU General Public License as published by
  9. the Free Software Foundation; either version 2 of the License, or
  10. (at your option) any later version.
  11. This program is distributed in the hope that it will be useful,
  12. but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14. GNU General Public License for more details.
  15. You should have received a copy of the GNU General Public License
  16. along with this program; if not, write to the Free Software
  17. Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  18. Report problems and direct all questions to:
  19. schaefer@rbg.informatik.th-darmstadt.de
  20. */
  21. #include <stdarg.h>
  22. #include <conio.h>
  23. #include <stdlib.h>
  24. #include <string.h>
  25. #include "version.h"
  26. #include "global.h"
  27. #define CTRL_C 3
  28. global_vars global;
  29. /* ----------------------------------------------------------------------- */
  30. /* Initialization of global variables                                      */
  31. /* ----------------------------------------------------------------------- */
  32. global_vars::global_vars (void)
  33. {
  34. test_mode = false;
  35. verbose_mode = true;
  36. debug_mode = false;
  37. drive_number_cmdline = 0;
  38. }
  39. global_vars::~global_vars (void)
  40. {
  41. if (debug_mode) fclose (debugfile);
  42. }
  43. void exit_function (void)
  44. {
  45. printx ("nBye!n");
  46. }
  47. void global_vars::open_debugfile (int argc,char *argv[])
  48. {
  49. if ((debugfile = fopen ("fipsinfo.dbg","wt")) == NULL)
  50. {
  51. global.debug_mode = false;
  52. warning (true, "Can't open debug file");
  53. }
  54. else
  55. {
  56. fprintf (debugfile,"FIPS debug filenn");
  57. fprintf (debugfile,"The command was: ");
  58. while (argc--) fprintf (debugfile,argc ? "%s " : "%s", *argv++);
  59. fprintf (debugfile,"nnTranscript of session:n");
  60. }
  61. }
  62. /* ----------------------------------------------------------------------- */
  63. /* Replacement for printf - prints to screen and debugfile                 */
  64. /* ----------------------------------------------------------------------- */
  65. void printx (char *fmt,...)
  66. {
  67. va_list ap;
  68. va_start (ap,fmt);
  69. vprintf (fmt,ap);
  70. if (global.debug_mode) vfprintf (global.debugfile,fmt,ap);
  71. va_end (ap);
  72. }
  73. /* ----------------------------------------------------------------------- */
  74. /* Replacement for getch - exit when CTRL-C is pressed                     */
  75. /* ----------------------------------------------------------------------- */
  76. int getx (void)
  77. {
  78. int character = getch();
  79. if (character == CTRL_C)
  80. {
  81. printx ("n");
  82. exit (0);
  83. }
  84. return (character);
  85. }
  86. /* ----------------------------------------------------------------------- */
  87. /* Copyright notice and version number                                     */
  88. /* ----------------------------------------------------------------------- */
  89. void notice (void)
  90. {
  91. printx ("nFIPS version " FIPS_VERSION ", Copyright (C) 1993/94 Arno Schaefernn");
  92. printx ("DO NOT use FIPS in a multitasking environment like Windows, OS/2, Desqview,n");
  93. printx ("Novell Task manager or the Linux DOS emulator: boot from a DOS boot disk first.nn");
  94. printx ("If you use OS/2 or a disk compressor, read the relevant sections in FIPS.DOC.nn");
  95. printx ("FIPS comes with ABSOLUTELY NO WARRANTY, see file COPYING for detailsn");
  96. printx ("This is free software, and you are welcome to redistribute itn");
  97. printx ("under certain conditions; again see file COPYING for details.n");
  98. printx ("nPress any Keyn");
  99. getx();
  100. }
  101. /* ----------------------------------------------------------------------- */
  102. /* Hexdump binary data into a file                                         */
  103. /* ----------------------------------------------------------------------- */
  104. void hexwrite (byte *buffer,int number,FILE *file)
  105. {
  106. for (int i=0;i<number;i++)
  107. {
  108. fprintf (file,"%02X ",*(buffer+i));
  109. if ((i+1)%16 == 0) fprintf (file,"n");
  110. else if ((i+1)%8 == 0) fprintf (file,"- ");
  111. }
  112. fprintf (file,"n");
  113. }
  114. /* ----------------------------------------------------------------------- */
  115. /* Error Handling                                                          */
  116. /* ----------------------------------------------------------------------- */
  117. static void print_verbose_message (char *message)
  118. {
  119. char line[256];
  120. int length = 0;
  121. FILE *error_msg_file;
  122. fprintf (stderr,"n");
  123. if (global.debug_mode) fprintf (global.debugfile,"n");
  124. if ((error_msg_file = fopen ("errors.txt","rt")) == NULL)
  125. {
  126. fprintf (stderr,"File ERRORS.TXT not found - no verbose messages availablen");
  127. if (global.debug_mode) fprintf (global.debugfile,"File ERRORS.TXT not found - no verbose messages availablen");
  128. global.verbose_mode = false;
  129. return;
  130. }
  131. while (message[length] != 0 && message[length] != ':') length++;
  132. fgets (line,255,error_msg_file);
  133. while (strncmp(message,line,length)) if (fgets (line,255,error_msg_file) == NULL) return;
  134. fgets (line,255,error_msg_file);
  135. while (!strncmp("  ",line,2))
  136. {
  137. fprintf (stderr,"%s",line+2);
  138. if (global.debug_mode) fprintf (global.debugfile,"%s",line+2);
  139. if (fgets (line,255,error_msg_file) == NULL) return;
  140. }
  141. fclose (error_msg_file);
  142. }
  143. void error (char *message,...)
  144. {
  145. va_list ap;
  146. va_start (ap,message);
  147. fprintf (stderr,"nError: ");
  148. vfprintf (stderr,message,ap);
  149. fprintf (stderr,"n");
  150. if (global.debug_mode)
  151. {
  152. fprintf (global.debugfile,"nError: ");
  153. vfprintf (global.debugfile,message,ap);
  154. fprintf (global.debugfile,"n");
  155. }
  156. va_end (ap);
  157. if (global.verbose_mode) print_verbose_message (message);
  158. exit (-1);
  159. }
  160. void warning (boolean wait_key, char *message,...)
  161. {
  162. va_list ap;
  163. va_start (ap,message);
  164. fprintf (stderr,"nWarning: ");
  165. vfprintf (stderr,message,ap);
  166. fprintf (stderr,"n");
  167. if (global.debug_mode)
  168. {
  169. fprintf (global.debugfile,"nWarning: ");
  170. vfprintf (global.debugfile,message,ap);
  171. fprintf (global.debugfile,"n");
  172. }
  173. va_end (ap);
  174. if (global.verbose_mode) print_verbose_message (message);
  175. if (wait_key)
  176. {
  177. fprintf (stderr,"nPress any keyn");
  178. if (global.debug_mode) fprintf (global.debugfile,"nPress any keyn");
  179. getx ();
  180. }
  181. }
  182. void infomsg (char *message,...)
  183. {
  184. va_list ap;
  185. va_start (ap,message);
  186. fprintf (stderr,"nInfo: ");
  187. vfprintf (stderr,message,ap);
  188. fprintf (stderr,"n");
  189. if (global.debug_mode)
  190. {
  191. fprintf (global.debugfile,"nInfo: ");
  192. vfprintf (global.debugfile,message,ap);
  193. fprintf (global.debugfile,"n");
  194. }
  195. va_end (ap);
  196. if (global.verbose_mode) print_verbose_message (message);
  197. fprintf (stderr,"nPress any keyn");
  198. if (global.debug_mode) fprintf (global.debugfile,"nPress any keyn");
  199. getx ();
  200. }