/[projects]/android/TrainInfo/src/dk/thoerup/traininfo/provider/XmlStationProvider.java
ViewVC logotype

Contents of /android/TrainInfo/src/dk/thoerup/traininfo/provider/XmlStationProvider.java

Parent Directory Parent Directory | Revision Log Revision Log


Revision 433 - (show annotations) (download)
Sat Oct 10 11:30:08 2009 UTC (14 years, 7 months ago) by torben
File size: 3195 byte(s)
Added station favorite list
1 package dk.thoerup.traininfo.provider;
2
3
4 import java.net.URLEncoder;
5 import java.util.ArrayList;
6 import java.util.List;
7
8 import org.w3c.dom.Document;
9 import org.w3c.dom.Node;
10 import org.w3c.dom.NodeList;
11
12 import android.location.Location;
13 import android.util.Log;
14 import dk.thoerup.traininfo.StationBean;
15 import dk.thoerup.traininfo.util.DownloadUtil;
16 import dk.thoerup.traininfo.util.XmlUtil;
17
18 public class XmlStationProvider implements StationProvider {
19
20 List<StationBean> stations = new ArrayList<StationBean>();
21
22
23 @Override
24 public List<StationBean> getStations() {
25 return stations;
26 }
27
28
29 @Override
30 public boolean lookupStations(Location location) {
31 String url = XmlUtil.SERVICE_BASE + "/LocateStations?latitude=" + location.getLatitude() + "&longitude=" + location.getLongitude();
32 Log.i("url", url);
33 return lookupStationsWorker(url);
34 }
35
36 @Override
37 public boolean lookupStationsByName(String name) {
38
39 // String url = XmlUtil.SERVICE_BASE + "/LocateStations?name=" + Uri.encode(name);
40 String url = "";
41
42 try {
43 url = XmlUtil.SERVICE_BASE + "/LocateStations?name=" + URLEncoder.encode(name, "ISO8859-1");
44 } catch (Exception e) {
45 Log.e("lookupStations", "Encoding failed", e);
46 }
47
48 Log.i("url", url);
49 return lookupStationsWorker(url);
50 }
51
52
53 @Override
54 public boolean lookupStationsByIds(String ids) {
55 String url = "";
56 url = XmlUtil.SERVICE_BASE + "/LocateStations?list=" + ids;
57
58 Log.i("url", url);
59 return lookupStationsWorker(url);
60 }
61
62
63 public boolean lookupStationsWorker(String url) {
64 boolean success = false;
65
66 try {
67 stations.clear();
68
69 String xml = DownloadUtil.getContentString(url, 15000, "ISO-8859-1");
70
71
72 Document doc = XmlUtil.parseXML(xml);
73 Node rootNode = doc.getDocumentElement(); // stations
74 NodeList stationList = rootNode.getChildNodes();
75
76
77 for (int i=0; i<stationList.getLength(); i++) {
78 Node stationNode = stationList.item(i);
79
80 if (! stationNode.getNodeName().equals("station"))
81 continue;
82
83 StationBean station = new StationBean();
84
85 NodeList stationElements = stationNode.getChildNodes();
86 for (int j=0; j<stationElements.getLength(); j++) {
87 Node current = stationElements.item(j);
88
89 String content = null;
90 if (current.getFirstChild() != null)
91 content = current.getFirstChild().getNodeValue(); //get the textNode - then get the text node's value
92
93 String nodeName = current.getNodeName();
94
95 if (nodeName.equals("id"))
96 station.setId( Integer.parseInt(content));
97
98 if (nodeName.equals("name"))
99 station.setName(content);
100
101 if (nodeName.equals("latitude"))
102 station.setLatitude( Double.parseDouble(content) );
103
104 if (nodeName.equals("longitude"))
105 station.setLongitude( Double.parseDouble(content) );
106
107 if (nodeName.equals("stationcode"))
108 station.setCode(content);
109
110 if (nodeName.equals("calcdist"))
111 station.setDistance( (int) Double.parseDouble(content) );
112
113 }
114 stations.add(station);
115 }
116 success = true;
117
118
119 } catch (Exception e) {
120 Log.e("XmlStationProvider", "lookupStations: ", e);
121 }
122 return success;
123 }
124 }

  ViewVC Help
Powered by ViewVC 1.1.20