input_file.c 2.71 KB
Newer Older
Warren Dukes's avatar
Warren Dukes committed
1
/* the Music Player Daemon (MPD)
2
 * Copyright (C) 2003-2007 by Warren Dukes (warren.dukes@gmail.com)
Warren Dukes's avatar
Warren Dukes committed
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
 * 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
 */

19
#include "input_file.h"
20 21 22 23 24 25 26

#include <sys/stat.h>
#include <fcntl.h>
#include <unistd.h>
#include <errno.h>
#include <string.h>
#include <glib.h>
Warren Dukes's avatar
Warren Dukes committed
27

28 29 30
#undef G_LOG_DOMAIN
#define G_LOG_DOMAIN "input_file"

31 32
static bool
input_file_open(struct input_stream *is, const char *filename)
Avuton Olrich's avatar
Avuton Olrich committed
33
{
34 35
	int fd, ret;
	struct stat st;
Warren Dukes's avatar
Warren Dukes committed
36

37 38 39
	if (filename[0] != '/')
		return false;

40 41
	fd = open(filename, O_RDONLY);
	if (fd < 0) {
42
		is->error = errno;
43
		return false;
Warren Dukes's avatar
Warren Dukes committed
44 45
	}

46
	is->seekable = true;
Warren Dukes's avatar
Warren Dukes committed
47

48
	ret = fstat(fd, &st);
49 50 51 52 53 54
	if (ret < 0) {
		is->error = errno;
		close(fd);
		return false;
	}

55 56 57 58 59 60 61
	if (!S_ISREG(st.st_mode)) {
		g_debug("Not a regular file: %s\n", filename);
		is->error = EINVAL;
		close(fd);
		return false;
	}

62
	is->size = st.st_size;
Warren Dukes's avatar
Warren Dukes committed
63

64
#ifdef POSIX_FADV_SEQUENTIAL
65
	posix_fadvise(fd, (off_t)0, is->size, POSIX_FADV_SEQUENTIAL);
66 67
#endif

68
	is->plugin = &input_plugin_file;
69
	is->data = GINT_TO_POINTER(fd);
70
	is->ready = true;
Max Kellermann's avatar
Max Kellermann committed
71

72
	return true;
Warren Dukes's avatar
Warren Dukes committed
73 74
}

75
static bool
76
input_file_seek(struct input_stream *is, off_t offset, int whence)
Avuton Olrich's avatar
Avuton Olrich committed
77
{
78 79 80 81
	int fd = GPOINTER_TO_INT(is->data);

	offset = lseek(fd, offset, whence);
	if (offset < 0) {
82
		is->error = errno;
83
		return false;
Warren Dukes's avatar
Warren Dukes committed
84 85
	}

86
	is->offset = offset;
87
	return true;
Warren Dukes's avatar
Warren Dukes committed
88 89
}

90
static size_t
91
input_file_read(struct input_stream *is, void *ptr, size_t size)
Warren Dukes's avatar
Warren Dukes committed
92
{
93 94
	int fd = GPOINTER_TO_INT(is->data);
	ssize_t nbytes;
Warren Dukes's avatar
Warren Dukes committed
95

96 97
	nbytes = read(fd, ptr, size);
	if (nbytes < 0) {
98
		is->error = errno;
99 100
		g_debug("input_file_read: error reading: %s\n",
			strerror(is->error));
101
		return 0;
Avuton Olrich's avatar
Avuton Olrich committed
102
	}
Warren Dukes's avatar
Warren Dukes committed
103

104 105
	is->offset += nbytes;
	return (size_t)nbytes;
Warren Dukes's avatar
Warren Dukes committed
106 107
}

108
static void
109
input_file_close(struct input_stream *is)
Avuton Olrich's avatar
Avuton Olrich committed
110
{
111 112 113
	int fd = GPOINTER_TO_INT(is->data);

	close(fd);
Warren Dukes's avatar
Warren Dukes committed
114 115
}

116
static bool
117
input_file_eof(struct input_stream *is)
Avuton Olrich's avatar
Avuton Olrich committed
118
{
119
	return is->offset >= is->size;
Warren Dukes's avatar
Warren Dukes committed
120
}
121

122 123 124 125 126 127 128
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,
};