]> source.dussan.org Git - archiva.git/blob
82a32f525c28ebb57942acd945332b2ece1f9455
[archiva.git] /
1 package org.apache.maven.archiva.common.consumers;
2
3 /*
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
11  *
12  *  http://www.apache.org/licenses/LICENSE-2.0
13  *
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
19  * under the License.
20  */
21
22 import org.apache.maven.archiva.common.utils.BaseFile;
23 import org.codehaus.plexus.util.StringUtils;
24
25 import java.util.ArrayList;
26 import java.util.HashMap;
27 import java.util.Iterator;
28 import java.util.List;
29 import java.util.Map;
30 import java.util.Set;
31
32 /**
33  * FileProblemsTracker
34  *
35  * @author <a href="mailto:joakim@erdfelt.com">Joakim Erdfelt</a>
36  * @version $Id$
37  */
38 public class FileProblemsTracker
39 {
40     private Map problemMap = new HashMap();
41
42     public void addProblem( BaseFile file, String message )
43     {
44         String path = file.getRelativePath();
45         addProblem( path, message );
46     }
47
48     private void addProblem( String path, String message )
49     {
50         path = StringUtils.replace( path, "\\", "/" );
51         List problems = getProblems( path );
52         problems.add( message );
53         problemMap.put( path, problems );
54     }
55
56     public void addProblem( ConsumerException e )
57     {
58         if ( e.getFile() != null )
59         {
60             this.addProblem( e.getFile(), e.getMessage() );
61         }
62         else
63         {
64             this.addProblem( "|fatal|", e.getMessage() );
65         }
66     }
67
68     public boolean hasProblems( String path )
69     {
70         if ( !problemMap.containsKey( path ) )
71         {
72             // No tracking of path at all.
73             return false;
74         }
75
76         List problems = (List) problemMap.get( path );
77         if ( problems == null )
78         {
79             // found path, but no list.
80             return false;
81         }
82
83         return !problems.isEmpty();
84     }
85
86     public Set getPaths()
87     {
88         return problemMap.keySet();
89     }
90
91     public List getProblems( String path )
92     {
93         List problems = (List) problemMap.get( path );
94         if ( problems == null )
95         {
96             problems = new ArrayList();
97         }
98
99         return problems;
100     }
101
102     public int getProblemCount()
103     {
104         int count = 0;
105         for ( Iterator it = problemMap.values().iterator(); it.hasNext(); )
106         {
107             List problems = (List) it.next();
108             count += problems.size();
109         }
110
111         return count;
112     }
113
114 }