summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/orbsvcs/Concurrency/CC_Lock.h
blob: 249793df025b3e775cb2289cd717cc639013ca31 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
/* -*- C++ -*- */
// $Id$

// ============================================================================
//
// = LIBRARY
//    TAO/orbsvcs/Concurrency_Service
//
// = FILENAME
//    CC_Lock.h
//
// = DESCRIPTION
//      This class implements a lock used by the lock set from the
//      concurrency control service
//
// = AUTHORS
//    Torben Worm <tworm@cs.wustl.edu>
//
// ============================================================================

#if !defined (_CC_LOCK_H)
#define _CC_LOCK_H

#include "ace/SV_Semaphore_Simple.h"
#include "orbsvcs/CosConcurrencyControlC.h"

class TAO_ORBSVCS_Export CC_Lock {
  // = TITLE
  //     CC_Lock
  //
  // = DESCRIPTION
  //     This class implements the lock concept from the concurrency
  //     control service. The lock holds its mode - this might later be
  //     changed to subclasses depending on the differences of the locks.
  //     At present the is only a lock-pr-thread/client-type which is
  //     essentially a write lock since it is not allowed to have more
  //     than one lock pr. servant in this implementation.
public:
  CC_Lock(CosConcurrencyControl::lock_mode mode);
  // Creates the lock with the desired mode

  ~CC_Lock();
  // Deletes the lock

  void lock(void);
  // Acquires this lock. Blocks until lock is obtained

  CORBA::Boolean try_lock();
  // Tries to acquire this lock. If it is not possible to acquire the
  // lock, false is returned

  void unlock(void);
  // Releases this lock

  void change_mode(CosConcurrencyControl::lock_mode new_mode);
  // Changes the mode of this lock
  
  CORBA::Boolean Compatible(const CC_Lock &other);
  // returns true if this lock is compatible with the other lock

  CORBA::Boolean Compatible(CosConcurrencyControl::lock_mode mode);
  // returns true is this lock is compatible with the referenced mode

  CosConcurrencyControl::lock_mode GetMode(void);
  // Returns the mode of the lock
protected:
  CosConcurrencyControl::lock_mode mode_;
  // Holds the lock's mode
private:
  ACE_SV_Semaphore_Simple semaphore_;
  // holds the semaphore for this lock
  static CORBA::Boolean compatible_[5][5];
  // defines the compatibility of the locks. 5 = number of lock modes
};

//#if defined (__ACE_INLINE__)
//#include "CC_Lock.i"
//#endif // defined INLINE

#endif /* !defined (_CC_LOCK_H) */