/usr/include/ace/Guard_T.h is in libace-dev 6.3.3+dfsg-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 | // -*- C++ -*-
//==========================================================================
/**
* @file Guard_T.h
*
* Moved from Synch.h.
*
* @author Douglas C. Schmidt <schmidt@cs.wustl.edu>
*/
//==========================================================================
#ifndef ACE_GUARD_T_H
#define ACE_GUARD_T_H
#include /**/ "ace/pre.h"
#include "ace/Lock.h"
#if !defined (ACE_LACKS_PRAGMA_ONCE)
# pragma once
#endif /* ACE_LACKS_PRAGMA_ONCE */
#include "ace/Global_Macros.h"
#include "ace/OS_NS_Thread.h"
// FUZZ: disable check_for_ACE_Guard
ACE_BEGIN_VERSIONED_NAMESPACE_DECL
/**
* @class ACE_Guard
*
* @brief This data structure is meant to be used within a method or
* function... It performs automatic acquisition and release of
* a parameterized synchronization object ACE_LOCK.
*
* The ACE_LOCK class given as an actual parameter must provide, at
* the very least the acquire(), tryacquire(), release(), and
* remove() methods.
*
* @warning A successfully constructed ACE_Guard does NOT mean that the
* lock was acquired! It is the caller's responsibility, after
* constructing an ACE_Guard, to check whether the lock was successfully
* acquired. Code like this is dangerous:
* {
* ACE_Guard<ACE_Lock> g(lock);
* ... perform critical operation requiring lock to be held ...
* }
* Instead, one must do something like this:
* {
* ACE_Guard<ACE_Lock> g(lock);
* if (! g.locked())
* {
* ... handle error ...
* }
* else
* {
* ... perform critical operation requiring lock to be held ...
* }
* }
* The ACE_GUARD_RETURN() and ACE_GUARD_REACTION() macros are designed to
* to help with this.
*/
template <class ACE_LOCK>
class ACE_Guard
{
public:
// = Initialization and termination methods.
ACE_Guard (ACE_LOCK &l);
/// Implicitly and automatically acquire (or try to acquire) the
/// lock. If @a block is non-0 then acquire() the ACE_LOCK, else
/// tryacquire() it.
ACE_Guard (ACE_LOCK &l, bool block);
/// Initialize the guard without implicitly acquiring the lock. The
/// @a become_owner parameter indicates whether the guard should release
/// the lock implicitly on destruction. The @a block parameter is
/// ignored and is used here to disambiguate with the preceding
/// constructor.
ACE_Guard (ACE_LOCK &l, bool block, int become_owner);
/// Implicitly release the lock.
~ACE_Guard (void);
// = Lock accessors.
/// Explicitly acquire the lock.
int acquire (void);
/// Conditionally acquire the lock (i.e., won't block).
int tryacquire (void);
/// Explicitly release the lock, but only if it is held!
int release (void);
/// Relinquish ownership of the lock so that it is not released
/// implicitly in the destructor.
void disown (void);
// = Utility methods.
/// true if locked, false if couldn't acquire the lock
/// (errno will contain the reason for this).
bool locked (void) const;
/// Explicitly remove the lock.
int remove (void);
/// Dump the state of an object.
void dump (void) const;
// ACE_ALLOC_HOOK_DECLARE;
// Declare the dynamic allocation hooks.
protected:
/// Helper, meant for subclass only.
ACE_Guard (ACE_LOCK *lock): lock_ (lock), owner_ (0) {}
/// Pointer to the ACE_LOCK we're guarding.
ACE_LOCK *lock_;
/// Keeps track of whether we acquired the lock or failed.
int owner_;
private:
// = Prevent assignment and initialization.
ACE_UNIMPLEMENTED_FUNC (void operator= (const ACE_Guard<ACE_LOCK> &))
ACE_UNIMPLEMENTED_FUNC (ACE_Guard (const ACE_Guard<ACE_LOCK> &))
};
/**
* @class ACE_Write_Guard
*
* @brief This class is similar to class ACE_Guard, though it
* acquires/releases a write lock automatically (naturally, the
* <ACE_LOCK> it is instantiated with must support the appropriate
* API).
*
* @warning See important "WARNING" in comments at top of ACE_Guard.
*/
template <class ACE_LOCK>
class ACE_Write_Guard : public ACE_Guard<ACE_LOCK>
{
public:
// = Initialization method.
/// Implicitly and automatically acquire a write lock.
ACE_Write_Guard (ACE_LOCK &m);
/// Implicitly and automatically acquire (or try to acquire) a write
/// lock.
ACE_Write_Guard (ACE_LOCK &m, bool block);
// = Lock accessors.
/// Explicitly acquire the write lock.
int acquire_write (void);
/// Explicitly acquire the write lock.
int acquire (void);
/// Conditionally acquire the write lock (i.e., won't block).
int tryacquire_write (void);
/// Conditionally acquire the write lock (i.e., won't block).
int tryacquire (void);
// = Utility methods.
/// Dump the state of an object.
void dump (void) const;
// ACE_ALLOC_HOOK_DECLARE;
// Declare the dynamic allocation hooks.
};
/**
* @class ACE_Read_Guard
*
* @brief This class is similar to class ACE_Guard, though it
* acquires/releases a read lock automatically (naturally, the
* <ACE_LOCK> it is instantiated with must support the appropriate
* API).
*
* @warning See important "WARNING" in comments at top of ACE_Guard.
*/
template <class ACE_LOCK>
class ACE_Read_Guard : public ACE_Guard<ACE_LOCK>
{
public:
// = Initialization methods.
/// Implicitly and automatically acquire a read lock.
ACE_Read_Guard (ACE_LOCK& m);
/// Implicitly and automatically acquire (or try to acquire) a read
/// lock.
ACE_Read_Guard (ACE_LOCK &m, bool block);
// = Lock accessors.
/// Explicitly acquire the read lock.
int acquire_read (void);
/// Explicitly acquire the read lock.
int acquire (void);
/// Conditionally acquire the read lock (i.e., won't block).
int tryacquire_read (void);
/// Conditionally acquire the read lock (i.e., won't block).
int tryacquire (void);
// = Utility methods.
/// Dump the state of an object.
void dump (void) const;
// ACE_ALLOC_HOOK_DECLARE;
// Declare the dynamic allocation hooks.
};
#if !(defined (ACE_HAS_THREADS) && (defined (ACE_HAS_THREAD_SPECIFIC_STORAGE) || defined (ACE_HAS_TSS_EMULATION)))
#define ACE_TSS_Guard ACE_Guard
#define ACE_TSS_Write_GUARD ACE_Write_Guard
#define ACE_TSS_Read_GUARD ACE_Read_Guard
#else
/* ACE platform supports some form of threading and
thread-specific storage. */
/**
* @class ACE_TSS_Guard
*
* @brief This data structure is meant to be used within a method or
* function... It performs automatic aquisition and release of
* a synchronization object. Moreover, it ensures that the lock
* is released even if a thread exits via <thr_exit>!
*/
template <class ACE_LOCK>
class ACE_TSS_Guard
{
public:
// = Initialization and termination methods.
/// Implicitly and automatically acquire the thread-specific lock.
ACE_TSS_Guard (ACE_LOCK &lock, bool block = true);
/// Implicitly release the thread-specific lock.
~ACE_TSS_Guard (void);
// = Lock accessors.
/// Explicitly acquire the thread-specific lock.
int acquire (void);
/// Conditionally acquire the thread-specific lock (i.e., won't
/// block).
int tryacquire (void);
/// Explicitly release the thread-specific lock.
int release (void);
// = Utility methods.
/// Explicitly release the thread-specific lock.
int remove (void);
/// Dump the state of an object.
void dump (void) const;
// ACE_ALLOC_HOOK_DECLARE;
// Declare the dynamic allocation hooks.
protected:
/// Helper, meant for subclass only.
ACE_TSS_Guard (void);
/// Initialize the key.
void init_key (void);
/// Called when thread exits to clean up the lock.
static void cleanup (void *ptr);
/// Thread-specific key...
ACE_thread_key_t key_;
private:
// FUZZ: disable check_for_ACE_Guard
typedef ACE_Guard<ACE_LOCK> Guard_Type;
// FUZZ: enable check_for_ACE_Guard
ACE_UNIMPLEMENTED_FUNC (void operator= (const ACE_TSS_Guard<ACE_LOCK> &))
ACE_UNIMPLEMENTED_FUNC (ACE_TSS_Guard (const ACE_TSS_Guard<ACE_LOCK> &))
};
/**
* @class ACE_TSS_Write_Guard
*
* @brief This class is similar to class ACE_TSS_Guard, though it
* acquires/releases a write-lock automatically (naturally, the
* ACE_LOCK it is instantiated with must support the appropriate
* API).
*/
template <class ACE_LOCK>
class ACE_TSS_Write_Guard : public ACE_TSS_Guard<ACE_LOCK>
{
public:
// = Initialization method.
/// Implicitly and automatically acquire the thread-specific write lock.
ACE_TSS_Write_Guard (ACE_LOCK &lock, bool block = true);
// = Lock accessors.
/// Explicitly acquire the thread-specific write lock.
int acquire_write (void);
/// Explicitly acquire the thread-specific write lock.
int acquire (void);
/// Conditionally acquire the thread-specific write lock (i.e., won't block).
int tryacquire_write (void);
/// Conditionally acquire the thread-specific write lock (i.e., won't block).
int tryacquire (void);
// = Utility methods.
/// Dump the state of an object.
void dump (void) const;
// ACE_ALLOC_HOOK_DECLARE;
// Declare the dynamic allocation hooks.
private:
// FUZZ: disable check_for_ACE_Guard
typedef ACE_Guard<ACE_LOCK> Guard_Type;
typedef ACE_Write_Guard<ACE_LOCK> Write_Guard_Type;
// FUZZ: enable check_for_ACE_Guard
};
/**
* @class ACE_TSS_Read_Guard
*
* @brief This class is similar to class <ACE_TSS_Guard>, though it
* acquires/releases a read lock automatically (naturally, the
* <ACE_LOCK> it is instantiated with must support the
* appropriate API).
*/
template <class ACE_LOCK>
class ACE_TSS_Read_Guard : public ACE_TSS_Guard<ACE_LOCK>
{
public:
// = Initialization method.
/// Implicitly and automatically acquire the thread-specific read lock.
ACE_TSS_Read_Guard (ACE_LOCK &lock, bool block = true);
// = Lock accessors.
/// Explicitly acquire the thread-specific read lock.
int acquire_read (void);
/// Explicitly acquire the thread-specific read lock.
int acquire (void);
/// Conditionally acquire the thread-specific read lock (i.e., won't
/// block).
int tryacquire_read (void);
/// Conditionally acquire the thread-specific read lock (i.e., won't
/// block).
int tryacquire (void);
// = Utility methods.
/// Dump the state of an object.
void dump (void) const;
// ACE_ALLOC_HOOK_DECLARE;
// Declare the dynamic allocation hooks.
private:
// FUZZ: disable check_for_ACE_Guard
typedef ACE_Guard<ACE_LOCK> Guard_Type;
typedef ACE_Read_Guard<ACE_LOCK> Read_Guard_Type;
// FUZZ: enable check_for_ACE_Guard
};
#endif /* !(defined (ACE_HAS_THREADS) && (defined (ACE_HAS_THREAD_SPECIFIC_STORAGE) || defined (ACE_HAS_TSS_EMULATION))) */
ACE_END_VERSIONED_NAMESPACE_DECL
#if defined (__ACE_INLINE__)
#include "ace/Guard_T.inl"
#endif /* __ACE_INLINE__ */
#if defined (ACE_TEMPLATES_REQUIRE_SOURCE)
#include "ace/Guard_T.cpp"
#endif /* ACE_TEMPLATES_REQUIRE_SOURCE */
#if defined (ACE_TEMPLATES_REQUIRE_PRAGMA)
#pragma implementation ("Guard_T.cpp")
#endif /* ACE_TEMPLATES_REQUIRE_PRAGMA */
#include /**/ "ace/post.h"
#endif /* ACE_GUARD_T_H */
|