chiark / gitweb /
Disobedience notices when tracks are adopted now.
[disorder] / server / api-client.c
CommitLineData
460b9539 1/*
2 * This file is part of DisOrder.
5aff007d 3 * Copyright (C) 2004, 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
460b9539 21#include <errno.h>
460b9539 22#include <sys/types.h>
23#include <sys/socket.h>
24#include <locale.h>
25
26#include "client.h"
27#include "mem.h"
28#include "log.h"
29#include "configuration.h"
30#include "disorder.h"
31#include "api-client.h"
32
33static disorder_client *c;
34
35disorder_client *disorder_get_client(void) {
36 if(!c)
37 if(!(c = disorder_new(0))) exit(EXIT_FAILURE);
38 return c;
39}
40
41int disorder_track_exists(const char *track) {
42 int result;
43
44 return disorder_exists(c, track, &result) ? 0 : result;
45}
46
47const char *disorder_track_get_data(const char *track, const char *key) {
48 char *value;
49
50 if(disorder_get(c, track, key, &value)) return 0;
51 return value;
52}
53
54int disorder_track_set_data(const char *track,
55 const char *key,
56 const char *value) {
57 if(value)
58 return disorder_set(c, track, key, value);
59 else
60 return disorder_unset(c, track, key);
61}
62
63/*
64Local Variables:
65c-basic-offset:2
66comment-column:40
67End:
68*/