/usr/include/dcmtk/ofstd/ofglobal.h is in libdcmtk2-dev 3.6.0-9.
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 | /*
*
* Copyright (C) 1997-2010, OFFIS e.V.
* All rights reserved. See COPYRIGHT file for details.
*
* This software and supporting documentation were developed by
*
* OFFIS e.V.
* R&D Division Health
* Escherweg 2
* D-26121 Oldenburg, Germany
*
*
* Module: ofstd
*
* Author: Marco Eichelberg
*
* Purpose: OFGlobal is a template class intended for the declaration
* of global objects, access to which is protected by a Mutex
* for multi-thread applications.
* class T must have copy constructor and assignment operator.
*
*
* Last Update: $Author: joergr $
* Update Date: $Date: 2010-10-14 13:15:50 $
* CVS/RCS Revision: $Revision: 1.8 $
* Status: $State: Exp $
*
* CVS/RCS Log at end of file
*
*/
#ifndef OFGLOBAL_H
#define OFGLOBAL_H
#include "dcmtk/config/osconfig.h"
#include "dcmtk/ofstd/ofthread.h" /* for class OFBool */
/** Template class which allows to declare global objects that are
* protected by a Mutex if used in multi-thread applications.
* Must be compiled with -DWITH_THREADS for multi-thread-operation.
* Template class T must have copy constructor and assignment operator.
*/
template <class T> class OFGlobal
{
public:
/** constructor.
* @param arg value to which this object is initialised
*/
OFGlobal(const T &arg)
: val(arg)
#ifdef WITH_THREADS
, theMutex()
#endif
{
}
/** destructor.
*/
virtual ~OFGlobal() { }
/** assigns new value to this object. If compiled for multi-thread operation,
* access to the value of the object is protected by a Mutex.
* @param arg new value
*/
void set(const T& arg)
{
#ifdef WITH_THREADS
theMutex.lock();
#endif
val = arg;
#ifdef WITH_THREADS
theMutex.unlock();
#endif
}
/** gets the value of this object. If compiled for multi-thread operation,
* access to the value of the object is protected by a Mutex.
* @param arg return value is assigned to this parameter.
*/
void xget(T& arg)
{
#ifdef WITH_THREADS
theMutex.lock();
#endif
arg = val;
#ifdef WITH_THREADS
theMutex.unlock();
#endif
}
/** returns the value of this object. If compiled for multi-thread operation,
* access to the value of the object is protected by a Mutex. The result
* is returned by value, not by reference.
* @return value of this object.
*/
T get()
{
#ifdef WITH_THREADS
theMutex.lock();
#endif
T result(val);
#ifdef WITH_THREADS
theMutex.unlock();
#endif
return result;
}
private:
/** value of this object
*/
T val;
#ifdef WITH_THREADS
/** if compiled for multi-thread operation, the Mutex protecting
* access to the value of this object.
*/
OFMutex theMutex;
#endif
/** unimplemented private default constructor */
OFGlobal();
/** unimplemented private copy constructor */
OFGlobal(const OFGlobal<T>& arg);
/** unimplemented private assignment operator */
const OFGlobal<T>& operator=(const OFGlobal<T>& arg);
};
#endif
/*
*
* CVS/RCS Log:
* $Log: ofglobal.h,v $
* Revision 1.8 2010-10-14 13:15:50 joergr
* Updated copyright header. Added reference to COPYRIGHT file.
*
* Revision 1.7 2010-10-04 14:44:47 joergr
* Replaced "#ifdef _REENTRANT" by "#ifdef WITH_THREADS" where appropriate (i.e.
* in all cases where OFMutex, OFReadWriteLock, etc. are used).
*
* Revision 1.6 2005/12/08 16:05:57 meichel
* Changed include path schema for all DCMTK header files
*
* Revision 1.5 2003/12/05 10:37:41 joergr
* Removed leading underscore characters from preprocessor symbols (reserved
* symbols). Updated copyright date where appropriate.
*
* Revision 1.4 2001/06/01 15:51:34 meichel
* Updated copyright header
*
* Revision 1.3 2000/10/10 12:01:21 meichel
* Created/updated doc++ comments
*
* Revision 1.2 2000/05/30 17:03:38 meichel
* Added default constructor for Mutex to initializer list in OFGlobal.
*
* Revision 1.1 2000/04/14 15:17:48 meichel
* Created new templace class OFGlobal which allows to easily implement
* mutex protected global flags.
*
*
*/
|