]> 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
21d9121cea1106cc69465b1a56f0df471c781f97
[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
20 public class HibernateTrackDaoTestCase {//extends HibernateTestCase {
21 // static {
22 // HSConfiguration config = new HSConfiguration();
23 // config.setDefaultDialect("org.hibernatespatial.postgis.PostgisDialect");
24 //
25 // HBSpatialExtension.setConfiguration(config);
26 // }
27 //
28 // public void testImport() throws Exception {
29 // String sensor = "mbaudier";
30 // File dir = new File("/home/mbaudier/ArgeoOffice/perso/gps/trips/2010");
31 //
32 // TrackDao trackDao = getBean(TrackDao.class);
33 // long begin = System.currentTimeMillis();
34 // for (File file : dir.listFiles()) {
35 // if (!file.getName().endsWith(".gpx"))
36 // continue;
37 // FileInputStream in = null;
38 // try {
39 // in = new FileInputStream(file);
40 // trackDao.importTrackPoints(sensor, in);
41 // } catch (Exception e) {
42 // log.warn("Could not import " + file + ": " + e.getMessage());
43 // throw e;
44 // } finally {
45 // IOUtils.closeQuietly(in);
46 // }
47 // }
48 // double duration = System.currentTimeMillis() - begin;
49 // if (log.isDebugEnabled())
50 // log.debug("Imported files from " + dir + " in "
51 // + (duration / 1000 / 60) + " min");
52 // }
53 }