/* * Copyright (C) 2010 Mathieu Baudier * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.argeo.slc.gpx.hibernate; public class HibernateTrackDaoTestCase {//extends HibernateTestCase { // static { // HSConfiguration config = new HSConfiguration(); // config.setDefaultDialect("org.hibernatespatial.postgis.PostgisDialect"); // // HBSpatialExtension.setConfiguration(config); // } // // public void testImport() throws Exception { // String sensor = "mbaudier"; // File dir = new File("/home/mbaudier/ArgeoOffice/perso/gps/trips/2010"); // // TrackDao trackDao = getBean(TrackDao.class); // long begin = System.currentTimeMillis(); // for (File file : dir.listFiles()) { // if (!file.getName().endsWith(".gpx")) // continue; // FileInputStream in = null; // try { // in = new FileInputStream(file); // trackDao.importTrackPoints(sensor, in); // } catch (Exception e) { // log.warn("Could not import " + file + ": " + e.getMessage()); // throw e; // } finally { // IOUtils.closeQuietly(in); // } // } // double duration = System.currentTimeMillis() - begin; // if (log.isDebugEnabled()) // log.debug("Imported files from " + dir + " in " // + (duration / 1000 / 60) + " min"); // } }