]> git.tuebingen.mpg.de Git - paraslash.git/blobdiff - afs.h
aft.c: Remove special case code for playlist mode.
[paraslash.git] / afs.h
diff --git a/afs.h b/afs.h
index 1399b2aba2d1509fe45ab10c285ae632156dd2e4..db931d989133a53a82ae38c07bbe75aeb581e5a6 100644 (file)
--- a/afs.h
+++ b/afs.h
@@ -27,20 +27,34 @@ struct afs_info {
 };
 
 enum afs_events {
+       ATTRIBUTE_ADD,
+       ATTRIBUTE_RENAME,
+       ATTRIBUTE_REMOVE,
        AFSI_CHANGE,
        AFHI_CHANGE,
        AUDIO_FILE_RENAME,
        AUDIO_FILE_ADD,
        AUDIO_FILE_REMOVE,
-       AUDIO_FILE_STREAMED,
-       ATTRIBUTE_ADD,
-       ATTRIBUTE_RENAME,
-       ATTRIBUTE_DELETE,
-       LYRICS_DELETE,
-       IMAGE_DELETE,
-       LYRICS_RENAME,
-       IMAGE_RENAME,
+       BLOB_ADD,
+       BLOB_RENAME,
+       BLOB_REMOVE,
+
+};
+
+struct rmatt_event_data {
+       const char *name;
+       unsigned char bitnum;
+};
+
+
+struct addatt_event_data {
+       const char *name;
+       unsigned char bitnum;
+};
 
+struct afsi_change_event_data {
+       const struct osl_row *aft_row;
+       struct afs_info *old_afsi;
 };
 
 struct afs_table {
@@ -49,7 +63,8 @@ struct afs_table {
        int (*open)(const char *base_dir);
        void (*close)(void);
        int (*create)(const char *);
-       int (*event_handler)(enum afs_events event, struct para_buffer *pb,  void *data);
+       int (*event_handler)(enum afs_events event, struct para_buffer *pb,
+               void *data);
        /* int *(check)() */
 };
 
@@ -97,6 +112,8 @@ struct pattern_match_data {
 /* afs */
 typedef int callback_function(const struct osl_object *, struct osl_object *);
 __noreturn void afs_init(uint32_t cookie, int socket_fd);
+void afs_event(enum afs_events event, struct para_buffer *pb,
+       void *data);
 int send_callback_request(callback_function *f, struct osl_object *query,
        struct osl_object *result);
 int send_standard_callback_request(int argc, char * const * const argv,
@@ -121,7 +138,8 @@ int score_add(const struct osl_row *row, long score);
 int score_update(const struct osl_row *aft_row, long new_score);
 int get_num_admissible_files(unsigned *num);
 int score_delete(const struct osl_row *aft_row);
-int row_belongs_to_score_table(const struct osl_row *aft_row);
+int clear_score_table(void);
+int row_belongs_to_score_table(const struct osl_row *aft_row, unsigned *rank);
 
 /* attribute */
 void attribute_init(struct afs_table *t);
@@ -145,9 +163,7 @@ int aft_check_callback(const struct osl_object *query, struct osl_object *result
 
 /* mood */
 int change_current_mood(char *mood_name);
-int mood_update_audio_file(const struct osl_row *aft_row, struct afs_info *old_afsi);
 int reload_current_mood(void);
-int mood_delete_audio_file(const struct osl_row *aft_row);
 int mood_check_callback(__a_unused const struct osl_object *query,
        struct osl_object *result);
 
@@ -166,8 +182,11 @@ int playlist_check_callback(__a_unused const struct osl_object *query,
        void table_name ## _init(struct afs_table *t); \
        int cmd_prefix ## _get_name_by_id(uint32_t id, char **name); \
        int cmd_prefix ## _get_def_by_id(uint32_t id, struct osl_object *def); \
+       int cmd_prefix ## _get_def_by_name(char *name, struct osl_object *def); \
        int cmd_prefix ## _get_name_and_def_by_row(const struct osl_row *row, \
                char **name, struct osl_object *def); \
+       int table_name ##_event_handler(enum afs_events event, \
+               struct para_buffer *pb, void *data); \
        extern struct osl_table *table_name ## _table;
 
 DECLARE_BLOB_SYMBOLS(lyrics, lyr);