mirror of
https://github.com/matrix-construct/construct
synced 2024-11-02 20:09:16 +01:00
120 lines
2.5 KiB
C++
120 lines
2.5 KiB
C++
// Matrix Construct
|
|
//
|
|
// Copyright (C) Matrix Construct Developers, Authors & Contributors
|
|
// Copyright (C) 2016-2018 Jason Volk <jason@zemos.net>
|
|
//
|
|
// Permission to use, copy, modify, and/or distribute this software for any
|
|
// purpose with or without fee is hereby granted, provided that the above
|
|
// copyright notice and this permission notice is present in all copies. The
|
|
// full license for this software is available in the LICENSE file.
|
|
|
|
#pragma once
|
|
#define HAVE_IRCD_FS_ERROR_H
|
|
|
|
// Forward declarations for boost
|
|
namespace boost::filesystem
|
|
{
|
|
struct filesystem_error;
|
|
}
|
|
|
|
namespace ircd
|
|
{
|
|
struct error;
|
|
|
|
std::error_code make_error_code(const boost::filesystem::filesystem_error &);
|
|
}
|
|
|
|
struct ircd::fs::error
|
|
:ircd::error
|
|
{
|
|
std::error_code code;
|
|
|
|
template<class... args>
|
|
error(const char *const &fmt = " ",
|
|
args&&...);
|
|
|
|
template<class... args>
|
|
error(const std::error_code &,
|
|
const char *const &fmt,
|
|
args&&...);
|
|
|
|
template<class... args>
|
|
error(const std::system_error &,
|
|
const char *const &fmt,
|
|
args&&...);
|
|
|
|
template<class... args>
|
|
error(const boost::filesystem::filesystem_error &,
|
|
const char *const &fmt,
|
|
args&&...);
|
|
|
|
error(const std::error_code &e);
|
|
error(const std::system_error &);
|
|
error(const boost::filesystem::filesystem_error &);
|
|
};
|
|
|
|
inline
|
|
ircd::fs::error::error(const boost::filesystem::filesystem_error &code)
|
|
:error{make_error_code(code)}
|
|
{}
|
|
|
|
inline
|
|
ircd::fs::error::error(const std::system_error &code)
|
|
:code{make_error_code(code)}
|
|
{
|
|
string(this->buf, code);
|
|
}
|
|
|
|
inline
|
|
ircd::fs::error::error(const std::error_code &code)
|
|
:code{code}
|
|
{
|
|
string(this->buf, code);
|
|
}
|
|
|
|
template<class... args>
|
|
ircd::fs::error::error(const boost::filesystem::filesystem_error &e,
|
|
const char *const &fmt,
|
|
args&&... a)
|
|
:error
|
|
{
|
|
make_error_code(e), fmt, std::forward<args>(a)...
|
|
}
|
|
{
|
|
}
|
|
|
|
template<class... args>
|
|
ircd::fs::error::error(const std::system_error &e,
|
|
const char *const &fmt,
|
|
args&&... a)
|
|
:error
|
|
{
|
|
make_error_code(e), fmt, std::forward<args>(a)...
|
|
}
|
|
{
|
|
}
|
|
|
|
template<class... args>
|
|
ircd::fs::error::error(const std::error_code &e,
|
|
const char *const &fmt,
|
|
args&&... a)
|
|
:ircd::error
|
|
{
|
|
fmt, std::forward<args>(a)...
|
|
}
|
|
,code
|
|
{
|
|
make_error_code(e)
|
|
}
|
|
{
|
|
}
|
|
|
|
template<class... args>
|
|
ircd::fs::error::error(const char *const &fmt,
|
|
args&&... a)
|
|
:ircd::error
|
|
{
|
|
fmt, std::forward<args>(a)...
|
|
}
|
|
{
|
|
}
|