2004-05-18 04:46:36 +02:00
|
|
|
/* the Music Player Daemon (MPD)
|
2007-04-05 05:22:33 +02:00
|
|
|
* Copyright (C) 2003-2007 by Warren Dukes (warren.dukes@gmail.com)
|
2004-05-18 04:46:36 +02:00
|
|
|
* This project's homepage is: http://www.musicpd.org
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
* 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
*/
|
|
|
|
|
2008-10-26 19:38:50 +01:00
|
|
|
#include "input_file.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
|
|
|
|
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
|
|
|
|
2008-10-27 10:10:24 +01:00
|
|
|
if (filename[0] != '/')
|
|
|
|
return false;
|
|
|
|
|
2008-10-28 20:41:24 +01:00
|
|
|
fd = open(filename, O_RDONLY);
|
|
|
|
if (fd < 0) {
|
2008-10-26 20:34:47 +01:00
|
|
|
is->error = errno;
|
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);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2008-10-29 21:11:28 +01:00
|
|
|
if (!S_ISREG(st.st_mode)) {
|
|
|
|
g_debug("Not a regular file: %s\n", filename);
|
|
|
|
is->error = EINVAL;
|
|
|
|
close(fd);
|
|
|
|
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
|
|
|
|
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 = {
|
|
|
|
.open = input_file_open,
|
|
|
|
.close = input_file_close,
|
|
|
|
.read = input_file_read,
|
|
|
|
.eof = input_file_eof,
|
|
|
|
.seek = input_file_seek,
|
|
|
|
};
|