1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
|
#pragma once
#include "list.h"
#include <stdbool.h>
struct tag {
char *name, *fpath;
struct list tracks;
bool index_dirty;
bool reordered;
struct list_link link; /* tags list */
struct list_link link_sel; /* selected tags list */
};
struct track {
char *name, *fpath;
struct tag *tag;
struct list_link link; /* tracks list */
struct list_link link_pl; /* player playlist */
struct list_link link_tt; /* tag tracks list */
struct list_link link_pq; /* player queue */
struct list_link link_hs; /* player history */
};
bool path_exists(const char *path);
bool make_dir(const char *path);
bool move_dir(const char *dst, const char *src);
bool rm_dir(const char *path, bool recursive);
bool rm_file(const char *path);
bool copy_file(const char *dst, const char *src);
bool dup_file(const char *dst, const char *src);
bool move_file(const char *dst, const char *src);
struct track *tracks_vis_track(struct list_link *link);
void playlist_clear(void);
void playlist_update(void);
struct tag *tag_create(const char *fname);
struct tag *tag_add(const char *fname);
struct tag *tag_find(const char *name);
bool tag_rm(struct tag *tag, bool sync_fs);
bool tag_rename(struct tag *tag, const char *name);
void tag_clear_tracks(struct tag *tag);
void tag_load_tracks(struct tag *tag);
void tag_save_tracks(struct tag *tag);
bool tag_reindex_tracks(struct tag *tag);
struct track *track_add(struct tag *tag, const char *fname);
bool track_rm(struct track *track, bool sync_fs);
bool track_rename(struct track *track, const char *name);
bool track_move(struct track *track, struct tag *tag);
bool acquire_lock(const char *path);
bool release_lock(const char *path);
void data_load(void);
void data_save(void);
void data_free(void);
extern const char *datadir;
extern struct list tracks; /* struct track (link) */
extern struct list tags; /* struct track (link) */
extern struct list tags_sel; /* struct tag (link_sel) */
extern struct tag *trash_tag;
extern bool playlist_outdated;
|