Update async methods! Now valid ip is detected
[vlc-remote] / playlistmainwindow.cpp
1 /*   VLC-REMOTE for MAEMO 5
2  *   Copyright (C) 2010 Schutz Sacha <istdasklar@gmail.com>
3  *   This program is free software; you can redistribute it and/or modify
4  *   it under the terms of the GNU General Public License version 2,
5  *   or (at your option) any later version, as published by the Free
6  *   Software Foundation
7  *
8  *   This program is distributed in the hope that it will be useful,
9  *   but WITHOUT ANY WARRANTY; without even the implied warranty of
10  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
11  *   GNU General Public License for more details
12  *
13  *   You should have received a copy of the GNU General Public
14  *   License along with this program; if not, write to the
15  *   Free Software Foundation, Inc.,
16  *   51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
17  */
18 #include "playlistmainwindow.h"
19 #include "ui_playlistmainwindow.h"
20 #include <QPushButton>
21 #include <QSettings>
22 #include "configdialog.h"
23 #include "aboutdialog.h"
24 #include "accountdialog.h"
25
26 PlayListMainWindow::PlayListMainWindow(QWidget *parent) :
27         QMainWindow(parent),
28         ui(new Ui::PlayListMainWindow)
29 {
30
31     ui->setupUi(this);
32     mTimer = new QTimer(this);
33     setWindowTitle("Vlc remote");
34
35     mCurrentDepth = 0;
36     mCurrentVlcIndex = 0;
37
38
39     mNetManager = new QNetworkAccessManager(this);
40
41     mContents = new QList<VlcPlayListElementSimple>();
42
43     ui->playButton->setIcon(QIcon::fromTheme("camera_playback"));
44     ui->clearButton->setIcon(QIcon::fromTheme("general_delete"));
45     ui->shuffleButton->setIcon(QIcon::fromTheme("mediaplayer_default_shuffle"));
46     ui->loopButton->setIcon(QIcon::fromTheme("general_refresh"));
47     ui->repeatButton->setIcon(QIcon::fromTheme("general_redo"));
48     ui->removeButton->setIcon(QIcon::fromTheme("general_close"));
49
50     ui->clearButton->setDisabled(false);
51     ui->shuffleButton->setDisabled(false);
52     ui->loopButton->setDisabled(false);
53     ui->repeatButton->setDisabled(false);
54     ui->removeButton->setDisabled(true);
55     ui->playButton->setDisabled(true);
56
57     connect(ui->playButton,SIGNAL(clicked()),this,SLOT(onPlay()));
58     connect(ui->removeButton,SIGNAL(clicked()),this,SLOT(onRemove()));
59     connect(ui->repeatButton,SIGNAL(clicked()),this,SLOT(onRepeat()));
60     connect(ui->loopButton,SIGNAL(clicked()),this,SLOT(onLoop()));
61     connect(ui->shuffleButton,SIGNAL(clicked()),this,SLOT(onShuffle()));
62     connect(ui->clearButton,SIGNAL(clicked()),this,SLOT(onClear()));
63     connect(ui->listWidget, SIGNAL(itemSelectionChanged()), this, SLOT(onListSelectionChanged()));
64
65     init();
66
67 }
68 void PlayListMainWindow::init()  // CALL WHEN CONFIG CHANGES
69 {
70     mIp = AccountDialog::currentIp();
71 }
72 void PlayListMainWindow::showPlayList()  // CALL WHEN SHOWN
73 {
74     requestPlayList();
75 }
76
77 PlayListMainWindow::~PlayListMainWindow()
78 {
79     delete ui;
80 }
81
82 void PlayListMainWindow::changeEvent(QEvent *e)
83 {
84     QMainWindow::changeEvent(e);
85     switch (e->type()) {
86     case QEvent::LanguageChange:
87         ui->retranslateUi(this);
88         break;
89     default:
90         break;
91     }
92 }
93
94 void PlayListMainWindow::onListSelectionChanged() {
95     QList<QListWidgetItem *> items = ui->listWidget->selectedItems();
96     if (0 < items.count()) {
97         mCurrentElement = getElementFromText(items.at(0)->text());
98         mCurrentVlcIndex = items.at(0)->type() - LIST_ITEM_TYPE_OFFSET; // Qt reserves types up to 1000, we use an offset beyond that for index tracking. May prove to be too hacky!
99         ui->removeButton->setDisabled(false);
100         ui->playButton->setDisabled(false);
101     }
102     else {
103         mCurrentVlcIndex = 0;
104         ui->removeButton->setDisabled(true);
105         ui->playButton->setDisabled(true);
106     }
107 }
108
109 void PlayListMainWindow::onRemove() {
110     if (0 < this->mCurrentVlcIndex) {
111         /*QNetworkReply * reply = */ mNetManager->get(QNetworkRequest(QUrl("http://"+mIp+"/requests/status.xml?command=pl_delete&id=" + QString::number(this->mCurrentVlcIndex))));
112         connect(mNetManager,SIGNAL(finished(QNetworkReply *)),this,SLOT(requestPlayList()));
113     }
114 }
115 void PlayListMainWindow::onPlay() {
116     if (0 < this->mCurrentVlcIndex) {
117         /*QNetworkReply * reply = */ mNetManager->get(QNetworkRequest(QUrl("http://"+mIp+"/requests/status.xml?command=pl_play&id=" + QString::number(this->mCurrentVlcIndex))));
118     }
119 }
120 void PlayListMainWindow::onRepeat() {
121     /*QNetworkReply * reply = */ mNetManager->get(QNetworkRequest(QUrl("http://"+mIp+"/requests/status.xml?command=pl_repeat")));
122 }
123 void PlayListMainWindow::onLoop() {
124     /*QNetworkReply * reply = */ mNetManager->get(QNetworkRequest(QUrl("http://"+mIp+"/requests/status.xml?command=pl_loop")));
125 }
126 void PlayListMainWindow::onShuffle() {
127     /*QNetworkReply * reply = */ mNetManager->get(QNetworkRequest(QUrl("http://"+mIp+"/requests/status.xml?command=pl_random")));
128 }
129 void PlayListMainWindow::onClear() {
130     /*QNetworkReply * reply = */ mNetManager->get(QNetworkRequest(QUrl("http://"+mIp+"/requests/status.xml?command=pl_empty")));
131     connect(mNetManager,SIGNAL(finished(QNetworkReply *)),this,SLOT(requestPlayList()));
132 }
133 void PlayListMainWindow::requestPlayList() {
134   mContents->clear();
135   ui->listWidget->clear();
136   mResponse.clear();
137   ui->removeButton->setDisabled(true);
138   ui->playButton->setDisabled(true);
139   QNetworkReply * reply =  mNetManager->get(QNetworkRequest(QUrl("http://"+mIp+"/requests/playlist.xml")));
140   disconnect(mNetManager,SIGNAL(finished(QNetworkReply *)),this,SLOT(requestPlayList()));
141   connect(reply,SIGNAL(readyRead()),this,SLOT(readReady()));
142   connect(mNetManager,SIGNAL(finished(QNetworkReply *)),this,SLOT(finished(QNetworkReply *)));
143 }
144 void PlayListMainWindow::readReady() {
145   QNetworkReply * reply = qobject_cast<QNetworkReply*>(sender());
146   // append to buffer
147   mResponse += reply->readAll();
148 }
149 void PlayListMainWindow::finished(QNetworkReply * reply) {
150   // now we can call parseXmlList to process the full buffers
151   this->parseXmlPlayList();
152   // only interested in finished signals
153   disconnect(mNetManager,SIGNAL(finished(QNetworkReply *)),this,SLOT(finished(QNetworkReply *)));
154 }
155
156 void PlayListMainWindow::parseXmlPlayList() {
157   QDomDocument doc;
158   doc.setContent(this->mResponse);
159   QDomElement docElem = doc.documentElement();
160   QDomNodeList nodes = docElem.elementsByTagName("node");
161
162   int depth = 0;
163
164   int ct = nodes.count();
165   for (int idx = 0; idx < ct; ++idx) {
166     QDomNode node = nodes.at(idx);
167     QString name = node.attributes().namedItem("name").nodeValue();
168     int id = node.attributes().namedItem("id").nodeValue().toInt();
169     if (3 == id) {
170       // got the main playlist, let's build it up
171       if (node.hasChildNodes()) {
172         QDomNodeList leafs = node.childNodes();
173         int leafct = leafs.count();
174         if (0 < leafct) {
175           for (int jdx = 0; jdx < leafct; ++jdx) {
176             QDomNode leaf = leafs.at(jdx);
177             VlcPlayListElementSimple* el = new VlcPlayListElementSimple();
178             el->id = leaf.attributes().namedItem("id").nodeValue().toInt();
179             //el->path = leaf.attributes().namedItem("uri").nodeValue();
180             el->name = leaf.attributes().namedItem("name").nodeValue();
181             if (0 == QString::compare(leaf.nodeName(), "node")) {
182               el->depth = 1;
183               el->type = "node";
184               this->mContents->append(*el);
185               // now parse the child nodes as leafs.
186               if (leaf.hasChildNodes()) {
187                 QDomNodeList items = leaf.childNodes();
188                 int itemct = items.count();
189                 if (0 < itemct) {
190                   for (int kdx = 0; kdx < itemct; ++kdx) {
191                     QDomNode item = items.at(kdx);
192                     VlcPlayListElementSimple* it = new VlcPlayListElementSimple();
193                     it->id = item.attributes().namedItem("id").nodeValue().toInt();
194                     //it->path = item.attributes().namedItem("uri").nodeValue();
195                     it->name = item.attributes().namedItem("name").nodeValue();
196                     it->depth = 2;
197                     it->type = "leaf";
198                     this->mContents->append(*it);
199                     delete it;
200                   }
201                 }
202               }
203             }
204             else {
205               el->depth = 1;
206               el->type = "leaf";
207               this->mContents->append(*el);
208             }
209             delete el;
210           }
211         }
212       }
213
214     }
215   }
216
217   mResponse.clear();
218
219   this->updateList();
220
221 }
222
223 VlcPlayListElementSimple PlayListMainWindow::getElementFromText(QString text) {
224   //if (0 != QString::compare("", text)) {
225     for (int idx = 0; idx < mContents->count(); ++idx) {
226       if (0 == QString::compare(text, mContents->at(idx).name)) {
227         return mContents->at(idx);
228       }
229     }
230     //}
231     return *(new VlcPlayListElementSimple());
232 }
233
234 void PlayListMainWindow::updateList() {
235   int ct = this->mContents->count();
236   if (0 < ct) {
237     for (int idx = 0; idx < ct; ++idx) {
238       VlcPlayListElementSimple el = mContents->at(idx);
239       QListWidgetItem* item;//
240       if (0 == QString::compare("node", el.type)) {
241         item = new QListWidgetItem(QIcon::fromTheme("filemanager_media_folder"), el.name, ui->listWidget, LIST_ITEM_TYPE_OFFSET + el.id);
242       }
243       else {
244         item = new QListWidgetItem(QIcon::fromTheme("general_video_file"), el.name, ui->listWidget, LIST_ITEM_TYPE_OFFSET + el.id);
245       }
246       ui->listWidget->addItem(item);
247       /// TODO - Work out the file / media type and use an appropriate icon instead of the default.
248     }
249   }
250 }