From 53dee9b300a0d153bf2b97c1fb05609b4612cfb8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kjetil=20=C3=98rbekk?= Date: Thu, 14 Aug 2008 12:03:55 +0200 Subject: - Added license information (GPLv2) --- src/mfs_subr.c | 757 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++ src/mfs_vnops.c | 235 ++++++++++++++++++ src/mp3_subr.c | 736 ------------------------------------------------------ src/mp3_vnops.c | 214 ---------------- src/mp3fs.c | 21 ++ 5 files changed, 1013 insertions(+), 950 deletions(-) create mode 100644 src/mfs_subr.c create mode 100755 src/mfs_vnops.c delete mode 100644 src/mp3_subr.c delete mode 100755 src/mp3_vnops.c (limited to 'src') diff --git a/src/mfs_subr.c b/src/mfs_subr.c new file mode 100644 index 0000000..26daa52 --- /dev/null +++ b/src/mfs_subr.c @@ -0,0 +1,757 @@ +/* -*- Mode: C; tab-width: 4; indent-tabs-mode: t; c-basic-offset: 4 -*- */ + +/* + * Musicfs is a FUSE module implementing a media filesystem in userland. + * Copyright (C) 2008 Ulf Lilleengen, Kjetil Ørbekk + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License version + * 2, as published by the Free Software Foundation. + * + * 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., + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + * + * A copy of the license can typically be found in COPYING + */ + +/* Miscellaneous subroutines for musicfs. */ +#define FUSE_USE_VERSION 26 +#include +#include +#include +#include +#include + +#include +#include +#include +#include + +#include +#include +#include +#include + +struct lookuphandle { + sqlite3 *handle; + sqlite3_stmt *st; + const char *query; + int field; + int count; + void *priv; + lookup_fn_t *lookup; +}; + +sqlite3 *handle; + +int +mfs_initscan(char *musicpath) +{ + int error; + + /* Open database. */ + error = sqlite3_open(DBNAME, &handle); + if (error) { + warnx("Can't open database: %s\n", sqlite3_errmsg(handle)); + sqlite3_close(handle); + return (-1); + } + traverse_hierarchy(musicpath, mfs_scan); + sqlite3_close(handle); + return (0); +} + +/* + * Traverse a hierarchy given a directory path. Perform fileoperations on the + * files in the directory giving data as arguments, as well as recursing on + * sub-directories. + */ +void +traverse_hierarchy(char *dirpath, traverse_fn_t fileop) +{ + DIR *dirp; + struct dirent *dp; + char filepath[MAXPATHLEN]; + struct stat st; + + dirp = opendir(dirpath); + if (dirp == NULL) + return; + + /* Loop through all files. */ + while ((dp = readdir(dirp)) != NULL) { + if (!strcmp(dp->d_name, ".") || + !strcmp(dp->d_name, "..")) + continue; + + snprintf(filepath, sizeof(filepath), "%s/%s", + dirpath, dp->d_name); + if (stat(filepath, &st) < 0) + err(1, "error doing stat on %s", filepath); + /* Recurse if it's a directory. */ + if (st.st_mode & S_IFDIR) { + traverse_hierarchy(filepath, fileop); + continue; + } + /* If it's a regular file, perform the operation. */ + if (st.st_mode & S_IFREG) { + fileop(filepath); + } + } + closedir(dirp); +} + +/* Scan the music initially. */ +void +mfs_scan(char *filepath) +{ + TagLib_File *file; + TagLib_Tag *tag; + char *artist, *album, *genre, *title, *trackno; + const char *extension; + int ret; + unsigned int track, year; + sqlite3_stmt *st; + struct stat fstat; + + file = taglib_file_new(filepath); + /* XXX: errmsg. */ + if (file == NULL) + return; + tag = taglib_file_tag(file); + if (tag == NULL) { + printf("error!\n"); + return; + } + + if (stat(filepath, &fstat) < 0) { + perror("stat"); + return; + } + + /* XXX: The main query code should perhaps be a bit generalized. */ + + /* First insert artist if we have it. */ + do { + artist = taglib_tag_artist(tag); + if (artist == NULL) + break; + /* First find out if it exists. */ + ret = sqlite3_prepare_v2(handle, "SELECT * FROM artist WHERE " + "name=?", -1, &st, NULL); + if (ret != SQLITE_OK) { + warnx("Error preparing statement: %s\n", + sqlite3_errmsg(handle)); + break; + } + sqlite3_bind_text(st, 1, artist, -1, SQLITE_STATIC); + ret = sqlite3_step(st); + sqlite3_finalize(st); + /* Already exists or generic error. */ + if (ret != SQLITE_DONE) + break; + /* Doesn't exist, so we can insert it. */ + ret = sqlite3_prepare_v2(handle, "INSERT INTO artist(name) " + "VALUES(?)", -1, &st, NULL); + if (ret != SQLITE_OK) { + warnx("Error preparing statement: %s\n", + sqlite3_errmsg(handle)); + break; + } + sqlite3_bind_text(st, 1, artist, -1, SQLITE_STATIC); + ret = sqlite3_step(st); + sqlite3_finalize(st); + if (ret != SQLITE_DONE) { + warnx("Error inserting into database: %s\n", + sqlite3_errmsg(handle)); + break; + } + } while (0); + + /* Insert genre if it doesn't exist. */ + do { + genre = taglib_tag_genre(tag); + if (genre == NULL) + break; + /* First find out if it exists. */ + ret = sqlite3_prepare_v2(handle, "SELECT * FROM genre WHERE " + "name=?", -1, &st, NULL); + if (ret != SQLITE_OK) { + warnx("Error preparing statement: %s\n", + sqlite3_errmsg(handle)); + break; + } + sqlite3_bind_text(st, 1, genre, -1, SQLITE_STATIC); + ret = sqlite3_step(st); + sqlite3_finalize(st); + /* Already exists or generic error. */ + if (ret != SQLITE_DONE) + break; + /* Doesn't exist, so we can insert it. */ + ret = sqlite3_prepare_v2(handle, "INSERT INTO genre(name) " + "VALUES(?)", -1, &st, NULL); + if (ret != SQLITE_OK) { + warnx("Error preparing statement: %s\n", + sqlite3_errmsg(handle)); + break; + } + sqlite3_bind_text(st, 1, genre, -1, SQLITE_STATIC); + ret = sqlite3_step(st); + sqlite3_finalize(st); + if (ret != SQLITE_DONE) { + warnx("Error inserting into database: %s\n", + sqlite3_errmsg(handle)); + break; + } + } while (0); + + /* Finally, insert song. */ + do { + title = taglib_tag_title(tag); + album = taglib_tag_album(tag); + track = taglib_tag_track(tag); + year = taglib_tag_year(tag); + extension = strrchr(filepath, (int)'.'); + if (extension == NULL) + extension = ""; + else + /* Drop the '.' */ + extension++; + + if (title == NULL || genre == NULL || artist == NULL || + album == NULL) + break; + + /* First find out if it exists. */ + ret = sqlite3_prepare_v2(handle, "SELECT * FROM song, artist " + " WHERE artist.name=song.artistname AND title=? AND year=?" + " AND song.album=?", + -1, &st, NULL); + if (ret != SQLITE_OK) { + warnx("Error preparing statement: %s\n", + sqlite3_errmsg(handle)); + break; + } + sqlite3_bind_text(st, 1, title, -1, SQLITE_STATIC); + sqlite3_bind_int(st, 2, year); + sqlite3_bind_text(st, 3, album, -1, SQLITE_STATIC); + ret = sqlite3_step(st); + sqlite3_finalize(st); + if (ret == SQLITE_ROW) + /* Already exists. XXX: Update it if mtime mismatches */ + break; + if (ret != SQLITE_DONE) + /* SQL Error. */ + break; + /* Now, finally insert it. */ + ret = sqlite3_prepare_v2(handle, "INSERT INTO song(title, " + "artistname, album, genrename, year, track, filepath, " + "mtime, extension) VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?)", + -1, &st, NULL); + if (ret != SQLITE_OK) { + warnx("Error preparing insert statement: %s\n", + sqlite3_errmsg(handle)); + break; + } + sqlite3_bind_text(st, 1, title, -1, SQLITE_STATIC); + sqlite3_bind_text(st, 2, artist, -1, SQLITE_STATIC); + sqlite3_bind_text(st, 3, album, -1, SQLITE_STATIC); + sqlite3_bind_text(st, 4, genre, -1, SQLITE_STATIC); + sqlite3_bind_int(st, 5, year); + + if (track) { + trackno = malloc(sizeof(char) * 9); + sprintf(trackno, "%02d", track); + sqlite3_bind_text(st, 6, trackno, -1, SQLITE_TRANSIENT); + free(trackno); + } else { + sqlite3_bind_text(st, 6, "", -1, SQLITE_STATIC); + } + + sqlite3_bind_text(st, 7, filepath, -1, SQLITE_STATIC); + sqlite3_bind_int(st, 8, fstat.st_mtime); + sqlite3_bind_text(st, 9, extension, -1, SQLITE_STATIC); + ret = sqlite3_step(st); + sqlite3_finalize(st); + if (ret != SQLITE_DONE) { + warnx("Error inserting into database: %s\n", + sqlite3_errmsg(handle)); + break; + } + } while (0); + taglib_tag_free_strings(); + taglib_file_free(file); +} + +/* + * Create a handle for listing music with a certain query. Allocate the + * resources and return the handle. + */ +struct lookuphandle * +mfs_lookup_start(int field, void *data, lookup_fn_t *fn, const char *query) +{ + struct lookuphandle *lh; + int ret, error; + + lh = malloc(sizeof(*lh)); + if (lh == NULL) + return (NULL); + lh->field = field; + lh->lookup = fn; + lh->priv = data; + /* Open database. */ + error = sqlite3_open(DBNAME, &lh->handle); + if (error) { + warnx("Can't open database: %s\n", sqlite3_errmsg(lh->handle)); + sqlite3_close(lh->handle); + free(lh); + return (NULL); + } + ret = sqlite3_prepare_v2(lh->handle, query, -1, &lh->st, NULL); + if (ret != SQLITE_OK) { + free(lh); + return (NULL); + } + lh->query = query; + lh->count = 1; + return (lh); +} + +/* + * Insert data that should be searched for in the list. The data is assumed to + * be dynamically allocated, and will be free'd when mfs_lookup_finish is called! + */ +void +mfs_lookup_insert(struct lookuphandle *lh, void *data, int type) +{ + char *str; + int val; + + switch (type) { + case LIST_DATATYPE_STRING: + str = (char *)data; + sqlite3_bind_text(lh->st, lh->count++, str, -1, free); + break; + case LIST_DATATYPE_INT: + val = *((int *)data); + sqlite3_bind_int(lh->st, lh->count++, val); + break; + } +} + +/* + * Finish a statement buildup and use the lookup function to operate on the + * returned data. Free the handle when done. + */ +void +mfs_lookup_finish(struct lookuphandle *lh) +{ + char buf[1024]; + const unsigned char *value; + int ret, type, val, finished; + + if (lh == NULL) + return; + ret = sqlite3_step(lh->st); + while (ret == SQLITE_ROW) { + type = sqlite3_column_type(lh->st, lh->field); + switch (type) { + case SQLITE_INTEGER: + val = sqlite3_column_int(lh->st, lh->field); + snprintf(buf, sizeof(buf), "%d", val); + finished = lh->lookup(lh->priv, (const char *)buf); + break; + case SQLITE_TEXT: + value = sqlite3_column_text(lh->st, lh->field); + finished = lh->lookup(lh->priv, (const char *)value); + break; + default: + finished = 0; + break; +// default: +// lh->filler(lh->buf, "UNKNOWN TYPE", NULL, 0); + } + if (finished) + break; + ret = sqlite3_step(lh->st); + } + // XXX: Check for errors too. + sqlite3_finalize(lh->st); + sqlite3_close(lh->handle); + free(lh); +} + +/* + * Build a file_data struct for a path. + * + * data should be a pointer to a file handle + * returns 0 on success + */ +int +mfs_file_data_for_path(const char *path, void *data) { + DEBUG("getting file data for %s\n", path); + struct file_data *fd; + fd = (struct file_data *)data; + struct lookuphandle *lh; + char *artist, *album, *title; + + lh = NULL; + fd->fd = -1; + fd->found = 0; + + /* Open a specific track. */ + if (strncmp(path, "/Tracks", 7) == 0) { + switch (mfs_numtoken(path)) { + case 2: + title = mfs_gettoken(path, 2); + if (title == NULL) + break; + lh = mfs_lookup_start(0, fd, mfs_lookup_open, + "SELECT filepath FROM song " + "WHERE (artistname||' - '||title||'.'||extension) LIKE ?"); + if (lh == NULL) + return (-EIO); + mfs_lookup_insert(lh, title, LIST_DATATYPE_STRING); + break; + default: + return (-ENOENT); + } + } else if (strncmp(path, "/Albums", 7) == 0) { + switch (mfs_numtoken(path)) { + case 3: + album = mfs_gettoken(path, 2); + if (album == NULL) + break; + title = mfs_gettoken(path, 3); + if (title == NULL) + break; + lh = mfs_lookup_start(0, fd, mfs_lookup_open, + "SELECT filepath FROM song " + "WHERE (title||'.'||extension) LIKE ? AND " + "album LIKE ?"); + if (lh == NULL) + return (-EIO); + mfs_lookup_insert(lh, title, LIST_DATATYPE_STRING); + mfs_lookup_insert(lh, album, LIST_DATATYPE_STRING); + break; + default: + return (-ENOENT); + } + } else if (strncmp(path, "/Artists", 8) == 0) { + switch (mfs_numtoken(path)) { + case 4: + artist = mfs_gettoken(path, 2); + album = mfs_gettoken(path, 3); + title = mfs_gettoken(path, 4); + DEBUG("artist(%s) album(%s) title(%s)\n", artist, album, title); + if (!(artist && album && title)) { + break; + } + lh = mfs_lookup_start(0, fd, mfs_lookup_open, + "SELECT filepath FROM song WHERE artistname LIKE ? AND " + "album LIKE ? AND " + "(LTRIM(track||' ')||title||'.'||extension) LIKE ?"); + if (lh == NULL) + return (-EIO); + mfs_lookup_insert(lh, artist, LIST_DATATYPE_STRING); + mfs_lookup_insert(lh, album, LIST_DATATYPE_STRING); + mfs_lookup_insert(lh, title, LIST_DATATYPE_STRING); + break; + default: + return (-ENOENT); + } + } + + if (lh) { + mfs_lookup_finish(lh); + } + + return 0; +} + +/* + * Count number of tokens in pathname. + * XXX: should we strip the first and last? + */ +int +mfs_numtoken(const char *str) +{ + const char *ptr; + int num; + + num = 0; + ptr = str; + if (*ptr == '/') + ptr++; + while ((*ptr != '\0')) { + if (*ptr++ == '/') + num++; + } + if (*(ptr - 1) == '/') + num--; + return (num + 1); +} + +/* + * Extract token number toknum and return it in escaped form. + */ +char * +mfs_gettoken(const char *str, int toknum) +{ + const char *ptr, *start, *end; + char *ret, *dest; + int numescape; + int i; + size_t size; + + start = str; + /* Find the token start. */ + for (i = 0; i < toknum; i++) { + start = strchr(start, '/'); + if (start == NULL) + return (NULL); + start++; + } + /* Find the end pointer. */ + end = strchr(start, '/'); + if (end == NULL) + end = strchr(start, '\0'); + /* + * Count how many bytes extra to take into account because of escaping. + */ + numescape = 0; + ptr = start; + while ((ptr = strchr(ptr, '\'')) != NULL && ptr < end) { + ptr++; + numescape++; + } + size = (end - start) + numescape; + ret = malloc(size + 1); + if (ret == NULL) + return (ret); + ptr = start; + dest = ret; + while (ptr < end) { + if (*ptr == '\'') + *dest++ = '\\'; + *dest++ = *ptr++; + } + ret[size] = '\0'; + return (ret); +} + +/* + * List album given a path. + */ +void +mfs_lookup_album(const char *path, struct filler_data *fd) +{ + struct lookuphandle *lh; + char *album; + + switch (mfs_numtoken(path)) { + case 1: + lh = mfs_lookup_start(0, fd, mfs_lookup_list, + "SELECT DISTINCT album FROM song"); + break; + case 2: + /* So, now we got to find out the artist and list its albums. */ + album = mfs_gettoken(path, 2); + if (album == NULL) + break; + lh = mfs_lookup_start(0, fd, mfs_lookup_list, + "SELECT DISTINCT title||'.'||extension FROM song " + "WHERE album LIKE ?"); + mfs_lookup_insert(lh, album, LIST_DATATYPE_STRING); + break; + } + mfs_lookup_finish(lh); +} + +/* + * List artist given a path. + */ +void +mfs_lookup_artist(const char *path, struct filler_data *fd) +{ + struct lookuphandle *lh; + char *name, *album; + + switch (mfs_numtoken(path)) { + case 1: + lh = mfs_lookup_start(0, fd, mfs_lookup_list, + "SELECT name FROM artist"); + break; + case 2: + /* So, now we got to find out the artist and list its albums. */ + name = mfs_gettoken(path, 2); + if (name == NULL) + break; + lh = mfs_lookup_start(0, fd, mfs_lookup_list, + "SELECT DISTINCT album FROM song, " + "artist WHERE song.artistname = artist.name AND artist.name" + " LIKE ?"); + mfs_lookup_insert(lh, name, LIST_DATATYPE_STRING); + break; + case 3: + /* List songs in an album. */ + name = mfs_gettoken(path, 2); + if (name == NULL) + break; + album = mfs_gettoken(path, 3); + if (album == NULL) + break; + lh = mfs_lookup_start(0, fd, mfs_lookup_list, + "SELECT LTRIM(track||' ')||title||'.'||extension " + "FROM song, artist " + "WHERE song.artistname = artist.name AND artist.name " + "LIKE ? AND song.album LIKE ?"); + mfs_lookup_insert(lh, name, LIST_DATATYPE_STRING); + mfs_lookup_insert(lh, album, LIST_DATATYPE_STRING); + break; + } + mfs_lookup_finish(lh); +} + +/* + * Looks up tracks given a genre, or all genres. + */ +void +mfs_lookup_genre(const char *path, struct filler_data *fd) +{ + struct lookuphandle *lh; + char *genre, *album; + + switch (mfs_numtoken(path)) { + case 1: + lh = mfs_lookup_start(0, fd, mfs_lookup_list, + "SELECT name FROM genre"); + break; + case 2: + genre = mfs_gettoken(path, 2); + if (genre == NULL) + break; + lh = mfs_lookup_start(0, fd, mfs_lookup_list, + "SELECT DISTINCT album FROM song, " + "genre WHERE song.genrename = genre.name AND genre.name " + "LIKE ?"); + mfs_lookup_insert(lh, genre, LIST_DATATYPE_STRING); + break; + case 3: + genre = mfs_gettoken(path, 2); + if (genre == NULL) + break; + album = mfs_gettoken(path, 3); + if (album == NULL) + break; + lh = mfs_lookup_start(0, fd, mfs_lookup_list, + "SELECT title||'.'||extension FROM song, genre WHERE" + " song.genrename = genre.name AND genre.name LIKE ? " + " AND song.album LIKE ?"); + mfs_lookup_insert(lh, genre, LIST_DATATYPE_STRING); + mfs_lookup_insert(lh, album, LIST_DATATYPE_STRING); + break; + } + mfs_lookup_finish(lh); +} + +/* + * Lookup function for filling given data into a filler. + */ +int +mfs_lookup_list(void *data, const char *str) +{ + struct filler_data *fd; + + fd = (struct filler_data *)data; + fd->filler(fd->buf, str, NULL, 0); + return (0); +} + +/* + * Lookup a file and open it if found. + */ +int +mfs_lookup_open(void *data, const char *str) +{ + struct file_data *fd; + + fd = (struct file_data *)data; + fd->fd = open(str, O_RDONLY); + fd->found = 1; + return (1); +} + +/* + * Stat a file. + * XXX: watch out for duplicates, we might stat more than once. + */ +int +mfs_lookup_stat(void *data, const char *str) +{ + struct stat *st; + + st = (struct stat *)data; + if (stat(str, st) < 0) + return (0); + return (1); +} + +/* + * Guess on a filetype for a path. + * + * Examples: + * + * - /Artists/Whoever should be a directory, since it's an + * Album. + * + * - /Tracks/Whatever should be a file, since Whatever is a song + * + * Note: This should only be used for paths inside the musicfs + * directories (Artists, Tracks, ...) + */ +enum mfs_filetype +mfs_get_filetype(const char *path) { + int tokens = mfs_numtoken(path); + + if (strncmp(path, "/Genres", 7) == 0 || + strncmp(path, "/Artists", 8) == 0) { + switch (tokens) { + case 1: + case 2: + case 3: + return (MFS_DIRECTORY); + case 4: + return (MFS_FILE); + default: + return (MFS_NOTFOUND); + } + } else if (strncmp(path, "/Albums", 7) == 0) { + switch (tokens) { + case 1: + case 2: + return (MFS_DIRECTORY); + case 3: + return (MFS_FILE); + default: + return (MFS_NOTFOUND); + } + } else if (strncmp(path, "/Tracks", 7) == 0) { + switch (tokens) { + case 1: + return (MFS_DIRECTORY); + case 2: + return (MFS_FILE); + default: + return (MFS_NOTFOUND); + } + } else { + return (MFS_NOTFOUND); + } +} diff --git a/src/mfs_vnops.c b/src/mfs_vnops.c new file mode 100755 index 0000000..60c9ad6 --- /dev/null +++ b/src/mfs_vnops.c @@ -0,0 +1,235 @@ +/* -*- Mode: C; tab-width: 4; indent-tabs-mode: t; c-basic-offset: 4 -*- */ + +/* + * Musicfs is a FUSE module implementing a media filesystem in userland. + * Copyright (C) 2008 Ulf Lilleengen, Kjetil Ørbekk + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License version + * 2, as published by the Free Software Foundation. + * + * 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., + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + * + * A copy of the license can typically be found in COPYING + */ + +#define FUSE_USE_VERSION 26 +#include +#include +#include +#include +#include + +#include +#include +#include +#include +#include +#include + +#include +#include +#include + +char musicpath[MAXPATHLEN]; // = "/home/lulf/dev/musicfs/music"; +char *logpath = "/home/lulf/dev/musicfs/musicfs.log"; + +static int mfs_getattr (const char *path, struct stat *stbuf) +{ + struct file_data fd; + fd.fd = -1; + fd.found = 0; + + int status = 0; + memset (stbuf, 0, sizeof (struct stat)); + + if (strcmp (path, "/") == 0) { + stbuf->st_mode = S_IFDIR | 0755; + stbuf->st_nlink = 2; + return 0; + } + + enum mfs_filetype type = mfs_get_filetype(path); + switch (type) { + case MFS_DIRECTORY: + stbuf->st_mode = S_IFDIR | 0444; + stbuf->st_nlink = 1; + stbuf->st_size = 12; + return 0; + + case MFS_FILE: + status = mfs_file_data_for_path(path, &fd); + if (status != 0) + return (status); + + if (!fd.found) + return (-ENOENT); + if (fd.fd < 0) + return (-EIO); + + if (fstat(fd.fd, stbuf) == 0) + return (0); + else + return (-ENOENT); + + case MFS_NOTFOUND: + default: + return -ENOENT; + } +} + + +static int mfs_readdir (const char *path, void *buf, fuse_fill_dir_t filler, + off_t offset, struct fuse_file_info *fi) +{ + struct filler_data fd; + struct lookuphandle *lh; + + filler (buf, ".", NULL, 0); + filler (buf, "..", NULL, 0); + fd.buf = buf; + fd.filler = filler; + + if (!strcmp(path, "/")) { + filler(buf, "Artists", NULL, 0); + filler(buf, "Genres", NULL, 0); + filler(buf, "Tracks", NULL, 0); + filler(buf, "Albums", NULL, 0); + return (0); + } + + /* + * 1. Parse the path. + * 2. Find the mp3s that matches the tags given from the path. + * 3. Return the list of those mp3s. + */ + if (strncmp(path, "/Artists", 8) == 0) { + mfs_lookup_artist(path, &fd); + return (0); + } else if (strncmp(path, "/Genres", 7) == 0) { + mfs_lookup_genre(path, &fd); + return (0); + } else if (strcmp(path, "/Tracks") == 0) { + lh = mfs_lookup_start(0, &fd, mfs_lookup_list, + "SELECT DISTINCT artistname||' - '||title||'.'||extension " + "FROM song"); + mfs_lookup_finish(lh); + return (0); + } else if (strncmp(path, "/Albums", 7) == 0) { + mfs_lookup_album(path, &fd); + return (0); + } + + return (-ENOENT); +} + +static int mfs_open (const char *path, struct fuse_file_info *fi) +{ + struct file_data fd; + fd.fd = -1; + fd.found = 0; + + int status = mfs_file_data_for_path(path, &fd); + if (status != 0) + return (status); + + if (!fd.found) + return (-ENOENT); + if (fd.fd < 0) + return (-EIO); + close(fd.fd); + + return (0); + + /* + * 1. Have a lookup cache for names?. + * Parse Genre, Album, Artist etc. + * 2. Find MP3s that match. XXX what do we do with duplicates? just + * return the first match? + * 3. Put the mnode of the mp3 in our cache. + * 4. Signal in mnode that the mp3 is being read? + */ +} + +static int mfs_read (const char *path, char *buf, size_t size, off_t offset, + struct fuse_file_info *fi) +{ + struct file_data fd; + fd.fd = -1; + fd.found = 0; + size_t bytes; + + int status = mfs_file_data_for_path(path, &fd); + if (status != 0) + return (status); + + if (!fd.found) + return (-ENOENT); + if (fd.fd < 0) + return (-EIO); + lseek(fd.fd, offset, SEEK_CUR); + bytes = read(fd.fd, buf, size); + close(fd.fd); + return (bytes); + + /* + * 1. Find the mnode given the path. If not in cache, read through mp3 + * list to find it. + * 2. Read the offset of the mp3 and return the data. + */ +} + +static struct fuse_operations mfs_ops = { + .getattr = mfs_getattr, + .readdir = mfs_readdir, + .open = mfs_open, + .read = mfs_read, +}; + +static int musicfs_opt_proc (void *data, const char *arg, int key, + struct fuse_args *outargs) +{ + static int musicpath_set = 0; + + if (key == FUSE_OPT_KEY_NONOPT && !musicpath_set) { + /* The source directory isn't already set, let's do it */ + strcpy(musicpath, arg); + musicpath_set = 1; + return (0); + } + return (1); +} + +int +mfs_run(int argc, char **argv) +{ + int ret; + /* + * XXX: Build index of mp3's. + */ + + /* Update tables. */ + if (argc < 2) { + fprintf(stderr, "Usage: %s \n", argv[0]); + return (-1); + } + + struct fuse_args args = FUSE_ARGS_INIT (argc, argv); + + if (fuse_opt_parse(&args, NULL, NULL, musicfs_opt_proc) != 0) + exit (1); + + DEBUG("musicpath: %s\n", musicpath); + mfs_initscan(musicpath); + + ret = 0; + ret = fuse_main(args.argc, args.argv, &mfs_ops, NULL); + return (ret); +} diff --git a/src/mp3_subr.c b/src/mp3_subr.c deleted file mode 100644 index 22e533a..0000000 --- a/src/mp3_subr.c +++ /dev/null @@ -1,736 +0,0 @@ -/* -*- Mode: C; tab-width: 4; indent-tabs-mode: t; c-basic-offset: 4 -*- */ -/* Miscellaneous subroutines for musicfs. */ -#define FUSE_USE_VERSION 26 -#include -#include -#include -#include -#include - -#include -#include -#include -#include - -#include -#include -#include -#include - -struct lookuphandle { - sqlite3 *handle; - sqlite3_stmt *st; - const char *query; - int field; - int count; - void *priv; - lookup_fn_t *lookup; -}; - -sqlite3 *handle; - -int -mfs_initscan(char *musicpath) -{ - int error; - - /* Open database. */ - error = sqlite3_open(DBNAME, &handle); - if (error) { - warnx("Can't open database: %s\n", sqlite3_errmsg(handle)); - sqlite3_close(handle); - return (-1); - } - traverse_hierarchy(musicpath, mfs_scan); - sqlite3_close(handle); - return (0); -} - -/* - * Traverse a hierarchy given a directory path. Perform fileoperations on the - * files in the directory giving data as arguments, as well as recursing on - * sub-directories. - */ -void -traverse_hierarchy(char *dirpath, traverse_fn_t fileop) -{ - DIR *dirp; - struct dirent *dp; - char filepath[MAXPATHLEN]; - struct stat st; - - dirp = opendir(dirpath); - if (dirp == NULL) - return; - - /* Loop through all files. */ - while ((dp = readdir(dirp)) != NULL) { - if (!strcmp(dp->d_name, ".") || - !strcmp(dp->d_name, "..")) - continue; - - snprintf(filepath, sizeof(filepath), "%s/%s", - dirpath, dp->d_name); - if (stat(filepath, &st) < 0) - err(1, "error doing stat on %s", filepath); - /* Recurse if it's a directory. */ - if (st.st_mode & S_IFDIR) { - traverse_hierarchy(filepath, fileop); - continue; - } - /* If it's a regular file, perform the operation. */ - if (st.st_mode & S_IFREG) { - fileop(filepath); - } - } - closedir(dirp); -} - -/* Scan the music initially. */ -void -mfs_scan(char *filepath) -{ - TagLib_File *file; - TagLib_Tag *tag; - char *artist, *album, *genre, *title, *trackno; - const char *extension; - int ret; - unsigned int track, year; - sqlite3_stmt *st; - struct stat fstat; - - file = taglib_file_new(filepath); - /* XXX: errmsg. */ - if (file == NULL) - return; - tag = taglib_file_tag(file); - if (tag == NULL) { - printf("error!\n"); - return; - } - - if (stat(filepath, &fstat) < 0) { - perror("stat"); - return; - } - - /* XXX: The main query code should perhaps be a bit generalized. */ - - /* First insert artist if we have it. */ - do { - artist = taglib_tag_artist(tag); - if (artist == NULL) - break; - /* First find out if it exists. */ - ret = sqlite3_prepare_v2(handle, "SELECT * FROM artist WHERE " - "name=?", -1, &st, NULL); - if (ret != SQLITE_OK) { - warnx("Error preparing statement: %s\n", - sqlite3_errmsg(handle)); - break; - } - sqlite3_bind_text(st, 1, artist, -1, SQLITE_STATIC); - ret = sqlite3_step(st); - sqlite3_finalize(st); - /* Already exists or generic error. */ - if (ret != SQLITE_DONE) - break; - /* Doesn't exist, so we can insert it. */ - ret = sqlite3_prepare_v2(handle, "INSERT INTO artist(name) " - "VALUES(?)", -1, &st, NULL); - if (ret != SQLITE_OK) { - warnx("Error preparing statement: %s\n", - sqlite3_errmsg(handle)); - break; - } - sqlite3_bind_text(st, 1, artist, -1, SQLITE_STATIC); - ret = sqlite3_step(st); - sqlite3_finalize(st); - if (ret != SQLITE_DONE) { - warnx("Error inserting into database: %s\n", - sqlite3_errmsg(handle)); - break; - } - } while (0); - - /* Insert genre if it doesn't exist. */ - do { - genre = taglib_tag_genre(tag); - if (genre == NULL) - break; - /* First find out if it exists. */ - ret = sqlite3_prepare_v2(handle, "SELECT * FROM genre WHERE " - "name=?", -1, &st, NULL); - if (ret != SQLITE_OK) { - warnx("Error preparing statement: %s\n", - sqlite3_errmsg(handle)); - break; - } - sqlite3_bind_text(st, 1, genre, -1, SQLITE_STATIC); - ret = sqlite3_step(st); - sqlite3_finalize(st); - /* Already exists or generic error. */ - if (ret != SQLITE_DONE) - break; - /* Doesn't exist, so we can insert it. */ - ret = sqlite3_prepare_v2(handle, "INSERT INTO genre(name) " - "VALUES(?)", -1, &st, NULL); - if (ret != SQLITE_OK) { - warnx("Error preparing statement: %s\n", - sqlite3_errmsg(handle)); - break; - } - sqlite3_bind_text(st, 1, genre, -1, SQLITE_STATIC); - ret = sqlite3_step(st); - sqlite3_finalize(st); - if (ret != SQLITE_DONE) { - warnx("Error inserting into database: %s\n", - sqlite3_errmsg(handle)); - break; - } - } while (0); - - /* Finally, insert song. */ - do { - title = taglib_tag_title(tag); - album = taglib_tag_album(tag); - track = taglib_tag_track(tag); - year = taglib_tag_year(tag); - extension = strrchr(filepath, (int)'.'); - if (extension == NULL) - extension = ""; - else - /* Drop the '.' */ - extension++; - - if (title == NULL || genre == NULL || artist == NULL || - album == NULL) - break; - - /* First find out if it exists. */ - ret = sqlite3_prepare_v2(handle, "SELECT * FROM song, artist " - " WHERE artist.name=song.artistname AND title=? AND year=?" - " AND song.album=?", - -1, &st, NULL); - if (ret != SQLITE_OK) { - warnx("Error preparing statement: %s\n", - sqlite3_errmsg(handle)); - break; - } - sqlite3_bind_text(st, 1, title, -1, SQLITE_STATIC); - sqlite3_bind_int(st, 2, year); - sqlite3_bind_text(st, 3, album, -1, SQLITE_STATIC); - ret = sqlite3_step(st); - sqlite3_finalize(st); - if (ret == SQLITE_ROW) - /* Already exists. XXX: Update it if mtime mismatches */ - break; - if (ret != SQLITE_DONE) - /* SQL Error. */ - break; - /* Now, finally insert it. */ - ret = sqlite3_prepare_v2(handle, "INSERT INTO song(title, " - "artistname, album, genrename, year, track, filepath, " - "mtime, extension) VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?)", - -1, &st, NULL); - if (ret != SQLITE_OK) { - warnx("Error preparing insert statement: %s\n", - sqlite3_errmsg(handle)); - break; - } - sqlite3_bind_text(st, 1, title, -1, SQLITE_STATIC); - sqlite3_bind_text(st, 2, artist, -1, SQLITE_STATIC); - sqlite3_bind_text(st, 3, album, -1, SQLITE_STATIC); - sqlite3_bind_text(st, 4, genre, -1, SQLITE_STATIC); - sqlite3_bind_int(st, 5, year); - - if (track) { - trackno = malloc(sizeof(char) * 9); - sprintf(trackno, "%02d", track); - sqlite3_bind_text(st, 6, trackno, -1, SQLITE_TRANSIENT); - free(trackno); - } else { - sqlite3_bind_text(st, 6, "", -1, SQLITE_STATIC); - } - - sqlite3_bind_text(st, 7, filepath, -1, SQLITE_STATIC); - sqlite3_bind_int(st, 8, fstat.st_mtime); - sqlite3_bind_text(st, 9, extension, -1, SQLITE_STATIC); - ret = sqlite3_step(st); - sqlite3_finalize(st); - if (ret != SQLITE_DONE) { - warnx("Error inserting into database: %s\n", - sqlite3_errmsg(handle)); - break; - } - } while (0); - taglib_tag_free_strings(); - taglib_file_free(file); -} - -/* - * Create a handle for listing music with a certain query. Allocate the - * resources and return the handle. - */ -struct lookuphandle * -mfs_lookup_start(int field, void *data, lookup_fn_t *fn, const char *query) -{ - struct lookuphandle *lh; - int ret, error; - - lh = malloc(sizeof(*lh)); - if (lh == NULL) - return (NULL); - lh->field = field; - lh->lookup = fn; - lh->priv = data; - /* Open database. */ - error = sqlite3_open(DBNAME, &lh->handle); - if (error) { - warnx("Can't open database: %s\n", sqlite3_errmsg(lh->handle)); - sqlite3_close(lh->handle); - free(lh); - return (NULL); - } - ret = sqlite3_prepare_v2(lh->handle, query, -1, &lh->st, NULL); - if (ret != SQLITE_OK) { - free(lh); - return (NULL); - } - lh->query = query; - lh->count = 1; - return (lh); -} - -/* - * Insert data that should be searched for in the list. The data is assumed to - * be dynamically allocated, and will be free'd when mfs_lookup_finish is called! - */ -void -mfs_lookup_insert(struct lookuphandle *lh, void *data, int type) -{ - char *str; - int val; - - switch (type) { - case LIST_DATATYPE_STRING: - str = (char *)data; - sqlite3_bind_text(lh->st, lh->count++, str, -1, free); - break; - case LIST_DATATYPE_INT: - val = *((int *)data); - sqlite3_bind_int(lh->st, lh->count++, val); - break; - } -} - -/* - * Finish a statement buildup and use the lookup function to operate on the - * returned data. Free the handle when done. - */ -void -mfs_lookup_finish(struct lookuphandle *lh) -{ - char buf[1024]; - const unsigned char *value; - int ret, type, val, finished; - - if (lh == NULL) - return; - ret = sqlite3_step(lh->st); - while (ret == SQLITE_ROW) { - type = sqlite3_column_type(lh->st, lh->field); - switch (type) { - case SQLITE_INTEGER: - val = sqlite3_column_int(lh->st, lh->field); - snprintf(buf, sizeof(buf), "%d", val); - finished = lh->lookup(lh->priv, (const char *)buf); - break; - case SQLITE_TEXT: - value = sqlite3_column_text(lh->st, lh->field); - finished = lh->lookup(lh->priv, (const char *)value); - break; - default: - finished = 0; - break; -// default: -// lh->filler(lh->buf, "UNKNOWN TYPE", NULL, 0); - } - if (finished) - break; - ret = sqlite3_step(lh->st); - } - // XXX: Check for errors too. - sqlite3_finalize(lh->st); - sqlite3_close(lh->handle); - free(lh); -} - -/* - * Build a file_data struct for a path. - * - * data should be a pointer to a file handle - * returns 0 on success - */ -int -mfs_file_data_for_path(const char *path, void *data) { - DEBUG("getting file data for %s\n", path); - struct file_data *fd; - fd = (struct file_data *)data; - struct lookuphandle *lh; - char *artist, *album, *title; - - lh = NULL; - fd->fd = -1; - fd->found = 0; - - /* Open a specific track. */ - if (strncmp(path, "/Tracks", 7) == 0) { - switch (mfs_numtoken(path)) { - case 2: - title = mfs_gettoken(path, 2); - if (title == NULL) - break; - lh = mfs_lookup_start(0, fd, mfs_lookup_open, - "SELECT filepath FROM song " - "WHERE (artistname||' - '||title||'.'||extension) LIKE ?"); - if (lh == NULL) - return (-EIO); - mfs_lookup_insert(lh, title, LIST_DATATYPE_STRING); - break; - default: - return (-ENOENT); - } - } else if (strncmp(path, "/Albums", 7) == 0) { - switch (mfs_numtoken(path)) { - case 3: - album = mfs_gettoken(path, 2); - if (album == NULL) - break; - title = mfs_gettoken(path, 3); - if (title == NULL) - break; - lh = mfs_lookup_start(0, fd, mfs_lookup_open, - "SELECT filepath FROM song " - "WHERE (title||'.'||extension) LIKE ? AND " - "album LIKE ?"); - if (lh == NULL) - return (-EIO); - mfs_lookup_insert(lh, title, LIST_DATATYPE_STRING); - mfs_lookup_insert(lh, album, LIST_DATATYPE_STRING); - break; - default: - return (-ENOENT); - } - } else if (strncmp(path, "/Artists", 8) == 0) { - switch (mfs_numtoken(path)) { - case 4: - artist = mfs_gettoken(path, 2); - album = mfs_gettoken(path, 3); - title = mfs_gettoken(path, 4); - DEBUG("artist(%s) album(%s) title(%s)\n", artist, album, title); - if (!(artist && album && title)) { - break; - } - lh = mfs_lookup_start(0, fd, mfs_lookup_open, - "SELECT filepath FROM song WHERE artistname LIKE ? AND " - "album LIKE ? AND " - "(LTRIM(track||' ')||title||'.'||extension) LIKE ?"); - if (lh == NULL) - return (-EIO); - mfs_lookup_insert(lh, artist, LIST_DATATYPE_STRING); - mfs_lookup_insert(lh, album, LIST_DATATYPE_STRING); - mfs_lookup_insert(lh, title, LIST_DATATYPE_STRING); - break; - default: - return (-ENOENT); - } - } - - if (lh) { - mfs_lookup_finish(lh); - } - - return 0; -} - -/* - * Count number of tokens in pathname. - * XXX: should we strip the first and last? - */ -int -mfs_numtoken(const char *str) -{ - const char *ptr; - int num; - - num = 0; - ptr = str; - if (*ptr == '/') - ptr++; - while ((*ptr != '\0')) { - if (*ptr++ == '/') - num++; - } - if (*(ptr - 1) == '/') - num--; - return (num + 1); -} - -/* - * Extract token number toknum and return it in escaped form. - */ -char * -mfs_gettoken(const char *str, int toknum) -{ - const char *ptr, *start, *end; - char *ret, *dest; - int numescape; - int i; - size_t size; - - start = str; - /* Find the token start. */ - for (i = 0; i < toknum; i++) { - start = strchr(start, '/'); - if (start == NULL) - return (NULL); - start++; - } - /* Find the end pointer. */ - end = strchr(start, '/'); - if (end == NULL) - end = strchr(start, '\0'); - /* - * Count how many bytes extra to take into account because of escaping. - */ - numescape = 0; - ptr = start; - while ((ptr = strchr(ptr, '\'')) != NULL && ptr < end) { - ptr++; - numescape++; - } - size = (end - start) + numescape; - ret = malloc(size + 1); - if (ret == NULL) - return (ret); - ptr = start; - dest = ret; - while (ptr < end) { - if (*ptr == '\'') - *dest++ = '\\'; - *dest++ = *ptr++; - } - ret[size] = '\0'; - return (ret); -} - -/* - * List album given a path. - */ -void -mfs_lookup_album(const char *path, struct filler_data *fd) -{ - struct lookuphandle *lh; - char *album; - - switch (mfs_numtoken(path)) { - case 1: - lh = mfs_lookup_start(0, fd, mfs_lookup_list, - "SELECT DISTINCT album FROM song"); - break; - case 2: - /* So, now we got to find out the artist and list its albums. */ - album = mfs_gettoken(path, 2); - if (album == NULL) - break; - lh = mfs_lookup_start(0, fd, mfs_lookup_list, - "SELECT DISTINCT title||'.'||extension FROM song " - "WHERE album LIKE ?"); - mfs_lookup_insert(lh, album, LIST_DATATYPE_STRING); - break; - } - mfs_lookup_finish(lh); -} - -/* - * List artist given a path. - */ -void -mfs_lookup_artist(const char *path, struct filler_data *fd) -{ - struct lookuphandle *lh; - char *name, *album; - - switch (mfs_numtoken(path)) { - case 1: - lh = mfs_lookup_start(0, fd, mfs_lookup_list, - "SELECT name FROM artist"); - break; - case 2: - /* So, now we got to find out the artist and list its albums. */ - name = mfs_gettoken(path, 2); - if (name == NULL) - break; - lh = mfs_lookup_start(0, fd, mfs_lookup_list, - "SELECT DISTINCT album FROM song, " - "artist WHERE song.artistname = artist.name AND artist.name" - " LIKE ?"); - mfs_lookup_insert(lh, name, LIST_DATATYPE_STRING); - break; - case 3: - /* List songs in an album. */ - name = mfs_gettoken(path, 2); - if (name == NULL) - break; - album = mfs_gettoken(path, 3); - if (album == NULL) - break; - lh = mfs_lookup_start(0, fd, mfs_lookup_list, - "SELECT LTRIM(track||' ')||title||'.'||extension " - "FROM song, artist " - "WHERE song.artistname = artist.name AND artist.name " - "LIKE ? AND song.album LIKE ?"); - mfs_lookup_insert(lh, name, LIST_DATATYPE_STRING); - mfs_lookup_insert(lh, album, LIST_DATATYPE_STRING); - break; - } - mfs_lookup_finish(lh); -} - -/* - * Looks up tracks given a genre, or all genres. - */ -void -mfs_lookup_genre(const char *path, struct filler_data *fd) -{ - struct lookuphandle *lh; - char *genre, *album; - - switch (mfs_numtoken(path)) { - case 1: - lh = mfs_lookup_start(0, fd, mfs_lookup_list, - "SELECT name FROM genre"); - break; - case 2: - genre = mfs_gettoken(path, 2); - if (genre == NULL) - break; - lh = mfs_lookup_start(0, fd, mfs_lookup_list, - "SELECT DISTINCT album FROM song, " - "genre WHERE song.genrename = genre.name AND genre.name " - "LIKE ?"); - mfs_lookup_insert(lh, genre, LIST_DATATYPE_STRING); - break; - case 3: - genre = mfs_gettoken(path, 2); - if (genre == NULL) - break; - album = mfs_gettoken(path, 3); - if (album == NULL) - break; - lh = mfs_lookup_start(0, fd, mfs_lookup_list, - "SELECT title||'.'||extension FROM song, genre WHERE" - " song.genrename = genre.name AND genre.name LIKE ? " - " AND song.album LIKE ?"); - mfs_lookup_insert(lh, genre, LIST_DATATYPE_STRING); - mfs_lookup_insert(lh, album, LIST_DATATYPE_STRING); - break; - } - mfs_lookup_finish(lh); -} - -/* - * Lookup function for filling given data into a filler. - */ -int -mfs_lookup_list(void *data, const char *str) -{ - struct filler_data *fd; - - fd = (struct filler_data *)data; - fd->filler(fd->buf, str, NULL, 0); - return (0); -} - -/* - * Lookup a file and open it if found. - */ -int -mfs_lookup_open(void *data, const char *str) -{ - struct file_data *fd; - - fd = (struct file_data *)data; - fd->fd = open(str, O_RDONLY); - fd->found = 1; - return (1); -} - -/* - * Stat a file. - * XXX: watch out for duplicates, we might stat more than once. - */ -int -mfs_lookup_stat(void *data, const char *str) -{ - struct stat *st; - - st = (struct stat *)data; - if (stat(str, st) < 0) - return (0); - return (1); -} - -/* - * Guess on a filetype for a path. - * - * Examples: - * - * - /Artists/Whoever should be a directory, since it's an - * Album. - * - * - /Tracks/Whatever should be a file, since Whatever is a song - * - * Note: This should only be used for paths inside the musicfs - * directories (Artists, Tracks, ...) - */ -enum mfs_filetype -mfs_get_filetype(const char *path) { - int tokens = mfs_numtoken(path); - - if (strncmp(path, "/Genres", 7) == 0 || - strncmp(path, "/Artists", 8) == 0) { - switch (tokens) { - case 1: - case 2: - case 3: - return (MFS_DIRECTORY); - case 4: - return (MFS_FILE); - default: - return (MFS_NOTFOUND); - } - } else if (strncmp(path, "/Albums", 7) == 0) { - switch (tokens) { - case 1: - case 2: - return (MFS_DIRECTORY); - case 3: - return (MFS_FILE); - default: - return (MFS_NOTFOUND); - } - } else if (strncmp(path, "/Tracks", 7) == 0) { - switch (tokens) { - case 1: - return (MFS_DIRECTORY); - case 2: - return (MFS_FILE); - default: - return (MFS_NOTFOUND); - } - } else { - return (MFS_NOTFOUND); - } -} diff --git a/src/mp3_vnops.c b/src/mp3_vnops.c deleted file mode 100755 index 92a314c..0000000 --- a/src/mp3_vnops.c +++ /dev/null @@ -1,214 +0,0 @@ -/* -*- Mode: C; tab-width: 4; indent-tabs-mode: t; c-basic-offset: 4 -*- */ -#define FUSE_USE_VERSION 26 -#include -#include -#include -#include -#include - -#include -#include -#include -#include -#include -#include - -#include -#include -#include - -char musicpath[MAXPATHLEN]; // = "/home/lulf/dev/musicfs/music"; -char *logpath = "/home/lulf/dev/musicfs/musicfs.log"; - -static int mfs_getattr (const char *path, struct stat *stbuf) -{ - struct file_data fd; - fd.fd = -1; - fd.found = 0; - - int status = 0; - memset (stbuf, 0, sizeof (struct stat)); - - if (strcmp (path, "/") == 0) { - stbuf->st_mode = S_IFDIR | 0755; - stbuf->st_nlink = 2; - return 0; - } - - enum mfs_filetype type = mfs_get_filetype(path); - switch (type) { - case MFS_DIRECTORY: - stbuf->st_mode = S_IFDIR | 0444; - stbuf->st_nlink = 1; - stbuf->st_size = 12; - return 0; - - case MFS_FILE: - status = mfs_file_data_for_path(path, &fd); - if (status != 0) - return (status); - - if (!fd.found) - return (-ENOENT); - if (fd.fd < 0) - return (-EIO); - - if (fstat(fd.fd, stbuf) == 0) - return (0); - else - return (-ENOENT); - - case MFS_NOTFOUND: - default: - return -ENOENT; - } -} - - -static int mfs_readdir (const char *path, void *buf, fuse_fill_dir_t filler, - off_t offset, struct fuse_file_info *fi) -{ - struct filler_data fd; - struct lookuphandle *lh; - - filler (buf, ".", NULL, 0); - filler (buf, "..", NULL, 0); - fd.buf = buf; - fd.filler = filler; - - if (!strcmp(path, "/")) { - filler(buf, "Artists", NULL, 0); - filler(buf, "Genres", NULL, 0); - filler(buf, "Tracks", NULL, 0); - filler(buf, "Albums", NULL, 0); - return (0); - } - - /* - * 1. Parse the path. - * 2. Find the mp3s that matches the tags given from the path. - * 3. Return the list of those mp3s. - */ - if (strncmp(path, "/Artists", 8) == 0) { - mfs_lookup_artist(path, &fd); - return (0); - } else if (strncmp(path, "/Genres", 7) == 0) { - mfs_lookup_genre(path, &fd); - return (0); - } else if (strcmp(path, "/Tracks") == 0) { - lh = mfs_lookup_start(0, &fd, mfs_lookup_list, - "SELECT DISTINCT artistname||' - '||title||'.'||extension " - "FROM song"); - mfs_lookup_finish(lh); - return (0); - } else if (strncmp(path, "/Albums", 7) == 0) { - mfs_lookup_album(path, &fd); - return (0); - } - - return (-ENOENT); -} - -static int mfs_open (const char *path, struct fuse_file_info *fi) -{ - struct file_data fd; - fd.fd = -1; - fd.found = 0; - - int status = mfs_file_data_for_path(path, &fd); - if (status != 0) - return (status); - - if (!fd.found) - return (-ENOENT); - if (fd.fd < 0) - return (-EIO); - close(fd.fd); - - return (0); - - /* - * 1. Have a lookup cache for names?. - * Parse Genre, Album, Artist etc. - * 2. Find MP3s that match. XXX what do we do with duplicates? just - * return the first match? - * 3. Put the mnode of the mp3 in our cache. - * 4. Signal in mnode that the mp3 is being read? - */ -} - -static int mfs_read (const char *path, char *buf, size_t size, off_t offset, - struct fuse_file_info *fi) -{ - struct file_data fd; - fd.fd = -1; - fd.found = 0; - size_t bytes; - - int status = mfs_file_data_for_path(path, &fd); - if (status != 0) - return (status); - - if (!fd.found) - return (-ENOENT); - if (fd.fd < 0) - return (-EIO); - lseek(fd.fd, offset, SEEK_CUR); - bytes = read(fd.fd, buf, size); - close(fd.fd); - return (bytes); - - /* - * 1. Find the mnode given the path. If not in cache, read through mp3 - * list to find it. - * 2. Read the offset of the mp3 and return the data. - */ -} - -static struct fuse_operations mfs_ops = { - .getattr = mfs_getattr, - .readdir = mfs_readdir, - .open = mfs_open, - .read = mfs_read, -}; - -static int musicfs_opt_proc (void *data, const char *arg, int key, - struct fuse_args *outargs) -{ - static int musicpath_set = 0; - - if (key == FUSE_OPT_KEY_NONOPT && !musicpath_set) { - /* The source directory isn't already set, let's do it */ - strcpy(musicpath, arg); - musicpath_set = 1; - return (0); - } - return (1); -} - -int -mfs_run(int argc, char **argv) -{ - int ret; - /* - * XXX: Build index of mp3's. - */ - - /* Update tables. */ - if (argc < 2) { - fprintf(stderr, "Usage: %s \n", argv[0]); - return (-1); - } - - struct fuse_args args = FUSE_ARGS_INIT (argc, argv); - - if (fuse_opt_parse(&args, NULL, NULL, musicfs_opt_proc) != 0) - exit (1); - - DEBUG("musicpath: %s\n", musicpath); - mfs_initscan(musicpath); - - ret = 0; - ret = fuse_main(args.argc, args.argv, &mfs_ops, NULL); - return (ret); -} diff --git a/src/mp3fs.c b/src/mp3fs.c index 8690346..4811cb9 100755 --- a/src/mp3fs.c +++ b/src/mp3fs.c @@ -1,4 +1,25 @@ /* -*- Mode: C; tab-width: 4; indent-tabs-mode: t; c-basic-offset: 4 -*- */ + +/* + * Musicfs is a FUSE module implementing a media filesystem in userland. + * Copyright (C) 2008 Ulf Lilleengen, Kjetil Ørbekk + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License version + * 2, as published by the Free Software Foundation. + * + * 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., + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + * + * A copy of the license can typically be found in COPYING + */ + #define FUSE_USE_VERSION 26 #include -- cgit v1.2.3