home *** CD-ROM | disk | FTP | other *** search
/ Netscape Plug-Ins Developer's Kit / Netscape_Plug-Ins_Developers_Kit.iso / source / Chap02 / charQueue / main.cpp < prev    next >
Encoding:
C/C++ Source or Header  |  1996-07-13  |  1.2 KB  |  53 lines

  1. #include <iostream.h>
  2. #include <stdlib.h>
  3. #include "charQueue.h"
  4. #include "main.h" 
  5. // defines kMaxBufferSize to be a constant short integer of size 81
  6.  
  7. void main()
  8. {
  9.     charQueue* theQueue;
  10.     try
  11.     {
  12.       theQueue = new charQueue();
  13.       theQueue->add('f');
  14.       theQueue->add('o');
  15.       theQueue->add('o');
  16.     }
  17.     catch (...)
  18.     {
  19.       cout << "Internal error: Could not put characters into the queue." << endl;
  20.       exit(0);
  21.     }
  22.     
  23.     // now lets copy the contents of the queue into an array
  24.     char buffer[kMaxBufferSize];
  25.     short i=0; // an index into buffer
  26.     try
  27.     {
  28.       for (i=0; i < kMaxBufferSize; i++) // a C++ idiom for "do forever"
  29.       {
  30.         // when queue is empty, remove throws a queueEmpty exception
  31.         buffer[i] = theQueue->remove();
  32.       }
  33.       charQueue::BufferFullException* e = new charQueue::BufferFullException();
  34.       throw e;
  35.     }
  36.     catch (charQueue::BufferFullException )
  37.     {
  38.       cout << "Internal error: buffer full." << endl;
  39.       exit(0);
  40.     }
  41.     catch (charQueue::QueueEmpty )
  42.     {
  43.       cout << "Buffer contains " << buffer << endl;
  44.     }
  45.     catch (...)
  46.     {
  47.       cout << "Internal error while reading character queue." << endl;
  48.       exit(0);
  49.     }
  50.     delete theQueue;
  51. }
  52.  
  53.