os/ossrv/ossrv_pub/boost_apis/boost/state_saver.hpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
#ifndef BOOST_STATE_SAVER_HPP
sl@0
     2
#define BOOST_STATE_SAVER_HPP
sl@0
     3
sl@0
     4
// MS compatible compilers support #pragma once
sl@0
     5
#if defined(_MSC_VER) && (_MSC_VER >= 1020)
sl@0
     6
# pragma once
sl@0
     7
#endif
sl@0
     8
sl@0
     9
/////////1/////////2/////////3/////////4/////////5/////////6/////////7/////////8
sl@0
    10
// state_saver.hpp:
sl@0
    11
sl@0
    12
// (C) Copyright 2003-4 Pavel Vozenilek and Robert Ramey - http://www.rrsd.com.
sl@0
    13
// Use, modification and distribution is subject to the Boost Software
sl@0
    14
// License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
sl@0
    15
// http://www.boost.org/LICENSE_1_0.txt)
sl@0
    16
sl@0
    17
//  See http://www.boost.org for updates, documentation, and revision history.
sl@0
    18
sl@0
    19
// Inspired by Daryle Walker's iostate_saver concept.  This saves the original
sl@0
    20
// value of a variable when a state_saver is constructed and restores
sl@0
    21
// upon destruction.  Useful for being sure that state is restored to
sl@0
    22
// variables upon exit from scope.
sl@0
    23
sl@0
    24
sl@0
    25
#include <boost/config.hpp>
sl@0
    26
#ifndef BOOST_NO_EXCEPTIONS
sl@0
    27
    #include <exception>
sl@0
    28
#endif
sl@0
    29
sl@0
    30
#include <boost/call_traits.hpp>
sl@0
    31
#include <boost/noncopyable.hpp>
sl@0
    32
#include <boost/type_traits/has_nothrow_copy.hpp>
sl@0
    33
#include <boost/detail/no_exceptions_support.hpp>
sl@0
    34
sl@0
    35
#include <boost/mpl/eval_if.hpp>
sl@0
    36
#include <boost/mpl/identity.hpp>
sl@0
    37
sl@0
    38
namespace boost {
sl@0
    39
sl@0
    40
template<class T>
sl@0
    41
// T requirements:
sl@0
    42
//  - POD or object semantic (cannot be reference, function, ...)
sl@0
    43
//  - copy constructor
sl@0
    44
//  - operator = (no-throw one preferred)
sl@0
    45
class state_saver : private boost::noncopyable
sl@0
    46
{
sl@0
    47
private:
sl@0
    48
    const T previous_value;
sl@0
    49
    T & previous_ref;
sl@0
    50
sl@0
    51
    struct restore {
sl@0
    52
        static void invoke(T & previous_ref, const T & previous_value){
sl@0
    53
            previous_ref = previous_value; // won't throw
sl@0
    54
        }
sl@0
    55
    };
sl@0
    56
sl@0
    57
    struct restore_with_exception {
sl@0
    58
        static void invoke(T & previous_ref, const T & previous_value){
sl@0
    59
            BOOST_TRY{
sl@0
    60
                previous_ref = previous_value;
sl@0
    61
            } 
sl@0
    62
            BOOST_CATCH(::std::exception &) { 
sl@0
    63
                // we must ignore it - we are in destructor
sl@0
    64
            }
sl@0
    65
            BOOST_CATCH_END
sl@0
    66
        }
sl@0
    67
    };
sl@0
    68
sl@0
    69
public:
sl@0
    70
    state_saver(
sl@0
    71
        T & object
sl@0
    72
    ) : 
sl@0
    73
        previous_value(object),
sl@0
    74
        previous_ref(object) 
sl@0
    75
    {}
sl@0
    76
    
sl@0
    77
    ~state_saver() {
sl@0
    78
        #ifndef BOOST_NO_EXCEPTIONS
sl@0
    79
            typedef BOOST_DEDUCED_TYPENAME mpl::eval_if<
sl@0
    80
                has_nothrow_copy<T>,
sl@0
    81
                mpl::identity<restore>,
sl@0
    82
                mpl::identity<restore_with_exception>
sl@0
    83
            >::type typex;
sl@0
    84
            typex::invoke(previous_ref, previous_value);
sl@0
    85
        #else
sl@0
    86
            previous_ref = previous_value;
sl@0
    87
        #endif
sl@0
    88
    }
sl@0
    89
sl@0
    90
}; // state_saver<>
sl@0
    91
sl@0
    92
} // boost
sl@0
    93
sl@0
    94
#endif //BOOST_STATE_SAVER_HPP