]> git.argeo.org Git - gpl/argeo-slc.git/blob - runtime/org.argeo.slc.support.gis/src/test/java/org/argeo/slc/gpx/hibernate/HibernateTrackDaoTestCase.java
ee22ec59d76dd751143115766f6ffa0ae83967f8
[gpl/argeo-slc.git] / runtime / org.argeo.slc.support.gis / src / test / java / org / argeo / slc / gpx / hibernate / HibernateTrackDaoTestCase.java
1 /*
2 * Copyright (C) 2010 Mathieu Baudier <mbaudier@argeo.org>
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17 package org.argeo.slc.gpx.hibernate;
18
19 import java.io.File;
20 import java.io.FileInputStream;
21
22 import org.apache.commons.io.IOUtils;
23 import org.argeo.slc.gpx.TrackDao;
24 import org.argeo.slc.hibernate.unit.HibernateTestCase;
25 import org.hibernatespatial.HBSpatialExtension;
26 import org.hibernatespatial.cfg.HSConfiguration;
27
28 public class HibernateTrackDaoTestCase extends HibernateTestCase {
29 static {
30 HSConfiguration config = new HSConfiguration();
31 config.setDefaultDialect("org.hibernatespatial.postgis.PostgisDialect");
32
33 HBSpatialExtension.setConfiguration(config);
34 }
35
36 public void testImport() throws Exception {
37 String sensor = "mbaudier";
38 File dir = new File("/home/mbaudier/ArgeoOffice/perso/gps/trips/2010");
39
40 TrackDao trackDao = getBean(TrackDao.class);
41 long begin = System.currentTimeMillis();
42 for (File file : dir.listFiles()) {
43 if (!file.getName().endsWith(".gpx"))
44 continue;
45 FileInputStream in = null;
46 try {
47 in = new FileInputStream(file);
48 trackDao.importTrackPoints(sensor, in);
49 } catch (Exception e) {
50 log.warn("Could not import " + file + ": " + e.getMessage());
51 throw e;
52 } finally {
53 IOUtils.closeQuietly(in);
54 }
55 }
56 double duration = System.currentTimeMillis() - begin;
57 if (log.isDebugEnabled())
58 log.debug("Imported files from " + dir + " in "
59 + (duration / 1000 / 60) + " min");
60 }
61 }