AzkabanFlow.java

74 lines | 1.943 kB Blame History Raw Download
/*
 * Copyright 2017 LinkedIn Corp.
 *
 * 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 azkaban.project;

import azkaban.utils.Props;
import com.google.common.collect.ImmutableMap;
import java.util.Collection;
import java.util.HashMap;
import java.util.Map;

public class AzkabanFlow extends AzkabanNode {

  private final Map<String, AzkabanNode> nodes;

  private AzkabanFlow(final String name, final Props props,
      final Map<String, AzkabanNode> nodes) {
    super(name, props);
    this.nodes = nodes;
  }

  public Map<String, AzkabanNode> getNodes() {
    return nodes;
  }

  public AzkabanJob getJob(final String name) {
    return (AzkabanJob) nodes.get(name);
  }

  public static class AzkabanFlowBuilder {

    private String name;
    private Props props;
    private Map<String, AzkabanNode> nodes;

    public AzkabanFlowBuilder setName(final String name) {
      this.name = name;
      return this;
    }

    public AzkabanFlowBuilder setProps(final Props props) {
      this.props = props;
      return this;
    }

    public AzkabanFlowBuilder setNodes(final Collection<? extends AzkabanNode> azkabanNodes) {
      final Map<String, AzkabanNode> tempNodes = new HashMap<>();
      for (final AzkabanNode node : azkabanNodes) {
        tempNodes.put(node.getName(), node);
      }
      nodes = ImmutableMap.copyOf(tempNodes);
      return this;
    }

    public AzkabanFlow build() {
      return new AzkabanFlow(name, props, nodes);
    }
  }
}