1//Copyright (c) 2006-2009 Emil Dotchevski and Reverge Studios, Inc.
2
3//Distributed under the Boost Software License, Version 1.0. (See accompanying
4//file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
5
6#ifndef UUID_6F463AC838DF11DDA3E6909F56D89593
7#define UUID_6F463AC838DF11DDA3E6909F56D89593
8
9#include <boost/exception/detail/type_info.hpp>
10#include <iomanip>
11#include <ios>
12#include <string>
13#include <sstream>
14#include <cstdlib>
15
16#if (__GNUC__*100+__GNUC_MINOR__>301) && !defined(BOOST_EXCEPTION_ENABLE_WARNINGS)
17#pragma GCC system_header
18#endif
19#if defined(_MSC_VER) && !defined(BOOST_EXCEPTION_ENABLE_WARNINGS)
20#pragma warning(push,1)
21#endif
22
23namespace
24boost
25 {
26 namespace
27 exception_detail
28 {
29 template <class T>
30 inline
31 std::string
32 object_hex_dump( T const & x, std::size_t max_size=16 )
33 {
34 std::ostringstream s;
35 s << "type: " << type_name<T>() << ", size: " << sizeof(T) << ", dump: ";
36 std::size_t n=sizeof(T)>max_size?max_size:sizeof(T);
37 s.fill('0');
38 s.width(2);
39 unsigned char const * b=reinterpret_cast<unsigned char const *>(&x);
40 s << std::setw(2) << std::hex << (unsigned int)*b;
41 for( unsigned char const * e=b+n; ++b!=e; )
42 s << " " << std::setw(2) << std::hex << (unsigned int)*b;
43 return s.str();
44 }
45 }
46 }
47
48#if defined(_MSC_VER) && !defined(BOOST_EXCEPTION_ENABLE_WARNINGS)
49#pragma warning(pop)
50#endif
51#endif
52