aboutsummaryrefslogtreecommitdiffstats
path: root/src/InputStream.cxx
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2013-08-10 18:02:44 +0200
committerMax Kellermann <max@duempel.org>2013-09-04 18:14:22 +0200
commit29030b54c98b0aee65fbc10ebf7ba36bed98c02c (patch)
tree79766830b55ebca38ddbce84d8d548227eedb69e /src/InputStream.cxx
parentc9fcc7f14860777458153eb2d13c773ccfa1daa2 (diff)
downloadmpd-29030b54c98b0aee65fbc10ebf7ba36bed98c02c.tar.gz
mpd-29030b54c98b0aee65fbc10ebf7ba36bed98c02c.tar.xz
mpd-29030b54c98b0aee65fbc10ebf7ba36bed98c02c.zip
util/Error: new error passing library
Replaces GLib's GError.
Diffstat (limited to 'src/InputStream.cxx')
-rw-r--r--src/InputStream.cxx43
1 files changed, 17 insertions, 26 deletions
diff --git a/src/InputStream.cxx b/src/InputStream.cxx
index 872d54fb7..c98797c89 100644
--- a/src/InputStream.cxx
+++ b/src/InputStream.cxx
@@ -23,29 +23,22 @@
#include "InputPlugin.hxx"
#include "input/RewindInputPlugin.hxx"
#include "util/UriUtil.hxx"
+#include "util/Error.hxx"
+#include "util/Domain.hxx"
-#include <glib.h>
#include <assert.h>
-static inline GQuark
-input_quark(void)
-{
- return g_quark_from_static_string("input");
-}
+static constexpr Domain input_domain("input");
struct input_stream *
input_stream_open(const char *url,
Mutex &mutex, Cond &cond,
- GError **error_r)
+ Error &error)
{
- GError *error = NULL;
-
- assert(error_r == NULL || *error_r == NULL);
-
input_plugins_for_each_enabled(plugin) {
struct input_stream *is;
- is = plugin->open(url, mutex, cond, &error);
+ is = plugin->open(url, mutex, cond, error);
if (is != NULL) {
assert(is->plugin.close != NULL);
assert(is->plugin.read != NULL);
@@ -55,23 +48,21 @@ input_stream_open(const char *url,
is = input_rewind_open(is);
return is;
- } else if (error != NULL) {
- g_propagate_error(error_r, error);
+ } else if (error.IsDefined())
return NULL;
- }
}
- g_set_error(error_r, input_quark(), 0, "Unrecognized URI");
+ error.Set(input_domain, "Unrecognized URI");
return NULL;
}
bool
-input_stream_check(struct input_stream *is, GError **error_r)
+input_stream_check(struct input_stream *is, Error &error)
{
assert(is != NULL);
return is->plugin.check == NULL ||
- is->plugin.check(is, error_r);
+ is->plugin.check(is, error);
}
void
@@ -159,19 +150,19 @@ input_stream_cheap_seeking(const struct input_stream *is)
bool
input_stream_seek(struct input_stream *is, goffset offset, int whence,
- GError **error_r)
+ Error &error)
{
assert(is != NULL);
if (is->plugin.seek == NULL)
return false;
- return is->plugin.seek(is, offset, whence, error_r);
+ return is->plugin.seek(is, offset, whence, error);
}
bool
input_stream_lock_seek(struct input_stream *is, goffset offset, int whence,
- GError **error_r)
+ Error &error)
{
assert(is != NULL);
@@ -179,7 +170,7 @@ input_stream_lock_seek(struct input_stream *is, goffset offset, int whence,
return false;
const ScopeLock protect(is->mutex);
- return input_stream_seek(is, offset, whence, error_r);
+ return input_stream_seek(is, offset, whence, error);
}
Tag *
@@ -216,23 +207,23 @@ input_stream_available(struct input_stream *is)
size_t
input_stream_read(struct input_stream *is, void *ptr, size_t size,
- GError **error_r)
+ Error &error)
{
assert(ptr != NULL);
assert(size > 0);
- return is->plugin.read(is, ptr, size, error_r);
+ return is->plugin.read(is, ptr, size, error);
}
size_t
input_stream_lock_read(struct input_stream *is, void *ptr, size_t size,
- GError **error_r)
+ Error &error)
{
assert(ptr != NULL);
assert(size > 0);
const ScopeLock protect(is->mutex);
- return input_stream_read(is, ptr, size, error_r);
+ return input_stream_read(is, ptr, size, error);
}
void input_stream_close(struct input_stream *is)