Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 086579c6196d935b7488468c50de7fdaa0573263 (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
/**
 * <copyright> Copyright (c) 2005, 2006, 2007, 2008 Springsite BV (The Netherlands) 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: Martin Taal
 * </copyright> $Id: ManyAttributeMapper.java,v 1.27 2009/11/02 18:14:18 mtaal Exp $
 */

package org.eclipse.emf.teneo.hibernate.mapper;

import java.util.ArrayList;
import java.util.List;

import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.eclipse.emf.ecore.EAttribute;
import org.eclipse.emf.ecore.util.FeatureMapUtil;
import org.eclipse.emf.teneo.annotations.pamodel.PAnnotatedEAttribute;
import org.eclipse.emf.teneo.annotations.pamodel.PAnnotatedEReference;
import org.eclipse.emf.teneo.annotations.pannotation.JoinColumn;
import org.eclipse.emf.teneo.annotations.pannotation.JoinTable;
import org.eclipse.emf.teneo.annotations.pannotation.OneToMany;
import org.eclipse.emf.teneo.extension.ExtensionPoint;
import org.eclipse.emf.teneo.hibernate.hbmodel.HbAnnotatedEAttribute;
import org.eclipse.emf.teneo.hibernate.hbmodel.HbAnnotatedETypeElement;
import org.eclipse.emf.teneo.simpledom.Element;

/**
 * Maps many valued attributes.
 * <p>
 * Assumes that the given {@link PAnnotatedEAttribute} is normal, i.e.
 * <ul>
 * <li>it is a {@link PAnnotatedEReference};
 * <li>it has a {@link OneToMany} annotation;
 * <li>oneToMany.getCascade() is ALL
 * <li>oneToMany.getTargetEntity is not specified
 * <li>the {@link OneToMany} annotation have the following attributes set:
 * <li>TODO which is the meaning of a column annotation? Can it have one?
 * </ul>
 * 
 * @author <a href="mailto:mtaal at elver.org">Martin Taal</a>
 */
public class ManyAttributeMapper extends AbstractAssociationMapper implements ExtensionPoint {

	/** The logger */
	private static final Log log = LogFactory.getLog(ManyAttributeMapper.class);

	/**
	 * Process a many=true EAttribute
	 */
	public void processManyAttribute(PAnnotatedEAttribute paAttribute) {
		if (log.isDebugEnabled()) {
			log.debug("Generating many valued attribute mapping for " + paAttribute);
		}

		final HbAnnotatedEAttribute hbAttribute = (HbAnnotatedEAttribute) paAttribute;
		final EAttribute eattr = paAttribute.getModelEAttribute();

		final boolean isArray = eattr.getEType().getInstanceClass() != null
				&& eattr.getEType().getInstanceClass().isArray();

		final Element collElement = addCollectionElement(paAttribute);
		final Element keyElement = collElement.addElement("key");

		final JoinTable jt = paAttribute.getCollectionTable() != null ? paAttribute
				.getCollectionTable() : paAttribute.getJoinTable();
		final List<JoinColumn> jcs = jt != null && jt.getJoinColumns().size() > 0 ? jt.getJoinColumns()
				: (paAttribute.getJoinColumns() == null ? new ArrayList<JoinColumn>() : paAttribute
						.getJoinColumns());
		final OneToMany otm = paAttribute.getOneToMany();

		addForeignKeyAttribute(keyElement, paAttribute);

		if (jt != null) {
			addJoinTable(hbAttribute, collElement, keyElement, jt);
			addKeyColumns(hbAttribute, keyElement, jcs);
		} else {
			// TODO should we also add joinColumns annotation?
			addKeyColumns(hbAttribute, keyElement, jcs);
		}

		if (!otm.isIndexed() && isArray) {
			log.warn("One to many is not indexed but this is an array, force=ing index column!");
		}

		if ((otm.isIndexed() || isArray) && hbAttribute.getHbIdBag() == null) {
			addListIndex(collElement, paAttribute);
		}

		if (!isArray) {
			addFetchType(collElement, otm.getFetch());
		}
		final boolean addOrphanDelete = FeatureMapUtil.isFeatureMap(paAttribute.getModelEAttribute());
		addCascades(collElement,
				getCascades(hbAttribute.getHbCascade(), otm.getCascade(), addOrphanDelete), addOrphanDelete);

		if (FeatureMapUtil.isFeatureMap(paAttribute.getModelEAttribute())) {
			if (getHbmContext().getPersistenceOptions().isMapFeatureMapAsComponent()) {
				final Element curElement = getHbmContext().getCurrent();
				FeatureMapMapping fmm = new FeatureMapMapping(getHbmContext(), paAttribute);
				Element element = collElement.addElement("composite-element").addAttribute("class",
						getHbmContext().getFeatureMapEntryClassName());
				fmm.setCompositeElement(element);
				fmm.process();
				getHbmContext().setCurrent(curElement);
				// composite-element class="DeliveryAttempt">
			} else {
				FeatureMapMapping fmm = new FeatureMapMapping(getHbmContext(), paAttribute);
				getHbmContext().addFeatureMapMapper(fmm);
				collElement.addElement("one-to-many").addAttribute("entity-name", fmm.getEntityName());
			}
		} else {
			addElementElement(collElement, paAttribute, getColumns(paAttribute), otm.getTargetEntity());
		}

		addAccessor(collElement);

		mapFilter(collElement, ((HbAnnotatedETypeElement) paAttribute).getFilter());
	}
}

Back to the top