home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / ocl150a.zip / OCL / Source / OCriticalSec.cpp < prev    next >
C/C++ Source or Header  |  1996-08-12  |  2KB  |  89 lines

  1. // OCL - OS/2 Class Library
  2. // (c) Cubus 1995
  3. // All Rights Reserved
  4. // OCriticalSec.cpp
  5.  
  6. /*
  7.  * Redistribution and use in source and binary forms, with or without
  8.  * modification, are permitted provided that the following conditions
  9.  * are met:
  10.  * 1. Redistributions of source code must retain the above copyright
  11.  *    notice, this list of conditions and the following disclaimer.
  12.  * 2. Neither the name Cubus nor the name Team OCL may be used to
  13.  *    endorse or promote products derived from this software
  14.  *    without specific prior written permission.
  15.  * 3. See OCL.INF for a detailed copyright notice.
  16.  *
  17.  *              THIS SOFTWARE IS PROVIDED ``AS IS'' AND
  18.  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  19.  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  20.  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
  21.  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  22.  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  23.  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  24.  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  25.  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  26.  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  27.  * SUCH DAMAGE.
  28.  */
  29.  
  30.  
  31. // $Header: W:/Projects/OCL/Source/rcs/OCriticalSec.cpp 1.50 1996/08/11 23:49:12 B.STEIN Release $
  32.  
  33. #define __OCL_SOURCE__
  34.  
  35. #define OINCL_OSTRING
  36. #define OINCL_BASE
  37.  
  38. #include <ocl.hpp>
  39. #include <OCriticalSec.hpp>
  40. #include <OMessage.hpp>
  41.  
  42. OCriticalSec::OCriticalSec(BOOL automaticEnter)
  43.   : isEntered(FALSE)
  44. {
  45.  if (automaticEnter)
  46.    enter();
  47. }
  48.  
  49.  
  50. OCriticalSec::~OCriticalSec()
  51. {
  52.  if (isEntered)
  53.    exit(); 
  54. }
  55.  
  56.  
  57. PSZ OCriticalSec::isOfType() const
  58. {
  59.  return("OCriticalSec");
  60. }
  61.  
  62.  
  63. void OCriticalSec::enter() throw(OVioException&)
  64. {
  65.  APIRET rc;
  66.  
  67.  if (isEntered)
  68.    return;
  69.  rc = DosEnterCritSec();
  70.  if (rc != 0)
  71.    throw OVioException(OCL::apierror(40, rc), rc, OException::unrecoverable);
  72.  isEntered = TRUE; 
  73. }
  74.  
  75. void OCriticalSec::exit() throw(OVioException&)
  76. {
  77.  APIRET rc;
  78.  
  79.  if (!isEntered)
  80.    return;
  81.  rc = DosExitCritSec();
  82.  if (rc != 0)
  83.    throw OVioException(OCL::apierror(41, rc), rc, OException::unrecoverable);
  84.  isEntered = FALSE; 
  85. }
  86.  
  87.  
  88. // end of source
  89.