Add handling for recording minuatures
authorMarten Richter <marten.richter@freenet.de>
Sat, 30 Aug 2014 17:21:39 +0000 (19:21 +0200)
committerMarten Richter <marten.richter@freenet.de>
Sat, 30 Aug 2014 17:21:39 +0000 (19:21 +0200)
picturereader.c
picturereader.h
vdrcommand.h
vompclientrrproc.c
vompclientrrproc.h

index 62e421835216327c3bc564e3e40e953018b6658f..a940ebe33237cf68fa0db12970aa4c26ab599846 100644 (file)
@@ -151,7 +151,21 @@ std::string PictureReader::getPictName(TVMediaRequest & req)
       
    
    } break;
-   
+   case 3: { // I do not know
+   // First get the recording
+      cRecordings Recordings;
+      Recordings.Load();
+      cRecording *recording = Recordings.GetByName((char*) req.primary_name.c_str());
+      ScraperGetPosterThumb getter;
+      getter.recording = recording;
+      getter.event = NULL;
+      if (x->scraper && recording) {
+        x->scraper->Service("GetPosterThumb",&getter);
+        return getter.poster.path;
+      } else {
+         return std::string("");
+      }
+   }; break;
    default:
      return std::string("");
      break;
index 195feeb3a3beaad626d88fbf344f4bbcdac77e27..f734d65621d2cbb020f55b7d2e6e0b410b0a413d 100644 (file)
@@ -29,6 +29,7 @@
 #include "vompclient.h"
 #include "services/scraper2vdr.h"
 #include <queue>
+#include <string>
 
 struct TVMediaRequest{
    ULONG streamID;
@@ -38,6 +39,7 @@ struct TVMediaRequest{
    ULONG type_pict;
    ULONG container;
    ULONG container_member;
+   std::string primary_name;
 };
 
 class PictureReader : public Thread
index cacc86b8c1393b4ae369d6d6ed8f9bcaa7753a70..9b2d0e07065bd5ac3fd9d38c857fbcf5da390de7 100644 (file)
@@ -73,6 +73,7 @@ const static ULONG VDR_GETRECSCRAPEREVENTTYPE = 38;
 const static ULONG VDR_GETSCRAPERMOVIEINFO = 39;
 const static ULONG VDR_GETSCRAPERSERIESINFO = 40;
 const static ULONG VDR_LOADTVMEDIA          =41;
+const static ULONG VDR_LOADTVMEDIARECTHUMB  =42;
 const static ULONG VDR_SHUTDOWN            = 666;
 
 class VDR_Command : public SerializableList {
index 5a6724957a6e2d9b0bd7c661bf9cbf25360199b1..d8e1bb7c58ef21b3e247f43c2b7ab44684f5b563 100644 (file)
@@ -287,6 +287,9 @@ bool VompClientRRProc::processPacket()
     case VDR_LOADTVMEDIA:
       result = processLoadTvMedia();
     break;
+    case VDR_LOADTVMEDIARECTHUMB:
+      result = processLoadTvMediaRecThumb();
+    break;
 #endif
     case VDR_GETMEDIALIST:
       result = processGetMediaList();
@@ -2172,6 +2175,29 @@ int VompClientRRProc::processLoadTvMedia()
    
    return 1;
 }
+
+int VompClientRRProc::processLoadTvMediaRecThumb()
+{
+   TVMediaRequest tvreq;
+   tvreq.streamID = req->requestID;
+   tvreq.type = 3; // unknown but primary_name is set
+   tvreq.primary_id = 0;
+   tvreq.primary_name = std::string((const char*) req->data);
+   tvreq.secondary_id = 0;
+   tvreq.type_pict = 1;
+   tvreq.container = 0;
+   tvreq.container_member = 0;
+   log->log("RRProc", Log::DEBUG, "TVMedia request %d %s",req->requestID,req->data);
+   x.pict->addTVMediaRequest(tvreq);
+
+   
+   resp->finalise();
+
+   x.tcp.sendPacket(resp->getPtr(), resp->getLen());
+   
+   return 1;
+}
+
  
 
 
index daa58ccc520258f0916f306a84237050ed15a8b9..0d2cf1e17f6609369583410489aeca1f85a5cc9b 100644 (file)
@@ -87,6 +87,7 @@ class VompClientRRProc : public Thread
     int processGetScraperMovieInfo();
     int processGetScraperSeriesInfo();
     int processLoadTvMedia();
+    int processLoadTvMediaRecThumb();
 #endif
     int processLogin();
     int processConfigSave();