Replace the convert_0.2-0.3.sh script by convert_0.3-0.4.sh.
[paraslash.git] / afs.h
1 /*
2  * Copyright (C) 2007-2009 Andre Noll <maan@systemlinux.org>
3  *
4  * Licensed under the GPL v2. For licencing details see COPYING.
5  */
6
7 /** \file afs.h Exported symbols of the audio file selector. */
8
9 #include <regex.h>
10 #include "hash.h"
11
12 /** Audio file selector data stored in the audio file table. */
13 struct afs_info {
14         /** Seconds since the epoch. */
15         uint64_t last_played;
16         /** Bit field of set attributes. */
17         uint64_t attributes;
18         /** Counts how many times the file was selected. */
19         uint32_t num_played;
20         /** Image blob associated with this file (foreign key). */
21         uint32_t image_id;
22         /** Lyrics blob associated with this file (foreign key). */
23         uint32_t lyrics_id;
24         /** Mp3, ogg or aac. */
25         uint8_t audio_format_id;
26         /** Amplification value. */
27         uint8_t amp;
28 };
29
30 /**
31  * Events caused by changes to an afs table.
32  *
33  * Whenever an afs table changes, an event is generated which causes afs to
34  * call the event handlers of all other tables. For example, if an audio file
35  * is added, the event handler of the mood table checks the new file for
36  * admissibility.
37  */
38 enum afs_events {
39         /** An attribute was added. */
40         ATTRIBUTE_ADD,
41         /** An attribute was renamed. */
42         ATTRIBUTE_RENAME,
43         /** An attribute was removed. */
44         ATTRIBUTE_REMOVE,
45         /** The afs info struct of an audio file changed. */
46         AFSI_CHANGE,
47         /** The afh info struct of an audio file changed. */
48         AFHI_CHANGE,
49         /** An audio file was renamed. */
50         AUDIO_FILE_RENAME,
51         /** An audio file was added. */
52         AUDIO_FILE_ADD,
53         /** An audio file is about to be removed. */
54         AUDIO_FILE_REMOVE,
55         /** A new blob was added. */
56         BLOB_ADD,
57         /** A blob was renamed. */
58         BLOB_RENAME,
59         /** A blob is about to be removed. */
60         BLOB_REMOVE,
61 };
62
63 /**
64  * Used as data for \ref afs_event() for events of type \p ATTRIBUTE_ADD.
65  */
66 struct rmatt_event_data {
67         /** The name of the attribute being added. */
68         const char *name;
69         /** Its bit number. */
70         unsigned char bitnum;
71 };
72
73 /**
74  * Used as data for \ref afs_event() for events of type \p ATTRIBUTE_AFSI_CHANGE.
75  */
76 struct afsi_change_event_data {
77         /** Pointer to the row that has changed. */
78         struct osl_row *aft_row;
79         /** Afs info before the change. */
80         struct afs_info *old_afsi;
81 };
82
83 /** Function pointers for table handling.  */
84 struct afs_table {
85         /** Initializes the other pointers in this struct. */
86         void (*init)(struct afs_table *t);
87         /** The name of this table. */
88         const char *name;
89         /** Gets called on startup and on \p SIGHUP. */
90         int (*open)(const char *base_dir);
91         /** Gets called on shutdown and on \p SIGHUP. */
92         void (*close)(void);
93         /** Called by the \a init afs command. */
94         int (*create)(const char *);
95         /** Handles afs events. */
96         int (*event_handler)(enum afs_events event, struct para_buffer *pb,
97                 void *data);
98 };
99
100 enum play_mode {PLAY_MODE_MOOD, PLAY_MODE_PLAYLIST};
101
102 /**
103  * Data about one audio file.
104  *
105  * Needed to produce ls and stat output.
106  */
107 struct ls_data {
108         /** Usual audio format handler information. */
109         struct afh_info afhi;
110         /** Audio file selector information. */
111         struct afs_info afsi;
112         /** The full path of the audio file. */
113         char *path;
114         /** The score value (if -a was given). */
115         long score;
116         /** The sha1 hash of audio file. */
117         HASH_TYPE *hash;
118 };
119
120 void make_empty_status_items(char *buf);
121
122 /** At most that many bytes will be passed from afs to para_server. */
123 #define VERBOSE_LS_OUTPUT_SIZE 4096
124
125 /** Data about the current audio file, passed from afs to server. */
126 struct audio_file_data {
127         /** Same info as ls -lv -p current audio_file. */
128         char verbose_ls_output[VERBOSE_LS_OUTPUT_SIZE];
129         /** The open file descriptor to the current audio file. */
130         int fd;
131         /** Vss needs this for streaming. */
132         struct afh_info afhi;
133 };
134
135 enum afs_server_code {
136         NEXT_AUDIO_FILE,
137         NO_ADMISSIBLE_FILES,
138         AFD_CHANGE
139 };
140
141 /** Flags passed to for_each_matching_row(). */
142 enum pattern_match_flags {
143         /** Loop in reverse order. */
144         PM_REVERSE_LOOP = 1,
145         /** If no pattern is given, loop over all rows. */
146         PM_NO_PATTERN_MATCHES_EVERYTHING = 2,
147         /** If the data in match_column is the empty string, skip this row. */
148         PM_SKIP_EMPTY_NAME = 4,
149 };
150
151 /** Structure passed to for_each_matching_row(). */
152 struct pattern_match_data {
153         /** Loop over all rows in this table. */
154         struct osl_table *table;
155         /** Determines the loop order. Must be an rbtree column. */
156         unsigned loop_col_num;
157         /** Data from this column is matched against the given patterns. */
158         unsigned match_col_num;
159         /** \see pattern_match_flags. */
160         unsigned pm_flags;
161         /** This value is passed verbatim to fnmatch(). */
162         int fnmatch_flags;
163         /** Null-terminated array of patterns. */
164         struct osl_object patterns;
165         /** Data pointer passed to the action function. */
166         void *data;
167         /** For each matching row, this function will be called. */
168         int (*action)(struct osl_table *table, struct osl_row *row, const char *name, void *data);
169 };
170
171
172 /**
173  * Afs command handlers run as a process which is not related to the afs
174  * process, i.e. they can not change the address space of afs directly.
175  * Therefore afs commands typically consist of two functions: The command
176  * handler and the corresponding callback function that runs in afs context.
177  *
178  * \sa send_callback_request().
179  */
180 typedef void callback_function(int fd, const struct osl_object *);
181
182 /**
183  * Callbacks send chunks to data back to the command handler. Pointers to
184  * this type of function are used by \ref send_callback_request and friends
185  * to deal with the data in the command handler process.
186  *
187  * \sa \ref send_callback_request().
188  */
189 typedef int callback_result_handler(struct osl_object *result, void *private);
190 int send_result(struct osl_object *result, void *fd_ptr);
191 int pass_buffer_as_shm(char *buf, size_t size, void *fd_ptr);
192
193 __noreturn void afs_init(uint32_t cookie, int socket_fd);
194 void afs_event(enum afs_events event, struct para_buffer *pb,
195         void *data);
196 int send_callback_request(callback_function *f, struct osl_object *query,
197                 callback_result_handler *result_handler,
198                 void *private_result_data);
199 int send_option_arg_callback_request(struct osl_object *options,
200                 int argc,  char * const * const argv, callback_function *f,
201                 callback_result_handler *result_handler,
202                 void *private_result_data);
203 int send_standard_callback_request(int argc,  char * const * const argv,
204                 callback_function *f, callback_result_handler *result_handler,
205                 void *private_result_data);
206 int stdin_command(int fd, struct osl_object *arg_obj, callback_function *f,
207                 unsigned max_len, callback_result_handler *result_handler,
208                 void *private_result_data);
209 int string_compare(const struct osl_object *obj1, const struct osl_object *obj2);
210 int for_each_matching_row(struct pattern_match_data *pmd);
211
212 /* score */
213 void score_init(struct afs_table *t);
214 int admissible_file_loop(void *data, osl_rbtree_loop_func *func);
215 int admissible_file_loop_reverse(void *data, osl_rbtree_loop_func *func);
216 int score_get_best(struct osl_row **aft_row, long *score);
217 int get_score_and_aft_row(struct osl_row *score_row, long *score, struct osl_row **aft_row);
218 int score_add(const struct osl_row *row, long score);
219 int score_update(const struct osl_row *aft_row, long new_score);
220 int get_num_admissible_files(unsigned *num);
221 int score_delete(const struct osl_row *aft_row);
222 int clear_score_table(void);
223 int row_belongs_to_score_table(const struct osl_row *aft_row, unsigned *rank);
224
225 /* attribute */
226 void attribute_init(struct afs_table *t);
227 void get_attribute_bitmap(const uint64_t *atts, char *buf); /* needed by com_ls() */
228 int get_attribute_bitnum_by_name(const char *att_name, unsigned char *bitnum);
229 int get_attribute_text(uint64_t *atts, const char *delim, char **text);
230
231 /* aft */
232 void aft_init(struct afs_table *t);
233 int aft_get_row_of_path(const char *path, struct osl_row **row);
234 int open_and_update_audio_file(struct osl_row *aft_row, long score,
235         struct audio_file_data *afd);
236 int load_afd(int shmid, struct audio_file_data *afd);
237 int load_afsi(struct afs_info *afsi, struct osl_object *obj);
238 void save_afsi(struct afs_info *afsi, struct osl_object *obj);
239 int get_afsi_of_row(const struct osl_row *row, struct afs_info *afsi);
240 int get_afhi_of_row(const struct osl_row *row, struct afh_info *afhi);
241 int get_afsi_of_path(const char *path, struct afs_info *afsi);
242 int get_audio_file_path_of_row(const struct osl_row *row, char **path);
243 int get_afsi_object_of_row(const struct osl_row *row, struct osl_object *obj);
244 int audio_file_loop(void *private_data, osl_rbtree_loop_func *func);
245 void aft_check_callback(int fd, __a_unused const struct osl_object *query);
246
247 /* mood */
248 int change_current_mood(char *mood_name);
249 void close_current_mood(void);
250 int reload_current_mood(void);
251 void mood_check_callback(int fd, __a_unused const struct osl_object *query);
252
253
254 /* playlist */
255 int playlist_open(char *name);
256 void playlist_close(void);
257 void playlist_check_callback(int fd, __a_unused const struct osl_object *query);
258
259 /** evaluates to 1 if x < y, to -1 if x > y and to 0 if x == y */
260 #define NUM_COMPARE(x, y) ((int)((x) < (y)) - (int)((x) > (y)))
261
262
263 /** Define exported functions and a table pointer for an osl blob table. */
264 #define DECLARE_BLOB_SYMBOLS(table_name, cmd_prefix) \
265         void table_name ## _init(struct afs_table *t); \
266         int cmd_prefix ## _get_name_by_id(uint32_t id, char **name); \
267         int cmd_prefix ## _get_def_by_id(uint32_t id, struct osl_object *def); \
268         int cmd_prefix ## _get_def_by_name(char *name, struct osl_object *def); \
269         int cmd_prefix ## _get_name_and_def_by_row(const struct osl_row *row, \
270                 char **name, struct osl_object *def); \
271         int table_name ##_event_handler(enum afs_events event, \
272                 struct para_buffer *pb, void *data); \
273         extern struct osl_table *table_name ## _table;
274
275 DECLARE_BLOB_SYMBOLS(lyrics, lyr);
276 DECLARE_BLOB_SYMBOLS(images, img);
277 DECLARE_BLOB_SYMBOLS(moods, mood);
278 DECLARE_BLOB_SYMBOLS(playlists, pl);
279
280 /** The columns of an abstract blob table. */
281 enum blob_table_columns {
282         /** The identifier, a positive integer that never repeats. */
283         BLOBCOL_ID,
284         /** The unique name of the blob. */
285         BLOBCOL_NAME,
286         /** The actual blob contents. */
287         BLOBCOL_DEF,
288         /** A blob table has that many columns. */
289         NUM_BLOB_COLUMNS
290 };
291
292 /** Define an osl table description for a blob table. */
293 #define DEFINE_BLOB_TABLE_DESC(table_name) \
294         struct osl_table_description table_name ## _table_desc = { \
295                 .name = #table_name, \
296                 .num_columns = NUM_BLOB_COLUMNS, \
297                 .flags = OSL_LARGE_TABLE, \
298                 .column_descriptions = blob_cols \
299         };
300
301 /** Define a pointer to an osl blob table with a canonical name. */
302 #define DEFINE_BLOB_TABLE_PTR(table_name) struct osl_table *table_name ## _table;
303
304 /** Define a blob table. */
305 #define INIT_BLOB_TABLE(table_name) \
306         DEFINE_BLOB_TABLE_DESC(table_name); \
307         DEFINE_BLOB_TABLE_PTR(table_name);
308