configure.ac, server/Makefile.am: Refactor GStreamer autoconfery.
[disorder] / plugins / notify.c
1 /*
2 * This file is part of DisOrder.
3 * Copyright (C) 2004, 2005, 2007, 2008 Richard Kettlewell
4 *
5 * This program is free software: you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation, either version 3 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program. If not, see <http://www.gnu.org/licenses/>.
17 */
18 /** @file plugins/notify.c
19 * @brief Standard notify plugin
20 *
21 * The arrangements here are not very satisfactory - you wanted to be
22 * able to replace the plugin but still keep its features. So you
23 * wanted a list of plugins really.
24 */
25
26 #include "common.h"
27
28 #include <stddef.h>
29 #include <stdlib.h>
30 #include <time.h>
31
32 #include <disorder.h>
33
34 static void record(const char *track, const char *what) {
35 const char *count;
36 int ncount;
37 char buf[64];
38
39 if((count = disorder_track_get_data(track, what)))
40 ncount = atoi(count);
41 else
42 ncount = 0;
43 disorder_snprintf(buf, sizeof buf, "%d", ncount + 1);
44 disorder_track_set_data(track, what, buf);
45 }
46
47 void disorder_notify_play(const char *track,
48 const char *submitter) {
49 char buf[64];
50
51 if(submitter)
52 record(track, "requested");
53 record(track, "played");
54 disorder_snprintf(buf, sizeof buf, "%"PRIdMAX, (intmax_t)time(0));
55 disorder_track_set_data(track, "played_time", buf);
56 }
57
58 void disorder_notify_queue(const char attribute((unused)) *track,
59 const char attribute((unused)) *submitter) {
60 }
61
62 void disorder_notify_scratch(const char *track,
63 const char attribute((unused)) *submitter,
64 const char attribute((unused)) *scratcher,
65 int attribute((unused)) seconds) {
66 record(track, "scratched");
67 }
68
69 void disorder_notify_not_scratched(const char *track,
70 const char attribute((unused)) *submitter) {
71 record(track, "unscratched");
72 }
73
74 void disorder_notify_queue_remove(const char attribute((unused)) *track,
75 const char attribute((unused)) *remover) {
76 }
77
78 void disorder_notify_queue_move(const char attribute((unused)) *track,
79 const char attribute((unused)) *mover) {
80 }
81
82 void disorder_notify_pause(const char attribute((unused)) *track,
83 const char attribute((unused)) *who) {
84 }
85
86 void disorder_notify_resume(const char attribute((unused)) *track,
87 const char attribute((unused)) *who) {
88 }
89
90 /*
91 Local Variables:
92 c-basic-offset:2
93 comment-column:40
94 End:
95 */