2 * Copyright (C) 2007 Andre Noll <maan@systemlinux.org>
4 * Licensed under the GPL v2. For licencing details see COPYING.
7 /** \file afs.h Exported symbols of the audio file selector. */
13 /** Audio file selector data stored in the audio file table. */
15 /** Seconds since the epoch. */
17 /** Bit field of set attributes. */
19 /** Counts how many times the file was selected. */
21 /** Image blob associated with this file (foreign key). */
23 /** Lyrics blob associated with this file (foreign key). */
25 /** Mp3, ogg or aac. */
26 uint8_t audio_format_id
;
30 * Events caused by changes to an afs table.
32 * Whenever an afs table changes, an event is generated which causes afs to
33 * call the event handlers of all other tables. For example, if an audio file
34 * is added, the event handler of the mood table checks the new file for
38 /** An attribute was added. */
40 /** An attribute was renamed. */
42 /** An attribute was removed. */
44 /** The afs info struct of an audio file changed. */
46 /** The afh info struct of an audio file changed. */
48 /** An audio file was renamed. */
50 /** An audio file was added. */
52 /** An audio file is about to be removed. */
54 /** A new blob was added. */
56 /** A blob was renamed. */
58 /** A blob is about to be removed. */
62 struct rmatt_event_data
{
68 struct afsi_change_event_data
{
69 const struct osl_row
*aft_row
;
70 struct afs_info
*old_afsi
;
73 /** Function pointers for table handling. */
75 /** Initializes the other pointers in this struct. */
76 void (*init
)(struct afs_table
*t
);
77 /** The name of this table. */
79 /** Gets called on startup and on \p SIGHUP. */
80 int (*open
)(const char *base_dir
);
81 /** Gets called on shutdown and on \p SIGHUP. */
83 /** Called by the \a init afs command. */
84 int (*create
)(const char *);
85 /** Handles afs events. */
86 int (*event_handler
)(enum afs_events event
, struct para_buffer
*pb
,
91 enum play_mode
{PLAY_MODE_MOOD
, PLAY_MODE_PLAYLIST
};
94 * Data about one audio file.
96 * Needed to produce ls and stat output.
99 /** Usual audio format handler information. */
100 struct afh_info afhi
;
101 /** Audio file selector information. */
102 struct afs_info afsi
;
103 /** The full path of the audio file. */
105 /** The score value (if -a was given). */
107 /** The sha1 hash of audio file. */
110 int make_status_items(struct ls_data
*d
, struct para_buffer
*pb
);
112 #define VERBOSE_LS_OUTPUT_SIZE 4096
115 * Data about the current audio file, passed from afs to server.
117 struct audio_file_data
{
118 /* Same info as ls -lv -p <current audio file>. */
119 char verbose_ls_output
[VERBOSE_LS_OUTPUT_SIZE
];
120 /* The open file descriptor to the current audio file. */
122 /* Vss needs this for streaming. */
123 struct afh_info afhi
;
126 enum afs_server_code
{
131 /** Flags passed to for_each_matching_row(). */
132 enum pattern_match_flags
{
133 /** Loop in reverse order. */
135 /** If no pattern is given, loop over all rows. */
136 PM_NO_PATTERN_MATCHES_EVERYTHING
= 2,
137 /** If the data in match_column is the empty string, skip this row. */
138 PM_SKIP_EMPTY_NAME
= 4,
141 /** Structure passed to for_each_matching_row(). */
142 struct pattern_match_data
{
143 /** Loop over all rows in this table. */
144 struct osl_table
*table
;
145 /** Determines the loop order. Must be an rbtree column. */
146 unsigned loop_col_num
;
147 /** Data from this column is matched against the given patterns. */
148 unsigned match_col_num
;
149 /** \see pattern_match_flags. */
151 /** This value is passed verbatim to fnmatch(). */
153 /** Null-terminated array of patterns. */
154 struct osl_object patterns
;
155 /** Data pointer passed to the action function. */
157 /** For each matching row, this function will be called. */
158 int (*action
)(struct osl_table
*table
, struct osl_row
*row
, const char *name
, void *data
);
162 typedef int callback_function(const struct osl_object
*, struct osl_object
*);
163 __noreturn
void afs_init(uint32_t cookie
, int socket_fd
);
164 void afs_event(enum afs_events event
, struct para_buffer
*pb
,
166 int send_callback_request(callback_function
*f
, struct osl_object
*query
,
167 struct osl_object
*result
);
168 int send_standard_callback_request(int argc
, char * const * const argv
,
169 callback_function
*f
, struct osl_object
*result
);
170 int send_option_arg_callback_request(struct osl_object
*options
,
171 int argc
, char * const * const argv
, callback_function
*f
,
172 struct osl_object
*result
);
173 int stdin_command(int fd
, struct osl_object
*arg_obj
, callback_function
*f
,
174 unsigned max_len
, struct osl_object
*result
);
175 int string_compare(const struct osl_object
*obj1
, const struct osl_object
*obj2
);
176 int close_audio_file(struct audio_file_data
*afd
);
177 int for_each_matching_row(struct pattern_match_data
*pmd
);
180 void score_init(struct afs_table
*t
);
181 int admissible_file_loop(void *data
, osl_rbtree_loop_func
*func
);
182 int admissible_file_loop_reverse(void *data
, osl_rbtree_loop_func
*func
);
183 int score_get_best(struct osl_row
**aft_row
, long *score
);
184 int get_score_and_aft_row(struct osl_row
*score_row
, long *score
, struct osl_row
**aft_row
);
185 int score_add(const struct osl_row
*row
, long score
);
186 int score_update(const struct osl_row
*aft_row
, long new_score
);
187 int get_num_admissible_files(unsigned *num
);
188 int score_delete(const struct osl_row
*aft_row
);
189 int clear_score_table(void);
190 int row_belongs_to_score_table(const struct osl_row
*aft_row
, unsigned *rank
);
193 void attribute_init(struct afs_table
*t
);
194 void get_attribute_bitmap(const uint64_t *atts
, char *buf
); /* needed by com_ls() */
195 int get_attribute_bitnum_by_name(const char *att_name
, unsigned char *bitnum
);
196 int get_attribute_text(uint64_t *atts
, const char *delim
, char **text
);
199 void aft_init(struct afs_table
*t
);
200 int aft_get_row_of_path(const char *path
, struct osl_row
**row
);
201 int open_and_update_audio_file(struct osl_row
*aft_row
,
202 struct audio_file_data
*afd
, long score
);
203 int load_afd(int shmid
, struct audio_file_data
*afd
);
204 int load_afsi(struct afs_info
*afsi
, struct osl_object
*obj
);
205 void save_afsi(struct afs_info
*afsi
, struct osl_object
*obj
);
206 int get_afsi_of_row(const struct osl_row
*row
, struct afs_info
*afsi
);
207 int get_afhi_of_row(const struct osl_row
*row
, struct afh_info
*afhi
);
208 int get_afsi_of_path(const char *path
, struct afs_info
*afsi
);
209 int get_audio_file_path_of_row(const struct osl_row
*row
, char **path
);
210 int get_afsi_object_of_row(const struct osl_row
*row
, struct osl_object
*obj
);
211 int audio_file_loop(void *private_data
, osl_rbtree_loop_func
*func
);
212 int aft_check_callback(const struct osl_object
*query
, struct osl_object
*result
);
215 int change_current_mood(char *mood_name
);
216 void close_current_mood(void);
217 int reload_current_mood(void);
218 int mood_check_callback(__a_unused
const struct osl_object
*query
,
219 struct osl_object
*result
);
223 int playlist_open(char *name
);
224 void playlist_close(void);
225 int playlist_check_callback(__a_unused
const struct osl_object
*query
,
226 struct osl_object
*result
);
228 /** evaluates to 1 if x < y, to -1 if x > y and to 0 if x == y */
229 #define NUM_COMPARE(x, y) ((int)((x) < (y)) - (int)((x) > (y)))
232 /** Define exported functions and a table pointer for an osl blob table. */
233 #define DECLARE_BLOB_SYMBOLS(table_name, cmd_prefix) \
234 void table_name ## _init(struct afs_table *t); \
235 int cmd_prefix ## _get_name_by_id(uint32_t id, char **name); \
236 int cmd_prefix ## _get_def_by_id(uint32_t id, struct osl_object *def); \
237 int cmd_prefix ## _get_def_by_name(char *name, struct osl_object *def); \
238 int cmd_prefix ## _get_name_and_def_by_row(const struct osl_row *row, \
239 char **name, struct osl_object *def); \
240 int table_name ##_event_handler(enum afs_events event, \
241 struct para_buffer *pb, void *data); \
242 extern struct osl_table *table_name ## _table;
244 DECLARE_BLOB_SYMBOLS(lyrics
, lyr
);
245 DECLARE_BLOB_SYMBOLS(images
, img
);
246 DECLARE_BLOB_SYMBOLS(moods
, mood
);
247 DECLARE_BLOB_SYMBOLS(playlists
, pl
);
249 /** The columns of an abstract blob table. */
250 enum blob_table_columns
{
251 /** The identifier, a positive integer that never repeats. */
253 /** The unique name of the blob. */
255 /** The actual blob contents. */
257 /** A blob table has that many columns. */
261 /** Define an osl table decription for a blob table. */
262 #define DEFINE_BLOB_TABLE_DESC(table_name) \
263 struct osl_table_description table_name ## _table_desc = { \
264 .name = #table_name, \
265 .num_columns = NUM_BLOB_COLUMNS, \
266 .flags = OSL_LARGE_TABLE, \
267 .column_descriptions = blob_cols \
270 /** Define a pointer to an osl blob table with a canonical name. */
271 #define DEFINE_BLOB_TABLE_PTR(table_name) struct osl_table *table_name ## _table;
273 /** Define a blob table. */
274 #define INIT_BLOB_TABLE(table_name) \
275 DEFINE_BLOB_TABLE_DESC(table_name); \
276 DEFINE_BLOB_TABLE_PTR(table_name);