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"
|
2004-05-18 04:46:36 +02:00
|
|
|
|
2004-07-13 14:03:21 +02:00
|
|
|
#include "log.h"
|
2008-01-03 08:29:49 +01:00
|
|
|
#include "os_compat.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
|
|
|
{
|
|
|
|
FILE *fp;
|
2004-05-18 04:46:36 +02:00
|
|
|
|
2008-10-27 10:10:24 +01:00
|
|
|
if (filename[0] != '/')
|
|
|
|
return false;
|
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
fp = fopen(filename, "r");
|
|
|
|
if (!fp) {
|
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
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
fseek(fp, 0, SEEK_END);
|
2008-10-26 20:34:47 +01:00
|
|
|
is->size = ftell(fp);
|
2006-07-20 18:02:40 +02:00
|
|
|
fseek(fp, 0, SEEK_SET);
|
2004-05-18 04:46:36 +02:00
|
|
|
|
2007-01-19 02:40:02 +01:00
|
|
|
#ifdef POSIX_FADV_SEQUENTIAL
|
2008-10-26 20:34:47 +01:00
|
|
|
posix_fadvise(fileno(fp), (off_t)0, is->size, POSIX_FADV_SEQUENTIAL);
|
2007-01-19 02:40:02 +01:00
|
|
|
#endif
|
|
|
|
|
2008-10-26 20:34:47 +01:00
|
|
|
is->data = fp;
|
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-26 20:34:47 +01:00
|
|
|
if (fseek((FILE *) is->data, offset, whence) == 0) {
|
|
|
|
is->offset = ftell((FILE *) is->data);
|
2006-07-20 18:02:40 +02:00
|
|
|
} else {
|
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-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
|
|
|
{
|
|
|
|
size_t readSize;
|
|
|
|
|
2008-10-26 20:34:47 +01:00
|
|
|
readSize = fread(ptr, 1, size, (FILE *) is->data);
|
|
|
|
if (readSize <= 0 && ferror((FILE *) is->data)) {
|
|
|
|
is->error = errno;
|
|
|
|
DEBUG("input_file_read: error reading: %s\n",
|
|
|
|
strerror(is->error));
|
2006-07-20 18:02:40 +02:00
|
|
|
}
|
2004-05-18 04:46:36 +02:00
|
|
|
|
2008-10-26 20:34:47 +01:00
|
|
|
is->offset = ftell((FILE *) is->data);
|
2004-05-18 04:46:36 +02:00
|
|
|
|
|
|
|
return readSize;
|
|
|
|
}
|
|
|
|
|
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-26 20:54:52 +01:00
|
|
|
fclose((FILE *) is->data);
|
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-26 20:34:47 +01:00
|
|
|
if (feof((FILE *) is->data))
|
2006-07-20 18:02:40 +02:00
|
|
|
return 1;
|
2004-07-12 15:10:20 +02:00
|
|
|
|
2008-10-26 20:34:47 +01:00
|
|
|
if (ferror((FILE *) is->data) && is->error != EINTR) {
|
2006-07-20 18:02:40 +02:00
|
|
|
return 1;
|
|
|
|
}
|
2004-07-12 15:10:20 +02:00
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
return 0;
|
2004-05-18 04:46:36 +02:00
|
|
|
}
|
2004-05-18 11:54:45 +02:00
|
|
|
|
2008-10-26 20:34:03 +01:00
|
|
|
static int
|
2008-10-26 20:34:47 +01:00
|
|
|
input_file_buffer(mpd_unused struct input_stream *is)
|
2006-07-20 18:02:40 +02:00
|
|
|
{
|
|
|
|
return 0;
|
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,
|
|
|
|
.buffer = input_file_buffer,
|
|
|
|
.read = input_file_read,
|
|
|
|
.eof = input_file_eof,
|
|
|
|
.seek = input_file_seek,
|
|
|
|
};
|