0b44e7f1702cbd2e76344f40302147eb118543bd
[jspeed] / src / poiascreader.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/QFile>
20 #include <QtCore/QString>
21 #include <QtCore/QByteArray>
22 #include <QtCore/QDebug>
23 #include <QtCore/QRegExp>
24 #include "poiascreader.h"
25
26 PoiAscReader::PoiAscReader(QString filename): PoiReader(), filename_(filename)
27 {
28 }
29
30 bool PoiAscReader::read(QList<Poi>& pois)
31 {
32     QFile file(filename_);
33
34     if(!file.open(QIODevice::ReadOnly))
35     {
36         setError("Unable to open file (check permissions)");
37         return false;
38     }
39
40     QString data = QString(file.readAll());
41     static QRegExp matcher("([0-9]{1,3})\\.([0-9]+), ([0-9]{1,3})\\.([0-9]+), \"(.*)\"");
42     matcher.setMinimal(true);
43
44     int pos = 0;
45
46     while((pos = matcher.indexIn(data, pos)) != -1)
47     {
48         pos += matcher.matchedLength();
49
50         Poi poi;
51
52         bool ok;
53
54         QString latitude = matcher.cap(1) + "." + matcher.cap(2);
55         QString longitude = matcher.cap(3) + "." + matcher.cap(4);
56
57         double doubleLatitude = latitude.toDouble(&ok);
58
59         if(!ok)
60         {
61             continue;
62         }
63
64         double doubleLongitude = longitude.toDouble(&ok);
65
66         if(!ok)
67         {
68             continue;
69         }
70
71         poi.latitude = doubleLatitude;
72         poi.longitude = doubleLongitude;
73         poi.name = matcher.cap(5);
74
75         pois.push_back(poi);
76
77     }
78
79     if(pois.size() == 0)
80     {
81         setError("No valid poi data found from file");
82         return false;
83     }
84
85     return true;
86 }