org.kuali.maven.plugins.graph.validate.DependencyNodeValidator.java Source code

Java tutorial

Introduction

Here is the source code for org.kuali.maven.plugins.graph.validate.DependencyNodeValidator.java

Source

/**
 * Copyright 2011-2012 The Kuali Foundation
 *
 * Licensed under the Educational Community 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.opensource.org/licenses/ecl2.php
 *
 * 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.kuali.maven.plugins.graph.validate;

import java.util.ArrayList;
import java.util.List;

import org.apache.maven.shared.dependency.tree.DependencyNode;
import org.kuali.maven.plugins.graph.pojo.MavenContext;
import org.kuali.maven.plugins.graph.pojo.State;
import org.kuali.maven.plugins.graph.tree.Node;
import org.kuali.maven.plugins.graph.tree.TreeHelper;
import org.springframework.util.Assert;

/**
 * <p>
 * Abstraction for validation logic that is common to all dependency nodes in the tree regardless of what
 * <code>State</code> they are marked with.
 * </p>
 *
 * <p>
 * Extending classes implement the validateState() method to provide validation for dependency nodes marked with a
 * specific <code>State</code>
 * </p>
 *
 * @author jeffcaddel
 */
public abstract class DependencyNodeValidator implements NodeValidator<MavenContext> {
    TreeHelper helper = new TreeHelper();
    State state;

    public DependencyNodeValidator(State state) {
        super();
        this.state = state;
    }

    protected abstract void validateState(List<DependencyNode> nodes);

    @Override
    public void validate(Node<MavenContext> node) {
        List<Node<MavenContext>> list = node.getBreadthFirstList();
        List<DependencyNode> nodes = new ArrayList<DependencyNode>();
        for (Node<MavenContext> element : list) {
            DependencyNode dn = element.getObject().getDependencyNode();
            Assert.state(dn.getArtifact() != null, "Artifact for a dependency node can't be null");
            State elementState = State.getState(dn.getState());
            if (state == elementState) {
                nodes.add(dn);
            }
        }
        validateState(nodes);
    }

    public State getState() {
        return state;
    }

}