da028c13dd0a4a98e67aed83c2a70ec0e5f6a3e0
[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_MEDIA_RENDERER "urn:schemas-upnp-org:device:MediaRenderer:1"
31 #define URN_CONTENT_DIR    "urn:schemas-upnp-org:service:ContentDirectory"
32 #define URN_AV_TRANSPORT   "urn:schemas-upnp-org:service:AVTransport"
33
34 typedef enum { PLAY, PAUSE, STOP } State;
35 typedef struct dev_ctx dev_ctx_T;
36
37 struct dev_ctx {
38     GMainContext *loop;
39     GUPnPContext *context;
40     GUPnPDeviceInfo *device_info;
41     GUPnPServiceInfo *content_dir;
42     GUPnPServiceInfo *av_transport;
43     char *content_res;
44     int content_num;
45     State state;
46     State target_state;
47 };
48
49 STATIC char* _rygel_list_raw (dev_ctx_T *, unsigned int *);
50 STATIC char* _rygel_find_id_for_index (dev_ctx_T *, char *, unsigned int);
51 STATIC char* _rygel_find_metadata_for_id (dev_ctx_T *, char *);
52 STATIC char* _rygel_find_uri_for_metadata (dev_ctx_T *, char *);
53 STATIC unsigned char _rygel_start_doing (dev_ctx_T *, char *, char *, State);
54 STATIC unsigned char _rygel_find_av_transport (dev_ctx_T *);
55 STATIC void _rygel_device_cb (GUPnPControlPoint *, GUPnPDeviceProxy *, gpointer);
56 STATIC void _rygel_av_transport_cb (GUPnPControlPoint *, GUPnPDeviceProxy *, gpointer);
57 STATIC void _rygel_content_cb (GUPnPServiceProxy *, GUPnPServiceProxyAction *, gpointer);
58 STATIC void _rygel_metadata_cb (GUPnPServiceProxy *, GUPnPServiceProxyAction *, gpointer);
59 STATIC void _rygel_select_cb (GUPnPServiceProxy *, GUPnPServiceProxyAction *, gpointer);
60 STATIC void _rygel_do_cb (GUPnPServiceProxy *, GUPnPServiceProxyAction *, gpointer);
61
62 static unsigned int client_count = 0;
63 static struct dev_ctx **dev_ctx = NULL;
64
65 #endif /* MEDIA_RYGEL_H */