X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=blobdiff_plain;f=score.c;h=0e18a1b994eb72025619efaecabe05d544f85765;hp=d0799b55650117e00c36401bfd2fb789a3261f85;hb=5d581fbd46a6d1949bfd876aec63041dc6724eb0;hpb=4a14f0f3692f766bf3c6a2df01a6f1e225202ac7 diff --git a/score.c b/score.c index d0799b55..0e18a1b9 100644 --- a/score.c +++ b/score.c @@ -1,5 +1,5 @@ /* - * Copyright (C) 2007 Andre Noll + * Copyright (C) 2007-2008 Andre Noll * * Licensed under the GPL v2. For licencing details see COPYING. */ @@ -7,12 +7,12 @@ /** \file score.c Scoring functions to determine the audio file streaming order. */ #include "para.h" #include "error.h" +#include "string.h" #include "afh.h" #include "afs.h" #include "list.h" -#include "string.h" -static void *score_table; +static struct osl_table *score_table; static int ptr_compare(const struct osl_object *obj1, const struct osl_object *obj2) { @@ -28,7 +28,7 @@ static int ptr_compare(const struct osl_object *obj1, const struct osl_object *o * \param obj2 Pointer to the second score object. * * This function first compares the score values as usual integers. If they compare as - * equal, the addresss of \a obj1 and \a obj2 are compared. So this compare function + * equal, the address of \a obj1 and \a obj2 are compared. So this compare function * returns zero if and only if \a obj1 and \a obj2 point to the same memory area. * * \sa osl_compare_function. @@ -45,7 +45,7 @@ static int score_compare(const struct osl_object *obj1, const struct osl_object } /** - * The score table consists of two colums: The \a aft_row column contains + * The score table consists of two columns: The \a aft_row column contains * pointers to the rows of the audio file table, and the score column contains * the current score of the audio file associated with that row. */ @@ -61,7 +61,7 @@ enum score_table_columns { static struct osl_column_description score_cols[] = { [SCORECOL_AFT_ROW] = { .storage_type = OSL_NO_STORAGE, - .storage_flags = OSL_RBTREE | OSL_FIXED_SIZE | OSL_UNIQUE, + .storage_flags = OSL_RBTREE | OSL_FIXED_SIZE | OSL_UNIQUE | OSL_DONT_FREE, .name = "aft_row", .compare_function = ptr_compare, .data_size = sizeof(void *) @@ -132,9 +132,8 @@ int score_add(const struct osl_row *aft_row, long score) assert(aft_row); size = score_table_desc.column_descriptions[SCORECOL_AFT_ROW].data_size; - score_objs[SCORECOL_AFT_ROW].data = para_malloc(size); + score_objs[SCORECOL_AFT_ROW].data = (struct osl_row *)aft_row; score_objs[SCORECOL_AFT_ROW].size = size; - *(const void **)(score_objs[SCORECOL_AFT_ROW].data) = aft_row; size = score_table_desc.column_descriptions[SCORECOL_SCORE].data_size; score_objs[SCORECOL_SCORE].data = para_malloc(size); @@ -144,8 +143,7 @@ int score_add(const struct osl_row *aft_row, long score) // PARA_DEBUG_LOG("adding %p\n", *(void **) (score_objs[SCORECOL_AFT_ROW].data)); ret = osl_add_row(score_table, score_objs); if (ret < 0) { - PARA_ERROR_LOG("failed to add row: %d\n", ret); - free(score_objs[SCORECOL_AFT_ROW].data); + PARA_ERROR_LOG("%s\n", para_strerror(-ret)); free(score_objs[SCORECOL_SCORE].data); } return ret; @@ -167,7 +165,7 @@ static int get_nth_score(unsigned n, long *score) * \param aft_row Determines the audio file to change. * \param percent The position to re-insert the audio file. * - * The percent paramenter must be between \p 0 and 100 and. A value of zero + * The percent parameter must be between \p 0 and 100 and. A value of zero * means to re-insert the audio file into the score table with a score lower * than any other admissible file. * @@ -180,7 +178,8 @@ int score_update(const struct osl_row *aft_row, long percent) struct osl_row *row; long new_score; unsigned n, new_pos; - struct osl_object obj = {.data = &aft_row, .size = sizeof(void **)}; + struct osl_object obj = {.data = (struct osl_row *)aft_row, + .size = sizeof(aft_row)}; int ret = osl_get_row(score_table, SCORECOL_AFT_ROW, &obj, &row); if (ret < 0) @@ -196,8 +195,7 @@ int score_update(const struct osl_row *aft_row, long percent) obj.size = sizeof(long); obj.data = para_malloc(obj.size); *(long *)obj.data = new_score; - PARA_DEBUG_LOG("new score: %ld, position: %u/%u\n", new_score, - new_pos, n); + PARA_DEBUG_LOG("new score: %ld, rank %u/%u\n", new_score, new_pos, n); return osl_update_object(score_table, row, SCORECOL_SCORE, &obj); } @@ -222,14 +220,15 @@ int get_score_and_aft_row(struct osl_row *score_row, long *score, ret = osl_get_object(score_table, score_row, SCORECOL_AFT_ROW, &obj); if (ret < 0) return ret; - *aft_row = *(void **)obj.data; + *aft_row = obj.data; return 1; } static int get_score_row_from_aft_row(const struct osl_row *aft_row, struct osl_row **score_row) { - struct osl_object obj = {.data = &aft_row, .size = sizeof(void **)}; + struct osl_object obj = {.data = (struct osl_row *)aft_row, + .size = sizeof(aft_row)}; return osl_get_row(score_table, SCORECOL_AFT_ROW, &obj, score_row); } @@ -287,7 +286,7 @@ int score_get_best(struct osl_row **aft_row, long *score) ret = osl_get_object(score_table, row, SCORECOL_AFT_ROW, &obj); if (ret < 0) return ret; - *aft_row = *(void **)obj.data; + *aft_row = obj.data; return get_score_of_row(row, score); } @@ -315,51 +314,75 @@ int score_delete(const struct osl_row *aft_row) * Find out whether an audio file is contained in the score table. * * \param aft_row The row of the audio file table. + * \param rank Result pointer * * \return Positive, if \a aft_row belongs to the audio file table, - * zero if not, negative on errors. + * zero if not, negative on errors. If \a aft_row was found, and \a rank + * is not \p NULL, the rank of \a aft_row is returned in \a rank. */ -int row_belongs_to_score_table(const struct osl_row *aft_row) +int row_belongs_to_score_table(const struct osl_row *aft_row, unsigned *rank) { struct osl_row *score_row; int ret = get_score_row_from_aft_row(aft_row, &score_row); - if (ret >= 0) - return 1; + if (ret == -E_RB_KEY_NOT_FOUND) return 0; - return ret; + if (ret < 0) + return ret; + if (!rank) + return 1; + ret = osl_get_rank(score_table, score_row, SCORECOL_SCORE, rank); + if (ret < 0) + return ret; + return 1; } -/** - * Close the score table. - * - * \param flags Options passed to osl_close_table(). - * - * \sa score_init(). - */ -void score_shutdown(enum osl_close_flags flags) +/* Close the score table. */ +static void score_close(void) { - osl_close_table(score_table, flags | OSL_FREE_VOLATILE); + osl_close_table(score_table, OSL_FREE_VOLATILE); score_table = NULL; } /** - * Init the scoring subsystem. + * Open the score table. * - * \param ti Gets filled in by the function. - * \param db The database directory. + * \param dir Unused. * * \return The return value of the underlying call to osl_open_table(). + */ +static int score_open(__a_unused const char *dir) +{ + score_table_desc.dir = NULL; /* this table has only volatile columns */ + return osl_open_table(&score_table_desc, &score_table); +} + +/** + * Remove all entries from the score table, but keep the table open. * - * \sa score_shutdown(). + * \return Standard. */ -int score_init(struct table_info *ti, const char *db) +int clear_score_table(void) { - score_table_desc.dir = db; - ti->desc = &score_table_desc; - ti->flags = TBLFLAG_SKIP_CREATE; - int ret = osl_open_table(ti->desc, &ti->table); + score_close(); + return score_open(NULL); +} - score_table = ti->table; - return ret; +static int score_event_handler(__a_unused enum afs_events event, + __a_unused struct para_buffer *pb, __a_unused void *data) +{ + return 1; +} + +/** + * Initialize the scoring subsystem. + * + * \param t The members of \a t are filled in by the function. + */ +void score_init(struct afs_table *t) +{ + t->name = score_table_desc.name; + t->open = score_open; + t->close = score_close; + t->event_handler = score_event_handler; }