home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD1.iso / Fax / AVMA&GPFax-V1,33Sources.LHA / debug.c < prev    next >
Encoding:
C/C++ Source or Header  |  1994-05-25  |  2.2 KB  |  98 lines

  1. /* $Header: pd:zvmrcs/debug.c,v 1.1 1993/04/07 18:47:36 rvillari Exp $ */
  2. #include <stdio.h>
  3. #include <clib/exec_protos.h>
  4. #include <ctype.h>
  5. #include <exec/memory.h>
  6. #include "debug_proto.h"
  7. #include "ui_support_proto.h"
  8.  
  9. #include "logger.h"
  10.  
  11. struct MsgPort* getPort(char* port) {
  12.   struct MsgPort* retVal;
  13.   Forbid();
  14.   retVal = FindPort(port);
  15.   Permit();
  16.   return retVal;
  17. }
  18.  
  19. void mainError(char* error) {
  20.   struct MsgPort* loggerPort = getPort("LOGGERMP");
  21.  
  22.   struct DLMsg* loggerMsg = (struct DLMsg*)AllocMem(sizeof(struct DLMsg), MEMF_PUBLIC | MEMF_CLEAR);
  23.  
  24.   if (loggerPort && loggerMsg) {
  25.     loggerMsg->message.mn_ReplyPort = 0;
  26.     loggerMsg->message.mn_Length = sizeof(struct DLMsg);
  27.     strncpy(loggerMsg->error, error, sizeof(loggerMsg->error) - 5);
  28.     loggerMsg->error[sizeof(loggerMsg->error) - 1] = '\0';
  29.     PutMsg(loggerPort, (struct Message*)loggerMsg);
  30.  
  31.     loggerMsg = 0; /* assume that the logger takes care of deleting this msg */
  32.   }
  33.  
  34.   if (loggerMsg) FreeMem(loggerMsg, sizeof(struct DLMsg));
  35. }
  36.  
  37. void debugString(char* s, char* description) {
  38.   if (s) mainError(s);
  39.   if (description) mainError(description);
  40. }
  41.  
  42. void debugInt(int i, char* description) {
  43.   char temp[100];
  44.   sprintf(temp, "%d", i);
  45.   if (description)
  46.     mainError(description);
  47.   mainError(temp);
  48. }
  49.  
  50. void debugChar(char c, char* description) {
  51.   char temp[100];
  52.   if (description) {
  53.     if (isprint(c))
  54.       sprintf(temp, "%s: %c", description, c);
  55.     else
  56.       sprintf(temp, "%s: [%d]", description, c);
  57.   } else {
  58.     if (isprint(c))
  59.       sprintf(temp, "%c", c);
  60.     else
  61.       sprintf(temp, "[%d]", description, c);
  62.   }
  63.   mainError(temp);
  64. }
  65.  
  66. void printStatus(enum ReturnStatus status) {
  67.   switch (status) {
  68.   case Normal :
  69.     mainError("Normal return");
  70.     break;
  71.   case KeyDetected :
  72.     mainError("Key Detected");
  73.     break;
  74.   case QuietDetected :
  75.     mainError("Quiet Detected");
  76.     break;
  77.   case SilenceDetected :
  78.     mainError("Silence Detected");
  79.     break;
  80.   case BusyDetected :
  81.     mainError("Busy Detected");
  82.     break;
  83.   case FaxDetected :
  84.     mainError("Fax Detected");
  85.     break;
  86.   case TimedOut :
  87.     mainError("Timed Out");
  88.     break;
  89.   case Overflow :
  90.     mainError("Overflow");
  91.     break;
  92.   case Error :
  93.     mainError("Error");
  94.     break;
  95.   }
  96. }
  97.  
  98.