Package org.apache.airavata.workflow.model.component.local

Source Code of org.apache.airavata.workflow.model.component.local.LocalComponentRegistry

/*
*
* 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.airavata.workflow.model.component.local;

import java.io.File;
import java.io.IOException;
import java.util.ArrayList;
import java.util.List;

import org.apache.airavata.common.utils.IOUtil;
import org.apache.airavata.workflow.model.component.ComponentException;
import org.apache.airavata.workflow.model.component.ComponentReference;
import org.apache.airavata.workflow.model.component.ComponentRegistry;
import org.apache.airavata.workflow.model.component.ComponentRegistryException;
import org.apache.airavata.workflow.model.component.ws.WSComponent;
import org.apache.airavata.workflow.model.component.ws.WSComponentFactory;
import org.apache.airavata.workflow.model.exceptions.WorkflowRuntimeException;
import org.apache.airavata.workflow.model.utils.FileConstants;

public class LocalComponentRegistry extends ComponentRegistry {

  private File directory;

  /**
   * Creates a LocalComponentRegistryClient
   *
   * @param directory
   */
  public LocalComponentRegistry(String directory) {
    this(new File(directory));
  }

  /**
   * Creates a WebComponentRegistryClient
   *
   * @param directory
   *            The path of the directory that contains the component files.
   */
  public LocalComponentRegistry(File directory) {
    this.directory = directory;
  }

  /**
   * @see org.apache.airavata.workflow.model.component.registry.ComponentRegistry#getName()
   */
  @Override
  public String getName() {
    return this.directory.toString();
  }

  /**
   * Returns a ComponentTree.
   *
   * @return The ComponentTree
   * @throws ComponentRegistryException
   */
  @Override
  public List<ComponentReference> getComponentReferenceList() throws ComponentRegistryException {
    try {
      List<ComponentReference> componentTree = getComponentTree(this.directory);
      return componentTree;
    } catch (RuntimeException e) {
      throw new ComponentRegistryException(e);
    }
  }

  /**
   * Returns a component of a specified name.
   *
   * @param name
   *            The name of the component. The name here is a file path
   *            relative to the directory.
   * @return The component of a specified name
   * @throws ComponentException
   * @throws ComponentRegistryException
   */
  public WSComponent getComponent(String name) throws ComponentException,
      ComponentRegistryException {
    // This method is used only by unit tests.
    File file = new File(this.directory, name);
    return getComponents(file).get(0);
  }

  /**
   * @param file
   * @return The list of components defined in the specified file.
   * @throws ComponentException
   * @throws ComponentRegistryException
   */
  public List<WSComponent> getComponents(File file)
      throws ComponentException, ComponentRegistryException {
    try {
      String compString = IOUtil.readFileToString(file);
      List<WSComponent> components = WSComponentFactory
          .createComponents(compString);
      return components;
    } catch (IOException e) {
      throw new ComponentRegistryException(e);
    }
  }

  private List<ComponentReference> getComponentTree(File dir) {
    if (!dir.isDirectory()) {
      throw new WorkflowRuntimeException(dir + "is not a directory.");
    }

    boolean found = false;
    List<ComponentReference> tree = new ArrayList<ComponentReference>();
    for (File file : dir.listFiles()) {
      String fileName = file.getName();
      if (file.isDirectory()) {
        List<ComponentReference> subTree = getComponentTree(file);
        if (subTree != null) {
          found = true;
          LocalComponentReference componentRef = new LocalComponentReference(file.getName(), file, this);
          componentRef.getChildComponentReferences().addAll(subTree);
          tree.add(componentRef);
        }
      } else if (fileName.endsWith(FileConstants.XML_SUFFIX)
          || fileName.endsWith(FileConstants.WSDL_SUFFIX)
          || fileName.endsWith(FileConstants.WSDL_SUFFIX2)) {
        found = true;
        LocalComponentReference componentReference = new LocalComponentReference(file.getName(), file, this);
        tree.add(componentReference);
      }
    }
    if (!found) {
      // Doesn't show a directory that doesn't have any components.
      tree = null;
    }
    return tree;
  }
}
TOP

Related Classes of org.apache.airavata.workflow.model.component.local.LocalComponentRegistry

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.