chiark / gitweb /
Start on 'settings' window. Currently disabled as it's not very
[disorder] / lib / trackname.h
1 /*
2  * This file is part of DisOrder
3  * Copyright (C) 2005, 2006 Richard Kettlewell
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; either version 2 of the License, or
8  * (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program; if not, write to the Free Software
17  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
18  * USA
19  */
20
21 #ifndef TRACKNAME_H
22 #define TRACKNAME_H
23
24 const struct collection *find_track_collection(const char *track);
25 /* find the collection for @track@ */
26
27 const char *find_track_root(const char *track);
28 /* find the collection root for @track@ */
29
30 const char *track_rootless(const char *track);
31 /* return the rootless part of @track@ (typically starting /) */
32
33 const char *trackname_part(const char *track,
34                            const char *context,
35                            const char *part);
36 /* compute PART (artist/album/title) for TRACK in CONTEXT (display/sort) */
37
38 const char *trackname_transform(const char *type,
39                                 const char *subject,
40                                 const char *context);
41 /* convert SUBJECT (usually 'track' or 'dir' according to TYPE) for CONTEXT
42  * (display/sort) */
43
44 int compare_tracks(const char *sa, const char *sb,
45                    const char *da, const char *db,
46                    const char *ta, const char *tb);
47 /* Compare tracks A and B, with sort/display/track names S?, D? and T? */
48
49 int compare_path_raw(const unsigned char *ap, size_t an,
50                      const unsigned char *bp, size_t bn);
51 /* Comparison function for path names that groups all entries in a directory
52  * together */
53
54 /* Convenient wrapper for compare_path_raw */
55 static inline int compare_path(const char *ap, const char *bp) {
56   return compare_path_raw((const unsigned char *)ap, strlen(ap),
57                           (const unsigned char *)bp, strlen(bp));
58 }
59
60 #endif /* TRACKNAME_H */
61
62 /*
63 Local Variables:
64 c-basic-offset:2
65 comment-column:40
66 fill-column:79
67 End:
68 */