chiark / gitweb /
Doxygen-clean
[disorder] / plugins / notify.c
CommitLineData
460b9539 1/*
2 * This file is part of DisOrder.
5aff007d 3 * Copyright (C) 2004, 2005, 2007, 2008 Richard Kettlewell
460b9539 4 *
e7eb3a27 5 * This program is free software: you can redistribute it and/or modify
460b9539 6 * it under the terms of the GNU General Public License as published by
e7eb3a27 7 * the Free Software Foundation, either version 3 of the License, or
460b9539 8 * (at your option) any later version.
9 *
e7eb3a27
RK
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 *
460b9539 15 * You should have received a copy of the GNU General Public License
e7eb3a27 16 * along with this program. If not, see <http://www.gnu.org/licenses/>.
460b9539 17 */
18
05b75f8d 19#include "common.h"
460b9539 20
21#include <stddef.h>
460b9539 22#include <stdlib.h>
23#include <time.h>
24
25#include <disorder.h>
26
27static void record(const char *track, const char *what) {
28 const char *count;
29 int ncount;
30 char buf[64];
31
32 if((count = disorder_track_get_data(track, what)))
33 ncount = atoi(count);
34 else
35 ncount = 0;
36 disorder_snprintf(buf, sizeof buf, "%d", ncount + 1);
37 disorder_track_set_data(track, what, buf);
38}
39
40void disorder_notify_play(const char *track,
41 const char *submitter) {
42 char buf[64];
43
44 if(submitter)
45 record(track, "requested");
46 record(track, "played");
47 disorder_snprintf(buf, sizeof buf, "%"PRIdMAX, (intmax_t)time(0));
48 disorder_track_set_data(track, "played_time", buf);
49}
50
51void disorder_notify_queue(const char attribute((unused)) *track,
52 const char attribute((unused)) *submitter) {
53}
54
55void disorder_notify_scratch(const char *track,
56 const char attribute((unused)) *submitter,
57 const char attribute((unused)) *scratcher,
58 int attribute((unused)) seconds) {
59 record(track, "scratched");
60}
61
62void disorder_notify_not_scratched(const char *track,
63 const char attribute((unused)) *submitter) {
64 record(track, "unscratched");
65}
66
67void disorder_notify_queue_remove(const char attribute((unused)) *track,
68 const char attribute((unused)) *remover) {
69}
70
71void disorder_notify_queue_move(const char attribute((unused)) *track,
72 const char attribute((unused)) *mover) {
73}
74
75void disorder_notify_pause(const char attribute((unused)) *track,
76 const char attribute((unused)) *who) {
77}
78
79void disorder_notify_resume(const char attribute((unused)) *track,
80 const char attribute((unused)) *who) {
81}
82
83/*
84Local Variables:
85c-basic-offset:2
86comment-column:40
87End:
88*/