be188e2dceccb5444c514abea4755e135208afd0
[utils] / support / general / src / main / java / org / wamblee / persistence / JpaMergeSupport.java
1 /*
2  * Copyright 2005-2010 the original author or authors.
3  * 
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  * 
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  * 
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 package org.wamblee.persistence;
17
18 import java.io.Serializable;
19 import java.lang.reflect.InvocationTargetException;
20 import java.lang.reflect.Method;
21 import java.lang.reflect.Modifier;
22 import java.util.ArrayList;
23 import java.util.List;
24 import java.util.Map;
25 import java.util.Set;
26 import java.util.Map.Entry;
27
28 import javax.persistence.EntityManager;
29
30 import org.apache.commons.logging.Log;
31 import org.apache.commons.logging.LogFactory;
32 import org.wamblee.persistence.PersistentFactory.EntityAccessor;
33 import org.wamblee.reflection.ReflectionUtils;
34
35 /**
36  * Support for merging of JPA entities. This utility allows the result of a
37  * merge (modifications of primary key and/or version) to be merged back into
38  * the argument that was merged. As a result, the merged entity can be reused
39  * and the application is not forced to use the new version that was returned
40  * from the merge.
41  * 
42  * The utility traverses the object graph based on the public getter methods.
43  * Therefore, care should be taken with this utility as usage could lead to
44  * recursively loading all objects reachable from the given object. Then again,
45  * this utility is for working with detached objects and it would, in general,
46  * be bad practice to work with detached objects that still contain unresolved
47  * lazy loaded relations and with detached objects that implicitly refer to
48  * almost the entire datamodel.
49  * 
50  * This utility best supports a service oriented design where interaction is
51  * through service interfaces where each service has its own storage isolated
52  * from other services. That would be opposed to a shared data design with many
53  * services acting on the same data.
54  * 
55  * @author Erik Brakkee
56  */
57 public class JpaMergeSupport {
58     private static final Log LOG = LogFactory.getLog(JpaMergeSupport.class);
59
60     /**
61      * Constructs the object.
62      * 
63      */
64     public JpaMergeSupport() {
65         // Empty
66     }
67
68     /**
69      * As {@link #merge(Persistent)} but with a given template. This method can
70      * be accessed in a static way.
71      * 
72      * @param aMerge
73      *            The result of the call to {@link EntityManager#merge(Object)}.
74      * @param aPersistent
75      *            Object that was passed to {@link EntityManager#merge(Object)}.
76      */
77     public static void merge(Object aMerged, Object aPersistent) {
78         processPersistent(aMerged, aPersistent, new ArrayList<ObjectElem>());
79     }
80
81     /**
82      * Copies primary keys and version from the result of the merged to the
83      * object that was passed to the merge operation. It does this by traversing
84      * the properties of the object. It copies the primary key and version for
85      * objects that implement {@link Persistent} and applies the same rules to
86      * objects in maps and sets as well (i.e. recursively).
87      * 
88      * @param aPersistent
89      *            Object whose primary key and version are to be set.
90      * @param aMerged
91      *            Object that was the result of the merge.
92      * @param aProcessed
93      *            List of already processed Persistent objects of the persistent
94      *            part.
95      * 
96      */
97     public static void processPersistent(Object aMerged, Object aPersistent,
98         List<ObjectElem> aProcessed) {
99         if ((aPersistent == null) && (aMerged == null)) {
100             return;
101         }
102
103         if ((aPersistent == null) || (aMerged == null)) {
104             throw new RuntimeException("persistent or merged object is null '" +
105                 aPersistent + "'" + "  '" + aMerged + "'");
106         }
107
108         ObjectElem elem = new ObjectElem(aPersistent);
109
110         if (aProcessed.contains(elem)) {
111             return; // already processed.
112         }
113
114         aProcessed.add(elem);
115
116         LOG.debug("Setting pk/version on " + aPersistent + " from " + aMerged);
117
118         Persistent persistentWrapper = PersistentFactory.create(aPersistent);
119         Persistent mergedWrapper = PersistentFactory.create(aMerged);
120
121         if (persistentWrapper == null) {
122             // Not an entity so it is ignored.
123             return;
124         }
125
126         Serializable pk = persistentWrapper.getPrimaryKey();
127         boolean pkIsNull = false;
128         if (pk instanceof Number) {
129             if (((Number) pk).longValue() != 0l) {
130                 pkIsNull = false;
131             } else {
132                 pkIsNull = true;
133             }
134         } else {
135             pkIsNull = (pk == null);
136         }
137         if (!pkIsNull &&
138             !mergedWrapper.getPrimaryKey().equals(
139                 persistentWrapper.getPrimaryKey())) {
140             throw new IllegalArgumentException(
141                 "Mismatch between primary key values: " + aPersistent + " " +
142                     aMerged);
143         } else {
144             persistentWrapper.setPersistedVersion(mergedWrapper
145                 .getPersistedVersion());
146             persistentWrapper.setPrimaryKey(mergedWrapper.getPrimaryKey());
147         }
148
149         List<Method> methods = ReflectionUtils.getAllMethods(aPersistent
150             .getClass(), Object.class);
151
152         for (Method getter : methods) {
153             if ((getter.getName().startsWith("get") || getter.getName()
154                 .startsWith("is")) &&
155                 !Modifier.isStatic(getter.getModifiers())) {
156                 Class returnType = getter.getReturnType();
157
158                 try {
159                     if (Set.class.isAssignableFrom(returnType)) {
160                         Set merged = (Set) getter.invoke(aMerged);
161                         Set persistent = (Set) getter.invoke(aPersistent);
162                         processSet(merged, persistent, aProcessed);
163                     } else if (List.class.isAssignableFrom(returnType)) {
164                         List merged = (List) getter.invoke(aMerged);
165                         List persistent = (List) getter.invoke(aPersistent);
166                         processList(merged, persistent, aProcessed);
167                     } else if (Map.class.isAssignableFrom(returnType)) {
168                         Map merged = (Map) getter.invoke(aMerged);
169                         Map persistent = (Map) getter.invoke(aPersistent);
170                         processMap(merged, persistent, aProcessed);
171                     } else if (returnType.isArray()) {
172                         // early detection of whether it is an array of entities
173                         // to avoid performance problems.
174                         EntityAccessor accessor = PersistentFactory
175                             .createEntityAccessor(returnType.getComponentType());
176                         if (accessor != null) {
177                             Object[] merged = (Object[]) getter.invoke(aMerged);
178                             Object[] persistent = (Object[]) getter
179                                 .invoke(aPersistent);
180                             if (merged.length != persistent.length) {
181                                 throw new IllegalArgumentException("Array sizes differ " + merged.length +
182                                     " " + persistent.length);
183                             }
184                             for (int i = 0; i < persistent.length; i++) {
185                                 processPersistent(merged[i], persistent[i],
186                                     aProcessed);
187                             }
188                         }
189                     } else {
190                         Object merged = getter.invoke(aMerged);
191                         Object persistent = getter.invoke(aPersistent);
192                         processPersistent(merged, persistent, aProcessed);
193                     }
194                 } catch (InvocationTargetException e) {
195                     throw new RuntimeException(e.getMessage(), e);
196                 } catch (IllegalAccessException e) {
197                     throw new RuntimeException(e.getMessage(), e);
198                 }
199             }
200         }
201     }
202
203     /**
204      * Process the persistent objects in the collections.
205      * 
206      * @param aPersistent
207      *            Collection in the original object.
208      * @param aMerged
209      *            Collection as a result of the merge.
210      * @param aProcessed
211      *            List of processed persistent objects.
212      * 
213      */
214     public static void processList(List aMerged, List aPersistent,
215         List<ObjectElem> aProcessed) {
216         Object[] merged = aMerged.toArray();
217         Object[] persistent = aPersistent.toArray();
218
219         if (merged.length != persistent.length) {
220             throw new IllegalArgumentException("Array sizes differ " + merged.length +
221                 " " + persistent.length);
222         }
223
224         for (int i = 0; i < merged.length; i++) {
225             assert merged[i].equals(persistent[i]);
226             processPersistent(merged[i], persistent[i], aProcessed);
227         }
228     }
229
230     /**
231      * Process the persistent objects in sets.
232      * 
233      * @param aPersistent
234      *            Collection in the original object.
235      * @param aMerged
236      *            Collection as a result of the merge.
237      * @param aProcessed
238      *            List of processed persistent objects.
239      * 
240      */
241     public static void processSet(Set aMerged, Set aPersistent,
242         List<ObjectElem> aProcessed) {
243         if (aMerged.size() != aPersistent.size()) {
244             throw new IllegalArgumentException("Array sizes differ " + aMerged.size() +
245                 " " + aPersistent.size());
246         }
247
248         for (Object merged : aMerged) {
249             // Find the object that equals the merged[i]
250             for (Object persistent : aPersistent) {
251                 if (persistent.equals(merged)) {
252                     processPersistent(merged, persistent, aProcessed);
253                     break;
254                 }
255             }
256         }
257     }
258
259     /**
260      * Process the Map objects in the collections.
261      * 
262      * @param aPersistent
263      *            Collection in the original object.
264      * @param aMerged
265      *            Collection as a result of the merge.
266      * @param aProcessed
267      *            List of processed persistent objects.
268      * 
269      */
270     public static <Key, Value> void processMap(Map<Key, Value> aMerged,
271         Map<Key, Value> aPersistent, List<ObjectElem> aProcessed) {
272         if (aMerged.size() != aPersistent.size()) {
273             throw new IllegalArgumentException("Sizes differ " + aMerged.size() + " " +
274                 aPersistent.size());
275         }
276
277         Set<Entry<Key, Value>> entries = aMerged.entrySet();
278
279         for (Entry<Key, Value> entry : entries) {
280             Key key = entry.getKey();
281             if (!aPersistent.containsKey(key)) {
282                 throw new IllegalArgumentException("Key '" + key + "' not found");
283             }
284
285             Value mergedValue = entry.getValue();
286             Object persistentValue = aPersistent.get(key);
287
288             processPersistent(mergedValue, persistentValue, aProcessed);
289         }
290     }
291
292     /**
293      * This class provided an equality operation based on the object reference
294      * of the wrapped object. This is required because we cannto assume that the
295      * equals operation has any meaning for different types of persistent
296      * objects. This allows us to use the standard collection classes for
297      * detecting cyclic dependences and avoiding recursion.
298      */
299     private static final class ObjectElem {
300         private Object object;
301
302         public ObjectElem(Object aObject) {
303             object = aObject;
304         }
305
306         public boolean equals(Object aObj) {
307             if (aObj == null) {
308                 return false;
309             }
310             if (!(aObj instanceof ObjectElem)) {
311                 return false;
312             }
313             return ((ObjectElem) aObj).object == object;
314         }
315
316         public int hashCode() {
317             return object.hashCode();
318         }
319     }
320 }