]> git.sur5r.net Git - minitube/blob - src/channelaggregator.h
Upload 3.9.3-2 to unstable
[minitube] / src / channelaggregator.h
1 /* $BEGIN_LICENSE
2
3 This file is part of Minitube.
4 Copyright 2009, Flavio Tordini <flavio.tordini@gmail.com>
5
6 Minitube 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 3 of the License, or
9 (at your option) any later version.
10
11 Minitube 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 Minitube.  If not, see <http://www.gnu.org/licenses/>.
18
19 $END_LICENSE */
20
21 #ifndef CHANNELAGGREGATOR_H
22 #define CHANNELAGGREGATOR_H
23
24 #include <QtCore>
25 #include <QtNetwork>
26
27 class YTChannel;
28 class Video;
29
30 class ChannelAggregator : public QObject {
31
32     Q_OBJECT
33
34 public:
35     static ChannelAggregator* instance();
36     int getUnwatchedCount() { return unwatchedCount; }
37     void markAllAsWatched();
38     void videoWatched(Video *video);
39     void cleanup();
40
41 public slots:
42     void start();
43     void stop();
44     void run();
45     void updateUnwatchedCount();
46
47 signals:
48     void channelChanged(YTChannel*);
49     void unwatchedCountChanged(int count);
50
51 private slots:
52     void videosLoaded(const QVector<Video*> &videos);
53     void processNextChannel();
54     void checkWebPage(YTChannel *channel);
55     void parseWebPage(const QByteArray &bytes);
56     void errorWebPage(const QString &message);
57     void reallyProcessChannel(YTChannel *channel);
58
59 private:
60     ChannelAggregator(QObject *parent = 0);
61     YTChannel* getChannelToCheck();
62     void addVideo(Video* video);
63     void finish();
64
65     uint checkInterval;
66     int unwatchedCount;
67     bool running;
68
69     int newVideoCount;
70     QVector<YTChannel*> updatedChannels;
71
72     QTimer *timer;
73     bool stopped;
74
75     YTChannel *currentChannel;
76 };
77
78 #endif // CHANNELAGGREGATOR_H