Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 8e45044a718aa5fdddf6da88effe8766a7d4a0e6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
/*
 * Copyright (c) 2007-2009, 2011, 2012, 2015, 2016, 2019 Eike Stepper (Loehne, Germany) and others.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 *    Eike Stepper - initial API and implementation
 */
package org.eclipse.net4j.internal.util.container;

import org.eclipse.net4j.internal.util.bundle.OM;
import org.eclipse.net4j.util.container.IElementProcessor;
import org.eclipse.net4j.util.container.IManagedContainer;
import org.eclipse.net4j.util.lifecycle.Lifecycle;

import org.eclipse.core.runtime.IConfigurationElement;

import java.util.ArrayList;
import java.util.Collection;
import java.util.Iterator;
import java.util.List;
import java.util.ListIterator;

/**
 * @author Eike Stepper
 */
public class PluginElementProcessorList extends Lifecycle implements List<IElementProcessor>
{
  private static final String ATTR_CLASS = "class"; //$NON-NLS-1$

  public static final String NAMESPACE = OM.BUNDLE_ID;

  public static final String EXT_POINT = "elementProcessors"; //$NON-NLS-1$

  private List<IElementProcessor> processors = new ArrayList<>();

  private Object extensionRegistryListener;

  public PluginElementProcessorList()
  {
  }

  @Override
  public boolean add(IElementProcessor o)
  {
    return processors.add(o);
  }

  @Override
  public void add(int index, IElementProcessor element)
  {
    processors.add(index, element);
  }

  @Override
  public boolean addAll(Collection<? extends IElementProcessor> c)
  {
    return processors.addAll(c);
  }

  @Override
  public boolean addAll(int index, Collection<? extends IElementProcessor> c)
  {
    return processors.addAll(index, c);
  }

  @Override
  public void clear()
  {
    processors.clear();
  }

  @Override
  public boolean contains(Object o)
  {
    return processors.contains(o);
  }

  @Override
  public boolean containsAll(Collection<?> c)
  {
    return processors.containsAll(c);
  }

  @Override
  public boolean equals(Object o)
  {
    return processors.equals(o);
  }

  @Override
  public IElementProcessor get(int index)
  {
    return processors.get(index);
  }

  @Override
  public int hashCode()
  {
    return processors.hashCode();
  }

  @Override
  public int indexOf(Object o)
  {
    return processors.indexOf(o);
  }

  @Override
  public boolean isEmpty()
  {
    return processors.isEmpty();
  }

  @Override
  public Iterator<IElementProcessor> iterator()
  {
    return processors.iterator();
  }

  @Override
  public int lastIndexOf(Object o)
  {
    return processors.lastIndexOf(o);
  }

  @Override
  public ListIterator<IElementProcessor> listIterator()
  {
    return processors.listIterator();
  }

  @Override
  public ListIterator<IElementProcessor> listIterator(int index)
  {
    return processors.listIterator(index);
  }

  @Override
  public IElementProcessor remove(int index)
  {
    return processors.remove(index);
  }

  @Override
  public boolean remove(Object o)
  {
    return processors.remove(o);
  }

  @Override
  public boolean removeAll(Collection<?> c)
  {
    return processors.removeAll(c);
  }

  @Override
  public boolean retainAll(Collection<?> c)
  {
    return processors.retainAll(c);
  }

  @Override
  public IElementProcessor set(int index, IElementProcessor element)
  {
    return processors.set(index, element);
  }

  @Override
  public int size()
  {
    return processors.size();
  }

  @Override
  public List<IElementProcessor> subList(int fromIndex, int toIndex)
  {
    return processors.subList(fromIndex, toIndex);
  }

  @Override
  public Object[] toArray()
  {
    return processors.toArray();
  }

  @Override
  public <T> T[] toArray(T[] a)
  {
    return processors.toArray(a);
  }

  @Override
  public String toString()
  {
    return processors.toString();
  }

  @Override
  protected void doActivate() throws Exception
  {
    super.doActivate();
    try
    {
      doActivateOSGi();
    }
    catch (Throwable t)
    {
      OM.LOG.warn(t);
    }
  }

  @Override
  protected void doDeactivate() throws Exception
  {
    try
    {
      doDeactivateOSGi();
    }
    catch (Throwable t)
    {
      OM.LOG.warn(t);
    }

    processors.clear();
    super.doDeactivate();
  }

  private void doActivateOSGi() throws Exception
  {
    org.eclipse.core.runtime.IExtensionRegistry extensionRegistry = org.eclipse.core.runtime.Platform.getExtensionRegistry();
    if (extensionRegistry == null)
    {
      return;
    }

    for (IConfigurationElement configurationElement : extensionRegistry.getConfigurationElementsFor(NAMESPACE, EXT_POINT))
    {
      processors.add(new ElementProcessorDescriptor(configurationElement));
    }
  }

  private void doDeactivateOSGi()
  {
    org.eclipse.core.runtime.IExtensionRegistry extensionRegistry = org.eclipse.core.runtime.Platform.getExtensionRegistry();
    if (extensionRegistry == null)
    {
      return;
    }

    extensionRegistry.removeRegistryChangeListener((org.eclipse.core.runtime.IRegistryChangeListener)extensionRegistryListener);
  }

  /**
   * A lazy descriptor for an {@link IElementProcessor element processor} that is declared in a plugin.xml.
   * <p>
   * <b>Note:</b> This level of indirection is required to delay class loading and plug-in activation that is triggered by
   * IConfigurationElement.createExecutableExtension(). Upstream plug-ins may, as part of their legal activation process,
   * call back down to PluginContainer, which is at this point still in its own activation process and has not initialized
   * IPluginContainer.INSTANCE, yet.
   *
   * @author Eike Stepper
   */
  private static final class ElementProcessorDescriptor implements IElementProcessor
  {
    private final IConfigurationElement configurationElement;

    private IElementProcessor delegate;

    public ElementProcessorDescriptor(IConfigurationElement configurationElement)
    {
      this.configurationElement = configurationElement;
    }

    @Override
    public Object process(IManagedContainer container, String productGroup, String factoryType, String description, Object element)
    {
      IElementProcessor elementProcessor = getElementProcessor();
      return elementProcessor.process(container, productGroup, factoryType, description, element);
    }

    private synchronized IElementProcessor getElementProcessor()
    {
      if (delegate == null)
      {
        try
        {
          delegate = (IElementProcessor)configurationElement.createExecutableExtension(ATTR_CLASS);
        }
        catch (Exception ex)
        {
          OM.LOG.warn("A problem occured during element post processing", ex); //$NON-NLS-1$
        }
      }

      return delegate;
    }
  }
}

Back to the top