Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: f1c4ea0945027691c6a821de45f37f2ce90ee1e3 (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
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
/***************************************************************************
 * Copyright (c) 2004 - 2008 Eike Stepper, Germany.
 * 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.emf.internal.cdo.util;

import org.eclipse.emf.cdo.CDOObject;
import org.eclipse.emf.cdo.CDOSession;
import org.eclipse.emf.cdo.CDOTransaction;
import org.eclipse.emf.cdo.CDOTransactionHandler;
import org.eclipse.emf.cdo.CDOView;
import org.eclipse.emf.cdo.internal.protocol.model.InternalCDOPackage;
import org.eclipse.emf.cdo.protocol.id.CDOIDMetaRange;
import org.eclipse.emf.cdo.protocol.model.CDOPackage;
import org.eclipse.emf.cdo.protocol.revision.delta.CDOFeatureDelta;
import org.eclipse.emf.cdo.util.CDOPackageRegistry;
import org.eclipse.emf.cdo.util.CDOPackageType;
import org.eclipse.emf.cdo.util.CDOPackageTypeRegistry;
import org.eclipse.emf.cdo.util.EMFUtil;

import org.eclipse.emf.internal.cdo.CDOSessionImpl;
import org.eclipse.emf.internal.cdo.bundle.OM;

import org.eclipse.net4j.internal.util.container.ContainerEventAdapter;
import org.eclipse.net4j.internal.util.lifecycle.LifecycleEventAdapter;
import org.eclipse.net4j.internal.util.om.trace.ContextTracer;
import org.eclipse.net4j.util.container.IContainer;
import org.eclipse.net4j.util.event.IListener;
import org.eclipse.net4j.util.lifecycle.ILifecycle;

import org.eclipse.emf.ecore.EClass;
import org.eclipse.emf.ecore.EFactory;
import org.eclipse.emf.ecore.EPackage;
import org.eclipse.emf.ecore.impl.EPackageImpl;
import org.eclipse.emf.ecore.impl.EPackageRegistryImpl;

import java.text.MessageFormat;
import java.util.ArrayList;
import java.util.HashSet;
import java.util.List;
import java.util.Map;
import java.util.Set;

/**
 * @author Eike Stepper
 */
public class CDOPackageRegistryImpl extends EPackageRegistryImpl implements CDOPackageRegistry
{
  private final ContextTracer TRACER = new ContextTracer(OM.DEBUG_MODEL, CDOPackageRegistryImpl.class);

  private static final long serialVersionUID = 1L;

  private CDOSessionImpl session;

  public CDOPackageRegistryImpl()
  {
  }

  public CDOSessionImpl getSession()
  {
    return session;
  }

  public void setSession(CDOSession session)
  {
    this.session = (CDOSessionImpl)session;
  }

  public void putPackageDescriptor(CDOPackage cdoPackage)
  {
    checkSession();
    EPackage.Descriptor descriptor = new RemotePackageDescriptor(cdoPackage);
    String uri = cdoPackage.getPackageURI();
    if (TRACER.isEnabled())
    {
      TRACER.format("Registering package descriptor for {0}", uri);
    }

    put(uri, descriptor);
  }

  public EPackage putEPackage(EPackage ePackage)
  {
    checkSession();
    String uri = ePackage.getNsURI();
    if (ePackage.getESuperPackage() != null)
    {
      throw new IllegalArgumentException("Not a top level package: " + uri);
    }

    putEPackage(uri, ePackage);
    return getEPackage(uri);
  }

  private void putEPackage(String uri, EPackage ePackage)
  {
    if (uri != null)
    {
      put(uri, ePackage);
    }

    for (EPackage subPackage : ePackage.getESubpackages())
    {
      putEPackage(subPackage.getNsURI(), subPackage);
    }
  }

  @Override
  public Object put(String key, Object value)
  {
    checkSession();
    if (value instanceof EPackage)
    {
      if (TRACER.isEnabled())
      {
        TRACER.format("Registering package for {0}", key);
      }

      if (value instanceof EPackageImpl)
      {
        EPackageImpl ePackage = (EPackageImpl)value;
        if (EMFUtil.isDynamicEPackage(ePackage))
        {
          ModelUtil.prepareEPackage(ePackage);
        }
      }

      EPackage ePackage = (EPackage)value;
      CDOPackage cdoPackage = ModelUtil.getCDOPackage(ePackage, session.getPackageManager());
      CDOIDMetaRange metaIDRange = cdoPackage.getTopLevelPackage().getMetaIDRange();
      ((InternalCDOPackage)cdoPackage).setPersistent(metaIDRange != null && !metaIDRange.isTemporary());
    }

    return super.put(key, value);
  }

  @Override
  public void putAll(Map<? extends String, ? extends Object> m)
  {
    throw new UnsupportedOperationException();
  }

  private void checkSession()
  {
    if (session == null)
    {
      throw new IllegalStateException("session == null");
    }
  }

  /**
   * @author Eike Stepper
   */
  private final class RemotePackageDescriptor implements EPackage.Descriptor
  {
    private CDOPackage cdoPackage;

    private RemotePackageDescriptor(CDOPackage cdoPackage)
    {
      this.cdoPackage = cdoPackage;
    }

    public CDOPackage getCDOPackage()
    {
      return cdoPackage;
    }

    public EFactory getEFactory()
    {
      // TODO Implement method LocalPackageDescriptor.getEFactory()
      throw new UnsupportedOperationException("Not yet implemented");
    }

    public EPackage getEPackage()
    {
      EPackage ePackage = ModelUtil.createEPackage(cdoPackage);
      CDOIDMetaRange idRange = cdoPackage.getMetaIDRange();
      if (idRange != null)
      {
        session.registerEPackage(ePackage, idRange);
      }

      return ePackage;
    }

    @Override
    public String toString()
    {
      return MessageFormat.format("LocalPackageDescriptor[{0}]", cdoPackage.getPackageURI());
    }
  }

  /**
   * @author Eike Stepper
   */
  public static abstract class SessionBound extends CDOPackageRegistryImpl
  {
    private static final long serialVersionUID = 1L;

    private IListener sessionLifecycleListener = new LifecycleEventAdapter()
    {
      @Override
      protected void onActivated(ILifecycle lifecycle)
      {
        sessionActivated();
      }

      @Override
      protected void onAboutToDeactivate(ILifecycle lifecycle)
      {
        getSession().removeListener(this);
        sessionAboutToDeactivate();
      }
    };

    public SessionBound()
    {
    }

    @Override
    public void setSession(CDOSession session)
    {
      super.setSession(session);
      session.addListener(sessionLifecycleListener);
    }

    protected abstract void sessionActivated();

    protected abstract void sessionAboutToDeactivate();
  }

  /**
   * @author Eike Stepper
   */
  public static class TransactionBound extends SessionBound implements CDOTransactionHandler
  {
    private static final long serialVersionUID = 1L;

    private List<CDOTransaction> transactions = new ArrayList<CDOTransaction>();

    private IListener sessionContainerListener = new ContainerEventAdapter<CDOView>()
    {
      @Override
      protected void onAdded(IContainer<CDOView> session, CDOView view)
      {
        if (view instanceof CDOTransaction)
        {
          CDOTransaction transaction = (CDOTransaction)view;
          transaction.addHandler(TransactionBound.this);
          synchronized (transactions)
          {
            transactions.add(transaction);
          }
        }
      }

      @Override
      protected void onRemoved(IContainer<CDOView> session, CDOView view)
      {
        if (view instanceof CDOTransaction)
        {
          CDOTransaction transaction = (CDOTransaction)view;
          transaction.removeHandler(TransactionBound.this);
          synchronized (transactions)
          {
            transactions.remove(transaction);
          }
        }
      }
    };

    public TransactionBound()
    {
    }

    @Override
    protected void sessionActivated()
    {
      getSession().addListener(sessionContainerListener);
    }

    @Override
    protected void sessionAboutToDeactivate()
    {
      getSession().removeListener(sessionContainerListener);
      synchronized (transactions)
      {
        for (CDOTransaction transaction : transactions)
        {
          transaction.removeHandler(this);
        }

        transactions.clear();
      }
    }

    public void addingObject(CDOTransaction transaction, CDOObject object)
    {
    }

    public void modifyingObject(CDOTransaction transaction, CDOObject object, CDOFeatureDelta featureDelta)
    {
    }

    public void committingTransaction(CDOTransaction transaction)
    {
    }
  }

  /**
   * @author Eike Stepper
   */
  public static class SelfPopulating extends SessionBound
  {
    private static final long serialVersionUID = 1L;

    private IListener typeListener = new ContainerEventAdapter<Map.Entry<String, CDOPackageType>>()
    {
      @Override
      protected void onAdded(IContainer<java.util.Map.Entry<String, CDOPackageType>> container,
          java.util.Map.Entry<String, CDOPackageType> entry)
      {
        addEntry(entry);
      }
    };

    public SelfPopulating()
    {
    }

    @Override
    protected void sessionActivated()
    {
      for (Map.Entry<String, CDOPackageType> entry : CDOPackageTypeRegistry.INSTANCE.entrySet())
      {
        addEntry(entry);
      }

      CDOPackageTypeRegistry.INSTANCE.addListener(typeListener);
    }

    @Override
    protected void sessionAboutToDeactivate()
    {
      CDOPackageTypeRegistry.INSTANCE.removeListener(typeListener);
    }

    protected void addEntry(Map.Entry<String, CDOPackageType> entry)
    {
      CDOPackageType packageType = entry.getValue();
      if (packageType != CDOPackageType.LEGACY)
      {
        String uri = entry.getKey();
        if (!containsKey(uri))
        {
          try
          {
            EPackage ePackage = EPackage.Registry.INSTANCE.getEPackage(uri);
            putEPackage(ePackage);
          }
          catch (RuntimeException ex)
          {
            OM.LOG.error(ex);
          }
        }
      }
    }
  }

  /**
   * @author Eike Stepper
   */
  public static class DemandPopulating extends TransactionBound
  {
    private static final long serialVersionUID = 1L;

    private Set<EClass> usedClasses = new HashSet<EClass>();

    public DemandPopulating()
    {
    }

    @Override
    public void addingObject(CDOTransaction transaction, CDOObject object)
    {
      EClass usedClass = object.eClass();
      if (usedClasses.add(usedClass))
      {
        addPackage(usedClass.getEPackage());
        for (EClass superType : usedClass.getEAllSuperTypes())
        {
          usedClasses.add(superType);
          addPackage(superType.getEPackage());
        }
      }
    }

    @Override
    protected void sessionAboutToDeactivate()
    {
      usedClasses.clear();
      super.sessionAboutToDeactivate();
    }

    private void addPackage(EPackage ePackage)
    {
      if (!containsKey(ePackage.getNsURI()))
      {
        EPackage topLevelPackage = ModelUtil.getTopLevelPackage(ePackage);
        addPackageRecursively(topLevelPackage);
      }
    }

    private void addPackageRecursively(EPackage ePackage)
    {
      putEPackage(ePackage);
      for (EPackage subPackage : ePackage.getESubpackages())
      {
        addPackageRecursively(subPackage);
      }
    }
  }
}

Back to the top