]> git.vomp.tv Git - vompserver.git/blob - picturereader.h
15 years that line of code has been waiting to crash
[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 #include <string>
33
34 struct TVMediaRequest{
35    ULONG streamID;
36    ULONG type;
37    ULONG primary_id;
38    ULONG secondary_id;
39    ULONG type_pict;
40    ULONG container;
41    ULONG container_member;
42    std::string primary_name;
43 };
44
45 class PictureReader : public Thread
46 {
47   public:
48     PictureReader(VompClient * client);
49     virtual ~PictureReader();
50     int init(TCP* tcp);
51     void detachMVPReceiver();
52     void addTVMediaRequest(TVMediaRequest&);
53     bool epgImageExists(int event);
54
55   private:
56
57     std::string getPictName(TVMediaRequest&);
58
59     Log* logger;
60     int inittedOK;
61     pthread_mutex_t pictureLock; // needs outside locking
62     std::queue<TVMediaRequest> pictures;
63
64     TCP* tcp;
65     VompClient * x;
66     cSeries series;
67     cMovie movie;
68     
69   protected:
70     void threadMethod();
71 };
72
73 #endif
74
75