home *** CD-ROM | disk | FTP | other *** search
/ Chip 2002 May / Chip_2002-05_cd1.bin / chplus / cpp / 3 / stl.exe / widwork.cpp < prev   
C/C++ Source or Header  |  1998-02-09  |  5KB  |  144 lines

  1. #include "stlexam.h"
  2. #pragma hdrstop
  3. /**************************************************************************
  4.  *
  5.  * widwork.cpp - widget works, from Chapter 6.3
  6.  *
  7.  * $Id: widwork.cpp,v 1.13 1996/09/20 22:13:59 smithey Exp $
  8.  *
  9.  ***************************************************************************
  10.  *
  11.  * (c) Copyright 1994, 1995 Rogue Wave Software, Inc.
  12.  * ALL RIGHTS RESERVED *
  13.  * The software and information contained herein are proprietary to, and
  14.  * comprise valuable trade secrets of, Rogue Wave Software, Inc., which
  15.  * intends to preserve as trade secrets such software and information.
  16.  * This software is furnished pursuant to a written license agreement and
  17.  * may be used, copied, transmitted, and stored only in accordance with
  18.  * the terms of such license and with the inclusion of the above copyright
  19.  * notice.  This software and information or any other copies thereof may
  20.  * not be provided or otherwise made available to any other person.
  21.  *
  22.  * Notwithstanding any other lease or license that may pertain to, or
  23.  * accompany the delivery of, this computer software and information, the
  24.  * rights of the Government regarding its use, reproduction and disclosure
  25.  * are as set forth in Section 52.227-19 of the FARS Computer
  26.  * Software-Restricted Rights clause.
  27.  * 
  28.  * Use, duplication, or disclosure by the Government is subject to
  29.  * restrictions as set forth in subparagraph (c)(1)(ii) of the Rights in
  30.  * Technical Data and Computer Software clause at DFARS 252.227-7013.
  31.  * Contractor/Manufacturer is Rogue Wave Software, Inc.,
  32.  * P.O. Box 2328, Corvallis, Oregon 97339.
  33.  *
  34.  * This computer software and information is distributed with "restricted
  35.  * rights."  Use, duplication or disclosure is subject to restrictions as
  36.  * set forth in NASA FAR SUP 18-52.227-79 (April 1985) "Commercial
  37.  * Computer Software-Restricted Rights (April 1985)."  If the Clause at
  38.  * 18-52.227-74 "Rights in Data General" is specified in the contract,
  39.  * then the "Alternate III" clause applies.
  40.  *
  41.  **************************************************************************/
  42.  
  43. #ifndef _RWSTD_HEADER_REQUIRES_HPP
  44. # include <list>
  45. # include <algorithm>
  46. # include <functional>
  47. #else
  48. # include <list.hpp>
  49. # include <algorithm.hpp>
  50. # include <functional.hpp>
  51. #endif
  52.  
  53. #ifdef _RW_STD_IOSTREAM
  54. #include <iostream>
  55. #else
  56. #include <iostream.h>
  57. #endif
  58.     
  59. #ifndef _RWSTD_NO_NAMESPACE
  60.   using namespace std;
  61.   using namespace std::rel_ops;
  62. #endif
  63.  
  64. class  Widget
  65. {
  66.   public:
  67.     Widget(int a = 0) : id(a) { }
  68.     void operator= (const Widget& rhs) { id = rhs.id; }
  69.     int id;
  70.     friend ostream & operator << (ostream & out, const Widget & w)
  71.         { return out << "Widget " << w.id; }
  72. };
  73.  
  74. bool operator== (const Widget& lhs, const Widget& rhs)
  75. { return lhs.id == rhs.id; }
  76.  
  77. bool operator< (const Widget& lhs, const Widget& rhs)
  78. { return lhs.id < rhs.id; }
  79.  
  80. struct WidgetTester : binary_function<Widget, int, bool>
  81. {
  82.   public:
  83.     bool operator () (const Widget & wid, int testid) const
  84.       { return wid.id == testid; }
  85. };
  86.  
  87. class inventory
  88. {
  89.   public:
  90.     void order (int wid);   // Process order for widget type wid.
  91.     void receive (int wid); // Receive widget of type wid in shipment.
  92.   private:
  93.     list<Widget,allocator<void> > on_hand;
  94.     list<int,allocator<int> > on_order;
  95. };
  96.  
  97. void inventory::order (int wid)
  98. {
  99.     cout << "Received order for widget type " << wid << endl;
  100.     list<Widget,allocator<void> >::iterator wehave = find_if(on_hand.begin(), on_hand.end(), 
  101.                                             bind2nd(WidgetTester(), wid));
  102.     if (wehave != on_hand.end())
  103.     {
  104.         cout << "Ship " << *wehave << endl;
  105.         on_hand.erase(wehave);
  106.     }
  107.     else
  108.     {
  109.         cout << "Back order widget of type "  << wid  << endl;
  110.         on_order.push_front(wid);
  111.     }
  112. }
  113.  
  114. void inventory::receive (int wid)
  115. {
  116.     cout << "Received shipment of widget type " << wid << endl;
  117.     list<int,allocator<int> >::iterator weneed = find(on_order.begin(), on_order.end(), wid);
  118.     if (weneed != on_order.end())
  119.     {
  120.         cout << "Ship " << Widget(wid) << " to fill back order" << endl;
  121.         on_order.erase(weneed);
  122.     }
  123.     else
  124.         on_hand.push_front(Widget(wid));
  125. }
  126.  
  127. int main ()
  128. {
  129.     cout << "Widget Works test program" << endl;
  130.  
  131.     inventory stock;
  132.     stock.receive(1);
  133.     stock.receive(2);
  134.     stock.receive(3);
  135.     stock.order(2);
  136.     stock.order(2);
  137.     stock.order(3);
  138.     stock.receive(2);
  139.     
  140.     cout << "End of widget words test program" << endl;
  141.  
  142.     return 0;
  143. }
  144.