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
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "inputStream_file.h"
|
|
|
|
|
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
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
void inputStream_initFile(void)
|
|
|
|
{
|
2004-06-20 19:07:13 +02:00
|
|
|
}
|
|
|
|
|
2008-10-17 17:53:48 +02:00
|
|
|
int inputStream_fileOpen(struct input_stream *inStream, char *filename)
|
2006-07-20 18:02:40 +02:00
|
|
|
{
|
|
|
|
FILE *fp;
|
2004-05-18 04:46:36 +02:00
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
fp = fopen(filename, "r");
|
|
|
|
if (!fp) {
|
2004-05-18 04:46:36 +02:00
|
|
|
inStream->error = errno;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
inStream->seekable = 1;
|
2004-05-18 04:46:36 +02:00
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
fseek(fp, 0, SEEK_END);
|
2004-05-18 04:46:36 +02:00
|
|
|
inStream->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
|
|
|
|
posix_fadvise(fileno(fp), (off_t)0, inStream->size, POSIX_FADV_SEQUENTIAL);
|
|
|
|
#endif
|
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
inStream->data = fp;
|
|
|
|
inStream->seekFunc = inputStream_fileSeek;
|
|
|
|
inStream->closeFunc = inputStream_fileClose;
|
|
|
|
inStream->readFunc = inputStream_fileRead;
|
|
|
|
inStream->atEOFFunc = inputStream_fileAtEOF;
|
|
|
|
inStream->bufferFunc = inputStream_fileBuffer;
|
2004-05-18 04:46:36 +02:00
|
|
|
|
2008-08-26 08:27:10 +02:00
|
|
|
inStream->ready = 1;
|
|
|
|
|
2004-05-18 04:46:36 +02:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2008-10-17 17:53:48 +02:00
|
|
|
int inputStream_fileSeek(struct input_stream *inStream, long offset,
|
|
|
|
int whence)
|
2006-07-20 18:02:40 +02:00
|
|
|
{
|
|
|
|
if (fseek((FILE *) inStream->data, offset, whence) == 0) {
|
|
|
|
inStream->offset = ftell((FILE *) inStream->data);
|
|
|
|
} else {
|
2004-05-18 04:46:36 +02:00
|
|
|
inStream->error = errno;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2008-10-17 17:53:48 +02:00
|
|
|
size_t inputStream_fileRead(struct input_stream *inStream,
|
|
|
|
void *ptr, size_t size,
|
2006-07-20 18:02:40 +02:00
|
|
|
size_t nmemb)
|
2004-05-18 04:46:36 +02:00
|
|
|
{
|
|
|
|
size_t readSize;
|
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
readSize = fread(ptr, size, nmemb, (FILE *) inStream->data);
|
|
|
|
if (readSize <= 0 && ferror((FILE *) inStream->data)) {
|
|
|
|
inStream->error = errno;
|
|
|
|
DEBUG("inputStream_fileRead: error reading: %s\n",
|
|
|
|
strerror(inStream->error));
|
|
|
|
}
|
2004-05-18 04:46:36 +02:00
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
inStream->offset = ftell((FILE *) inStream->data);
|
2004-05-18 04:46:36 +02:00
|
|
|
|
|
|
|
return readSize;
|
|
|
|
}
|
|
|
|
|
2008-10-17 17:53:48 +02:00
|
|
|
int inputStream_fileClose(struct input_stream *inStream)
|
2006-07-20 18:02:40 +02:00
|
|
|
{
|
|
|
|
if (fclose((FILE *) inStream->data) < 0) {
|
2004-05-18 04:46:36 +02:00
|
|
|
inStream->error = errno;
|
2006-06-04 19:27:12 +02:00
|
|
|
return -1;
|
2004-05-18 04:46:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2008-10-17 17:53:48 +02:00
|
|
|
int inputStream_fileAtEOF(struct input_stream *inStream)
|
2006-07-20 18:02:40 +02:00
|
|
|
{
|
|
|
|
if (feof((FILE *) inStream->data))
|
|
|
|
return 1;
|
2004-07-12 15:10:20 +02:00
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
if (ferror((FILE *) inStream->data) && inStream->error != EINTR) {
|
|
|
|
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-17 17:53:48 +02:00
|
|
|
int inputStream_fileBuffer(mpd_unused struct input_stream *inStream)
|
2006-07-20 18:02:40 +02:00
|
|
|
{
|
|
|
|
return 0;
|
2004-05-18 11:54:45 +02:00
|
|
|
}
|