2009-03-13 18:43:16 +01:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2003-2009 The Music Player Daemon Project
|
|
|
|
* http://www.musicpd.org
|
2004-05-18 04:46:36 +02:00
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
2009-03-13 18:43:16 +01:00
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License along
|
|
|
|
* with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
2004-05-18 04:46:36 +02:00
|
|
|
*/
|
|
|
|
|
2009-03-02 20:40:31 +01:00
|
|
|
#include "input/file_input_plugin.h"
|
2009-03-02 20:13:08 +01:00
|
|
|
#include "input_plugin.h"
|
2008-10-28 20:41:24 +01:00
|
|
|
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <glib.h>
|
2004-05-18 04:46:36 +02:00
|
|
|
|
2009-02-17 22:58:27 +01:00
|
|
|
#undef G_LOG_DOMAIN
|
|
|
|
#define G_LOG_DOMAIN "input_file"
|
|
|
|
|
2008-10-26 20:38:44 +01:00
|
|
|
static bool
|
|
|
|
input_file_open(struct input_stream *is, const char *filename)
|
2006-07-20 18:02:40 +02:00
|
|
|
{
|
2008-10-28 20:41:24 +01:00
|
|
|
int fd, ret;
|
|
|
|
struct stat st;
|
2004-05-18 04:46:36 +02:00
|
|
|
|
2009-03-08 20:16:53 +01:00
|
|
|
char* pathname = g_strdup(filename);
|
|
|
|
|
2008-10-27 10:10:24 +01:00
|
|
|
if (filename[0] != '/')
|
2009-03-08 20:16:53 +01:00
|
|
|
{
|
|
|
|
g_free(pathname);
|
2008-10-27 10:10:24 +01:00
|
|
|
return false;
|
2009-03-08 20:16:53 +01:00
|
|
|
}
|
2008-10-27 10:10:24 +01:00
|
|
|
|
2009-03-08 20:16:53 +01:00
|
|
|
if (stat(filename, &st) < 0) {
|
|
|
|
char* slash = strrchr(pathname, '/');
|
|
|
|
*slash = '\0';
|
|
|
|
}
|
|
|
|
|
|
|
|
fd = open(pathname, O_RDONLY);
|
2008-10-28 20:41:24 +01:00
|
|
|
if (fd < 0) {
|
2008-10-26 20:34:47 +01:00
|
|
|
is->error = errno;
|
2009-03-08 20:16:53 +01:00
|
|
|
g_free(pathname);
|
2008-10-26 20:38:44 +01:00
|
|
|
return false;
|
2004-05-18 04:46:36 +02:00
|
|
|
}
|
|
|
|
|
2008-10-26 20:56:46 +01:00
|
|
|
is->seekable = true;
|
2004-05-18 04:46:36 +02:00
|
|
|
|
2008-10-28 20:41:24 +01:00
|
|
|
ret = fstat(fd, &st);
|
2008-10-29 21:11:20 +01:00
|
|
|
if (ret < 0) {
|
|
|
|
is->error = errno;
|
|
|
|
close(fd);
|
2009-03-08 20:16:53 +01:00
|
|
|
g_free(pathname);
|
2008-10-29 21:11:20 +01:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2008-10-29 21:11:28 +01:00
|
|
|
if (!S_ISREG(st.st_mode)) {
|
2009-03-08 20:16:53 +01:00
|
|
|
g_debug("Not a regular file: %s", pathname);
|
2008-10-29 21:11:28 +01:00
|
|
|
is->error = EINVAL;
|
|
|
|
close(fd);
|
2009-03-08 20:16:53 +01:00
|
|
|
g_free(pathname);
|
2008-10-29 21:11:28 +01:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2008-10-28 20:41:24 +01:00
|
|
|
is->size = st.st_size;
|
2004-05-18 04:46:36 +02:00
|
|
|
|
2007-01-19 02:40:02 +01:00
|
|
|
#ifdef POSIX_FADV_SEQUENTIAL
|
2008-10-28 20:41:24 +01:00
|
|
|
posix_fadvise(fd, (off_t)0, is->size, POSIX_FADV_SEQUENTIAL);
|
2007-01-19 02:40:02 +01:00
|
|
|
#endif
|
|
|
|
|
2009-01-30 00:40:14 +01:00
|
|
|
is->plugin = &input_plugin_file;
|
2008-10-28 20:41:24 +01:00
|
|
|
is->data = GINT_TO_POINTER(fd);
|
2008-10-26 20:56:46 +01:00
|
|
|
is->ready = true;
|
2008-08-26 08:27:10 +02:00
|
|
|
|
2009-03-08 20:16:53 +01:00
|
|
|
g_free(pathname);
|
|
|
|
|
2008-10-26 20:38:44 +01:00
|
|
|
return true;
|
2004-05-18 04:46:36 +02:00
|
|
|
}
|
|
|
|
|
2008-10-26 20:56:46 +01:00
|
|
|
static bool
|
2008-10-28 20:39:09 +01:00
|
|
|
input_file_seek(struct input_stream *is, off_t offset, int whence)
|
2006-07-20 18:02:40 +02:00
|
|
|
{
|
2008-10-28 20:41:24 +01:00
|
|
|
int fd = GPOINTER_TO_INT(is->data);
|
|
|
|
|
|
|
|
offset = lseek(fd, offset, whence);
|
|
|
|
if (offset < 0) {
|
2008-10-26 20:34:47 +01:00
|
|
|
is->error = errno;
|
2008-10-26 20:56:46 +01:00
|
|
|
return false;
|
2004-05-18 04:46:36 +02:00
|
|
|
}
|
|
|
|
|
2008-10-28 20:41:24 +01:00
|
|
|
is->offset = offset;
|
2008-10-26 20:56:46 +01:00
|
|
|
return true;
|
2004-05-18 04:46:36 +02:00
|
|
|
}
|
|
|
|
|
2008-10-26 20:34:03 +01:00
|
|
|
static size_t
|
2008-10-26 20:34:47 +01:00
|
|
|
input_file_read(struct input_stream *is, void *ptr, size_t size)
|
2004-05-18 04:46:36 +02:00
|
|
|
{
|
2008-10-28 20:41:24 +01:00
|
|
|
int fd = GPOINTER_TO_INT(is->data);
|
|
|
|
ssize_t nbytes;
|
2004-05-18 04:46:36 +02:00
|
|
|
|
2008-10-28 20:41:24 +01:00
|
|
|
nbytes = read(fd, ptr, size);
|
|
|
|
if (nbytes < 0) {
|
2008-10-26 20:34:47 +01:00
|
|
|
is->error = errno;
|
2008-10-29 21:11:04 +01:00
|
|
|
g_debug("input_file_read: error reading: %s\n",
|
|
|
|
strerror(is->error));
|
2008-10-28 20:41:24 +01:00
|
|
|
return 0;
|
2006-07-20 18:02:40 +02:00
|
|
|
}
|
2004-05-18 04:46:36 +02:00
|
|
|
|
2008-10-28 20:41:24 +01:00
|
|
|
is->offset += nbytes;
|
|
|
|
return (size_t)nbytes;
|
2004-05-18 04:46:36 +02:00
|
|
|
}
|
|
|
|
|
2008-10-26 20:54:52 +01:00
|
|
|
static void
|
2008-10-26 20:34:47 +01:00
|
|
|
input_file_close(struct input_stream *is)
|
2006-07-20 18:02:40 +02:00
|
|
|
{
|
2008-10-28 20:41:24 +01:00
|
|
|
int fd = GPOINTER_TO_INT(is->data);
|
|
|
|
|
|
|
|
close(fd);
|
2004-05-18 04:46:36 +02:00
|
|
|
}
|
|
|
|
|
2008-10-26 20:56:46 +01:00
|
|
|
static bool
|
2008-10-26 20:34:47 +01:00
|
|
|
input_file_eof(struct input_stream *is)
|
2006-07-20 18:02:40 +02:00
|
|
|
{
|
2008-10-28 20:41:24 +01:00
|
|
|
return is->offset >= is->size;
|
2004-05-18 04:46:36 +02:00
|
|
|
}
|
2004-05-18 11:54:45 +02:00
|
|
|
|
2008-10-26 20:38:44 +01:00
|
|
|
const struct input_plugin input_plugin_file = {
|
2009-03-02 23:08:17 +01:00
|
|
|
.name = "file",
|
2008-10-26 20:38:44 +01:00
|
|
|
.open = input_file_open,
|
|
|
|
.close = input_file_close,
|
|
|
|
.read = input_file_read,
|
|
|
|
.eof = input_file_eof,
|
|
|
|
.seek = input_file_seek,
|
|
|
|
};
|