]> git.tuebingen.mpg.de Git - paraslash.git/blobdiff - mood.c
mood.c: Use current_mood as data pointer for parse_mood_line().
[paraslash.git] / mood.c
diff --git a/mood.c b/mood.c
index decc77fc74f407b901ac13b59e18afe32da308e5..8d257e0cd9768b4b3fb6000cf76f6e7edb2039ab 100644 (file)
--- a/mood.c
+++ b/mood.c
@@ -1,3 +1,11 @@
+/*
+ * Copyright (C) 2007 Andre Noll <maan@systemlinux.org>
+ *
+ * Licensed under the GPL v2. For licencing details see COPYING.
+ */
+
+/** \file mood.c Paraslash's mood handling functions. */
+
 #include "para.h"
 #include "error.h"
 #include "afh.h"
@@ -5,8 +13,6 @@
 #include "list.h"
 #include "string.h"
 
-/** \file mood.c Paraslash's mood handling functions. */
-
 /**
  * Contains statistical data of the currently admissible audio files.
  *
@@ -237,7 +243,7 @@ static int mm_is_set_score_function(const struct osl_row *row, void *bitnum)
 }
 
 /* returns 1 if row matches score item, -1 otherwise */
-static int add_item_score(const void *row, struct mood_item *item, long *score,
+static int add_item_score(const struct osl_row *row, struct mood_item *item, long *score,
                long *score_arg_sum)
 {
        int ret = 100;
@@ -255,7 +261,7 @@ static int add_item_score(const void *row, struct mood_item *item, long *score,
        return 1;
 }
 
-static int compute_mood_score(const void *row, long *result)
+static int compute_mood_score(const struct osl_row *row, long *result)
 {
        struct mood_item *item;
        int match = 0;
@@ -358,9 +364,9 @@ enum mood_line_type {
  * all matching files
  */
 
-/* TODO: Use current_mood as private_data*/
-static int parse_mood_line(char *mood_line, __a_unused void *private_data)
+static int parse_mood_line(char *mood_line, void *data)
 {
+       struct mood *m = data;
        char **argv;
        char *delim = " \t";
        unsigned num_words;
@@ -368,7 +374,6 @@ static int parse_mood_line(char *mood_line, __a_unused void *private_data)
        int i, ret;
        enum mood_line_type mlt = ML_INVALID;
        struct mood_item *mi = NULL;
-       struct mood *m = current_mood;
        char *buf = para_strdup(mood_line);
 
        num_words = split_args(buf, &argv, delim);
@@ -469,7 +474,7 @@ out:
        return ret;
 }
 
-static int load_mood(const void *row)
+static int load_mood(const struct osl_row *row)
 {
        int ret;
        struct mood *new_mood, *old_mood = current_mood;
@@ -486,7 +491,7 @@ static int load_mood(const void *row)
        new_mood = alloc_new_mood((char*)objs[BLOBCOL_NAME].data);
        current_mood = new_mood;
        ret = for_each_line_ro(objs[BLOBCOL_DEF].data, objs[BLOBCOL_DEF].size,
-               parse_mood_line, NULL);
+               parse_mood_line, &current_mood);
        osl_close_disk_object(&objs[BLOBCOL_DEF]);
        if (ret < 0) {
                PARA_ERROR_LOG("unable to load mood %s: %d\n",
@@ -651,7 +656,7 @@ static int del_afs_statistics(const struct osl_row *row)
 struct admissible_file_info
 {
        /** The admissible audio file. */
-       void *aft_row;
+       struct osl_row *aft_row;
        /** Its score. */
        long score;
 };
@@ -840,13 +845,13 @@ int mood_update_audio_file(const struct osl_row *aft_row, struct afs_info *old_a
        score += compute_num_played_score(&afsi);
        score += compute_last_played_score(&afsi);
        score /= 3;
-       PARA_NOTICE_LOG("score: %li\n", score);
+       PARA_DEBUG_LOG("score: %li\n", score);
        percent = (score + 100) / 3;
        if (percent > 100)
                percent = 100;
        else if (percent < 0)
                percent = 0;
-       PARA_NOTICE_LOG("re-inserting at %lu%%\n", percent);
+       PARA_DEBUG_LOG("re-inserting at %lu%%\n", percent);
        return score_update(aft_row, percent);
 }
 
@@ -858,10 +863,12 @@ static void log_statistics(void)
                PARA_NOTICE_LOG("no admissible files\n");
                return;
        }
-       PARA_NOTICE_LOG("last_played mean: %lli, last_played sigma: %lli\n",
-               statistics.last_played_sum / n, int_sqrt(statistics.last_played_qd / n));
-       PARA_NOTICE_LOG("num_played mean: %lli, num_played sigma: %lli\n",
-               statistics.num_played_sum / n, int_sqrt(statistics.num_played_qd / n));
+       PARA_NOTICE_LOG("last_played mean: %lli, last_played sigma: %llu\n",
+               (long long int)(statistics.last_played_sum / n),
+               (long long unsigned)int_sqrt(statistics.last_played_qd / n));
+       PARA_NOTICE_LOG("num_played mean: %lli, num_played sigma: %llu\n",
+               (long long int)statistics.num_played_sum / n,
+               (long long unsigned)int_sqrt(statistics.num_played_qd / n));
 }
 
 /**