protected ICFBamRelationObj resolveInheritedRelation( ICFBamRelationTableObj relationTable, ICFBamTableObj tbl, String relName) { ICFBamRelationObj curRelation; ICFBamRelationObj superRelation; ICFBamRelationObj retval = null; ICFBamTableObj curTable = tbl; while ((retval == null) && (curTable != null)) { retval = relationTable.readRelationByUNameIdx( curTable.getRequiredTenantId(), curTable.getRequiredId(), relName); if (retval == null) { Iterator<ICFBamRelationObj> relIter = curTable.getOptionalComponentsRelation().iterator(); superRelation = null; while ((superRelation == null) && relIter.hasNext()) { curRelation = relIter.next(); if (curRelation.getRequiredLookupRelationType().getRequiredTag().equals("Superclass")) { superRelation = curRelation; } } if (superRelation != null) { curTable = superRelation.getRequiredLookupToTable(); } else { curTable = null; } } } return (retval); }
public void endElement(String uri, String localName, String qName) throws SAXException { final String S_ProcName = "endElement"; assert qName.equals("JavaEditObjMembers"); CFLibXmlCoreContext curContext = getParser().getCurContext(); if (!CFBamXmlLoader.getProcessSchema(curContext)) { return; } CFLibXmlCoreContext parentContext = curContext.getPrevContext(); ICFBamTableObj table; if (parentContext != null) { table = (ICFBamTableObj) parentContext.getNamedValue("Object"); } else { throw CFLib.getDefaultExceptionFactory() .newRuntimeException(getClass(), S_ProcName, "Scope must be an existing Table element"); } String text = curContext.getElementText(); ICFBamTableEditObj editTable = (ICFBamTableEditObj) table.beginEdit(); editTable.setOptionalJEditObjMembers(text); editTable.update(); editTable.endEdit(); }
public void startElement(String uri, String localName, String qName, Attributes attrs) throws SAXException { try { // Common XML Attributes String attrId = null; // ClearDep Attributes String attrName = null; String attrClearDepChain = null; // Attribute Extraction String attrLocalName; int numAttrs; int idxAttr; final String S_ProcName = "startElement"; final String S_LocalName = "LocalName"; assert qName.equals("ClearDep"); CFBamXmlLoader saxLoader = (CFBamXmlLoader) getParser(); if (saxLoader == null) { throw CFLib.getDefaultExceptionFactory() .newNullArgumentException(getClass(), S_ProcName, 0, "getParser()"); } ICFBamSchemaObj schemaObj = saxLoader.getSchemaObj(); if (schemaObj == null) { throw CFLib.getDefaultExceptionFactory() .newNullArgumentException(getClass(), S_ProcName, 0, "getParser().getSchemaObj()"); } // Extract Attributes numAttrs = attrs.getLength(); for (idxAttr = 0; idxAttr < numAttrs; idxAttr++) { attrLocalName = attrs.getLocalName(idxAttr); if (attrLocalName.equals("Id")) { if (attrId != null) { throw CFLib.getDefaultExceptionFactory() .newUniqueIndexViolationException( getClass(), S_ProcName, S_LocalName, attrLocalName); } attrId = attrs.getValue(idxAttr); } else if (attrLocalName.equals("Name")) { if (attrName != null) { throw CFLib.getDefaultExceptionFactory() .newUniqueIndexViolationException( getClass(), S_ProcName, S_LocalName, attrLocalName); } attrName = attrs.getValue(idxAttr); } else if (attrLocalName.equals("ClearDepChain")) { if (attrClearDepChain != null) { throw CFLib.getDefaultExceptionFactory() .newUniqueIndexViolationException( getClass(), S_ProcName, S_LocalName, attrLocalName); } attrClearDepChain = attrs.getValue(idxAttr); } else if (attrLocalName.equals("schemaLocation")) { // ignored } else { throw CFLib.getDefaultExceptionFactory() .newUnrecognizedAttributeException( getClass(), S_ProcName, saxLoader.getLocationInfo(), attrLocalName); } } // Ensure that required attributes have values if ((attrName == null) || (attrName.length() <= 0)) { throw CFLib.getDefaultExceptionFactory() .newNullArgumentException(getClass(), S_ProcName, 0, "Name"); } if ((attrClearDepChain == null) || (attrClearDepChain.length() <= 0)) { throw CFLib.getDefaultExceptionFactory() .newNullArgumentException(getClass(), S_ProcName, 0, "ClearDepChain"); } // Save named attributes to context CFLibXmlCoreContext curContext = saxLoader.getCurContext(); if (!CFBamXmlLoader.getProcessSchema(curContext)) { return; } curContext.putNamedValue("Id", attrId); curContext.putNamedValue("Name", attrName); curContext.putNamedValue("ClearDepChain", attrClearDepChain); if (!CFBamXmlLoader.getProcessSchema(curContext)) { return; } CFLibXmlCoreContext parentContext = curContext.getPrevContext(); ICFBamTableObj fromTable; if (parentContext != null) { fromTable = (ICFBamTableObj) parentContext.getNamedValue("Object"); } else { fromTable = null; } if (fromTable == null) { throw CFLib.getDefaultExceptionFactory() .newRuntimeException( getClass(), S_ProcName, saxLoader.getLocationInfo() + " PrevContext.Object is null, Table is required"); } ICFBamRelationTableObj relationTable = schemaObj.getRelationTableObj(); int firstDot; ICFBamTableObj curTable = fromTable; firstDot = attrClearDepChain.indexOf('.'); String nextRelationName; String remainder; if (firstDot > 0) { nextRelationName = attrClearDepChain.substring(0, firstDot); remainder = attrClearDepChain.substring(firstDot + 1); } else { nextRelationName = attrClearDepChain; remainder = null; } ICFBamRelationObj resolvedRelation = resolveInheritedRelation(relationTable, curTable, nextRelationName); if (resolvedRelation == null) { throw CFLib.getDefaultExceptionFactory() .newRuntimeException( getClass(), S_ProcName, saxLoader.getLocationInfo() + "Relation \"" + nextRelationName + "\" not found for table \"" + curTable.getRequiredContainerSchemaDef().getRequiredName() + "." + curTable.getRequiredName() + "\""); } ICFBamClearTopDepObj origTopDep = schemaObj.getClearTopDepTableObj().newInstance(); ICFBamClearTopDepEditObj editTopDep = (ICFBamClearTopDepEditObj) origTopDep.beginEdit(); editTopDep.setRequiredOwnerTenant(fromTable.getRequiredOwnerTenant()); editTopDep.setRequiredContainerContTable(fromTable); editTopDep.setRequiredName(attrName); editTopDep.setRequiredLookupRelation(resolvedRelation); origTopDep = (ICFBamClearTopDepObj) editTopDep.create(); curContext.putNamedValue("Object", origTopDep); if (remainder != null) { curTable = origTopDep.getRequiredLookupRelation().getRequiredLookupToTable(); firstDot = remainder.indexOf('.'); if (firstDot > 0) { nextRelationName = remainder.substring(0, firstDot); remainder = remainder.substring(firstDot + 1); } else { nextRelationName = remainder; remainder = null; } resolvedRelation = resolveInheritedRelation(relationTable, curTable, nextRelationName); if (resolvedRelation == null) { throw CFLib.getDefaultExceptionFactory() .newRuntimeException( getClass(), S_ProcName, saxLoader.getLocationInfo() + "Relation \"" + nextRelationName + "\" not found for table \"" + curTable.getRequiredContainerSchemaDef().getRequiredName() + "." + curTable.getRequiredName() + "\""); } ICFBamClearSubDep1Obj origSubDep1 = schemaObj.getClearSubDep1TableObj().newInstance(); ICFBamClearSubDep1EditObj editSubDep1 = (ICFBamClearSubDep1EditObj) origSubDep1.beginEdit(); editSubDep1.setRequiredOwnerTenant(fromTable.getRequiredOwnerTenant()); editSubDep1.setRequiredContainerContClearTopDep(origTopDep); editSubDep1.setRequiredName(resolvedRelation.getRequiredName()); editSubDep1.setRequiredLookupRelation(resolvedRelation); origSubDep1 = (ICFBamClearSubDep1Obj) editSubDep1.create(); if (remainder != null) { curTable = origSubDep1.getRequiredLookupRelation().getRequiredLookupToTable(); firstDot = remainder.indexOf('.'); if (firstDot > 0) { nextRelationName = remainder.substring(0, firstDot); remainder = remainder.substring(firstDot + 1); } else { nextRelationName = remainder; remainder = null; } resolvedRelation = resolveInheritedRelation(relationTable, curTable, nextRelationName); if (resolvedRelation == null) { throw CFLib.getDefaultExceptionFactory() .newRuntimeException( getClass(), S_ProcName, saxLoader.getLocationInfo() + "Relation \"" + nextRelationName + "\" not found for table \"" + curTable.getRequiredContainerSchemaDef().getRequiredName() + "." + curTable.getRequiredName() + "\""); } ICFBamClearSubDep2Obj origSubDep2 = schemaObj.getClearSubDep2TableObj().newInstance(); ICFBamClearSubDep2EditObj editSubDep2 = (ICFBamClearSubDep2EditObj) origSubDep2.beginEdit(); editSubDep2.setRequiredOwnerTenant(fromTable.getRequiredOwnerTenant()); editSubDep2.setRequiredContainerContClearSubDep1(origSubDep1); editSubDep2.setRequiredName(resolvedRelation.getRequiredName()); editSubDep2.setRequiredLookupRelation(resolvedRelation); origSubDep2 = (ICFBamClearSubDep2Obj) editSubDep2.create(); if (remainder != null) { curTable = origSubDep2.getRequiredLookupRelation().getRequiredLookupToTable(); firstDot = remainder.indexOf('.'); if (firstDot > 0) { throw CFLib.getDefaultExceptionFactory() .newRuntimeException( getClass(), S_ProcName, saxLoader.getLocationInfo() + "Relation ClearDepChain is invalid -- only 4 levels of indirection are supported"); } else { nextRelationName = remainder; remainder = null; } resolvedRelation = resolveInheritedRelation(relationTable, curTable, nextRelationName); if (resolvedRelation == null) { throw CFLib.getDefaultExceptionFactory() .newRuntimeException( getClass(), S_ProcName, saxLoader.getLocationInfo() + "Relation \"" + nextRelationName + "\" not found for table \"" + curTable.getRequiredContainerSchemaDef().getRequiredName() + "." + curTable.getRequiredName() + "\""); } ICFBamClearSubDep3Obj origSubDep3 = schemaObj.getClearSubDep3TableObj().newInstance(); ICFBamClearSubDep3EditObj editSubDep3 = (ICFBamClearSubDep3EditObj) origSubDep3.beginEdit(); editSubDep3.setRequiredOwnerTenant(fromTable.getRequiredOwnerTenant()); editSubDep3.setRequiredContainerContClearSubDep2(origSubDep2); editSubDep3.setRequiredName(resolvedRelation.getRequiredName()); editSubDep3.setRequiredLookupRelation(resolvedRelation); origSubDep3 = (ICFBamClearSubDep3Obj) editSubDep3.create(); } } } } catch (RuntimeException e) { throw new RuntimeException( "Near " + getParser().getLocationInfo() + ": Caught and rethrew " + e.getClass().getName() + " - " + e.getMessage(), e); } catch (Error e) { throw new Error( "Near " + getParser().getLocationInfo() + ": Caught and rethrew " + e.getClass().getName() + " - " + e.getMessage(), e); } }