lib/pulse/Error: use std::system_error

This commit is contained in:
Max Kellermann
2022-11-29 09:51:26 +01:00
parent e455b93fac
commit cf3f3a7750
3 changed files with 57 additions and 26 deletions

View File

@@ -23,9 +23,20 @@
#include <pulse/context.h>
#include <pulse/error.h>
std::runtime_error
MakePulseError(pa_context *context, const char *prefix) noexcept
namespace Pulse {
std::string
ErrorCategory::message(int condition) const
{
const int e = pa_context_errno(context);
return FormatRuntimeError("%s: %s", prefix, pa_strerror(e));
return pa_strerror(condition);
}
ErrorCategory error_category;
std::system_error
MakeError(pa_context *context, const char *msg) noexcept
{
return MakeError(pa_context_errno(context), msg);
}
} // namespace Pulse

View File

@@ -17,14 +17,34 @@
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#ifndef MPD_PULSE_ERROR_HXX
#define MPD_PULSE_ERROR_HXX
#pragma once
#include <stdexcept>
#include <system_error>
struct pa_context;
std::runtime_error
MakePulseError(pa_context *context, const char *prefix) noexcept;
namespace Pulse {
#endif
class ErrorCategory final : public std::error_category {
public:
const char *name() const noexcept override {
return "pulse";
}
std::string message(int condition) const override;
};
extern ErrorCategory error_category;
[[nodiscard]] [[gnu::pure]]
inline std::system_error
MakeError(int error, const char *msg) noexcept
{
return std::system_error(error, error_category, msg);
}
[[nodiscard]] [[gnu::pure]]
std::system_error
MakeError(pa_context *context, const char *msg) noexcept;
} // namespace Pulse