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