a5eae12c5aef8108340be51a63d7bc0567108f17
[id3fs.git] / sbin / id3fsd
1 #!/usr/bin/perl -w
2 # Ian Beckwith <ianb@erislabs.net>
3 #
4
5 use lib '/home/ianb/projects/id3fs/id3fs/lib';
6 use strict;
7 use Getopt::Long qw(Configure);
8 use ID3FS::DB;
9 use ID3FS::Fuse;
10 use vars qw($me);
11 $me=($0=~/(?:.*\/)?(.*)/)[0];
12
13 our $VERSION="1.00";
14 my $verbose=0;
15 my $help=0;
16 my $dbpath=undef;
17
18 Configure(qw(bundling no_ignore_case));
19 my $optret=GetOptions(
20     "verbose|v"    => \$verbose,
21     "quiet|q"      => sub { $verbose=0; },
22     "help|h"       => \$help,
23     "database|f=s" => \$dbpath,
24     );
25
26 usage() if(scalar(@ARGV) != 2 || !$optret || $help);
27
28 my $source=shift;
29 my $mountpoint=shift;
30
31 my $db=ID3FS::DB->new($me, $verbose, 0, $dbpath, $source);
32 exit unless($db);
33
34 my $fuse=ID3FS::Fuse->new($db, $source, $mountpoint, $verbose);
35 $fuse->run();
36
37 sub usage
38 {
39     die("Usage: $me [-vqh] [-f <dbfile>] [--] <sourcedir> <mountpoint>\n".
40         " -v\t\t\tVerbose\n".
41         " -q\t\t\tQuiet (default)\n".
42         " -h\t\t\tThis help\n".
43         " -f|--database=FILE\tPath to database file\n" .
44         " --\t\t\tEnd of options\n");
45 }
46
47 __END__
48
49 =head1 NAME
50
51 id3fsd - FUSE filesystem for browsing id3 tags
52
53 =head1 SYNOPSIS
54
55 B<id3fsd> [B<-vqh>] S<B<[-f >I<dbfile>]> [B<-->] I<SOURCEDIR> I<MOUNTPOINT>
56
57 =head1 DESCRIPTION
58
59 id3fsd provides a browsable filesystem of your music files, organised
60 into sub-directories by id3 tags (or flac/ogg comments).
61
62 An index should first be created with L<id3fs-index(1)>, then id3fsd
63 can mount the files in I<SOURCEDIR> on the directory I<MOUNTPOINT>.
64
65 If not explicitly specified (with B<-f>), the index is searched for
66 at I<SOURCEDIR>/B<.id3fs>.
67
68 The resulting filesystem is read-only. Tags appear as directories,
69 and files appear as symlinks to the actual files in I<SOURCEDIR>.
70
71 FIXME: better description, allow_others/fuse.conf, fstab, explain genre tag
72
73 =head1 OPTIONS
74
75 =over 4
76
77 =item B<-v>
78
79 Enable verbose operation.
80
81 =item B<-q>
82
83 Quiet (no output). This is the default.
84
85 =item B<-h>
86
87 Show a short help message.
88
89 =item S<B<-f >I<FILE>> | S<B<--database=>I<FILE>>
90
91 Use database in I<FILE>. The default is I<SOURCEDIR>/B<.id3fs>.
92
93 =item B<-->
94
95 End of options.
96
97 =back
98
99 =head1 EXAMPLES
100
101 To mount an id3fs filesystem which indexes B<~/music/albums> on
102 B<~/music/tags>:
103
104 First create the index:
105
106     id3fs-index -v ~/music/albums
107
108 If you have a large collection of music, this may take some time.
109
110 Then create the mountpoint:
111
112     mkdir ~/music/tags
113
114 and mount the filesystem:
115
116     id3fsd ~/music/albums ~/music/tags
117
118 Then explore the tags in ~/music/tags/
119
120 FIXME: fstab
121
122 =head1 BUGS
123
124 Please report any found to ianb@erislabs.net
125
126 =head1 SEE ALSO
127
128 L<id3fs-index(1)>, L<http://fuse.sourceforge.net>
129
130 =head1 AUTHOR
131
132 Ian Beckwith <ianb@erislabs.net>
133
134 =head1 AVAILABILITY
135
136 The latest version can be found at:
137
138 B<http://erislabs.net/ianb/projects/id3fs/>
139
140 =head1 COPYRIGHT
141
142 Copyright 2010 Ian Beckwith <ianb@erislabs.net>
143
144 This program is free software: you can redistribute it and/or modify
145 it under the terms of the GNU General Public License as published by
146 the Free Software Foundation; either version 3 of the License, or
147 (at your option) any later version.
148
149 This program is distributed in the hope that it will be useful,
150 but WITHOUT ANY WARRANTY; without even the implied warranty of
151 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
152 GNU General Public License for more details.
153
154 You should have received a copy of the GNU General Public License
155 along with this program.  If not, see <http://www.gnu.org/licenses/>.
156
157 =cut