Added zpos attribute to all elements. Changed architecture to allow detailscreen...
[jspeed] / src / filereader.cpp
1 /*
2  * This file is part of jSpeed.
3  *
4  * jSpeed is free software: you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation, either version 3 of the License, or
7  * (at your option) any later version.
8  *
9  * jSpeed is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with jSpeed.  If not, see <http://www.gnu.org/licenses/>.
16  *
17  */
18
19 #include <QtCore/QString>
20 #include <QtCore/QByteArray>
21 #include <QtCore/QDir>
22 #include <QtCore/QFile>
23 #include "filereader.h"
24
25 FileReader::FileReader(QString const& dirname): Reader(), dirname_(dirname)
26 {
27 }
28
29 bool FileReader::open()
30 {
31     return true;
32 }
33
34 bool FileReader::readFile(QString const& filename, QByteArray& data)
35 {
36     QFile file(dirname_ + QDir::separator() + filename);
37
38     if(!file.exists())
39     {
40         error_ = "No such file: " + filename;
41         return false;
42     }
43
44     if(file.open(QIODevice::ReadOnly))
45     {
46         data = file.readAll();
47     }
48     else
49     {
50         error_ = "Unable to open file: " + filename;
51         return false;
52     }
53
54     file.close();
55     return true;
56 }
57
58 bool FileReader::fileExists(QString const& filename) const
59 {
60     return QFile::exists(dirname_ + QDir::separator() + filename);
61 }
62
63 bool FileReader::close()
64 {
65     return true;
66 }
67
68 QString const& FileReader::errorString() const
69 {
70     return error_;
71 }