1 package org.apache.maven.archiva.dependency.graph.tasks;
4 * Licensed to the Apache Software Foundation (ASF) under one
5 * or more contributor license agreements. See the NOTICE file
6 * distributed with this work for additional information
7 * regarding copyright ownership. The ASF licenses this file
8 * to you under the Apache License, Version 2.0 (the
9 * "License"); you may not use this file except in compliance
10 * with the License. You may obtain a copy of the License at
12 * http://www.apache.org/licenses/LICENSE-2.0
14 * Unless required by applicable law or agreed to in writing,
15 * software distributed under the License is distributed on an
16 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
17 * KIND, either express or implied. See the License for the
18 * specific language governing permissions and limitations
22 import org.apache.maven.archiva.dependency.graph.DependencyGraph;
23 import org.apache.maven.archiva.dependency.graph.DependencyGraphBuilder;
24 import org.apache.maven.archiva.dependency.graph.DependencyGraphUtils;
25 import org.apache.maven.archiva.dependency.graph.GraphTask;
26 import org.apache.maven.archiva.dependency.graph.GraphTaskException;
27 import org.apache.maven.archiva.dependency.graph.walk.DependencyGraphWalker;
28 import org.apache.maven.archiva.dependency.graph.walk.WalkDepthFirstSearch;
31 * PopulateGraphMasterTask - will perform a resolve / depman apply loop until the graph is fully populated.
33 * @author <a href="mailto:joakime@apache.org">Joakim Erdfelt</a>
37 * role="org.apache.maven.archiva.dependency.graph.GraphTask"
38 * role-hint="populate-graph"
39 * instantiation-strategy="per-lookup"
41 public class PopulateGraphMasterTask
44 private DependencyGraphBuilder builder;
46 private ResolveGraphTask resolveGraphTask = new ResolveGraphTask();
48 private DependencyManagementApplier depManApplier = new DependencyManagementApplier();
50 public void executeTask( DependencyGraph graph )
51 throws GraphTaskException
53 DependencyGraphWalker walker = new WalkDepthFirstSearch();
60 resolveGraphTask.executeTask( graph );
61 walker.visit( graph, depManApplier );
63 if ( !depManApplier.hasCreatedNodes() || ( maxiters < 0 ) )
72 DependencyGraphUtils.cleanupOrphanedNodes( graph );
75 public String getTaskId()
77 return "populate-graph";
80 public DependencyGraphBuilder getBuilder()
85 public void setBuilder( DependencyGraphBuilder builder )
87 this.builder = builder;
88 this.resolveGraphTask.setBuilder( builder );
89 this.depManApplier.setBuilder( builder );