Skip to main content
summaryrefslogtreecommitdiffstats
blob: 69898ee97a83bd6fc3a792d4e94090775d64d2f0 (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
/***************************************************************************
 * 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.cdo.server.internal.db;

import org.eclipse.emf.cdo.common.id.CDOID;
import org.eclipse.emf.cdo.common.model.CDOClass;
import org.eclipse.emf.cdo.common.model.CDOFeature;
import org.eclipse.emf.cdo.common.model.resource.CDOResourceNodeClass;
import org.eclipse.emf.cdo.common.revision.CDORevision;
import org.eclipse.emf.cdo.server.IPackageManager;
import org.eclipse.emf.cdo.server.IRepository;
import org.eclipse.emf.cdo.server.db.IDBStoreAccessor;

import org.eclipse.net4j.util.collection.Pair;

/**
 * @author Eike Stepper
 */
public class HorizontalClassMapping extends ClassMapping
{
  public HorizontalClassMapping(HorizontalMappingStrategy mappingStrategy, CDOClass cdoClass)
  {
    super(mappingStrategy, cdoClass, cdoClass.getAllFeatures());
  }

  @Override
  public HorizontalMappingStrategy getMappingStrategy()
  {
    return (HorizontalMappingStrategy)super.getMappingStrategy();
  }

  @Override
  public void writeRevision(IDBStoreAccessor accessor, CDORevision revision)
  {
    super.writeRevision(accessor, revision);
    if (revision.getVersion() == 1)
    {
      CDOID id = revision.getID();
      CDOClass type = revision.getCDOClass();
      getMappingStrategy().getObjectTypeCache().putObjectType(accessor, id, type);
    }
  }

  @Override
  protected void checkDuplicateResources(IDBStoreAccessor accessor, CDORevision revision) throws IllegalStateException
  {
    IRepository repository = getMappingStrategy().getStore().getRepository();
    if (repository.isSupportingAudits())
    {
      IPackageManager packageManager = repository.getPackageManager();
      CDOResourceNodeClass resourceNodeClass = packageManager.getCDOResourcePackage().getCDOResourceNodeClass();
      CDOFeature resourceNameFeature = resourceNodeClass.getCDONameFeature();

      CDOID folderID = (CDOID)revision.getData().getContainerID();
      String name = (String)revision.getData().get(resourceNameFeature, 0);

      if (accessor.readResourceID(folderID, name, revision.getCreated()) != null)
      {
        throw new IllegalStateException("Duplicate resource or folder: " + name + " in folder " + folderID);
      }
    }
  }

  @Override
  public Object createReferenceMappingKey(CDOFeature cdoFeature)
  {
    return new Pair<CDOClass, CDOFeature>(getCDOClass(), cdoFeature);
  }

  @Override
  protected boolean hasFullRevisionInfo()
  {
    return true;
  }
}

Back to the top