Package org.openstreetmap.osmosis.core.progress.v0_6

Source Code of org.openstreetmap.osmosis.core.progress.v0_6.EntityProgressLoggerFactory

// This software is released into the Public Domain.  See copying.txt for details.
package org.openstreetmap.osmosis.core.progress.v0_6;

import org.openstreetmap.osmosis.core.pipeline.common.TaskConfiguration;
import org.openstreetmap.osmosis.core.pipeline.common.TaskManager;
import org.openstreetmap.osmosis.core.pipeline.common.TaskManagerFactory;
import org.openstreetmap.osmosis.core.pipeline.v0_6.SinkSourceManager;


/**
* The task manager factory for an entity progress logger.
*
* @author Brett Henderson
*/
public class EntityProgressLoggerFactory extends TaskManagerFactory {
  private static final String ARG_LOG_INTERVAL = "interval";
  private static final int DEFAULT_LOG_INTERVAL = 5;
 
  private static final String ARG_LABEL = "label";
  private static final String DEFAULT_LABEL = "";

  /**
   * {@inheritDoc}
   */
  @Override
  protected TaskManager createTaskManagerImpl(TaskConfiguration taskConfig) {
    EntityProgressLogger task;
    int interval;
    String label;
   
    // Get the task arguments.
    interval = getIntegerArgument(taskConfig, ARG_LOG_INTERVAL, DEFAULT_LOG_INTERVAL);
    label = getStringArgument(taskConfig, ARG_LABEL, DEFAULT_LABEL);
   
    // Build the task object.
    task = new EntityProgressLogger(interval * 1000, label);
   
    return new SinkSourceManager(taskConfig.getId(), task, taskConfig.getPipeArgs());
  }
}
TOP

Related Classes of org.openstreetmap.osmosis.core.progress.v0_6.EntityProgressLoggerFactory

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.