diff options
author | Max Kellermann <max@duempel.org> | 2014-05-11 17:14:49 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2014-05-11 17:14:49 +0200 |
commit | d4b625b48e6bbac61b4128aeeaf44911b2e3e03b (patch) | |
tree | 67389c99a559c1b65bf6465c2361a4e3c01d4287 /src/input/plugins/SmbclientInputPlugin.cxx | |
parent | 82337dec44347017ca04fe975e85e6d9e4edb635 (diff) | |
download | mpd-d4b625b48e6bbac61b4128aeeaf44911b2e3e03b.tar.gz mpd-d4b625b48e6bbac61b4128aeeaf44911b2e3e03b.tar.xz mpd-d4b625b48e6bbac61b4128aeeaf44911b2e3e03b.zip |
InputStream: make various methods abstract
Replace InputPlugin attributes.
Diffstat (limited to 'src/input/plugins/SmbclientInputPlugin.cxx')
-rw-r--r-- | src/input/plugins/SmbclientInputPlugin.cxx | 77 |
1 files changed, 28 insertions, 49 deletions
diff --git a/src/input/plugins/SmbclientInputPlugin.cxx b/src/input/plugins/SmbclientInputPlugin.cxx index 07ffb83c4..01ee2616a 100644 --- a/src/input/plugins/SmbclientInputPlugin.cxx +++ b/src/input/plugins/SmbclientInputPlugin.cxx @@ -50,34 +50,14 @@ public: smbclient_mutex.unlock(); } - bool IsEOF() const { - return offset >= size; - } - - size_t Read(void *ptr, size_t read_size, Error &error) { - smbclient_mutex.lock(); - ssize_t nbytes = smbc_read(fd, ptr, read_size); - smbclient_mutex.unlock(); - if (nbytes < 0) { - error.SetErrno("smbc_read() failed"); - nbytes = 0; - } + /* virtual methods from InputStream */ - return nbytes; + bool IsEOF() override { + return offset >= size; } - bool Seek(InputStream::offset_type new_offset, int whence, Error &error) { - smbclient_mutex.lock(); - off_t result = smbc_lseek(fd, new_offset, whence); - smbclient_mutex.unlock(); - if (result < 0) { - error.SetErrno("smbc_lseek() failed"); - return false; - } - - offset = result; - return true; - } + size_t Read(void *ptr, size_t size, Error &error) override; + bool Seek(offset_type offset, int whence, Error &error) override; }; /* @@ -141,28 +121,34 @@ input_smbclient_open(const char *uri, return new SmbclientInputStream(uri, mutex, cond, ctx, fd, st); } -static size_t -input_smbclient_read(InputStream *is, void *ptr, size_t size, - Error &error) +size_t +SmbclientInputStream::Read(void *ptr, size_t read_size, Error &error) { - SmbclientInputStream &s = *(SmbclientInputStream *)is; - return s.Read(ptr, size, error); -} + smbclient_mutex.lock(); + ssize_t nbytes = smbc_read(fd, ptr, read_size); + smbclient_mutex.unlock(); + if (nbytes < 0) { + error.SetErrno("smbc_read() failed"); + nbytes = 0; + } -static bool -input_smbclient_eof(InputStream *is) -{ - SmbclientInputStream &s = *(SmbclientInputStream *)is; - return s.IsEOF(); + return nbytes; } -static bool -input_smbclient_seek(InputStream *is, - InputPlugin::offset_type offset, int whence, - Error &error) +bool +SmbclientInputStream::Seek(InputStream::offset_type new_offset, + int whence, Error &error) { - SmbclientInputStream &s = *(SmbclientInputStream *)is; - return s.Seek(offset, whence, error); + smbclient_mutex.lock(); + off_t result = smbc_lseek(fd, new_offset, whence); + smbclient_mutex.unlock(); + if (result < 0) { + error.SetErrno("smbc_lseek() failed"); + return false; + } + + offset = result; + return true; } const InputPlugin input_plugin_smbclient = { @@ -170,11 +156,4 @@ const InputPlugin input_plugin_smbclient = { input_smbclient_init, nullptr, input_smbclient_open, - nullptr, - nullptr, - nullptr, - nullptr, - input_smbclient_read, - input_smbclient_eof, - input_smbclient_seek, }; |