/usr/include/dcmtk/ofstd/ofutil.h is in libdcmtk-dev 3.6.1~20150924-5.
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 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 | /*
*
* Copyright (C) 2014, 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: Jan Schlamelcher
*
* Purpose: Implement fallback support for modern techniques defined
* in the STL's <utility> header (e.g. move semantics)
* for older compilers.
*/
#ifndef OFUTIL_H
#define OFUTIL_H
#include "dcmtk/config/osconfig.h" /* make sure OS specific configuration is included first */
#include "dcmtk/ofstd/oftraits.h"
#include "dcmtk/ofstd/oftypes.h"
/** @file ofutil.h
* Implement fallback support for modern techniques defined
* in the STL's <utility> header (e.g.\ move semantics)
* for older compilers.
*/
#ifdef DCMTK_USE_CXX11_STL
#include <utility>
#define OFmove std::move
#define OFswap std::swap
#define OFget std::get
#define OFMake_pair std::make_pair
template<typename K,typename V>
using OFPair = std::pair<K,V>;
template<typename Tuple>
using OFtuple_size = std::tuple_size<Tuple>;
template<std::size_t Index,typename Tuple>
using OFtuple_element = std::tuple_element<Index,Tuple>;
// OFrvalue simply equals 'identity', as C++11 natively handles
// rvalues / prvalues and so on.
template<typename T>
using OFrvalue = T;
#define OFrvalue_ref(T) T&&
#define OFrvalue_access(RV) RV
#else // fallback implementations
#ifndef DOXYGEN
// Meta-template to select the base class for OFrvalue
template<typename T,OFBool>
struct OFrvalue_storage
{
// Helper template to wrap types that we can't derive from,
// e.g. primitive types.
class type
{
public:
// copy constructor should be fine for primitive types.
inline type(const T& pt)
: t( pt ) {}
inline type(const OFrvalue_storage& rhs)
: t( rhs.pt ) {}
// automatic conversion to the underlying type
inline operator T&() const { return OFconst_cast( T&, t ); }
private:
// the actual object
T t;
};
};
// specialization for compound types
template<typename T>
struct OFrvalue_storage<T,OFTrue>
{
// simply use T itself as base
typedef T type;
};
// SFINAE to detect if a type is derivable from
template<typename T>
class OFrvalue_base
{
// magic SFINAE stuff stolen from en.cppreference.com
struct no_type {};
struct yes_type {double d;};
template<typename X>
static yes_type sfinae(int X::*);
template<typename X>
static no_type sfinae(...);
public:
// employ SFINAE + template specialization to select
// the base type
typedef OFTypename OFrvalue_storage
<
T,
sizeof(sfinae<T>(OFnullptr)) == sizeof(yes_type)
>::type type;
};
#endif // NOT DOXYGEN
/** A helper class to 'tag' objects as <i>rvalues</i> to help
* DCMTK's move emulation employed on pre C++11 compilers.
* @tparam T the base type an rvalue should be create of.
* @details OFrvalue wrapps the type T inside a zero-overhead
* object employing T's move constructor when possible.
* @note When C++11 support is available, OFrvalue<T> will
* simply be a type alias for <i>T</i>, since a C++11 compiler
* handles rvalue reference conversions natively.
* @details
* <h2>Example</h2>
* This example describes how to move an object of type
* OFunique_ptr out of a function by using OFrvalue.
* @code
* OFrvalue<OFunique_ptr<DcmDataset> > getDataset()
* {
* return OFunique_ptr<DcmDataset>( new DcmDataset );
* }
* . . .
* OFunique_ptr<DcmDataset> pDataset = getDataset();
* @endcode
* @warning Some compilers might require you to use the following
* code instead, as older versions of the C++ standard allowed
* the compiler to use the copy constructor for binding an
* rvalue to an lvalue reference.
* Use this code template instead to achieve maximum portability:
* @code
* OFrvalue<OFunique_ptr<DcmDataset> > getDataset()
* {
* OFunique_ptr<DcmDataset> pDataset( new DcmDataset );
* return OFmove( pDataset );
* }
* @endcode
*/
template<typename T>
struct OFrvalue : OFrvalue_base<T>::type
{
#ifndef DOXYGEN
// allow to move construct from lvalue references
inline OFrvalue(const T& t) : OFrvalue_base<T>::type( *OFreinterpret_cast( const OFrvalue*, &t ) ) {}
// copy-construct from an rvalue reference
inline OFrvalue(const OFrvalue& rv) : OFrvalue_base<T>::type( rv ) {}
#endif // NOT DOXYGEN
};
#ifdef DOXYGEN
/** Determines <i>rvalue reference</i> type for the type <kbd>T</kbd>.
* @param T the base type to determine the rvalue reference type for.
* @note <i>OFrvalue_ref(T)</i> will expand to <kbd>T&&</kbd> when
* C++11 support is available. Otherwise DCMTK's move emulation will
* be used, employing an unspecified type to implement rvalue references.
* @details
* <h2>Example</h2>
* This example shows how to implement the <i>move constructor</i> and
* <i>move assignment</i> for a custom class in a portable fashion
* (employing C++11's native features when available and using DCMTK's
* move emulation otherwise).
* @code
* class MyMovable
* {
* public:
* MyMovable( OFrvalue_ref(MyMovable) rhs )
* : m_hDatabase( rhs.m_hDatabase )
* {
* // You need to use OFrvalue_access to get write access
* // to rvalue references when DCMTK's move emulation
* // is used.
* OFrvalue_access(rhs).m_hDatabase = OFnullptr;
* }
*
* MyMovable& operator=( OFrvalue_ref(MyMovable) rvrhs )
* {
* // You may bind the rvalue reference to an lvalue
* // reference to ease access.
* MyMovable& rhs = OFrvalue_access(rvrhs);
* if( this != &rhs )
* {
* disconnectDatabase( m_hDatabase );
* m_hDatabase = rhs.m_hDatabase;
* rhs.m_hDatabase = OFnullptr;
* }
* return *this;
* }
* };
* @endcode
*/
#define OFrvalue_ref(T) unspecified
#else // NOT DOXYGEN
#define OFrvalue_ref(T) const OFrvalue<T>&
#endif
/** Obtain an lvalue reference from an rvalue reference.
* DCMTK's move emulations does restrict write access to rvalue references
* due to compiler limitations.
* This method enables you to workaround this restriction by converting
* DCMTK's emulated rvalue references to lvalue references.
* @note Native rvalue references from C++11 don't need this workaround,
* therefore <i>OFrvalue_access</i> has no effect when C++11 support is
* available.
* @param rv an rvalue reference, e.g. the parameter of a <i>move constructor</i>.
*/
template<typename T>
T& OFrvalue_access( OFrvalue_ref(T) rv )
{
#ifndef DOXYGEN
return OFconst_cast( OFrvalue<T>&, rv );
#endif
}
/** Obtains an rvalue reference to its argument and converts it
* to an xvalue. OFmove is meant to 'mark' an object for a
* move operation, e.g. to move an OFVector object into another
* OFVector instance instead of copying it.
* @note OFmove will be an alias for std::move when native
* move semantics are supported (C++11 support is available).
* Otherwise DCMTK's move emulation will be used. This means
* you will have to specify rvalues (e.g. function return values)
* employing the OFrvalue class template.
* @param t The object to move.
* @see OFrvalue
* @see OFrvalue_ref
*/
template<typename T>
#ifndef DOXYGEN
OFrvalue<T>& OFmove( T& t )
{
return *OFreinterpret_cast( OFrvalue<T>*, &t );
}
template<typename T>
OFrvalue<T>& OFmove( OFrvalue<T>& rv )
{
return rv;
}
template<typename T>
OFrvalue<T>& OFmove( const OFrvalue<T>& rv )
{
return OFconst_cast( OFrvalue<T>&, rv );
}
#else // NOT DOXYGEN
OFconstexpr xvalue OFmove( T< unspecified > t );
#endif // DOXYGEN
/** Exchanges the given values.
* OFswap is an alias for std::swap if C++11 is supported.
* Otherwise OFswap simply creates a temporary copy of one
* argument to exchange both values.
* @note As intended for std::swap, there are some
* specializations for OFswap available, e.g. for OFoptional,
* which specializes OFswap to exchange optional objects
* more efficiently. When creating your own specializations
* for OFswap, make sure to specialize std::swap instead
* when C++11 support is available.
* @param t0 An object to be exchanged.
* @param t1 The object to be exchanged with t0.
*/
template<typename T>
void OFswap( T& t0, T& t1 )
#ifndef DOXYGEN
{
T temp( OFmove( t0 ) );
t0 = OFmove( t1 );
t1 = OFmove( temp );
}
#else // NOT DOXYGEN
;
#endif // DOXYGEN
#if defined(HAVE_STL) || defined(HAVE_STL_MAP)
// Use native pair class, to be compatible to std::map
#define OFPair std::pair
#define OFMake_pair std::make_pair
#else // fallback implementation of std::pair
/** a pair - this implements parts of std::pair's interface.
*/
template<typename K, typename V> class OFPair
{
public:
/** this is the first value of the pair */
K first;
/** this is the second value of the pair */
V second;
/** default constructor */
OFPair() : first(), second() { }
/** construct a OFPair for the two given values
* @param f the value for first.
* @param s the value for second.
*/
OFPair(const K& f, const V& s) : first(f), second(s) { }
/** copy constructor
* @param p Other OFPair to copy from.
*/
template<class OK, class OV>
OFPair(const OFPair<OK, OV>& p) : first(p.first), second(p.second) { }
/** copy constructor
* @param p Other OFPair to copy from.
*/
OFPair(const OFPair& p) : first(p.first), second(p.second) { }
/** assignment operator */
OFPair<K, V>& operator=(const OFPair<K, V>& other)
{
first = other.first;
second = other.second;
return *this;
}
};
/** helper function to create a pair. This is similar to std::make_pair()
* @param first the first part of the pair
* @param second the second art of the pair
* @relates OFPair
* @return the pair (first, second)
*/
template<typename K, typename V>
OFPair<K, V> OFMake_pair(const K& first, const V& second)
{
return OFPair<K, V>(first, second);
}
#endif // fallback implementation of OFPair
/** A metafunction to determine the size of a tuple.
* @tparam Tuple a tuple type, e.g. an instance of OFtuple.
* @pre Tuple is a tuple type, see @ref tuple_types "Tuple Types"
* for definition.
* @return OFtuple_size is derived from an appropriate instance of
* OFintegral_constant if the preconditions are met. This means
* OFtuple_size declares a static member constant <i>value</i>
* set to the tuple's size.
* @relates OFPair
* @relates OFtuple
* @details
* <h3>Usage Example:</h3>
* @code{.cpp}
* typedef OFtuple<OFString,size_t,OFVector<int> > MyTuple;
* typedef OFPair<OFString,MyTuple> MyPair;
* COUT << "OFtuple_size<MyTuple>::value: " << OFtuple_size<MyTuple>::value << OFendl;
* COUT << "OFtuple_size<MyPair>::value: " << OFtuple_size<MyPair>::value << OFendl;
* @endcode
* <b>Output:</b>
* @verbatim
OFtuple_size<MyTuple>::value: 3
OFtuple_size<MyPair>::value: 2
@endverbatim
*
*/
template<typename Tuple>
#ifndef DOXYGEN
struct OFtuple_size;
#else // NOT DOXYGEN
<metafunction> OFtuple_size;
#endif // DOXYGEN
/** A metafunction to determine the type of one element of a tuple.
* @tparam Index the index of the element its type should be determined.
* @tparam Tuple a tuple type, e.g. an instance of OFtuple.
* @pre Tuple is a tuple type, see @ref tuple_types "Tuple Types"
* for definition.
* @pre Index is a valid index , essentially: <kbd>Index < OFtuple_size<Tuple>::value</kbd>.
* @return if the preconditions are met, OFtuple_element declares a member
* type alias <i>type</i> that yields the type of the element at the given index.
* @relates OFtuple
* @details
* <h3>Usage Example:</h3>
* @code{.cpp}
* typedef OFPair<OFString,size_t> MyPair;
* typedef OFtuple<OFtuple_element<0,MyPair>::type,OFtuple_element<1,MyPair>::type> MyTuple;
* MyPair pair( "Hello World", 42 );
* MyTuple tuple( pair ); // Works, since both elements' types are the same as within MyPair.
* @endcode
*
*/
template<size_t Index,typename Tuple>
#ifndef DOXYGEN
struct OFtuple_element;
#else // NOT DOXYGEN
<metafunction> OFtuple_element;
#endif // DOXYGEN
#ifndef DOXYGEN
// specialization of OFtuple_size for OFPair -> 2
template<typename K,typename V>
struct OFtuple_size<OFPair<K,V> >
: OFintegral_constant<size_t,2> {};
// specialization of OFtuple_element for OFPair
// 0 -> K
template<typename K,typename V>
struct OFtuple_element<0,OFPair<K,V> >
{
typedef K type;
};
// specialization of OFtuple_element for OFPair
// 1 -> V
template<typename K,typename V>
struct OFtuple_element<1,OFPair<K,V> >
{
typedef V type;
};
// metafunction to apply OFget to OFPair
template<size_t Element>
struct OFpair_element;
// specialization for 0 -> first
template<>
struct OFpair_element<0>
{
template<typename K,typename V>
static K& from( OFPair<K,V>& p ) { return p.first; }
template<typename K,typename V>
static const K& from( const OFPair<K,V>& p ) { return p.first; }
};
// specialization for 1 -> second
template<>
struct OFpair_element<1>
{
template<typename K,typename V>
static V& from( OFPair<K,V>& p ) { return p.second; }
template<typename K,typename V>
static const V& from( const OFPair<K,V>& p ) { return p.second; }
};
// overload of OFget for OFPair, see above metafunction 'OFpair_element'
template<size_t Element,typename K,typename V>
typename OFtuple_element<Element,OFPair<K,V> >::type& OFget( OFPair<K,V>& p )
{
return OFpair_element<Element>::from( p );
}
// overload of OFget for const OFPair, see above metafunction 'OFpair_element'
template<size_t Element,typename K,typename V>
const typename OFtuple_element<Element,OFPair<K,V> >::type& OFget( const OFPair<K,V>& p )
{
return OFpair_element<Element>::from( p );
}
// tag to identify invalid OFtuple elements, needed for emulating
// variadic templates.
struct OFtuple_nil;
// include generated forward declaration for OFtuple.
#include "dcmtk/ofstd/variadic/tuplefwd.h"
#else // DOXYGEN
/** A function template to access an element of a tuple.
* @tparam Index the index of the element that should be accessed.
* @tparam Tuple a tuple type, e.g. an instance of OFtuple. This parameter
* is deduced automatically.
* @param tuple a reference to the tuple to access an element of.
* @pre Tuple is a tuple type, see @ref tuple_types "Tuple Types"
* for definition.
* @pre Index is a valid index , essentially: <kbd>Index < OFtuple_size<Tuple>::value</kbd>.
* @return a reference to the tuple's element at the given index.
* @relates OFtuple
* @details
* <h3>Usage Example:</h3>
* @code{.cpp}
* OFtuple<OFString,size_t,OFVector<int> > myTuple;
* OFget<0>( myTuple ) = "Hamish Alexander";
* OFget<1>( myTuple ) = 23;
* OFget<2>( myTuple ).push_back( 42 );
* @endcode
*/
template<size_t Index,typename Tuple>
typename OFtuple_element<Index,Tuple>::type& OFget( Tuple& tuple );
/** A function template to access an element of a tuple.
* @tparam Index the index of the element that should be accessed.
* @tparam Tuple a tuple type, e.g. an instance of OFtuple. This parameter
* is deduced automatically.
* @param tuple a const reference to the tuple to access an element of.
* @pre Tuple is a tuple type, see @ref tuple_types "Tuple Types"
* for definition.
* @pre Index is a valid index , essentially: <kbd>Index < OFtuple_size<Tuple>::value</kbd>.
* @return a const reference to the tuple's element at the given index.
* @relates OFtuple
* @details
* <h3>Usage Example:</h3>
* @code{.cpp}
* const OFtuple<OFString,size_t,OFBool> myConstTuple( "Homer Simpson", 38, OFTrue );
* if( OFget<0>( myConstTuple ) == "Homer Simpson" )
* {
* // OFget<1>( myConstTuple ) = 23; INVALID, myConstTuple is const!
* OFBool isMale = OFget<2>( myConstTuple );
* if( isMale )
* COUT << OFget<0>( myConstTuple ) << ", age "
* << OFget<1>( myConstTuple ) << " is male." << OFendl;
* }
* @endcode
* <b>Output:</b>
* @verbatim
Homer Simpson, age 38 is male.
@endverbatim
*/
template<size_t Index,typename Tuple>
const typename OFtuple_element<Index,Tuple>::type& OFget( const Tuple& tuple );
#endif // DOXYGEN
#endif // NOT C++11
#endif // OFUTIL_H
|