org.apache.cayenne.access.DataContextFaults Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cayenne-client-nodeps
Show all versions of cayenne-client-nodeps
Cayenne Object Persistence Framework
/*****************************************************************
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
****************************************************************/
package org.apache.cayenne.access;
import java.util.List;
import org.apache.cayenne.CayenneRuntimeException;
import org.apache.cayenne.Fault;
import org.apache.cayenne.ObjectContext;
import org.apache.cayenne.PersistenceState;
import org.apache.cayenne.Persistent;
import org.apache.cayenne.query.RelationshipQuery;
/**
* A helper class that initializes server-side fault singletons.
*
* @since 1.2
* @author Andrus Adamchik
*/
class DataContextFaults {
/**
* Resets super singletons.
*/
static void init() {
ToManyFault.init();
ToOneFault.init();
}
final static class ToManyFault extends Fault {
/**
* Resets super singletons.
*/
static void init() {
if (Fault.toManyFault == null) {
Fault.toManyFault = new ToManyFault();
}
}
/**
* Resolves this fault to a List of objects.
*/
public Object resolveFault(Persistent sourceObject, String relationshipName) {
return new ToManyList(sourceObject, relationshipName);
}
}
final static class ToOneFault extends Fault {
/**
* Resets super singletons.
*/
static void init() {
if (Fault.toOneFault == null) {
Fault.toOneFault = new ToOneFault();
}
}
/**
* Resolves this fault to a DataObject.
*/
public Object resolveFault(Persistent sourceObject, String relationshipName) {
Object target = doResolveFault(sourceObject, relationshipName);
// must update the diff for the object
int state = sourceObject.getPersistenceState();
ObjectContext context = sourceObject.getObjectContext();
if ((state == PersistenceState.MODIFIED || state == PersistenceState.DELETED)
&& context instanceof DataContext) {
ObjectDiff diff = (ObjectDiff) ((DataContext) context)
.getObjectStore()
.getChangesByObjectId()
.get(sourceObject.getObjectId());
if (diff != null) {
diff.updateArcSnapshot(relationshipName, (Persistent) target);
}
}
return target;
}
Object doResolveFault(Persistent sourceObject, String relationshipName) {
RelationshipQuery query = new RelationshipQuery(
sourceObject.getObjectId(),
relationshipName,
false);
List objects = sourceObject.getObjectContext().performQuery(query);
if (objects.isEmpty()) {
return null;
}
else if (objects.size() == 1) {
return objects.get(0);
}
else {
throw new CayenneRuntimeException("Error resolving to-one fault. "
+ "More than one object found. "
+ "Source Id: "
+ sourceObject.getObjectId()
+ ", relationship: "
+ relationshipName);
}
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy