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
|
/*
This file is part of Warzone 2100.
Copyright (C) 2024 Warzone 2100 Project
Warzone 2100 is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
Warzone 2100 is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with Warzone 2100; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
#pragma once
#include <string>
#include <system_error>
/// <summary>
/// Custom error category class, which acts exactly as `std::system_category()` except
/// that the error messages are always translated to english representation (locale-agnostic behavior).
///
/// Please see the bug https://github.com/microsoft/STL/issues/3254 for the explanation
/// as to why we would need to use a custom error category (at least on Windows).
///
/// NOTE: Currently, for OSes other than Windows, error messages are obtained via
/// `strerror()` function, which is influenced by the `LC_MESSAGES` locale category.
/// This shouldn't be a problem, though, as opposed to Windows, which suffers from the
/// aforementioned bug in MSVC STL.
/// </summary.
class GenericSystemErrorCategory : public std::error_category
{
public:
constexpr GenericSystemErrorCategory() = default;
const char* name() const noexcept override
{
return "generic system (locale-safe)";
}
/// This method provides locale-agnostic mapping from the underlying POSIX (or Windows)
/// error codes to the human-readable error message strings.
std::string message(int ev) const override;
/// This method overload is needed to support the comparison of `std::error_code:s`
/// bound to our custom `GenericSystemErrorCategory` to the values
/// of `std::errc` enumeration (which transparently map to `std::error_condition:s`
/// bound to the `std::system_category()`).
std::error_condition default_error_condition(int ev) const noexcept override;
};
/// <summary>
/// Custom error category which maps error codes from `getaddrinfo()` function to
/// the appropriate error messages.
/// </summary>
class GetaddrinfoErrorCategory : public std::error_category
{
public:
constexpr GetaddrinfoErrorCategory() = default;
const char* name() const noexcept override
{
return "getaddrinfo";
}
std::string message(int ev) const override;
};
/// <summary>
/// Custom error category which maps some of the error codes from zlib to
/// the appropriate error messages.
/// </summary>
class ZlibErrorCategory : public std::error_category
{
public:
constexpr ZlibErrorCategory() = default;
const char* name() const noexcept override
{
return "zlib";
}
std::string message(int ev) const override;
};
const std::error_category& generic_system_error_category();
const std::error_category& getaddrinfo_error_category();
const std::error_category& zlib_error_category();
std::error_code make_network_error_code(int ev);
std::error_code make_getaddrinfo_error_code(int ev);
std::error_code make_zlib_error_code(int ev);
|