Some fixes to setting dialogs.
[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     pois.clear();
33
34     QFile file(filename_);
35
36     if(!file.open(QIODevice::ReadOnly))
37     {
38         setError("Unable to open file (check permissions)");
39         return false;
40     }
41
42     QString data = QString(file.readAll());
43     static QRegExp matcher("([0-9]{1,3})\\.([0-9]+), ([0-9]{1,3})\\.([0-9]+), \"(.*)\"");
44     matcher.setMinimal(true);
45
46     int pos = 0;
47
48     while((pos = matcher.indexIn(data, pos)) != -1)
49     {
50         pos += matcher.matchedLength();
51
52         Poi poi;
53
54         bool ok;
55
56         QString latitude = matcher.cap(3) + "." + matcher.cap(4);
57         QString longitude = matcher.cap(1) + "." + matcher.cap(2);
58
59         double doubleLatitude = latitude.toDouble(&ok);
60
61         if(!ok)
62         {
63             continue;
64         }
65
66         double doubleLongitude = longitude.toDouble(&ok);
67
68         if(!ok)
69         {
70             continue;
71         }
72
73         poi.latitude = doubleLatitude;
74         poi.longitude = doubleLongitude;
75         poi.name = matcher.cap(5);
76
77         pois.push_back(poi);
78
79     }
80
81     if(pois.size() == 0)
82     {
83         setError("No valid poi data found from file");
84         return false;
85     }
86
87     return true;
88 }