]> git.vomp.tv Git - vompserver.git/blob - picturereader.h
Add forgotten vdrcommand.h changes
[vompserver.git] / picturereader.h
1 /*
2     Copyright 2004-2005 Chris Tallon, 2014 Marten Richter
3
4     This file is part of VOMP.
5
6     VOMP is free software; you can redistribute it and/or modify
7     it under the terms of the GNU General Public License as published by
8     the Free Software Foundation; either version 2 of the License, or
9     (at your option) any later version.
10
11     VOMP is distributed in the hope that it will be useful,
12     but WITHOUT ANY WARRANTY; without even the implied warranty of
13     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14     GNU General Public License for more details.
15
16     You should have received a copy of the GNU General Public License
17     along with VOMP; if not, write to the Free Software
18     Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
19 */
20
21 #ifndef PICTUREREADER_H
22 #define PICTUREREADER_H
23
24 #include "defines.h"
25 #include "log.h"
26 #include "thread.h"
27 #include "tcp.h"
28 #include "thread.h"
29 #include "vompclient.h"
30 #include "services/scraper2vdr.h"
31 #include <queue>
32
33 struct TVMediaRequest{
34    ULONG streamID;
35    ULONG type;
36    ULONG primary_id;
37    ULONG secondary_id;
38    ULONG type_pict;
39    ULONG container;
40    ULONG container_member;
41 };
42
43 class PictureReader : public Thread
44 {
45   public:
46     PictureReader(VompClient * client);
47     virtual ~PictureReader();
48     int init(TCP* tcp);
49     void detachMVPReceiver();
50     void addTVMediaRequest(TVMediaRequest&);
51
52   private:
53
54     std::string getPictName(TVMediaRequest&);
55
56     Log* logger;
57     int inittedOK;
58     pthread_mutex_t pictureLock; // needs outside locking
59     std::queue<TVMediaRequest> pictures;
60
61     TCP* tcp;
62     VompClient * x;
63     cSeries series;
64     cMovie movie;
65     
66   protected:
67     void threadMethod();
68 };
69
70 #endif
71
72