aboutsummaryrefslogtreecommitdiff
path: root/src/InputStream.cxx
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2013-01-28 23:35:01 +0100
committerMax Kellermann <max@duempel.org>2013-01-28 23:35:01 +0100
commitcffc78ad6a978c8ef0afae4fbdd4b189612a7167 (patch)
tree2496679726754549fd6aad4da0ab558b07bbe0bf /src/InputStream.cxx
parentdcf55c7e328578d435eb14277cb6ba9e072f7e9c (diff)
InputStream: store references instead of pointers
Diffstat (limited to 'src/InputStream.cxx')
-rw-r--r--src/InputStream.cxx79
1 files changed, 25 insertions, 54 deletions
diff --git a/src/InputStream.cxx b/src/InputStream.cxx
index c9d7f212..ef77a468 100644
--- a/src/InputStream.cxx
+++ b/src/InputStream.cxx
@@ -50,11 +50,10 @@ input_stream_open(const char *url,
is = plugin->open(url, mutex, cond, &error);
if (is != NULL) {
- assert(is->plugin != NULL);
- assert(is->plugin->close != NULL);
- assert(is->plugin->read != NULL);
- assert(is->plugin->eof != NULL);
- assert(!is->seekable || is->plugin->seek != NULL);
+ assert(is->plugin.close != NULL);
+ assert(is->plugin.read != NULL);
+ assert(is->plugin.eof != NULL);
+ assert(!is->seekable || is->plugin.seek != NULL);
is = input_rewind_open(is);
@@ -73,35 +72,31 @@ bool
input_stream_check(struct input_stream *is, GError **error_r)
{
assert(is != NULL);
- assert(is->plugin != NULL);
- return is->plugin->check == NULL ||
- is->plugin->check(is, error_r);
+ return is->plugin.check == NULL ||
+ is->plugin.check(is, error_r);
}
void
input_stream_update(struct input_stream *is)
{
assert(is != NULL);
- assert(is->plugin != NULL);
- if (is->plugin->update != NULL)
- is->plugin->update(is);
+ if (is->plugin.update != NULL)
+ is->plugin.update(is);
}
void
input_stream_wait_ready(struct input_stream *is)
{
assert(is != NULL);
- assert(is->mutex != NULL);
- assert(is->cond != NULL);
while (true) {
input_stream_update(is);
if (is->ready)
break;
- is->cond->wait(*is->mutex);
+ is->cond.wait(is->mutex);
}
}
@@ -109,10 +104,8 @@ void
input_stream_lock_wait_ready(struct input_stream *is)
{
assert(is != NULL);
- assert(is->mutex != NULL);
- assert(is->cond != NULL);
- const ScopeLock protect(*is->mutex);
+ const ScopeLock protect(is->mutex);
input_stream_wait_ready(is);
}
@@ -173,12 +166,11 @@ input_stream_seek(struct input_stream *is, goffset offset, int whence,
GError **error_r)
{
assert(is != NULL);
- assert(is->plugin != NULL);
- if (is->plugin->seek == 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_r);
}
bool
@@ -186,16 +178,11 @@ input_stream_lock_seek(struct input_stream *is, goffset offset, int whence,
GError **error_r)
{
assert(is != NULL);
- assert(is->plugin != NULL);
- if (is->plugin->seek == NULL)
+ if (is->plugin.seek == NULL)
return false;
- if (is->mutex == NULL)
- /* no locking */
- return input_stream_seek(is, offset, whence, error_r);
-
- const ScopeLock protect(*is->mutex);
+ const ScopeLock protect(is->mutex);
return input_stream_seek(is, offset, whence, error_r);
}
@@ -203,10 +190,9 @@ struct tag *
input_stream_tag(struct input_stream *is)
{
assert(is != NULL);
- assert(is->plugin != NULL);
- return is->plugin->tag != NULL
- ? is->plugin->tag(is)
+ return is->plugin.tag != NULL
+ ? is->plugin.tag(is)
: NULL;
}
@@ -214,16 +200,11 @@ struct tag *
input_stream_lock_tag(struct input_stream *is)
{
assert(is != NULL);
- assert(is->plugin != NULL);
- if (is->plugin->tag == NULL)
+ if (is->plugin.tag == NULL)
return nullptr;
- if (is->mutex == NULL)
- /* no locking */
- return input_stream_tag(is);
-
- const ScopeLock protect(*is->mutex);
+ const ScopeLock protect(is->mutex);
return input_stream_tag(is);
}
@@ -231,10 +212,9 @@ bool
input_stream_available(struct input_stream *is)
{
assert(is != NULL);
- assert(is->plugin != NULL);
- return is->plugin->available != NULL
- ? is->plugin->available(is)
+ return is->plugin.available != NULL
+ ? is->plugin.available(is)
: true;
}
@@ -245,7 +225,7 @@ input_stream_read(struct input_stream *is, void *ptr, size_t size,
assert(ptr != NULL);
assert(size > 0);
- return is->plugin->read(is, ptr, size, error_r);
+ return is->plugin.read(is, ptr, size, error_r);
}
size_t
@@ -255,35 +235,26 @@ input_stream_lock_read(struct input_stream *is, void *ptr, size_t size,
assert(ptr != NULL);
assert(size > 0);
- if (is->mutex == NULL)
- /* no locking */
- return input_stream_read(is, ptr, size, error_r);
-
- const ScopeLock protect(*is->mutex);
+ const ScopeLock protect(is->mutex);
return input_stream_read(is, ptr, size, error_r);
}
void input_stream_close(struct input_stream *is)
{
- is->plugin->close(is);
+ is->plugin.close(is);
}
bool input_stream_eof(struct input_stream *is)
{
- return is->plugin->eof(is);
+ return is->plugin.eof(is);
}
bool
input_stream_lock_eof(struct input_stream *is)
{
assert(is != NULL);
- assert(is->plugin != NULL);
-
- if (is->mutex == NULL)
- /* no locking */
- return input_stream_eof(is);
- const ScopeLock protect(*is->mutex);
+ const ScopeLock protect(is->mutex);
return input_stream_eof(is);
}