Add Media Plugin
[src/app-framework-binder.git] / plugins / media / media-rygel.h
1 /*
2  * Copyright (C) 2016 "IoT.bzh"
3  * Author "Manuel Bachmann"
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
19 #ifndef MEDIA_RYGEL_H
20 #define MEDIA_RYGEL_H
21
22 /* --------------- MEDIA RYGEL DEFINITIONS ------------------ */
23
24 #include <sys/time.h>
25 #include <libgupnp/gupnp-control-point.h>
26
27 #include "local-def.h"
28
29 #define URN_MEDIA_SERVER "urn:schemas-upnp-org:device:MediaServer:1"
30 #define URN_CONTENT_DIR  "urn:schemas-upnp-org:service:ContentDirectory"
31
32 typedef struct dev_ctx dev_ctx_T;
33
34 struct dev_ctx {
35     GMainContext *loop;
36     GUPnPContext *context;
37     GUPnPDeviceInfo *device_info;
38     GUPnPServiceInfo *content_dir;
39     char *content_res;
40 };
41
42 STATIC void _rygel_device_cb (GUPnPControlPoint *, GUPnPDeviceProxy *, gpointer);
43 STATIC void _rygel_content_cb (GUPnPServiceProxy *, GUPnPServiceProxyAction *, gpointer);
44
45 static struct dev_ctx **dev_ctx = NULL;
46 static unsigned int client_count = 0;
47
48 #endif /* MEDIA_RYGEL_H */