All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.oodt.cas.pge.writers.VelocityConfigFileWriter Maven / Gradle / Ivy

Go to download

Allows data processing jobs not written in conformance with the PCS PGE (Production Generation Executive) interface to be run within the PCS.

There is a newer version: 1.9.1
Show newest version
/**
 * Licensed to the Apache Software Foundation (ASF) under one or more
 * contributor license agreements.  See the NOTICE file distributed with
 * this work for additional information regarding copyright ownership.
 * The ASF licenses this file to You 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.apache.oodt.cas.pge.writers;

//JDK imports
import java.io.File;
import java.io.StringWriter;
import java.util.logging.Logger;

//APACHE imports
import org.apache.commons.io.FileUtils;
import org.apache.oodt.cas.metadata.Metadata;
import org.apache.velocity.Template;
import org.apache.velocity.VelocityContext;
import org.apache.velocity.app.Velocity;

/**
 * 
 * A PGE input file writer based on Apache Velocity and Paul Ramirez's need to
 * make my code better.
 * 
 * First var args parameter to
 * {@link #createConfigFile(String, Metadata, Object...)} is the template
 * directory full path. Second var args parameter to
 * {@link #createConfigFile(String, Metadata, Object...)} is the template file
 * name.
 * 
 */
public class VelocityConfigFileWriter extends DynamicConfigFileWriter {

  /*
   * (non-Javadoc)
   * 
   * @see
   * org.apache.oodt.cas.pge.writers.DynamicConfigFileWriter#generateFile(java
   * .lang.String, org.apache.oodt.cas.metadata.Metadata,
   * java.util.logging.Logger, java.lang.Object[])
   */
  @Override
  public File generateFile(String filePath, Metadata metadata, Logger logger,
      Object... args) throws Exception {
    File configFile = new File(filePath);
    VelocityMetadata velocityMetadata = new VelocityMetadata(metadata);
    // Velocity requires you to set a path of where to look for
    // templates. This path defaults to . if not set.
    int slashIndex = ((String) args[0]).lastIndexOf('/');
    String templatePath = ((String) args[0]).substring(0, slashIndex);
    Velocity.setProperty("file.resource.loader.path", templatePath);
    // Initialize Velocity and set context up
    Velocity.init();
    VelocityContext context = new VelocityContext();
    context.put("metadata", velocityMetadata);
    context.put("env", System.getenv());
    // Load template from templatePath
    String templateName = ((String) args[0]).substring(slashIndex);
    Template template = Velocity.getTemplate(templateName);
    // Fill out template and write to file
    StringWriter sw = new StringWriter();
    template.merge(context, sw);
    FileUtils.writeStringToFile(configFile, sw.toString());
    return configFile;
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy