]> git.tuebingen.mpg.de Git - paraslash.git/blob - score.c
Remove get_num_admissible_files().
[paraslash.git] / score.c
1 /* Copyright (C) 2007 Andre Noll <maan@tuebingen.mpg.de>, see file COPYING. */
2
3 /** \file score.c Scoring functions to determine the audio file streaming order. */
4 #include <regex.h>
5 #include <osl.h>
6 #include <lopsub.h>
7
8 #include "para.h"
9 #include "error.h"
10 #include "string.h"
11 #include "afh.h"
12 #include "afs.h"
13 #include "list.h"
14
15 static struct osl_table *score_table;
16
17 static int ptr_compare(const struct osl_object *obj1, const struct osl_object *obj2)
18 {
19         void *d1 = *(void **)obj1->data;
20         void *d2 = *(void **)obj2->data;
21         return NUM_COMPARE(d1, d2);
22 }
23
24 /*
25  * This function first compares the score values. If they are equal, the
26  * addresses of the two objects are compared. Thus, the function returns
27  * "equal" only if the two objects alias each other, i.e., point to the same
28  * memory address.
29  */
30 static int score_compare(const struct osl_object *obj1, const struct osl_object *obj2)
31 {
32         long d1 = *(long *)obj1->data;
33         long d2 = *(long *)obj2->data;
34         int ret = NUM_COMPARE(d2, d1);
35
36         if (ret)
37                 return ret;
38         return NUM_COMPARE(obj2->data, obj1->data);
39 }
40
41 /**
42  * The score table consists of two columns: The \a aft_row column contains
43  * pointers to the rows of the audio file table,  and the score column contains
44  * the current score of the audio file associated with that row.
45  */
46 enum score_table_columns {
47         /** The row of the audio file. */
48         SCORECOL_AFT_ROW,
49         /** The score */
50         SCORECOL_SCORE,
51         /** This table has two columns */
52         NUM_SCORE_COLUMNS
53 };
54
55 static struct osl_column_description score_cols[] = {
56         [SCORECOL_AFT_ROW] = {
57                 .storage_type = OSL_NO_STORAGE,
58                 .storage_flags = OSL_RBTREE | OSL_FIXED_SIZE | OSL_UNIQUE | OSL_DONT_FREE,
59                 .name = "aft_row",
60                 .compare_function = ptr_compare,
61                 .data_size = sizeof(void *)
62         },
63         [SCORECOL_SCORE] = {
64                 .storage_type = OSL_NO_STORAGE,
65                 .storage_flags = OSL_RBTREE | OSL_FIXED_SIZE | OSL_UNIQUE,
66                 .name = "score",
67                 .compare_function = score_compare,
68                 .data_size = sizeof(long)
69         }
70 };
71
72 static struct osl_table_description score_table_desc = {
73         .name = "score",
74         .num_columns = NUM_SCORE_COLUMNS,
75         .flags = 0,
76         .column_descriptions = score_cols
77 };
78
79 /* On errors (negative return value) the content of score is undefined. */
80 static int get_score_of_row(void *score_row, long *score)
81 {
82         struct osl_object obj;
83         int ret = osl(osl_get_object(score_table, score_row, SCORECOL_SCORE, &obj));
84
85         if (ret >= 0)
86                 *score = *(long *)obj.data;
87         return ret;
88 }
89
90 /**
91  * Add an entry to the table of admissible files.
92  *
93  * \param aft_row The audio file to be added.
94  * \param score The score for this file.
95  *
96  * \return The return value of the underlying call to osl_add_row().
97  */
98 int score_add(const struct osl_row *aft_row, long score)
99 {
100         int ret;
101         struct osl_object score_objs[NUM_SCORE_COLUMNS];
102         size_t size;
103
104         assert(aft_row);
105         size = score_table_desc.column_descriptions[SCORECOL_AFT_ROW].data_size;
106         score_objs[SCORECOL_AFT_ROW].data = (struct osl_row *)aft_row;
107         score_objs[SCORECOL_AFT_ROW].size = size;
108
109         size = score_table_desc.column_descriptions[SCORECOL_SCORE].data_size;
110         score_objs[SCORECOL_SCORE].data = alloc(size);
111         score_objs[SCORECOL_SCORE].size = size;
112         *(long *)(score_objs[SCORECOL_SCORE].data) = score;
113
114 //      PARA_DEBUG_LOG("adding %p\n", *(void **) (score_objs[SCORECOL_AFT_ROW].data));
115         ret = osl(osl_add_row(score_table, score_objs));
116         if (ret < 0) {
117                 PARA_ERROR_LOG("%s\n", para_strerror(-ret));
118                 free(score_objs[SCORECOL_SCORE].data);
119         }
120         return ret;
121 }
122
123 /**
124  * Replace a row of the score table.
125  *
126  * \param aft_row Determines the audio file to change.
127  * \param percent The position to re-insert the audio file.
128  *
129  * The percent parameter must be between 0 and 100. A value of zero means to
130  * re-insert the audio file into the score table with a score lower than any
131  * other admissible file.
132  *
133  * \return Positive on success, negative on errors.
134  */
135 int score_update(const struct osl_row *aft_row, long percent)
136 {
137         struct osl_row *row, *rrow; /* score row, reference row */
138         long new_score;
139         unsigned n, new_pos;
140         struct osl_object obj = {.data = (struct osl_row *)aft_row,
141                 .size = sizeof(aft_row)};
142         int ret = osl(osl_get_row(score_table, SCORECOL_AFT_ROW, &obj, &row));
143
144         if (ret == -OSL_ERRNO_TO_PARA_ERROR(E_OSL_RB_KEY_NOT_FOUND)) /* not an error */
145                 return 1;
146         if (ret < 0)
147                 return ret;
148         ret = osl(osl_get_num_rows(score_table, &n));
149         if (ret < 0)
150                 return ret;
151         new_pos = 1 + (n - 1) * percent / 100;
152         ret = osl(osl_get_nth_row(score_table, SCORECOL_SCORE, new_pos, &rrow));
153         if (ret < 0)
154                 return ret;
155         ret = get_score_of_row(rrow, &new_score);
156         if (ret < 0)
157                 return ret;
158         new_score--;
159         obj.size = sizeof(long);
160         obj.data = alloc(obj.size);
161         *(long *)obj.data = new_score;
162         PARA_DEBUG_LOG("new score: %ld, rank %u/%u\n", new_score, new_pos, n);
163         return osl(osl_update_object(score_table, row, SCORECOL_SCORE, &obj));
164 }
165
166 /**
167  * Given an admissible file, get the corresponding row in the aft and the score.
168  *
169  * \param score_row Determines the admissible file.
170  * \param score Result pointer.
171  * \param aft_row Result pointer.
172  *
173  * \return Standard.
174  */
175 int get_score_and_aft_row(struct osl_row *score_row, long *score,
176                 struct osl_row **aft_row)
177 {
178         struct osl_object obj;
179         int ret = get_score_of_row(score_row, score);
180
181         if (ret < 0)
182                 return ret;
183         ret = osl(osl_get_object(score_table, score_row, SCORECOL_AFT_ROW, &obj));
184         if (ret < 0)
185                 return ret;
186         *aft_row = obj.data;
187         return 1;
188 }
189
190 static int get_score_row_from_aft_row(const struct osl_row *aft_row,
191                 struct osl_row **score_row)
192 {
193         struct osl_object obj = {.data = (struct osl_row *)aft_row,
194                 .size = sizeof(aft_row)};
195         return osl(osl_get_row(score_table, SCORECOL_AFT_ROW, &obj, score_row));
196 }
197
198 /**
199  * Loop over all files in the score table.
200  *
201  * \param data A pointer to arbitrary data.
202  * \param func Function to be called for each admissible file.
203  *
204  * \return The return value of the underlying call to osl_rbtree_loop().
205  *
206  * This is used for the ls command. The \a data parameter is passed as the
207  * second argument to \a func.
208  */
209 int admissible_file_loop(void *data, osl_rbtree_loop_func *func)
210 {
211         return osl(osl_rbtree_loop(score_table, SCORECOL_SCORE, data, func));
212 }
213
214 /**
215  * Get the admissible audio file with highest score.
216  *
217  * \param aft_row Points to the row in the aft of the "best" audio file.
218  * \param score Highest score value in the score table.
219  *
220  * \return Standard.
221  */
222 int score_get_best(struct osl_row **aft_row, long *score)
223 {
224         struct osl_row *row;
225         struct osl_object obj;
226         int ret = osl(osl_rbtree_last_row(score_table, SCORECOL_SCORE, &row));
227
228         if (ret < 0)
229                 return ret;
230         ret = osl(osl_get_object(score_table, row, SCORECOL_AFT_ROW, &obj));
231         if (ret < 0)
232                 return ret;
233         *aft_row = obj.data;
234         return get_score_of_row(row, score);
235 }
236
237 /**
238  * Remove an entry from the rbtree of admissible files.
239  *
240  * \param aft_row The file which is no longer admissible.
241  *
242  * \return Standard.
243  *
244  * \sa \ref score_add().
245  */
246 int score_delete(const struct osl_row *aft_row)
247 {
248         struct osl_row *score_row;
249         int ret = get_score_row_from_aft_row(aft_row, &score_row);
250
251         if (ret < 0)
252                 return ret;
253         return osl(osl_del_row(score_table, score_row));
254 }
255
256 /**
257  * Find out whether an audio file is contained in the score table.
258  *
259  * \param aft_row The row of the audio file table.
260  * \param rank Result pointer
261  *
262  * \return Positive, if \a aft_row belongs to the audio file table,
263  * zero if not, negative on errors. If \a aft_row was found, and \a rank
264  * is not \p NULL, the rank of \a aft_row is returned in \a rank.
265  */
266 int row_belongs_to_score_table(const struct osl_row *aft_row, unsigned *rank)
267 {
268         struct osl_row *score_row;
269         int ret = get_score_row_from_aft_row(aft_row, &score_row);
270
271         if (ret == -OSL_ERRNO_TO_PARA_ERROR(E_OSL_RB_KEY_NOT_FOUND))
272                 return 0;
273         if (ret < 0)
274                 return ret;
275         if (!rank)
276                 return 1;
277         ret = osl(osl_get_rank(score_table, score_row, SCORECOL_SCORE, rank));
278         if (ret < 0)
279                 return ret;
280         return 1;
281 }
282
283 static void score_close(void)
284 {
285         osl_close_table(score_table, OSL_FREE_VOLATILE);
286         score_table = NULL;
287 }
288
289 static int score_open(__a_unused const char *dir)
290 {
291         return osl(osl_open_table(&score_table_desc, &score_table));
292 }
293
294 /**
295  * Remove all entries from the score table, but keep the table open.
296  *
297  * \return Standard.
298  */
299 int clear_score_table(void)
300 {
301         score_close();
302         return score_open(NULL);
303 }
304
305 /**
306  * Initialize the scoring subsystem.
307  *
308  * \param t The members of \a t are filled in by the function.
309  */
310 void score_init(struct afs_table *t)
311 {
312         t->name = score_table_desc.name;
313         t->open = score_open;
314         t->close = score_close;
315 }