2 * Copyright (C) 2007-2009 Andre Noll <maan@systemlinux.org>
4 * Licensed under the GPL v2. For licencing details see COPYING.
7 /** \file mood.c Paraslash's mood handling functions. */
22 * Contains statistical data of the currently admissible audio files.
24 * It is used to assign normalized score values to each admissible audio file.
26 struct afs_statistics
{
27 /** Sum of num played over all admissible files. */
28 int64_t num_played_sum
;
29 /** Sum of last played times over all admissible files. */
30 int64_t last_played_sum
;
31 /** Quadratic deviation of num played time. */
32 int64_t num_played_qd
;
33 /** Quadratic deviation of last played time. */
34 int64_t last_played_qd
;
35 /** Number of admissible files */
38 static struct afs_statistics statistics
;
41 * Each line of the current mood corresponds to a mood_item.
44 /** The method this line is referring to. */
45 const struct mood_method
*method
;
46 /** The data structure computed by the mood parser. */
48 /** The given score value, or zero if none was given. */
50 /** Non-zero if random scoring was requested. */
52 /** Whether the "not" keyword was given in the mood line. */
54 /** The position in the list of items. */
55 struct list_head mood_item_node
;
59 * Created from the mood definition by mood_open().
61 * When a mood is opened, each line of its definition is investigated, and a
62 * corresponding mood item is produced. Each mood line starts with \p accept,
63 * \p deny, or \p score which determines the type of the mood line. For each
64 * such type a linked list is maintained whose entries are the mood items.
66 * \sa mood_item, mood_open().
69 /** The name of this mood. */
71 /** The list of mood items of type \p accept. */
72 struct list_head accept_list
;
73 /** The list of mood items of type \p deny. */
74 struct list_head deny_list
;
75 /** The list of mood items of type \p score. */
76 struct list_head score_list
;
79 static struct mood
*current_mood
;
82 * Rough approximation to sqrt.
84 * \param x Integer of which to calculate the sqrt.
86 * \return An integer res with res * res <= x.
88 static uint64_t int_sqrt(uint64_t x
)
90 uint64_t op
, res
, one
= 1;
99 if (op
>= res
+ one
) {
100 op
= op
- (res
+ one
);
106 // PARA_NOTICE_LOG("sqrt(%llu) = %llu\n", x, res);
110 /* returns 1 if row matches score item, 0 if not. */
111 static int get_item_score(struct mood_item
*item
, const struct afs_info
*afsi
,
112 const struct afh_info
*afhi
, const char *path
, long *score
,
117 *score_arg_sum
+= item
->random_score
? 100 : PARA_ABS(item
->score_arg
);
120 ret
= item
->method
->score_function(path
, afsi
, afhi
,
122 if ((ret
< 0 && !item
->logical_not
) || (ret
>= 0 && item
->logical_not
))
123 match
= 0; /* no match */
125 if (item
->random_score
)
126 *score
= PARA_ABS(ret
) * para_random(100);
128 *score
= PARA_ABS(ret
) * item
->score_arg
;
132 /* returns 1 if row admissible, 0 if not, negative on errors */
133 static int compute_mood_score(const struct osl_row
*aft_row
, struct mood
*m
,
136 struct mood_item
*item
;
138 long score_arg_sum
= 0, score
= 0, item_score
;
139 struct afs_info afsi
;
140 struct afh_info afhi
;
145 ret
= get_afsi_of_row(aft_row
, &afsi
);
148 ret
= get_afhi_of_row(aft_row
, &afhi
);
151 ret
= get_audio_file_path_of_row(aft_row
, &path
);
154 /* reject audio file if it matches any entry in the deny list */
155 list_for_each_entry(item
, &m
->deny_list
, mood_item_node
) {
156 ret
= get_item_score(item
, &afsi
, &afhi
, path
, &item_score
,
158 if (ret
> 0) /* not admissible */
162 list_for_each_entry(item
, &m
->accept_list
, mood_item_node
) {
163 ret
= get_item_score(item
, &afsi
, &afhi
, path
, &item_score
,
170 /* reject if there is no matching entry in the accept list */
171 if (!match
&& !list_empty(&m
->accept_list
))
173 list_for_each_entry(item
, &m
->score_list
, mood_item_node
) {
174 ret
= get_item_score(item
, &afsi
, &afhi
, path
, &item_score
,
179 score
/= score_arg_sum
;
184 static void cleanup_list_entry(struct mood_item
*item
)
186 if (item
->method
&& item
->method
->cleanup
)
187 item
->method
->cleanup(item
->parser_data
);
189 free(item
->parser_data
);
190 list_del(&item
->mood_item_node
);
194 static void destroy_mood(struct mood
*m
)
196 struct mood_item
*tmp
, *item
;
200 list_for_each_entry_safe(item
, tmp
, &m
->accept_list
, mood_item_node
)
201 cleanup_list_entry(item
);
202 list_for_each_entry_safe(item
, tmp
, &m
->deny_list
, mood_item_node
)
203 cleanup_list_entry(item
);
204 list_for_each_entry_safe(item
, tmp
, &m
->score_list
, mood_item_node
)
205 cleanup_list_entry(item
);
210 static struct mood
*alloc_new_mood(const char *name
)
212 struct mood
*m
= para_calloc(sizeof(struct mood
));
213 m
->name
= para_strdup(name
);
214 INIT_LIST_HEAD(&m
->accept_list
);
215 INIT_LIST_HEAD(&m
->deny_list
);
216 INIT_LIST_HEAD(&m
->score_list
);
220 /** The different types of a mood line. */
221 enum mood_line_type
{
232 /** Data passed to the parser of a mood line. */
233 struct mood_line_parser_data
{
234 /** The mood this mood line belongs to. */
236 /** The line number in the mood definition. */
241 * <accept [with score <score>] | deny [with score <score>] | score <score>>
242 * [if] [not] <mood_method> [options]
243 * <score> is either an integer or "random" which assigns a random score to
247 static int parse_mood_line(char *mood_line
, void *data
)
249 struct mood_line_parser_data
*mlpd
= data
;
254 enum mood_line_type mlt
= ML_INVALID
;
255 struct mood_item
*mi
= NULL
;
258 ret
= create_argv(mood_line
, " \t", &argv
);
262 if (!num_words
) /* empty line */
265 if (**w
== '#') /* comment */
267 if (!strcmp(*w
, "accept"))
269 else if (!strcmp(*w
, "deny"))
271 else if (!strcmp(*w
, "score"))
273 ret
= -E_MOOD_SYNTAX
;
274 if (mlt
== ML_INVALID
)
276 mi
= para_calloc(sizeof(struct mood_item
));
277 if (mlt
!= ML_SCORE
) {
278 ret
= -E_MOOD_SYNTAX
;
282 if (strcmp(*w
, "with"))
287 if (strcmp(*w
, "score"))
290 if (mlt
== ML_SCORE
|| !strcmp(*w
, "score")) {
291 ret
= -E_MOOD_SYNTAX
;
295 if (strcmp(*w
, "random")) {
296 mi
->random_score
= 0;
297 ret
= para_atoi32(*w
, &mi
->score_arg
);
301 mi
->random_score
= 1;
303 goto success
; /* the line "score random" is valid */
307 ret
= -E_MOOD_SYNTAX
;
312 if (!strcmp(*w
, "if")) {
313 ret
= -E_MOOD_SYNTAX
;
318 if (!strcmp(*w
, "not")) {
319 ret
= -E_MOOD_SYNTAX
;
326 for (i
= 0; mood_methods
[i
].parser
; i
++) {
327 if (strcmp(*w
, mood_methods
[i
].name
))
331 ret
= -E_MOOD_SYNTAX
;
332 if (!mood_methods
[i
].parser
)
334 ret
= mood_methods
[i
].parser(num_words
- 1 - (w
- argv
), w
,
338 mi
->method
= &mood_methods
[i
];
341 if (mlt
== ML_ACCEPT
)
342 para_list_add(&mi
->mood_item_node
, &mlpd
->m
->accept_list
);
343 else if (mlt
== ML_DENY
)
344 para_list_add(&mi
->mood_item_node
, &mlpd
->m
->deny_list
);
346 para_list_add(&mi
->mood_item_node
, &mlpd
->m
->score_list
);
348 PARA_DEBUG_LOG("%s entry added, method: %p\n", mlt
== ML_ACCEPT
? "accept" :
349 (mlt
== ML_DENY
? "deny" : "score"), mi
->method
);
356 free(mi
->parser_data
);
362 static int load_mood(const struct osl_row
*mood_row
, struct mood
**m
)
365 struct osl_object mood_def
;
366 struct mood_line_parser_data mlpd
= {.line_num
= 0};
367 int ret
= mood_get_name_and_def_by_row(mood_row
, &mood_name
, &mood_def
);
373 mlpd
.m
= alloc_new_mood(mood_name
);
374 ret
= for_each_line_ro(mood_def
.data
, mood_def
.size
,
375 parse_mood_line
, &mlpd
);
376 osl_close_disk_object(&mood_def
);
378 PARA_ERROR_LOG("unable to load mood %s: %s\n", mlpd
.m
->name
,
379 para_strerror(-ret
));
380 destroy_mood(mlpd
.m
);
387 static int check_mood(struct osl_row
*mood_row
, void *data
)
389 struct para_buffer
*pb
= data
;
391 struct osl_object mood_def
;
392 struct mood_line_parser_data mlpd
= {.line_num
= 0};
394 int ret
= mood_get_name_and_def_by_row(mood_row
, &mood_name
, &mood_def
);
397 para_printf(pb
, "failed to get mood definition: %s\n",
398 para_strerror(-ret
));
401 if (!*mood_name
) /* ignore dummy row */
403 ret
= para_printf(pb
, "checking mood %s...\n", mood_name
);
406 ret
= for_each_line_ro(mood_def
.data
, mood_def
.size
,
407 parse_mood_line
, &mlpd
);
409 para_printf(pb
, "%s line %u: %s\n", mood_name
, mlpd
.line_num
,
410 para_strerror(-ret
));
412 osl_close_disk_object(&mood_def
);
417 * Check all moods for syntax errors.
419 * \param fd The afs socket.
420 * \param query Unused.
422 void mood_check_callback(int fd
, __a_unused
const struct osl_object
*query
)
424 struct para_buffer pb
= {
427 .max_size_handler
= pass_buffer_as_shm
430 int ret
= para_printf(&pb
, "checking moods...\n");
433 osl_rbtree_loop(moods_table
, BLOBCOL_ID
, &pb
,
436 pass_buffer_as_shm(pb
.buf
, pb
.offset
, &fd
);
441 static unsigned int_log2(uint64_t x
)
453 static int64_t normalized_value(int64_t x
, int64_t n
, int64_t sum
, int64_t qd
)
457 return 100 * (n
* x
- sum
) / (int64_t)int_sqrt(n
* qd
);
460 static long compute_num_played_score(struct afs_info
*afsi
)
462 return -normalized_value(afsi
->num_played
, statistics
.num
,
463 statistics
.num_played_sum
, statistics
.num_played_qd
);
466 static long compute_last_played_score(struct afs_info
*afsi
)
468 return -normalized_value(afsi
->last_played
, statistics
.num
,
469 statistics
.last_played_sum
, statistics
.last_played_qd
);
472 static long compute_dynamic_score(const struct osl_row
*aft_row
)
474 struct afs_info afsi
;
475 int64_t score
, nscore
= 0, lscore
= 0;
478 ret
= get_afsi_of_row(aft_row
, &afsi
);
481 nscore
= compute_num_played_score(&afsi
);
482 lscore
= compute_last_played_score(&afsi
);
483 score
= nscore
+ lscore
;
487 static int add_afs_statistics(const struct osl_row
*row
)
490 struct afs_info afsi
;
493 ret
= get_afsi_of_row(row
, &afsi
);
497 x
= afsi
.last_played
;
498 s
= statistics
.last_played_sum
;
500 statistics
.last_played_qd
+= (x
- s
/ n
) * (x
- s
/ n
) * n
/ (n
+ 1);
501 statistics
.last_played_sum
+= x
;
504 s
= statistics
.num_played_sum
;
506 statistics
.num_played_qd
+= (x
- s
/ n
) * (x
- s
/ n
) * n
/ (n
+ 1);
507 statistics
.num_played_sum
+= x
;
512 static int del_afs_statistics(const struct osl_row
*row
)
514 uint64_t n
, s
, q
, a
, new_s
;
515 struct afs_info afsi
;
517 ret
= get_afsi_of_row(row
, &afsi
);
523 memset(&statistics
, 0, sizeof(statistics
));
527 s
= statistics
.last_played_sum
;
528 q
= statistics
.last_played_qd
;
529 a
= afsi
.last_played
;
531 statistics
.last_played_sum
= new_s
;
532 statistics
.last_played_qd
= q
+ s
* s
/ n
- a
* a
533 - new_s
* new_s
/ (n
- 1);
535 s
= statistics
.num_played_sum
;
536 q
= statistics
.num_played_qd
;
539 statistics
.num_played_sum
= new_s
;
540 statistics
.num_played_qd
= q
+ s
* s
/ n
- a
* a
541 - new_s
* new_s
/ (n
- 1);
548 * Structure used during mood_open().
550 * At mood open time, we look at each file in the audio file table in order to
551 * determine whether it is admissible. If a file happens to be admissible, its
552 * mood score is computed by calling each relevant mood_score_function. Next,
553 * we update the afs_statistics and add a struct admissible_file_info to a
556 * If all files have been processed that way, the final score of each
557 * admissible file is computed by adding the dynamic score (which depends on
558 * the afs_statistics) to the mood score. Finally, all audio files in the
559 * array are added to the score table and the admissible array is freed.
561 * \sa mood_method, admissible_array.
563 struct admissible_file_info
565 /** The admissible audio file. */
566 struct osl_row
*aft_row
;
571 /** The temporary array of admissible files. */
572 struct admissible_array
{
573 /** Files are admissible wrt. this mood. */
575 /** The size of the array */
577 /** Pointer to the array of admissible files. */
578 struct admissible_file_info
*array
;
582 * Add an entry to the array of admissible files.
584 * \param aft_row The audio file to be added.
585 * \param private_data Pointer to a struct admissible_file_info.
587 * \return 1 if row admissible, 0 if not, negative on errors.
589 static int add_if_admissible(struct osl_row
*aft_row
, void *data
)
591 struct admissible_array
*aa
= data
;
595 ret
= compute_mood_score(aft_row
, aa
->m
, &score
);
598 if (statistics
.num
>= aa
->size
) {
601 aa
->array
= para_realloc(aa
->array
,
602 aa
->size
* sizeof(struct admissible_file_info
));
604 aa
->array
[statistics
.num
].aft_row
= aft_row
;
605 aa
->array
[statistics
.num
].score
= score
;
606 ret
= add_afs_statistics(aft_row
);
613 * Compute the new quadratic deviation in case one element changes.
615 * \param n Number of elements.
616 * \param old_qd The quadratic deviation before the change.
617 * \param old_val The value that was replaced.
618 * \param new_val The replacement value.
619 * \param old_sum The sum of all elements before the update.
621 * \return The new quadratic deviation resulting from replacing old_val
624 * Given n real numbers a_1, ..., a_n, their sum S = a_1 + ... + a_n,
625 * their quadratic deviation
627 * q = (a_1 - S/n)^2 + ... + (a_n - S/n)^2,
629 * and a real number b, the quadratic deviation q' of a_1,...a_{n-1}, b (ie.
630 * the last number a_n was replaced by b) may be computed in O(1) time in terms
631 * of n, q, a_n, b, and S as
633 * q' = q + d * s - (2 * S + d) * d / n,
635 * where d = b - a_n, and s = b + a_n.
637 * Example: n = 3, a_1 = 3, a_2 = 5, a_3 = 7, b = 10. Then S = 15, q = 8, d = 3,
640 * q + d * s - (2 * S + d) * d / n = 8 + 51 - 33 = 26,
642 * which equals q' = (3 - 6)^2 + (5 - 6)^2 + (10 - 6)^2.
645 _static_inline_
int64_t update_quadratic_deviation(int64_t n
, int64_t old_qd
,
646 int64_t old_val
, int64_t new_val
, int64_t old_sum
)
648 int64_t delta
= new_val
- old_val
;
649 int64_t sigma
= new_val
+ old_val
;
650 return old_qd
+ delta
* sigma
- (2 * old_sum
+ delta
) * delta
/ n
;
653 static int update_afs_statistics(struct afs_info
*old_afsi
, struct afs_info
*new_afsi
)
656 int ret
= get_num_admissible_files(&n
);
662 statistics
.last_played_qd
= update_quadratic_deviation(n
,
663 statistics
.last_played_qd
, old_afsi
->last_played
,
664 new_afsi
->last_played
, statistics
.last_played_sum
);
665 statistics
.last_played_sum
+= new_afsi
->last_played
- old_afsi
->last_played
;
667 statistics
.num_played_qd
= update_quadratic_deviation(n
,
668 statistics
.num_played_qd
, old_afsi
->num_played
,
669 new_afsi
->num_played
, statistics
.num_played_sum
);
670 statistics
.num_played_sum
+= new_afsi
->num_played
- old_afsi
->num_played
;
674 static int add_to_score_table(const struct osl_row
*aft_row
, long mood_score
)
676 long score
= (compute_dynamic_score(aft_row
) + mood_score
) / 3;
677 return score_add(aft_row
, score
);
680 static int delete_from_statistics_and_score_table(const struct osl_row
*aft_row
)
682 int ret
= del_afs_statistics(aft_row
);
685 return score_delete(aft_row
);
689 * Delete one entry from the statistics and from the score table.
691 * \param aft_row The audio file which is no longer admissible.
693 * \return Positive on success, negative on errors.
695 * \sa score_delete().
697 static int mood_delete_audio_file(const struct osl_row
*aft_row
)
701 ret
= row_belongs_to_score_table(aft_row
, NULL
);
704 if (!ret
) /* not admissible, nothing to do */
706 return delete_from_statistics_and_score_table(aft_row
);
710 * Compute the new score of an audio file wrt. the current mood.
712 * \param aft_row Determines the audio file.
713 * \param old_afsi The audio file selector info before updating.
715 * The \a old_afsi argument may be \p NULL which indicates that no changes to
716 * the audio file info were made.
718 * \return Positive on success, negative on errors.
720 static int mood_update_audio_file(const struct osl_row
*aft_row
,
721 struct afs_info
*old_afsi
)
724 int ret
, is_admissible
, was_admissible
= 0;
725 struct afs_info afsi
;
729 return 1; /* nothing to do */
730 ret
= row_belongs_to_score_table(aft_row
, &rank
);
733 was_admissible
= ret
;
734 ret
= compute_mood_score(aft_row
, current_mood
, &score
);
737 is_admissible
= (ret
> 0);
738 if (!was_admissible
&& !is_admissible
)
740 if (was_admissible
&& !is_admissible
)
741 return delete_from_statistics_and_score_table(aft_row
);
742 if (!was_admissible
&& is_admissible
) {
743 ret
= add_afs_statistics(aft_row
);
746 return add_to_score_table(aft_row
, score
);
749 ret
= get_afsi_of_row(aft_row
, &afsi
);
753 ret
= update_afs_statistics(old_afsi
, &afsi
);
757 score
+= compute_num_played_score(&afsi
);
758 score
+= compute_last_played_score(&afsi
);
760 PARA_DEBUG_LOG("score: %li\n", score
);
761 percent
= (score
+ 100) / 3;
764 else if (percent
< 0)
766 PARA_DEBUG_LOG("moving from rank %u to %lu%%\n", rank
, percent
);
767 return score_update(aft_row
, percent
);
770 static void log_statistics(void)
772 unsigned n
= statistics
.num
;
775 PARA_NOTICE_LOG("no admissible files\n");
778 PARA_INFO_LOG("last_played mean: %lli, last_played sigma: %llu\n",
779 (long long int)(statistics
.last_played_sum
/ n
),
780 (long long unsigned)int_sqrt(statistics
.last_played_qd
/ n
));
781 PARA_INFO_LOG("num_played mean: %lli, num_played sigma: %llu\n",
782 (long long int)statistics
.num_played_sum
/ n
,
783 (long long unsigned)int_sqrt(statistics
.num_played_qd
/ n
));
787 * Close the current mood.
789 * Free all resources of the current mood which were allocated during
792 void close_current_mood(void)
794 destroy_mood(current_mood
);
796 memset(&statistics
, 0, sizeof(statistics
));
800 * Change the current mood.
802 * \param mood_name The name of the mood to open.
804 * If \a mood_name is \a NULL, load the dummy mood that accepts every audio file
805 * and uses a scoring method based only on the \a last_played information.
807 * If there is already an open mood, it will be closed first.
809 * \return Positive on success, negative on errors. Loading the dummy mood
812 * \sa struct admissible_file_info, struct admissible_array, struct
813 * afs_info::last_played, mood_close().
815 int change_current_mood(char *mood_name
)
818 struct admissible_array aa
= {
826 struct osl_object obj
= {
828 .size
= strlen(mood_name
) + 1
830 ret
= osl(osl_get_row(moods_table
, BLOBCOL_NAME
, &obj
, &row
));
832 PARA_NOTICE_LOG("no such mood: %s\n", mood_name
);
835 ret
= load_mood(row
, &m
);
838 close_current_mood();
841 close_current_mood();
842 current_mood
= alloc_new_mood("dummy");
845 PARA_NOTICE_LOG("computing statistics of admissible files\n");
846 ret
= audio_file_loop(&aa
, add_if_admissible
);
850 PARA_INFO_LOG("%d admissible files \n", statistics
.num
);
851 for (i
= 0; i
< statistics
.num
; i
++) {
852 struct admissible_file_info
*a
= aa
.array
+ i
;
853 ret
= add_to_score_table(a
->aft_row
, a
->score
);
857 PARA_NOTICE_LOG("loaded mood %s\n", current_mood
->name
);
858 ret
= statistics
.num
;
864 * Close and re-open the current mood.
866 * This function is used if changes to the audio file table or the
867 * attribute table were made that render the current list of admissible
868 * files useless. For example, if an attribute is removed from the
869 * attribute table, this function is called.
871 * \return Positive on success, negative on errors. If no mood is currently
872 * open, the function returns success.
874 * \sa mood_open(), mood_close().
876 int reload_current_mood(void)
879 char *mood_name
= NULL
;
883 PARA_NOTICE_LOG("reloading %s\n", current_mood
->name
?
884 current_mood
->name
: "(dummy)");
885 if (current_mood
->name
)
886 mood_name
= para_strdup(current_mood
->name
);
887 close_current_mood();
888 ret
= change_current_mood(mood_name
);
893 int moods_event_handler(enum afs_events event
, __a_unused
struct para_buffer
*pb
,
900 * The three blob events might change the set of admissible files,
901 * so we must reload the score list.
906 if (data
== moods_table
|| data
== playlists_table
)
907 return 1; /* no reload necessary for these */
908 return reload_current_mood();
909 /* these also require reload of the score table */
911 case ATTRIBUTE_REMOVE
:
912 case ATTRIBUTE_RENAME
:
913 return reload_current_mood();
914 /* changes to the aft only require to re-examine the audio file */
916 struct afsi_change_event_data
*aced
= data
;
917 return mood_update_audio_file(aced
->aft_row
, aced
->old_afsi
);
920 case AUDIO_FILE_RENAME
:
922 return mood_update_audio_file(data
, NULL
);
923 case AUDIO_FILE_REMOVE
:
924 return mood_delete_audio_file(data
);