home *** CD-ROM | disk | FTP | other *** search
/ Netscape Plug-Ins Developer's Kit / Netscape_Plug-Ins_Developers_Kit.iso / source / Chap02 / queue / main.cpp next >
Encoding:
C/C++ Source or Header  |  1996-09-10  |  1.1 KB  |  52 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.       throw BufferFullException();
  34.     }
  35.     catch (charQueue::BufferFullException )
  36.     {
  37.       cout << "Internal error: buffer full." << endl;
  38.       exit(0);
  39.     }
  40.     catch (charQueue::QueueEmpty )
  41.     {
  42.       cout << "Buffer contains " << buffer << endl;
  43.     }
  44.     catch (...)
  45.     {
  46.       cout << "Internal error while reading character queue." << endl;
  47.       exit(0);
  48.     }
  49.     delete theQueue;
  50. }
  51.  
  52.