]> source.dussan.org Git - archiva.git/blob
be96186e163c0cbd1798ec105e682bc84c2e44bc
[archiva.git] /
1 package org.apache.maven.archiva.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 java.util.HashSet;
23 import java.util.Iterator;
24 import java.util.List;
25 import java.util.Set;
26
27 import org.apache.maven.archiva.configuration.FileTypes;
28
29 /**
30  * AbstractMonitoredConsumer 
31  *
32  * @version $Id$
33  */
34 public abstract class AbstractMonitoredConsumer
35     implements Consumer
36 {
37     private Set<ConsumerMonitor> monitors = new HashSet<ConsumerMonitor>();
38     
39     public void addConsumerMonitor( ConsumerMonitor monitor )
40     {
41         monitors.add( monitor );
42     }
43
44     public void removeConsumerMonitor( ConsumerMonitor monitor )
45     {
46         monitors.remove( monitor );
47     }
48
49     protected void triggerConsumerError( String type, String message )
50     {
51         for ( Iterator<ConsumerMonitor> itmonitors = monitors.iterator(); itmonitors.hasNext(); )
52         {
53             ConsumerMonitor monitor = itmonitors.next();
54             try
55             {
56                 monitor.consumerError( this, type, message );
57             }
58             catch ( Throwable t )
59             {
60                 /* discard error */
61             }
62         }
63     }
64
65     protected void triggerConsumerWarning( String type, String message )
66     {
67         for ( Iterator<ConsumerMonitor> itmonitors = monitors.iterator(); itmonitors.hasNext(); )
68         {
69             ConsumerMonitor monitor = itmonitors.next();
70             try
71             {
72                 monitor.consumerWarning( this, type, message );
73             }
74             catch ( Throwable t )
75             {
76                 /* discard error */
77             }
78         }
79     }
80
81     protected void triggerConsumerInfo( String message )
82     {
83         for ( Iterator<ConsumerMonitor> itmonitors = monitors.iterator(); itmonitors.hasNext(); )
84         {
85             ConsumerMonitor monitor = itmonitors.next();
86             try
87             {
88                 monitor.consumerInfo( this, message );
89             }
90             catch ( Throwable t )
91             {
92                 /* discard error */
93             }
94         }
95     }
96
97     public boolean isProcessUnmodified()
98     {
99         return false;
100     }
101
102     protected List<String> getDefaultArtifactExclusions()
103     {
104         return FileTypes.DEFAULT_EXCLUSIONS;
105     }
106     
107     
108 }