Implement Media Plugin upload API, update README.md
[src/app-framework-binder.git] / plugins / media / media-rygel.h
index 37fa53c..c70ff5c 100644 (file)
 
 #include <sys/time.h>
 #include <libgupnp/gupnp-control-point.h>
+#include <libgupnp-av/gupnp-av.h>
 
 #include "local-def.h"
 
-#define URN_MEDIA_SERVER "urn:schemas-upnp-org:device:MediaServer:1"
-#define URN_CONTENT_DIR  "urn:schemas-upnp-org:service:ContentDirectory"
+#define URN_MEDIA_SERVER   "urn:schemas-upnp-org:device:MediaServer:1"
+#define URN_MEDIA_RENDERER "urn:schemas-upnp-org:device:MediaRenderer:1"
+#define URN_CONTENT_DIR    "urn:schemas-upnp-org:service:ContentDirectory"
+#define URN_AV_TRANSPORT   "urn:schemas-upnp-org:service:AVTransport"
 
+typedef enum { PLAY, PAUSE, STOP } State;
 typedef struct dev_ctx dev_ctx_T;
 
 struct dev_ctx {
@@ -36,13 +40,32 @@ struct dev_ctx {
     GUPnPContext *context;
     GUPnPDeviceInfo *device_info;
     GUPnPServiceInfo *content_dir;
+    GUPnPServiceInfo *av_transport;
     char *content_res;
+    int content_num;
+    State state;
+    State target_state;
+    char *transfer_path;
+    unsigned char transfer_started;
 };
 
+STATIC char* _rygel_list_raw (dev_ctx_T *, unsigned int *);
+STATIC char* _rygel_find_upload_id (dev_ctx_T *, char *);
+STATIC char* _rygel_find_id_for_index (dev_ctx_T *, char *, unsigned int);
+STATIC char* _rygel_find_metadata_for_id (dev_ctx_T *, char *);
+STATIC char* _rygel_find_uri_for_metadata (dev_ctx_T *, char *);
+STATIC unsigned char _rygel_start_uploading (dev_ctx_T *, char *, char *);
+STATIC unsigned char _rygel_start_doing (dev_ctx_T *, char *, char *, State);
+STATIC unsigned char _rygel_find_av_transport (dev_ctx_T *);
 STATIC void _rygel_device_cb (GUPnPControlPoint *, GUPnPDeviceProxy *, gpointer);
+STATIC void _rygel_av_transport_cb (GUPnPControlPoint *, GUPnPDeviceProxy *, gpointer);
 STATIC void _rygel_content_cb (GUPnPServiceProxy *, GUPnPServiceProxyAction *, gpointer);
+STATIC void _rygel_metadata_cb (GUPnPServiceProxy *, GUPnPServiceProxyAction *, gpointer);
+STATIC void _rygel_select_cb (GUPnPServiceProxy *, GUPnPServiceProxyAction *, gpointer);
+STATIC void _rygel_upload_cb (GUPnPServiceProxy *, GUPnPServiceProxyAction *, gpointer);
+STATIC void _rygel_transfer_cb (GUPnPServiceProxy *, GUPnPServiceProxyAction *, gpointer);
+STATIC void _rygel_do_cb (GUPnPServiceProxy *, GUPnPServiceProxyAction *, gpointer);
 
-static gint handler_cb;
 static unsigned int client_count = 0;
 static struct dev_ctx **dev_ctx = NULL;