1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272
|
package tim.prune.load.xml;
import java.util.ArrayList;
import org.xml.sax.Attributes;
import org.xml.sax.SAXException;
import tim.prune.data.Field;
/**
* Class for handling specifics of parsing Kml files
*/
public class KmlHandler extends XmlHandler
{
private boolean _insideCoordinates = false;
private String _value = null;
private String _name = null, _desc = null;
private String _imgLink = null;
private StringBuffer _coordinates = null;
private ArrayList<String> _coordinateList = null;
private ArrayList<String[]> _pointList = new ArrayList<String[]>();
private ArrayList<String> _linkList = new ArrayList<String>();
// variables for gx extensions
private ArrayList<String> _whenList = new ArrayList<String>();
private ArrayList<String> _whereList = new ArrayList<String>();
/**
* Receive the start of a tag
* @see org.xml.sax.ContentHandler#startElement(java.lang.String, java.lang.String, java.lang.String, org.xml.sax.Attributes)
*/
public void startElement(String uri, String localName, String qName,
Attributes attributes) throws SAXException
{
String tagName = localName;
if (tagName == null || tagName.equals("")) {tagName = qName;}
if (tagName.equalsIgnoreCase("Placemark")) {
_coordinateList = new ArrayList<String>();
}
else if (tagName.equalsIgnoreCase("coordinates")) {
_insideCoordinates = true;
_coordinates = null;
}
_value = null;
super.startElement(uri, localName, qName, attributes);
}
/**
* Process end tag
* @see org.xml.sax.ContentHandler#endElement(java.lang.String, java.lang.String, java.lang.String)
*/
public void endElement(String uri, String localName, String qName)
throws SAXException
{
String tagName = localName;
if (tagName == null || tagName.equals("")) {tagName = qName;}
if (tagName.equalsIgnoreCase("Placemark"))
{
processPlacemark();
_name = _desc = _imgLink = null;
}
else if (tagName.equalsIgnoreCase("coordinates")) {
_insideCoordinates = false;
if (_coordinates != null) _coordinateList.add(_coordinates.toString().trim());
}
else if (tagName.equalsIgnoreCase("name")) _name = _value;
else if (tagName.equalsIgnoreCase("description")) {
_desc = _value;
_imgLink = getImgLink(_desc);
}
else if (tagName.equalsIgnoreCase("when")) {
_whenList.add(_value);
}
else if (tagName.equalsIgnoreCase("gx:coord")) {
_whereList.add(_value);
}
else if (tagName.equalsIgnoreCase("gx:Track")) {
processGxTrack();
}
super.endElement(uri, localName, qName);
}
/**
* Process character text (inside tags or between them)
* @see org.xml.sax.ContentHandler#characters(char[], int, int)
*/
public void characters(char[] ch, int start, int length)
throws SAXException
{
String val = new String(ch, start, length);
if (_insideCoordinates)
{
if (_coordinates == null) {
_coordinates = new StringBuffer();
}
_coordinates.append(val);
}
else
{
// Store string in _value
if (_value == null) _value = val;
else _value = _value + val;
}
super.characters(ch, start, length);
}
/**
* Process a placemark entry, either a single waypoint or a whole track
*/
private void processPlacemark()
{
if (_coordinateList == null || _coordinateList.isEmpty()) return;
final boolean isSingleSelection = (_coordinateList.size() == 1);
// Loop over coordinate sets in list (may have multiple <coordinates> tags within single placemark)
for (String coords : _coordinateList)
{
String[] coordArray = coords.split("[ \n]");
int numPoints = coordArray.length;
if (numPoints == 1)
{
// Add single point to list
final String name = (isSingleSelection ? _name : null);
_pointList.add(makeStringArray(coords, name, _desc));
_linkList.add(_imgLink);
}
else if (numPoints > 1)
{
// Add each of the unnamed track points to list
boolean firstPoint = true;
for (int p=0; p<numPoints; p++)
{
if (coordArray[p] != null && coordArray[p].trim().length()>3)
{
String[] pointArray = makeStringArray(coordArray[p], null, null);
if (firstPoint) {pointArray[5] = "1";} // start of segment flag
firstPoint = false;
_pointList.add(pointArray);
}
_linkList.add(null);
}
}
}
}
/**
* Process a Gx track including timestamps
*/
private void processGxTrack()
{
if (_whenList.size() > 0 && _whenList.size() == _whereList.size())
{
// Add each of the unnamed track points to list
boolean firstPoint = true;
final int numPoints = _whenList.size();
for (int p=0; p < numPoints; p++)
{
String when = _whenList.get(p);
String where = _whereList.get(p);
if (where != null)
{
String[] coords = where.split(" ");
if (coords.length == 3)
{
String[] pointArray = new String[7];
pointArray[0] = coords[0];
pointArray[1] = coords[1];
pointArray[2] = coords[2];
// leave name and description empty
if (firstPoint) {pointArray[5] = "1";} // start of segment flag
firstPoint = false;
pointArray[6] = when; // timestamp
_pointList.add(pointArray);
}
}
_linkList.add(null);
}
}
_whenList.clear();
_whereList.clear();
}
/**
* Extract an image link from the point description
* @param inDesc description tag contents
* @return image link if found or null
*/
private static String getImgLink(String inDesc)
{
if (inDesc == null || inDesc.equals("")) {return null;}
// Pull out <img tag from description (if any)
int spos = inDesc.indexOf("<img");
int epos = inDesc.indexOf('>', spos + 10);
if (spos < 0 || epos < 0) return null;
String imgtag = inDesc.substring(spos + 4, epos);
// Find the src attribute from img tag
int quotepos = imgtag.toLowerCase().indexOf("src=");
if (quotepos < 0) return null;
// source may be quoted with single or double quotes
char quotechar = imgtag.charAt(quotepos + 4);
int equotepos = imgtag.indexOf(quotechar, quotepos + 7);
if (equotepos < 0) return null;
return imgtag.substring(quotepos + 5, equotepos);
}
/**
* Construct the String array for the given coordinates and name
* @param inCoordinates coordinate string in Kml format
* @param inName name of waypoint, or null if track point
* @param inDesc description of waypoint, if any
* @return String array for point
*/
private static String[] makeStringArray(String inCoordinates,
String inName, String inDesc)
{
String[] result = new String[7];
String[] values = inCoordinates.split(",");
final int numValues = values.length;
if (numValues == 3 || numValues == 2) {
System.arraycopy(values, 0, result, 0, numValues);
}
result[3] = inName;
result[4] = inDesc;
return result;
}
/**
* @see tim.prune.load.xml.XmlHandler#getFieldArray()
*/
public Field[] getFieldArray()
{
final Field[] fields = {Field.LONGITUDE, Field.LATITUDE, Field.ALTITUDE,
Field.WAYPT_NAME, Field.DESCRIPTION, Field.NEW_SEGMENT, Field.TIMESTAMP};
return fields;
}
/**
* Return the parsed information as a 2d array
* @see tim.prune.load.xml.XmlHandler#getDataArray()
*/
public String[][] getDataArray()
{
int numPoints = _pointList.size();
// construct data array
String[][] result = new String[numPoints][];
for (int i=0; i<numPoints; i++) {
result[i] = _pointList.get(i);
}
return result;
}
/**
* @return array of links, or null if none
*/
public String[] getLinkArray()
{
int numPoints = _linkList.size();
boolean hasLink = false;
String[] result = new String[numPoints];
for (int i=0; i<numPoints; i++)
{
result[i] = _linkList.get(i);
if (result[i] != null) {hasLink = true;}
}
if (!hasLink) {result = null;}
return result;
}
}
|