use of org.jaffa.persistence.IPersistent in project jaffa-framework by jaffa-projects.
the class RulesEngine method doValidationsForDomainObject.
/**
* Invokes the doFieldValidaions for each field of the ClassMetaData object for the domainObject.
*/
private static void doValidationsForDomainObject(Object domainObject, UOW uow, boolean doOnlyMandatory) throws ValidationException, FrameworkException {
String variation = VariationContext.getVariation();
boolean localUow = false;
try {
// create a UOW, if not passed in
if (uow == null) {
uow = new UOW();
localUow = true;
}
// Determine the domain class. A persistent object could very well be a proxy. Hence invoke the appropriate method
String domainClassName = domainObject instanceof IPersistent ? uow.getActualPersistentClass(domainObject).getName() : domainObject.getClass().getName();
// determine the ClassMetaData
ClassMetaData classMetaData = getClassMetaData(domainClassName, variation);
// determine the core ClassMetaData, if required
ClassMetaData coreClassMetaData = VariationContext.DEFAULT_VARIATION.equals(variation) ? null : getClassMetaData(domainClassName, VariationContext.DEFAULT_VARIATION);
// perform validations for all the fields
if (classMetaData != null) {
FieldMetaData[] fields = classMetaData.getFields();
for (int i = 0; i < fields.length; i++) {
FieldMetaData fieldMetaData = fields[i];
FieldMetaData coreFieldMetaData = coreClassMetaData != null ? coreClassMetaData.getField(fieldMetaData.getName()) : null;
String labelToken = getLabelToken(domainClassName, fieldMetaData.getName());
Object fieldValue = getFieldValue(domainObject, fieldMetaData.getName());
doFieldValidaions(fieldValue, uow, doOnlyMandatory, labelToken, fieldMetaData, coreFieldMetaData);
}
}
// perform validations for the fields in the core file, which are not defined in the variant file
if (coreClassMetaData != null) {
FieldMetaData[] fields = coreClassMetaData.getFields();
for (int i = 0; i < fields.length; i++) {
FieldMetaData fieldMetaData = fields[i];
if (classMetaData == null || classMetaData.getField(fieldMetaData.getName()) == null) {
// create a UOW, if not passed in
if (uow == null) {
uow = new UOW();
localUow = true;
}
String labelToken = getLabelToken(domainClassName, fieldMetaData.getName());
Object fieldValue = getFieldValue(domainObject, fieldMetaData.getName());
doFieldValidaions(fieldValue, uow, doOnlyMandatory, labelToken, fieldMetaData, null);
}
}
}
} finally {
if (localUow && uow != null)
uow.rollback();
}
}
use of org.jaffa.persistence.IPersistent in project jaffa-framework by jaffa-projects.
the class DemoLogger method log.
private void log(Collection<IPersistent> objectsToLog, Collection<String> serializedObjects) throws ApplicationExceptions, FrameworkException {
// In which case, do rememeber to invoke the flush() method on the UOW!
if (objectsToLog != null) {
try {
for (IPersistent obj : objectsToLog) {
StringWriter writer = new StringWriter();
JAXBContext jc = JAXBContext.newInstance(new Class[] { obj.getClass() });
Marshaller marshaller = jc.createMarshaller();
marshaller.marshal(obj, writer);
serializedObjects.add(writer.toString());
writer.close();
}
} catch (Exception e) {
throw ExceptionHelper.throwAFR(e);
}
}
}
use of org.jaffa.persistence.IPersistent in project jaffa-framework by jaffa-projects.
the class BeanMoulder method deleteBean.
/**
* Take a source object and delete it or delete is children if it has any
* @param path The path of this object being processed. This identifies possible parent
* and/or indexed entries where this object is contained.
* @param source Source object to mould from, typically a DomainDAO
* @param uow Transaction handle all creates/update will be performed within.
* Throws an exception if null.
* @param handler Possible bean handler to be used when processing this source object graph
* @throws ApplicationExceptions Thrown if one or more application logic errors are generated during moulding
* @throws FrameworkException Thrown if any runtime moulding error has occured.
*/
public static void deleteBean(String path, DomainDAO source, UOW uow, MouldHandler handler) throws ApplicationExceptions, FrameworkException {
log.debug("Delete Bean " + path);
// Call custom validation code in the DAO
source.validate();
ApplicationExceptions aes = new ApplicationExceptions();
if (uow == null) {
String err = "UOW Required";
log.error(err);
throw new RuntimeException(err);
}
try {
IPersistent domainObject = null;
GraphMapping mapping = MappingFactory.getInstance(source);
Map keys = new LinkedHashMap();
Class doClass = mapping.getDomainClass();
// Get the key fields used in the domain object
boolean gotKeys = fillInKeys(path, source, mapping, keys);
// read DO based on key
if (gotKeys) {
// get the method on the DO to read via PK
Method[] ma = doClass.getMethods();
Method findByPK = null;
for (int i = 0; i < ma.length; i++) {
if (ma[i].getName().equals("findByPK")) {
if (ma[i].getParameterTypes().length == (keys.size() + 1) && (ma[i].getParameterTypes())[0] == UOW.class) {
// Found with name and correct no. of input params
findByPK = ma[i];
break;
}
}
}
if (findByPK == null) {
aes.add(new DomainObjectNotFoundException(doClass.getName()));
throw aes;
}
// Build input array
Object[] inputs = new Object[keys.size() + 1];
{
inputs[0] = uow;
int i = 1;
for (Iterator it = keys.values().iterator(); it.hasNext(); i++) {
inputs[i] = it.next();
}
}
// Find Object based on key
domainObject = (IPersistent) findByPK.invoke(null, inputs);
} else
log.debug("Object " + path + " has either missing or null key values - Assume Create is needed");
// Error if DO not found
if (domainObject == null) {
String label = doClass.getName();
// Try and use meta data to get domain objects label
try {
label = PersistentHelper.getLabelToken(doClass.getName());
} catch (Exception e) {
// ignore any problem trying to get the label!
}
aes.add(new DomainObjectNotFoundException(label + " (path=" + path + ")"));
throw aes;
}
// Process the delete, either on this DO, or a related DO if there is one
deleteBeanData(path, source, uow, handler, mapping, domainObject);
} catch (IllegalAccessException e) {
MouldException me = new MouldException(MouldException.ACCESS_ERROR, path, e.getMessage());
log.error(me.getLocalizedMessage(), e);
throw me;
} catch (InvocationTargetException e) {
if (e.getCause() != null) {
if (e.getCause() instanceof FrameworkException)
throw (FrameworkException) e.getCause();
if (e.getCause() instanceof ApplicationExceptions)
throw (ApplicationExceptions) e.getCause();
if (e.getCause() instanceof ApplicationException) {
aes.add((ApplicationException) e.getCause());
throw aes;
}
}
MouldException me = new MouldException(MouldException.INVOCATION_ERROR, path, e);
log.error(me.getLocalizedMessage(), me.getCause());
throw me;
} catch (InstantiationException e) {
MouldException me = new MouldException(MouldException.INSTANTICATION_ERROR, path, e.getMessage());
log.error(me.getLocalizedMessage(), e);
throw me;
}
// } catch (Exception e) {
// throw handleException(e,aes);
// }
}
use of org.jaffa.persistence.IPersistent in project jaffa-framework by jaffa-projects.
the class BeanMoulder method deleteChildBean.
/**
* Take a source object and try and mold it back it its domain object.
* This is the same as updateParent, except from the way it retrieved the
* record, and the way it creates a new record.
*/
private static void deleteChildBean(String path, DomainDAO source, UOW uow, MouldHandler handler, IPersistent parentDomain, GraphMapping parentMapping, String parentField) throws ApplicationExceptions, FrameworkException {
log.debug("Delete Child Bean " + path);
// Call custom validation code in the DAO
source.validate();
ApplicationExceptions aes = new ApplicationExceptions();
if (uow == null) {
String err = "UOW Required";
log.error(err);
throw new RuntimeException(err);
}
String relationshipName = parentMapping.getDomainFieldName(parentField);
if (relationshipName.endsWith("Array"))
relationshipName = relationshipName.substring(0, relationshipName.length() - 5);
if (relationshipName.endsWith("Object"))
relationshipName = relationshipName.substring(0, relationshipName.length() - 6);
try {
IPersistent domainObject = null;
GraphMapping mapping = MappingFactory.getInstance(source);
Map keys = new LinkedHashMap();
Class doClass = mapping.getDomainClass();
boolean gotKeys = false;
if (mapping.getKeyFields() == null || mapping.getKeyFields().size() == 0) {
// No keys, must be one-to-one
log.debug("Find 'one-to-one' object - " + path);
// Just use the getXxxObject method to get the related domain object,
// if there is one...
domainObject = (IPersistent) getProperty(parentMapping.getDomainFieldDescriptor(parentField), parentDomain);
if (domainObject == null)
log.debug("Not Found - " + path);
} else {
// Get the key fields used in the domain object. Use the findXxxxxCriteria() method,
// then add the extra fields to the criteria object, to get the unique record.
gotKeys = fillInKeys(path, source, mapping, keys);
// read DO based on key
if (gotKeys) {
// get the method to get the PK criteria (i.e. public Criteria findVendorSiteCriteria(); )
Method findCriteria = null;
String methodName = "find" + StringHelper.getUpper1(relationshipName) + "Criteria";
try {
findCriteria = parentDomain.getClass().getMethod(methodName, new Class[] {});
} catch (NoSuchMethodException e) {
log.error("Find method '" + methodName + "' not found!");
}
if (findCriteria == null)
throw new MouldException(MouldException.METHOD_NOT_FOUND, path, methodName);
// Find Criteria For Related Object
Criteria criteria = (Criteria) findCriteria.invoke(parentDomain, new Object[] {});
// Add extra key info...
for (Iterator it = keys.keySet().iterator(); it.hasNext(); ) {
String keyField = (String) it.next();
Object value = keys.get(keyField);
keyField = StringHelper.getUpper1(mapping.getDomainFieldName(keyField));
criteria.addCriteria(keyField, value);
log.debug(path + "- Add to criteria:" + keyField + "=" + value);
}
// See if we get an object :-)
Iterator itr = uow.query(criteria).iterator();
if (itr.hasNext())
domainObject = (IPersistent) itr.next();
if (itr.hasNext()) {
// Error, multiple objects found
MultipleDomainObjectsFoundException m = new MultipleDomainObjectsFoundException(criteria.getTable() + " @ " + path);
aes.add(m);
throw aes;
}
}
}
// Error if DO not found
if (domainObject == null) {
aes.add(new DomainObjectNotFoundException(doClass.getName() + " @ " + path));
throw aes;
}
// Process the delete, either on this DO, or a related DO if there is one
deleteBeanData(path, source, uow, handler, mapping, domainObject);
} catch (IllegalAccessException e) {
MouldException me = new MouldException(MouldException.ACCESS_ERROR, path, e.getMessage());
log.error(me.getLocalizedMessage(), e);
throw me;
} catch (InvocationTargetException e) {
if (e.getCause() != null) {
if (e.getCause() instanceof FrameworkException)
throw (FrameworkException) e.getCause();
if (e.getCause() instanceof ApplicationExceptions)
throw (ApplicationExceptions) e.getCause();
if (e.getCause() instanceof ApplicationException) {
aes.add((ApplicationException) e.getCause());
throw aes;
}
}
MouldException me = new MouldException(MouldException.INVOCATION_ERROR, path, e);
log.error(me.getLocalizedMessage(), me.getCause());
throw me;
} catch (InstantiationException e) {
MouldException me = new MouldException(MouldException.INSTANTICATION_ERROR, path, e.getMessage());
log.error(me.getLocalizedMessage(), e);
throw me;
}
}
use of org.jaffa.persistence.IPersistent in project jaffa-framework by jaffa-projects.
the class BeanMoulder method updateBean.
/**
* Take a source object and try and mold it back it its domain object
* @param path The path of this object being processed. This identifies possible parent
* and/or indexed entries where this object is contained.
* @param source Source object to mould from, typically a DomainDAO
* @param uow Transaction handle all creates/update will be performed within.
* Throws an exception if null.
* @param handler Possible bean handler to be used when processing this source object graph
* @throws ApplicationExceptions Thrown if one or more application logic errors are generated during moulding
* @throws FrameworkException Thrown if any runtime moulding error has occured.
*/
public static void updateBean(String path, DomainDAO source, UOW uow, MouldHandler handler) throws ApplicationExceptions, FrameworkException {
log.debug("Update Bean " + path);
// Call custom validation code in the DAO
source.validate();
ApplicationExceptions aes = new ApplicationExceptions();
if (uow == null) {
String err = "UOW Required";
log.error(err);
throw new RuntimeException(err);
}
try {
IPersistent domainObject = null;
GraphMapping mapping = MappingFactory.getInstance(source);
Map keys = new LinkedHashMap();
Class doClass = mapping.getDomainClass();
// Get the key fields used in the domain object
boolean gotKeys = fillInKeys(path, source, mapping, keys);
// read DO based on key
if (gotKeys) {
// get the method on the DO to read via PK
Method[] ma = doClass.getMethods();
Method findByPK = null;
for (int i = 0; i < ma.length; i++) {
if (ma[i].getName().equals("findByPK")) {
if (ma[i].getParameterTypes().length == (keys.size() + 1) && (ma[i].getParameterTypes())[0] == UOW.class) {
// Found with name and correct no. of input params
findByPK = ma[i];
break;
}
}
}
if (findByPK == null) {
aes.add(new DomainObjectNotFoundException(doClass.getName() + " @ " + path));
throw aes;
}
// Build input array
Object[] inputs = new Object[keys.size() + 1];
{
inputs[0] = uow;
int i = 1;
for (Iterator it = keys.values().iterator(); it.hasNext(); i++) {
inputs[i] = it.next();
}
}
// Find Object based on key
domainObject = (IPersistent) findByPK.invoke(null, inputs);
} else
log.debug("Object " + path + " has either missing or null key values - Assume Create is needed");
// Create object if not found
if (domainObject == null) {
// NEW OBJECT, create and reflect keys
log.debug("DO '" + mapping.getDomainClassShortName() + "' not found with key, create a new one...");
domainObject = (IPersistent) doClass.newInstance();
// set the key fields
for (Iterator it = keys.keySet().iterator(); it.hasNext(); ) {
String keyField = (String) it.next();
Object value = keys.get(keyField);
updateProperty(mapping.getDomainFieldDescriptor(keyField), value, domainObject);
}
} else {
log.debug("Found DO '" + mapping.getDomainClassShortName() + "' with key,");
}
// Now update all domain fields
updateBeanData(path, source, uow, handler, mapping, domainObject);
} catch (IllegalAccessException e) {
MouldException me = new MouldException(MouldException.ACCESS_ERROR, path, e.getMessage());
log.error(me.getLocalizedMessage(), e);
throw me;
} catch (InvocationTargetException e) {
if (e.getCause() != null) {
if (e.getCause() instanceof FrameworkException)
throw (FrameworkException) e.getCause();
if (e.getCause() instanceof ApplicationExceptions)
throw (ApplicationExceptions) e.getCause();
if (e.getCause() instanceof ApplicationException) {
aes.add((ApplicationException) e.getCause());
throw aes;
}
}
MouldException me = new MouldException(MouldException.INVOCATION_ERROR, path, e);
log.error(me.getLocalizedMessage(), me.getCause());
throw me;
} catch (InstantiationException e) {
MouldException me = new MouldException(MouldException.INSTANTICATION_ERROR, path, e.getMessage());
log.error(me.getLocalizedMessage(), e);
throw me;
}
}
Aggregations