Initial commit.
[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/QDir>
21 #include <QtCore/QFile>
22 #include "filereader.h"
23
24 FileReader::FileReader(QString const& dirname): Reader(), dirname_(dirname)
25 {
26 }
27
28 bool FileReader::open()
29 {
30     return true;
31 }
32
33 bool FileReader::readFile(QString const& filename, QByteArray& data)
34 {
35     QFile file(dirname_ + QDir::separator() + filename);
36
37     if(!file.exists())
38     {
39         error_ = "No such file: " + filename;
40         return false;
41     }
42
43     if(file.open(QIODevice::ReadOnly))
44     {
45         data = file.readAll();
46     }
47     else
48     {
49         error_ = "Unable to open file: " + filename;
50         return false;
51     }
52
53     file.close();
54     return true;
55 }
56
57 bool FileReader::fileExists(QString const& filename) const
58 {
59     return QFile::exists(dirname_ + QDir::separator() + filename);
60 }
61
62 bool FileReader::close()
63 {
64     return true;
65 }
66
67 QString const& FileReader::errorString() const
68 {
69     return error_;
70 }