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
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
|
package cgeo.geocaching.export;
import cgeo.geocaching.R;
import cgeo.geocaching.cgCache;
import cgeo.geocaching.LogEntry;
import cgeo.geocaching.cgeoapplication;
import cgeo.geocaching.activity.ActivityMixin;
import cgeo.geocaching.activity.Progress;
import cgeo.geocaching.enumerations.CacheAttribute;
import cgeo.geocaching.enumerations.LoadFlags;
import cgeo.geocaching.utils.BaseUtils;
import cgeo.geocaching.utils.Log;
import org.apache.commons.lang3.StringEscapeUtils;
import android.app.Activity;
import android.app.ProgressDialog;
import android.os.AsyncTask;
import android.os.Environment;
import java.io.File;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.OutputStream;
import java.io.OutputStreamWriter;
import java.io.Writer;
import java.text.SimpleDateFormat;
import java.util.Date;
import java.util.List;
class GpxExport extends AbstractExport {
private static final File exportLocation = new File(Environment.getExternalStorageDirectory().getAbsolutePath() + "/gpx-export");
private static final SimpleDateFormat dateFormatZ = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss'Z'");
protected GpxExport() {
super(getString(R.string.export_gpx));
}
@Override
public void export(final List<cgCache> caches, final Activity activity) {
new ExportTask(caches, activity).execute((Void) null);
}
private class ExportTask extends AsyncTask<Void, Integer, Boolean> {
private final List<cgCache> caches;
private final Activity activity;
private final Progress progress = new Progress();
private File exportFile;
/**
* Instantiates and configures the task for exporting field notes.
*
* @param caches
* The {@link List} of {@link cgCache} to be exported
* @param activity
* optional: Show a progress bar and toasts
*/
public ExportTask(final List<cgCache> caches, final Activity activity) {
this.caches = caches;
this.activity = activity;
}
@Override
protected void onPreExecute() {
if (null != activity) {
progress.show(activity, null, getString(R.string.export) + ": " + getName(), ProgressDialog.STYLE_HORIZONTAL, null);
progress.setMaxProgressAndReset(caches.size());
}
}
@Override
protected Boolean doInBackground(Void... params) {
// quick check for being able to write the GPX file
if (!Environment.getExternalStorageState().equals(Environment.MEDIA_MOUNTED)) {
return false;
}
// FIXME: complete export is created in memory. That should be some file stream instead.
final StringBuilder gpx = new StringBuilder();
gpx.append("<?xml version=\"1.0\" encoding=\"UTF-8\"?>");
gpx.append("<gpx version=\"1.0\" creator=\"c:geo - http://www.cgeo.org\" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://www.topografix.com/GPX/1/0\" xsi:schemaLocation=\"http://www.topografix.com/GPX/1/0 http://www.topografix.com/GPX/1/0/gpx.xsd http://www.topografix.com/GPX/1/0 http://www.topografix.com/GPX/1/0/gpx.xsd http://www.groundspeak.com/cache/1/0/1 http://www.groundspeak.com/cache/1/0/1/cache.xsd\">");
try {
for (int i = 0; i < caches.size(); i++) {
cgCache cache = caches.get(i);
if (!cache.isDetailed()) {
cache = cgeoapplication.getInstance().loadCache(caches.get(i).getGeocode(), LoadFlags.LOAD_ALL_DB_ONLY);
}
gpx.append("<wpt ");
gpx.append("lat=\"" + cache.getCoords().getLatitude() + "\" ");
gpx.append("lon=\"" + cache.getCoords().getLongitude() + "\">");
gpx.append("<time>");
gpx.append(StringEscapeUtils.escapeXml(dateFormatZ.format(cache.getHiddenDate())));
gpx.append("</time>");
gpx.append("<name>");
gpx.append(StringEscapeUtils.escapeXml(cache.getGeocode()));
gpx.append("</name>");
gpx.append("<desc>");
gpx.append(StringEscapeUtils.escapeXml(cache.getName()));
gpx.append("</desc>");
gpx.append("<sym>");
gpx.append(cache.isFound() ? "Geocache Found" : "Geocache");
gpx.append("</sym>");
gpx.append("<type>");
gpx.append(StringEscapeUtils.escapeXml("Geocache|" + cache.getType().toString())); //TODO: Correct (english) string
gpx.append("</type>");
gpx.append("<groundspeak:cache ");
gpx.append("available=\"" + (!cache.isDisabled() ? "True" : "False"));
gpx.append("\" archived=\"" + (cache.isArchived() ? "True" : "False") + "\" ");
gpx.append("xmlns:groundspeak=\"http://www.groundspeak.com/cache/1/0/1\">");
gpx.append("<groundspeak:name>");
gpx.append(StringEscapeUtils.escapeXml(cache.getName()));
gpx.append("</groundspeak:name>");
gpx.append("<groundspeak:placed_by>");
gpx.append(StringEscapeUtils.escapeXml(cache.getOwner()));
gpx.append("</groundspeak:placed_by>");
gpx.append("<groundspeak:owner>");
gpx.append(StringEscapeUtils.escapeXml(cache.getOwnerReal()));
gpx.append("</groundspeak:owner>");
gpx.append("<groundspeak:type>");
gpx.append(StringEscapeUtils.escapeXml(cache.getType().toString())); //TODO: Correct (english) string
gpx.append("</groundspeak:type>");
gpx.append("<groundspeak:container>");
gpx.append(StringEscapeUtils.escapeXml(cache.getSize().toString())); //TODO: Correct (english) string
gpx.append("</groundspeak:container>");
if (cache.hasAttributes()) {
//TODO: Attribute conversion required: English verbose name, gpx-id
gpx.append("<groundspeak:attributes>");
for (String attribute : cache.getAttributes()) {
final CacheAttribute attr = CacheAttribute.getByGcRawName(CacheAttribute.trimAttributeName(attribute));
final boolean enabled = attribute.endsWith(CacheAttribute.INTERNAL_YES);
gpx.append("<groundspeak:attribute id=\"");
gpx.append(attr.id);
gpx.append("\" inc=\"");
if (enabled) {
gpx.append('1');
} else {
gpx.append('0');
}
gpx.append("\">");
gpx.append(StringEscapeUtils.escapeXml(attr.getL10n(enabled)));
gpx.append("</groundspeak:attribute>");
}
gpx.append("</groundspeak:attributes>");
}
gpx.append("<groundspeak:difficulty>");
gpx.append(Float.toString(cache.getDifficulty()));
gpx.append("</groundspeak:difficulty>");
gpx.append("<groundspeak:terrain>");
gpx.append(Float.toString(cache.getTerrain()));
gpx.append("</groundspeak:terrain>");
gpx.append("<groundspeak:country>");
gpx.append(StringEscapeUtils.escapeXml(cache.getLocation()));
gpx.append("</groundspeak:country>");
gpx.append("<groundspeak:state>");
gpx.append(StringEscapeUtils.escapeXml(cache.getLocation()));
gpx.append("</groundspeak:state>");
gpx.append("<groundspeak:short_description html=\"");
if (BaseUtils.containsHtml(cache.getShortDescription())) {
gpx.append("True");
} else {
gpx.append("False");
}
gpx.append("\">");
gpx.append(StringEscapeUtils.escapeXml(cache.getShortDescription()));
gpx.append("</groundspeak:short_description>");
gpx.append("<groundspeak:long_description html=\"");
if (BaseUtils.containsHtml(cache.getDescription())) {
gpx.append("True");
} else {
gpx.append("False");
}
gpx.append("\">");
gpx.append(StringEscapeUtils.escapeXml(cache.getDescription()));
gpx.append("</groundspeak:long_description>");
gpx.append("<groundspeak:encoded_hints>");
gpx.append(StringEscapeUtils.escapeXml(cache.getHint()));
gpx.append("</groundspeak:encoded_hints>");
gpx.append("</groundspeak:cache>");
//TODO: Waypoints
if (cache.getLogs().size() > 0) {
gpx.append("<groundspeak:logs>");
for (LogEntry log : cache.getLogs()) {
gpx.append("<groundspeak:log id=\"");
gpx.append(log.id);
gpx.append("\">");
gpx.append("<groundspeak:date>");
gpx.append(StringEscapeUtils.escapeXml(dateFormatZ.format(new Date(log.date))));
gpx.append("</groundspeak:date>");
gpx.append("<groundspeak:type>");
gpx.append(StringEscapeUtils.escapeXml(log.type.type));
gpx.append("</groundspeak:type>");
gpx.append("<groundspeak:finder id=\"\">");
gpx.append(StringEscapeUtils.escapeXml(log.author));
gpx.append("</groundspeak:finder>");
gpx.append("<groundspeak:text encoded=\"False\">");
gpx.append(StringEscapeUtils.escapeXml(log.log));
gpx.append("</groundspeak:text>");
gpx.append("</groundspeak:log>");
}
gpx.append("</groundspeak:logs>");
}
gpx.append("</wpt>");
publishProgress(i + 1);
}
} catch (Exception e) {
Log.e("GpxExport.ExportTask generation", e);
return false;
}
gpx.append("</gpx>");
if (Environment.getExternalStorageState().equals(Environment.MEDIA_MOUNTED)) {
exportLocation.mkdirs();
SimpleDateFormat fileNameDateFormat = new SimpleDateFormat("yyyyMMddHHmmss");
exportFile = new File(exportLocation.toString() + '/' + fileNameDateFormat.format(new Date()) + ".gpx");
OutputStream os = null;
Writer fw = null;
try {
os = new FileOutputStream(exportFile);
fw = new OutputStreamWriter(os, "UTF-8");
fw.write(gpx.toString());
} catch (IOException e) {
Log.e("GpxExport.ExportTask export", e);
return false;
} finally {
if (fw != null) {
try {
fw.close();
} catch (IOException e) {
Log.e("GpxExport.ExportTask export", e);
return false;
}
}
}
} else {
return false;
}
return true;
}
@Override
protected void onPostExecute(Boolean result) {
if (null != activity) {
progress.dismiss();
if (result) {
ActivityMixin.showToast(activity, getName() + ' ' + getString(R.string.export_exportedto) + ": " + exportFile.toString());
} else {
ActivityMixin.showToast(activity, getString(R.string.export_failed));
}
}
}
@Override
protected void onProgressUpdate(Integer... status) {
if (null != activity) {
progress.setProgress(status[0]);
}
}
}
}
|