errinfo_errno.hpp 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. //Copyright (c) 2006-2009 Emil Dotchevski and Reverge Studios, Inc.
  2. //Distributed under the Boost Software License, Version 1.0. (See accompanying
  3. //file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  4. #ifndef UUID_F0EE17BE6C1211DE87FF459155D89593
  5. #define UUID_F0EE17BE6C1211DE87FF459155D89593
  6. #if (__GNUC__*100+__GNUC_MINOR__>301) && !defined(BOOST_EXCEPTION_ENABLE_WARNINGS)
  7. #pragma GCC system_header
  8. #endif
  9. #if defined(_MSC_VER) && !defined(BOOST_EXCEPTION_ENABLE_WARNINGS)
  10. #pragma warning(push,1)
  11. #endif
  12. #include "boost/exception/info.hpp"
  13. #include <errno.h>
  14. #include <string.h>
  15. namespace
  16. boost
  17. {
  18. typedef error_info<struct errinfo_errno_,int> errinfo_errno;
  19. //Usage hint:
  20. //if( c_function(....)!=0 )
  21. // BOOST_THROW_EXCEPTION(
  22. // failure() <<
  23. // errinfo_errno(errno) <<
  24. // errinfo_api_function("c_function") );
  25. inline
  26. std::string
  27. to_string( errinfo_errno const & e )
  28. {
  29. std::ostringstream tmp;
  30. int v=e.value();
  31. tmp << v << ", \"" << strerror(v) << "\"";
  32. return tmp.str();
  33. }
  34. }
  35. #if defined(_MSC_VER) && !defined(BOOST_EXCEPTION_ENABLE_WARNINGS)
  36. #pragma warning(pop)
  37. #endif
  38. #endif