fdc42f1f5aaa83e23645d32dacbd9eca89e1d2a0
[paraslash.git] / afs.h
1 #include <regex.h>
2 #include "osl.h"
3 #include "afh.h"
4 #include "hash.h"
5
6 #define DATABASE_DIR "/home/maan/tmp/osl" /* FIXME */
7
8 struct afs_info {
9         uint64_t last_played;
10         uint64_t attributes;
11         uint32_t num_played;
12         uint32_t image_id;
13         uint32_t lyrics_id;
14         uint8_t audio_format_id;
15 };
16
17 enum afs_table_flags {TBLFLAG_SKIP_CREATE};
18
19 struct table_info {
20         const struct osl_table_description *desc;
21         struct osl_table *table;
22         enum afs_table_flags flags;
23 };
24
25 enum ls_sorting_method {
26         LS_SORT_BY_PATH, /* -sp (default) */
27         LS_SORT_BY_SCORE, /* -ss */
28         LS_SORT_BY_LAST_PLAYED, /* -sl */
29         LS_SORT_BY_NUM_PLAYED, /* -sn */
30         LS_SORT_BY_FREQUENCY, /* -sf */
31         LS_SORT_BY_CHANNELS, /* -sc */
32         LS_SORT_BY_IMAGE_ID, /* -si */
33         LS_SORT_BY_LYRICS_ID, /* -sy */
34         LS_SORT_BY_BITRATE, /* -sb */
35         LS_SORT_BY_DURATION, /* -sd */
36         LS_SORT_BY_AUDIO_FORMAT, /* -sa */
37         LS_SORT_BY_HASH, /* -sh */
38 };
39
40 enum ls_listing_mode {
41         LS_MODE_SHORT,
42         LS_MODE_LONG,
43         LS_MODE_VERBOSE,
44         LS_MODE_MBOX
45 };
46
47 enum ls_flags {
48         LS_FLAG_FULL_PATH = 1,
49         LS_FLAG_ADMISSIBLE_ONLY = 2,
50         LS_FLAG_REVERSE = 4,
51 };
52
53 struct ls_widths {
54         unsigned short score_width;
55         unsigned short image_id_width;
56         unsigned short lyrics_id_width;
57         unsigned short bitrate_width;
58         unsigned short frequency_width;
59         unsigned short duration_width;
60         unsigned short num_played_width;
61 };
62
63 struct ls_data {
64         struct audio_format_info afhi;
65         struct afs_info afsi;
66         char *path;
67         long score;
68         HASH_TYPE *hash;
69 };
70
71 struct ls_options {
72         unsigned flags;
73         enum ls_sorting_method sorting;
74         enum ls_listing_mode mode;
75         char **patterns;
76         int num_patterns;
77         struct ls_widths widths;
78         uint32_t array_size;
79         uint32_t num_matching_paths;
80         struct ls_data *data;
81         struct ls_data **data_ptr;
82 };
83
84 enum play_mode {PLAY_MODE_MOOD, PLAY_MODE_PLAYLIST};
85
86 struct audio_file_data {
87         enum play_mode current_play_mode;
88         long score;
89         struct afs_info afsi;
90         struct audio_format_info afhi;
91         char *path;
92         struct osl_object map;
93 };
94
95 /* afs */
96 typedef int callback_function(const struct osl_object *, struct osl_object *);
97 int send_callback_request(callback_function *f, struct osl_object *query,
98         struct osl_object *result);
99 int send_standard_callback_request(int argc, const char **argv,
100                 callback_function *f, struct osl_object *result);
101 int send_option_arg_callback_request(struct osl_object *options,
102         int argc, const char **argv, callback_function *f,
103         struct osl_object *result);
104 int stdin_command(struct osl_object *arg_obj, callback_function *f,
105                 unsigned max_len, struct osl_object *result);
106 int string_compare(const struct osl_object *obj1, const struct osl_object *obj2);
107 int para_atol(const char *str, long *result);
108 int open_next_audio_file(struct audio_file_data *afd);
109 int close_audio_file(struct audio_file_data *afd);
110
111 /* score */
112 int score_init(struct table_info *ti);
113 void score_shutdown(enum osl_close_flags flags);
114 int admissible_file_loop(void *data, osl_rbtree_loop_func *func);
115 int admissible_file_loop_reverse(void *data, osl_rbtree_loop_func *func);
116 int score_get_best(struct osl_row **aft_row, long *score);
117 int get_score_and_aft_row(struct osl_row *score_row, long *score, struct osl_row **aft_row);
118 int score_add(const struct osl_row *row, long score);
119 int score_update(const struct osl_row *aft_row, long new_score);
120 int get_num_admissible_files(unsigned *num);
121 int score_delete(const struct osl_row *aft_row);
122 int row_belongs_to_score_table(const struct osl_row *aft_row);
123
124 /* attribute */
125 int attribute_init(struct table_info *ti);
126 void attribute_shutdown(enum osl_close_flags flags);
127 void get_attribute_bitmap(uint64_t *atts, char *buf);
128 int get_attribute_bitnum_by_name(const char *att_name, unsigned char *bitnum);
129 int com_lsatt(int fd, int argc, const char **argv);
130 int com_setatt(int fd, int argc, const char **argv);
131 int com_addatt(int fd, int argc, const char **argv);
132 int com_rmatt(int fd, int argc, const char **argv);
133 int get_attribute_text(uint64_t *atts, const char *delim, char **text);
134
135 /* aft */
136 int aft_init(struct table_info *ti);
137 void aft_shutdown(enum osl_close_flags flags);
138 int aft_get_row_of_path(char *path, struct osl_row **row);
139 int open_and_update_audio_file(struct osl_row *aft_row, struct audio_file_data *afd);
140 int load_afsi(struct afs_info *afsi, struct osl_object *obj);
141 void save_afsi(struct afs_info *afsi, struct osl_object *obj);
142 int get_afsi_of_row(const struct osl_row *row, struct afs_info *afsi);
143 int get_audio_file_path_of_row(const struct osl_row *row, char **path);
144 int get_afsi_object_of_row(const void *row, struct osl_object *obj);
145 int audio_file_loop(void *private_data, osl_rbtree_loop_func *func);
146 int com_touch(int fd, int argc, const char **argv);
147 int com_add(int fd, int argc, const char **argv);
148 int com_afs_ls(int fd, int argc, const char **argv);
149 int com_afs_rm(int fd, int argc, const char **argv);
150
151 /* mood */
152 int mood_open(char *mood_name);
153 void mood_close(void);
154 int mood_update_audio_file(const struct osl_row *aft_row, struct afs_info *old_afsi);
155 int mood_reload(void);
156 int mood_delete_audio_file(const struct osl_row *aft_row);
157
158
159 /* playlist */
160 int playlist_open(char *name);
161 void playlist_close(void);
162 int playlist_update_audio_file(struct osl_row *aft_row);
163
164 /** evaluates to 1 if x < y, to -1 if x > y and to 0 if x == y */
165 #define NUM_COMPARE(x, y) ((int)((x) < (y)) - (int)((x) > (y)))
166
167
168 #define DECLARE_BLOB_SYMBOLS(table_name, cmd_prefix) \
169         int table_name ## _init(struct table_info *ti); \
170         void table_name ## _shutdown(enum osl_close_flags flags); \
171         int com_add ## cmd_prefix(int fd, int argc, const char **argv); \
172         int com_rm ## cmd_prefix(int fd, int argc, const char **argv); \
173         int com_cat ## cmd_prefix(int fd, int argc, const char **argv); \
174         int com_ls ## cmd_prefix(int fd, int argc, const char **argv); \
175         int com_mv ## cmd_prefix(int fd, int argc, const char **argv); \
176         int cmd_prefix ## _get_name_by_id(uint32_t id, char **name); \
177         extern struct osl_table *table_name ## _table;
178
179 DECLARE_BLOB_SYMBOLS(lyrics, lyr);
180 DECLARE_BLOB_SYMBOLS(images, img);
181 DECLARE_BLOB_SYMBOLS(moods, mood);
182 DECLARE_BLOB_SYMBOLS(playlists, pl);
183
184 enum blob_table_columns {BLOBCOL_ID, BLOBCOL_NAME, BLOBCOL_DEF, NUM_BLOB_COLUMNS};
185 #define DEFINE_BLOB_TABLE_DESC(table_name) \
186         const struct osl_table_description table_name ## _table_desc = { \
187                 .dir = DATABASE_DIR, \
188                 .name = #table_name, \
189                 .num_columns = NUM_BLOB_COLUMNS, \
190                 .flags = OSL_LARGE_TABLE, \
191                 .column_descriptions = blob_cols \
192         };
193
194 #define DEFINE_BLOB_TABLE_PTR(table_name) struct osl_table *table_name ## _table;
195
196 #define INIT_BLOB_TABLE(table_name) \
197         DEFINE_BLOB_TABLE_DESC(table_name); \
198         DEFINE_BLOB_TABLE_PTR(table_name);
199