1 | /****************************************************************************
|
---|
2 | **
|
---|
3 | ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies).
|
---|
4 | ** All rights reserved.
|
---|
5 | ** Contact: Nokia Corporation ([email protected])
|
---|
6 | **
|
---|
7 | ** This file is part of the examples of the Qt Toolkit.
|
---|
8 | **
|
---|
9 | ** $QT_BEGIN_LICENSE:BSD$
|
---|
10 | ** You may use this file under the terms of the BSD license as follows:
|
---|
11 | **
|
---|
12 | ** "Redistribution and use in source and binary forms, with or without
|
---|
13 | ** modification, are permitted provided that the following conditions are
|
---|
14 | ** met:
|
---|
15 | ** * Redistributions of source code must retain the above copyright
|
---|
16 | ** notice, this list of conditions and the following disclaimer.
|
---|
17 | ** * Redistributions in binary form must reproduce the above copyright
|
---|
18 | ** notice, this list of conditions and the following disclaimer in
|
---|
19 | ** the documentation and/or other materials provided with the
|
---|
20 | ** distribution.
|
---|
21 | ** * Neither the name of Nokia Corporation and its Subsidiary(-ies) nor
|
---|
22 | ** the names of its contributors may be used to endorse or promote
|
---|
23 | ** products derived from this software without specific prior written
|
---|
24 | ** permission.
|
---|
25 | **
|
---|
26 | ** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
---|
27 | ** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
---|
28 | ** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
---|
29 | ** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
---|
30 | ** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
---|
31 | ** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
---|
32 | ** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
---|
33 | ** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
---|
34 | ** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
---|
35 | ** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
---|
36 | ** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE."
|
---|
37 | ** $QT_END_LICENSE$
|
---|
38 | **
|
---|
39 | ****************************************************************************/
|
---|
40 |
|
---|
41 | #include "timequery.h"
|
---|
42 |
|
---|
43 | #include <QtCore/QStringList>
|
---|
44 | #include <QtXmlPatterns/QXmlQuery>
|
---|
45 |
|
---|
46 | TimeInformation::TimeInformation(const QString &time, const QString &direction)
|
---|
47 | : m_time(time), m_direction(direction)
|
---|
48 | {
|
---|
49 | }
|
---|
50 |
|
---|
51 | QString TimeInformation::time() const
|
---|
52 | {
|
---|
53 | return m_time;
|
---|
54 | }
|
---|
55 |
|
---|
56 | QString TimeInformation::direction() const
|
---|
57 | {
|
---|
58 | return m_direction;
|
---|
59 | }
|
---|
60 |
|
---|
61 | TimeInformation::List TimeQuery::query(const QString &stationId, const QStringList &lineNumbers, const QDateTime &dateTime)
|
---|
62 | {
|
---|
63 | const TimeInformation::List information = queryInternal(stationId, dateTime);
|
---|
64 |
|
---|
65 | TimeInformation::List filteredInformation;
|
---|
66 |
|
---|
67 | if (!lineNumbers.isEmpty()) {
|
---|
68 | for (int i = 0; i < information.count(); ++i) {
|
---|
69 | const TimeInformation info = information.at(i);
|
---|
70 | for (int j = 0; j < lineNumbers.count(); ++j) {
|
---|
71 | if (info.direction().startsWith(QString("%1 ").arg(lineNumbers.at(j))))
|
---|
72 | filteredInformation.append(info);
|
---|
73 | }
|
---|
74 | }
|
---|
75 | } else {
|
---|
76 | filteredInformation = information;
|
---|
77 | }
|
---|
78 |
|
---|
79 | return filteredInformation;
|
---|
80 | }
|
---|
81 |
|
---|
82 | //! [1]
|
---|
83 | TimeInformation::List TimeQuery::queryInternal(const QString &stationId, const QDateTime &dateTime)
|
---|
84 | {
|
---|
85 | const QString timesQueryUrl = QString("doc('http://wap.trafikanten.no/F.asp?f=%1&t=%2&m=%3&d=%4&start=1')/wml/card/p/small/a[fn:starts-with(@href, 'Rute')]/string()")
|
---|
86 | .arg(stationId)
|
---|
87 | .arg(dateTime.time().hour())
|
---|
88 | .arg(dateTime.time().minute())
|
---|
89 | .arg(dateTime.toString("dd.MM.yyyy"));
|
---|
90 | const QString directionsQueryUrl = QString("doc('http://wap.trafikanten.no/F.asp?f=%1&t=%2&m=%3&d=%4&start=1')/wml/card/p/small/text()[matches(., '[0-9].*')]/string()")
|
---|
91 | .arg(stationId)
|
---|
92 | .arg(dateTime.time().hour())
|
---|
93 | .arg(dateTime.time().minute())
|
---|
94 | .arg(dateTime.toString("dd.MM.yyyy"));
|
---|
95 |
|
---|
96 | QStringList times;
|
---|
97 | QStringList directions;
|
---|
98 |
|
---|
99 | QXmlQuery query;
|
---|
100 | query.setQuery(timesQueryUrl);
|
---|
101 | query.evaluateTo(×);
|
---|
102 |
|
---|
103 | query.setQuery(directionsQueryUrl);
|
---|
104 | query.evaluateTo(&directions);
|
---|
105 |
|
---|
106 | if (times.count() != directions.count()) // something went wrong...
|
---|
107 | return TimeInformation::List();
|
---|
108 |
|
---|
109 | TimeInformation::List information;
|
---|
110 | for (int i = 0; i < times.count(); ++i)
|
---|
111 | information.append(TimeInformation(times.at(i).simplified(), directions.at(i).simplified()));
|
---|
112 |
|
---|
113 | return information;
|
---|
114 | }
|
---|
115 | //! [1]
|
---|