~ubuntu-branches/ubuntu/oneiric/monodevelop/oneiric

« back to all changes in this revision

Viewing changes to contrib/NGit/NGit.Events/ListenerList.cs

  • Committer: Bazaar Package Importer
  • Author(s): Jo Shields
  • Date: 2011-06-27 17:03:13 UTC
  • mto: (1.8.1 upstream)
  • mto: This revision was merged to the branch mainline in revision 54.
  • Revision ID: james.westby@ubuntu.com-20110627170313-6cvz3s19x6e9hqe9
ImportĀ upstreamĀ versionĀ 2.5.92+dfsg

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
This code is derived from jgit (http://eclipse.org/jgit).
 
3
Copyright owners are documented in jgit's IP log.
 
4
 
 
5
This program and the accompanying materials are made available
 
6
under the terms of the Eclipse Distribution License v1.0 which
 
7
accompanies this distribution, is reproduced below, and is
 
8
available at http://www.eclipse.org/org/documents/edl-v10.php
 
9
 
 
10
All rights reserved.
 
11
 
 
12
Redistribution and use in source and binary forms, with or
 
13
without modification, are permitted provided that the following
 
14
conditions are met:
 
15
 
 
16
- Redistributions of source code must retain the above copyright
 
17
  notice, this list of conditions and the following disclaimer.
 
18
 
 
19
- Redistributions in binary form must reproduce the above
 
20
  copyright notice, this list of conditions and the following
 
21
  disclaimer in the documentation and/or other materials provided
 
22
  with the distribution.
 
23
 
 
24
- Neither the name of the Eclipse Foundation, Inc. nor the
 
25
  names of its contributors may be used to endorse or promote
 
26
  products derived from this software without specific prior
 
27
  written permission.
 
28
 
 
29
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
 
30
CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
 
31
INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
 
32
OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
 
33
ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
 
34
CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
 
35
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
 
36
NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
 
37
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
 
38
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
 
39
STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
 
40
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
 
41
ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 
42
*/
 
43
 
 
44
using System;
 
45
using System.Collections.Generic;
 
46
using NGit.Events;
 
47
using Sharpen;
 
48
 
 
49
namespace NGit.Events
 
50
{
 
51
        /// <summary>
 
52
        /// Manages a thread-safe list of
 
53
        /// <see cref="RepositoryListener">RepositoryListener</see>
 
54
        /// s.
 
55
        /// </summary>
 
56
        public class ListenerList
 
57
        {
 
58
                private readonly ConcurrentMap<Type, CopyOnWriteArrayList<ListenerHandle>> lists = 
 
59
                        new ConcurrentHashMap<Type, CopyOnWriteArrayList<ListenerHandle>>();
 
60
 
 
61
                /// <summary>Register an IndexChangedListener.</summary>
 
62
                /// <remarks>Register an IndexChangedListener.</remarks>
 
63
                /// <param name="listener">the listener implementation.</param>
 
64
                /// <returns>handle to later remove the listener.</returns>
 
65
                public virtual ListenerHandle AddIndexChangedListener(IndexChangedListener listener
 
66
                        )
 
67
                {
 
68
                        return AddListener<IndexChangedListener>(listener);
 
69
                }
 
70
 
 
71
                /// <summary>Register a RefsChangedListener.</summary>
 
72
                /// <remarks>Register a RefsChangedListener.</remarks>
 
73
                /// <param name="listener">the listener implementation.</param>
 
74
                /// <returns>handle to later remove the listener.</returns>
 
75
                public virtual ListenerHandle AddRefsChangedListener(RefsChangedListener listener
 
76
                        )
 
77
                {
 
78
                        return AddListener<RefsChangedListener>(listener);
 
79
                }
 
80
 
 
81
                /// <summary>Register a ConfigChangedListener.</summary>
 
82
                /// <remarks>Register a ConfigChangedListener.</remarks>
 
83
                /// <param name="listener">the listener implementation.</param>
 
84
                /// <returns>handle to later remove the listener.</returns>
 
85
                public virtual ListenerHandle AddConfigChangedListener(ConfigChangedListener listener
 
86
                        )
 
87
                {
 
88
                        return AddListener<ConfigChangedListener>(listener);
 
89
                }
 
90
 
 
91
                /// <summary>Add a listener to the list.</summary>
 
92
                /// <remarks>Add a listener to the list.</remarks>
 
93
                /// <?></?>
 
94
                /// <param name="type">type of listener being registered.</param>
 
95
                /// <param name="listener">the listener instance.</param>
 
96
                /// <returns>a handle to later remove the registration, if desired.</returns>
 
97
                public virtual ListenerHandle AddListener<T>(T listener) where T:RepositoryListener
 
98
                {
 
99
                        System.Type type = typeof(T);
 
100
                        ListenerHandle handle = new ListenerHandle(this, type, listener);
 
101
                        Add(handle);
 
102
                        return handle;
 
103
                }
 
104
 
 
105
                /// <summary>Dispatch an event to all interested listeners.</summary>
 
106
                /// <remarks>
 
107
                /// Dispatch an event to all interested listeners.
 
108
                /// <p>
 
109
                /// Listeners are selected by the type of listener the event delivers to.
 
110
                /// </remarks>
 
111
                /// <param name="event">the event to deliver.</param>
 
112
                public virtual void Dispatch(RepositoryEvent @event)
 
113
                {
 
114
                        IList<ListenerHandle> list = lists.Get(@event.GetListenerType());
 
115
                        if (list != null)
 
116
                        {
 
117
                                foreach (ListenerHandle handle in list)
 
118
                                {
 
119
                                        @event.Dispatch(handle.listener);
 
120
                                }
 
121
                        }
 
122
                }
 
123
 
 
124
                private void Add(ListenerHandle handle)
 
125
                {
 
126
                        IList<ListenerHandle> list = lists.Get(handle.type);
 
127
                        if (list == null)
 
128
                        {
 
129
                                CopyOnWriteArrayList<ListenerHandle> newList;
 
130
                                newList = new CopyOnWriteArrayList<ListenerHandle>();
 
131
                                list = lists.PutIfAbsent(handle.type, newList);
 
132
                                if (list == null)
 
133
                                {
 
134
                                        list = newList;
 
135
                                }
 
136
                        }
 
137
                        list.AddItem(handle);
 
138
                }
 
139
 
 
140
                internal virtual void Remove(ListenerHandle handle)
 
141
                {
 
142
                        IList<ListenerHandle> list = lists.Get(handle.type);
 
143
                        if (list != null)
 
144
                        {
 
145
                                list.Remove(handle);
 
146
                        }
 
147
                }
 
148
        }
 
149
}