system_failure.hpp
来自「Boost provides free peer-reviewed portab」· HPP 代码 · 共 84 行
HPP
84 行
// (C) Copyright 2008 CodeRage, LLC (turkanis at coderage dot com)// (C) Copyright 2005-2007 Jonathan Turkanis// (C) Copyright Jonathan Graehl 2004.// Distributed under the Boost Software License, Version 1.0. (See accompanying// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt.)// See http://www.boost.org/libs/iostreams for documentation.// Used by mapped_file.cpp.#ifndef BOOST_IOSTREAMS_DETAIL_SYSTEM_FAILURE_HPP_INCLUDED#define BOOST_IOSTREAMS_DETAIL_SYSTEM_FAILURE_HPP_INCLUDED#if defined(_MSC_VER) && (_MSC_VER >= 1020)# pragma once#endif#include <cstring>#include <string>#include <boost/config.hpp>#include <boost/iostreams/detail/config/windows_posix.hpp>#include <boost/iostreams/detail/ios.hpp> // failure.#if defined(BOOST_NO_STDC_NAMESPACE) && !defined(__LIBCOMO__)namespace std { using ::strlen; }#endif#ifdef BOOST_IOSTREAMS_WINDOWS# define WIN32_LEAN_AND_MEAN // Exclude rarely-used stuff from Windows headers# include <windows.h>#else# include <errno.h># include <string.h>#endifnamespace boost { namespace iostreams { namespace detail {inline BOOST_IOSTREAMS_FAILURE system_failure(const char* msg){ std::string result;#ifdef BOOST_IOSTREAMS_WINDOWS DWORD err; LPVOID lpMsgBuf; if ( (err = ::GetLastError()) != NO_ERROR && ::FormatMessageA( FORMAT_MESSAGE_ALLOCATE_BUFFER | FORMAT_MESSAGE_FROM_SYSTEM, NULL, err, MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT), (LPSTR) &lpMsgBuf, 0, NULL ) != 0 ) { result.reserve(std::strlen(msg) + 2 + std::strlen((LPSTR)lpMsgBuf)); result.append(msg); result.append(": "); result.append((LPSTR) lpMsgBuf); ::LocalFree(lpMsgBuf); } else { result += msg; }#else const char* system_msg = errno ? strerror(errno) : ""; result.reserve(std::strlen(msg) + 2 + std::strlen(system_msg)); result.append(msg); result.append(": "); result.append(system_msg);#endif return BOOST_IOSTREAMS_FAILURE(result);}inline BOOST_IOSTREAMS_FAILURE system_failure(const std::string& msg){ return system_failure(msg.c_str()); }inline void throw_system_failure(const char* msg){ throw system_failure(msg); }inline void throw_system_failure(const std::string& msg){ throw system_failure(msg); }} } } // End namespaces detail, iostreams, boost.#endif // #ifndef BOOST_IOSTREAMS_DETAIL_SYSTEM_FAILURE_HPP_INCLUDED
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?