Java tutorial
// Description: Java6 in-memory RAM DbIO implementation for LegalEntity. /* * MSS Code Factory 1.10 * * Copyright (c) 2012 Mark Sobkow * * This program is available as free software under the GNU GPL v3, or * under a commercial license from Mark Sobkow. For commercial licensing * details, please contact msobkow@sasktel.net. * * Under the terms of the GPL: * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. * * *********************************************************************** * * Code manufactured * by MSS Code Factory version 1.9.3294 * * $Revision: 26 $ */ package net.sourceforge.msscodefactory.v1_10.MSSBamRam; import java.sql.*; import java.util.*; import net.sourceforge.msscodefactory.cflib.v1_9.CFLib.*; import org.apache.commons.codec.binary.Base64; import net.sourceforge.msscodefactory.v1_10.MSSBam.*; import net.sourceforge.msscodefactory.v1_10.MSSBamBL.*; import net.sourceforge.msscodefactory.v1_10.MSSBamBLRam.*; /* * MSSBamRamLegalEntityTable in-memory RAM DbIO implementation * for LegalEntity. */ public class MSSBamRamLegalEntityTable implements IMSSBamLegalEntityTable { private MSSBamBLRamSchema schema; private Map<MSSBamAnyObjPKey, MSSBamLegalEntityBuff> dictByPKey = new HashMap<MSSBamAnyObjPKey, MSSBamLegalEntityBuff>(); private SortedMap<MSSBamLegalEntityByChildrenIdxKey, SortedMap<MSSBamAnyObjPKey, MSSBamLegalEntityBuff>> dictByChildrenIdx = new TreeMap<MSSBamLegalEntityByChildrenIdxKey, SortedMap<MSSBamAnyObjPKey, MSSBamLegalEntityBuff>>(); public MSSBamRamLegalEntityTable(MSSBamBLRamSchema argSchema) { schema = argSchema; } public void createLegalEntity(MSSBamAuthorization Authorization, MSSBamLegalEntityBuff Buff) { MSSBamAnyObjPKey pkey = schema.getFactoryAnyObj().newPKey(); pkey.setClassCode(Buff.getClassCode()); pkey.setRequiredId(Buff.getRequiredId()); MSSBamLegalEntityByChildrenIdxKey keyChildrenIdx = schema.getFactoryLegalEntity().newChildrenIdxKey(); keyChildrenIdx.setOptionalContainerDomainId(Buff.getOptionalContainerDomainId()); // Validate unique indexes if (dictByPKey.containsKey(pkey)) { throw CFLib.getDefaultExceptionFactory().newPrimaryKeyNotNewException(getClass(), "createLegalEntity", pkey); } // Validate foreign keys { boolean allNull = true; allNull = false; if (!allNull) { if (null == schema.getTableDomain().readDerivedByIdIdx(Authorization, Buff.getRequiredId())) { throw CFLib.getDefaultExceptionFactory().newUnresolvedRelationException(getClass(), "createLegalEntity", "Superclass", "SuperClass", "Domain", null); } } } // Proceed with adding the new record dictByPKey.put(pkey, Buff); SortedMap<MSSBamAnyObjPKey, MSSBamLegalEntityBuff> subdictChildrenIdx; if (dictByChildrenIdx.containsKey(keyChildrenIdx)) { subdictChildrenIdx = dictByChildrenIdx.get(keyChildrenIdx); } else { subdictChildrenIdx = new TreeMap<MSSBamAnyObjPKey, MSSBamLegalEntityBuff>(); dictByChildrenIdx.put(keyChildrenIdx, subdictChildrenIdx); } subdictChildrenIdx.put(pkey, Buff); } public MSSBamLegalEntityBuff readDerived(MSSBamAuthorization Authorization, MSSBamAnyObjPKey PKey) { final String S_ProcName = "MSSBamRamLegalEntity.readDerived() "; MSSBamAnyObjPKey key = schema.getFactoryAnyObj().newPKey(); key.setRequiredId(PKey.getRequiredId()); MSSBamLegalEntityBuff buff; if (dictByPKey.containsKey(key)) { buff = dictByPKey.get(key); } else { buff = null; } return (buff); } public MSSBamLegalEntityBuff[] readAllDerived(MSSBamAuthorization Authorization) { final String S_ProcName = "MSSBamRamLegalEntity.readAllDerived() "; MSSBamLegalEntityBuff[] retList = new MSSBamLegalEntityBuff[dictByPKey.values().size()]; Iterator<MSSBamLegalEntityBuff> iter = dictByPKey.values().iterator(); int idx = 0; while (iter.hasNext()) { retList[idx++] = iter.next(); } return (retList); } public MSSBamLegalEntityBuff[] readDerivedByTenantIdx(MSSBamAuthorization Authorization, long TenantId) { final String S_ProcName = "MSSBamRamAnyObj.readDerivedByTenantIdx() "; MSSBamAnyObjBuff buffList[] = schema.getTableAnyObj().readDerivedByTenantIdx(Authorization, TenantId); if (buffList == null) { return (null); } else { MSSBamAnyObjBuff buff; ArrayList<MSSBamLegalEntityBuff> filteredList = new ArrayList<MSSBamLegalEntityBuff>(); for (int idx = 0; idx < buffList.length; idx++) { buff = buffList[idx]; if ((buff != null) && (buff instanceof MSSBamLegalEntityBuff)) { filteredList.add((MSSBamLegalEntityBuff) buff); } } return (filteredList.toArray(new MSSBamLegalEntityBuff[0])); } } public MSSBamLegalEntityBuff[] readDerivedByScopeIdx(MSSBamAuthorization Authorization, Long ScopeId) { final String S_ProcName = "MSSBamRamAnyObj.readDerivedByScopeIdx() "; MSSBamAnyObjBuff buffList[] = schema.getTableAnyObj().readDerivedByScopeIdx(Authorization, ScopeId); if (buffList == null) { return (null); } else { MSSBamAnyObjBuff buff; ArrayList<MSSBamLegalEntityBuff> filteredList = new ArrayList<MSSBamLegalEntityBuff>(); for (int idx = 0; idx < buffList.length; idx++) { buff = buffList[idx]; if ((buff != null) && (buff instanceof MSSBamLegalEntityBuff)) { filteredList.add((MSSBamLegalEntityBuff) buff); } } return (filteredList.toArray(new MSSBamLegalEntityBuff[0])); } } public MSSBamLegalEntityBuff[] readDerivedByAuthorIdx(MSSBamAuthorization Authorization, Long AuthorId) { final String S_ProcName = "MSSBamRamAnyObj.readDerivedByAuthorIdx() "; MSSBamAnyObjBuff buffList[] = schema.getTableAnyObj().readDerivedByAuthorIdx(Authorization, AuthorId); if (buffList == null) { return (null); } else { MSSBamAnyObjBuff buff; ArrayList<MSSBamLegalEntityBuff> filteredList = new ArrayList<MSSBamLegalEntityBuff>(); for (int idx = 0; idx < buffList.length; idx++) { buff = buffList[idx]; if ((buff != null) && (buff instanceof MSSBamLegalEntityBuff)) { filteredList.add((MSSBamLegalEntityBuff) buff); } } return (filteredList.toArray(new MSSBamLegalEntityBuff[0])); } } public MSSBamLegalEntityBuff readDerivedByUNameIdx(MSSBamAuthorization Authorization, Long ScopeId, String Name) { final String S_ProcName = "MSSBamRamAnyObj.readDerivedByUNameIdx() "; MSSBamAnyObjBuff buff = schema.getTableAnyObj().readDerivedByUNameIdx(Authorization, ScopeId, Name); if (buff == null) { return (null); } else if (buff instanceof MSSBamLegalEntityBuff) { return ((MSSBamLegalEntityBuff) buff); } else { return (null); } } public MSSBamLegalEntityBuff[] readDerivedByContainerIdx(MSSBamAuthorization Authorization, Long ContainerDomainId) { final String S_ProcName = "MSSBamRamDomain.readDerivedByContainerIdx() "; MSSBamDomainBuff buffList[] = schema.getTableDomain().readDerivedByContainerIdx(Authorization, ContainerDomainId); if (buffList == null) { return (null); } else { MSSBamDomainBuff buff; ArrayList<MSSBamLegalEntityBuff> filteredList = new ArrayList<MSSBamLegalEntityBuff>(); for (int idx = 0; idx < buffList.length; idx++) { buff = buffList[idx]; if ((buff != null) && (buff instanceof MSSBamLegalEntityBuff)) { filteredList.add((MSSBamLegalEntityBuff) buff); } } return (filteredList.toArray(new MSSBamLegalEntityBuff[0])); } } public MSSBamLegalEntityBuff[] readDerivedByChildrenIdx(MSSBamAuthorization Authorization, Long ContainerDomainId) { final String S_ProcName = "MSSBamRamLegalEntity.readDerivedByChildrenIdx() "; MSSBamLegalEntityByChildrenIdxKey key = schema.getFactoryLegalEntity().newChildrenIdxKey(); key.setOptionalContainerDomainId(ContainerDomainId); MSSBamLegalEntityBuff[] recArray; if (dictByChildrenIdx.containsKey(key)) { SortedMap<MSSBamAnyObjPKey, MSSBamLegalEntityBuff> subdictChildrenIdx = dictByChildrenIdx.get(key); recArray = new MSSBamLegalEntityBuff[subdictChildrenIdx.size()]; Iterator<MSSBamLegalEntityBuff> iter = subdictChildrenIdx.values().iterator(); int idx = 0; while (iter.hasNext()) { recArray[idx++] = iter.next(); } } else { recArray = new MSSBamLegalEntityBuff[0]; } return (recArray); } public MSSBamLegalEntityBuff readDerivedByIdIdx(MSSBamAuthorization Authorization, long Id) { final String S_ProcName = "MSSBamRamAnyObj.readDerivedByIdIdx() "; MSSBamAnyObjPKey key = schema.getFactoryAnyObj().newPKey(); key.setRequiredId(Id); MSSBamLegalEntityBuff buff; if (dictByPKey.containsKey(key)) { buff = dictByPKey.get(key); } else { buff = null; } return (buff); } public MSSBamLegalEntityBuff readBuff(MSSBamAuthorization Authorization, MSSBamAnyObjPKey PKey) { final String S_ProcName = "MSSBamRamLegalEntity.readBuff() "; MSSBamLegalEntityBuff buff = readDerived(Authorization, PKey); if ((buff != null) && (!buff.getClassCode().equals("LENT"))) { buff = null; } return (buff); } public MSSBamLegalEntityBuff[] readAllBuff(MSSBamAuthorization Authorization) { final String S_ProcName = "MSSBamRamLegalEntity.readAllBuff() "; MSSBamLegalEntityBuff buff; ArrayList<MSSBamLegalEntityBuff> filteredList = new ArrayList<MSSBamLegalEntityBuff>(); MSSBamLegalEntityBuff[] buffList = readAllDerived(Authorization); for (int idx = 0; idx < buffList.length; idx++) { buff = buffList[idx]; if ((buff != null) && buff.getClassCode().equals("LENT")) { filteredList.add(buff); } } return (filteredList.toArray(new MSSBamLegalEntityBuff[0])); } public MSSBamLegalEntityBuff readBuffByIdIdx(MSSBamAuthorization Authorization, long Id) { final String S_ProcName = "MSSBamRamAnyObj.readBuffByIdIdx() "; MSSBamAnyObjBuff buff = readDerivedByIdIdx(Authorization, Id); if ((buff != null) && buff.getClassCode().equals("ANYO")) { return ((MSSBamLegalEntityBuff) buff); } else { return (null); } } public MSSBamLegalEntityBuff[] readBuffByTenantIdx(MSSBamAuthorization Authorization, long TenantId) { final String S_ProcName = "MSSBamRamAnyObj.readBuffByTenantIdx() "; MSSBamAnyObjBuff buff; ArrayList<MSSBamLegalEntityBuff> filteredList = new ArrayList<MSSBamLegalEntityBuff>(); MSSBamAnyObjBuff[] buffList = readDerivedByTenantIdx(Authorization, TenantId); for (int idx = 0; idx < buffList.length; idx++) { buff = buffList[idx]; if ((buff != null) && buff.getClassCode().equals("ANYO")) { filteredList.add((MSSBamLegalEntityBuff) buff); } } return (filteredList.toArray(new MSSBamLegalEntityBuff[0])); } public MSSBamLegalEntityBuff[] readBuffByScopeIdx(MSSBamAuthorization Authorization, Long ScopeId) { final String S_ProcName = "MSSBamRamAnyObj.readBuffByScopeIdx() "; MSSBamAnyObjBuff buff; ArrayList<MSSBamLegalEntityBuff> filteredList = new ArrayList<MSSBamLegalEntityBuff>(); MSSBamAnyObjBuff[] buffList = readDerivedByScopeIdx(Authorization, ScopeId); for (int idx = 0; idx < buffList.length; idx++) { buff = buffList[idx]; if ((buff != null) && buff.getClassCode().equals("ANYO")) { filteredList.add((MSSBamLegalEntityBuff) buff); } } return (filteredList.toArray(new MSSBamLegalEntityBuff[0])); } public MSSBamLegalEntityBuff[] readBuffByAuthorIdx(MSSBamAuthorization Authorization, Long AuthorId) { final String S_ProcName = "MSSBamRamAnyObj.readBuffByAuthorIdx() "; MSSBamAnyObjBuff buff; ArrayList<MSSBamLegalEntityBuff> filteredList = new ArrayList<MSSBamLegalEntityBuff>(); MSSBamAnyObjBuff[] buffList = readDerivedByAuthorIdx(Authorization, AuthorId); for (int idx = 0; idx < buffList.length; idx++) { buff = buffList[idx]; if ((buff != null) && buff.getClassCode().equals("ANYO")) { filteredList.add((MSSBamLegalEntityBuff) buff); } } return (filteredList.toArray(new MSSBamLegalEntityBuff[0])); } public MSSBamLegalEntityBuff readBuffByUNameIdx(MSSBamAuthorization Authorization, Long ScopeId, String Name) { final String S_ProcName = "MSSBamRamAnyObj.readBuffByUNameIdx() "; MSSBamAnyObjBuff buff = readDerivedByUNameIdx(Authorization, ScopeId, Name); if ((buff != null) && buff.getClassCode().equals("ANYO")) { return ((MSSBamLegalEntityBuff) buff); } else { return (null); } } public MSSBamLegalEntityBuff[] readBuffByContainerIdx(MSSBamAuthorization Authorization, Long ContainerDomainId) { final String S_ProcName = "MSSBamRamDomain.readBuffByContainerIdx() "; MSSBamDomainBuff buff; ArrayList<MSSBamLegalEntityBuff> filteredList = new ArrayList<MSSBamLegalEntityBuff>(); MSSBamDomainBuff[] buffList = readDerivedByContainerIdx(Authorization, ContainerDomainId); for (int idx = 0; idx < buffList.length; idx++) { buff = buffList[idx]; if ((buff != null) && buff.getClassCode().equals("DOM")) { filteredList.add((MSSBamLegalEntityBuff) buff); } } return (filteredList.toArray(new MSSBamLegalEntityBuff[0])); } public MSSBamLegalEntityBuff[] readBuffByChildrenIdx(MSSBamAuthorization Authorization, Long ContainerDomainId) { final String S_ProcName = "MSSBamRamLegalEntity.readBuffByChildrenIdx() "; MSSBamLegalEntityBuff buff; ArrayList<MSSBamLegalEntityBuff> filteredList = new ArrayList<MSSBamLegalEntityBuff>(); MSSBamLegalEntityBuff[] buffList = readDerivedByChildrenIdx(Authorization, ContainerDomainId); for (int idx = 0; idx < buffList.length; idx++) { buff = buffList[idx]; if ((buff != null) && buff.getClassCode().equals("LENT")) { filteredList.add((MSSBamLegalEntityBuff) buff); } } return (filteredList.toArray(new MSSBamLegalEntityBuff[0])); } public void updateLegalEntity(MSSBamAuthorization Authorization, MSSBamLegalEntityBuff Buff) { MSSBamAnyObjPKey pkey = schema.getFactoryAnyObj().newPKey(); pkey.setRequiredId(Buff.getRequiredId()); MSSBamLegalEntityBuff existing = dictByPKey.get(pkey); if (existing == null) { throw CFLib.getDefaultExceptionFactory().newStaleCacheDetectedException(getClass(), "updateLegalEntity", "Existing record not found", "LegalEntity", pkey); } MSSBamLegalEntityByChildrenIdxKey existingKeyChildrenIdx = schema.getFactoryLegalEntity() .newChildrenIdxKey(); existingKeyChildrenIdx.setOptionalContainerDomainId(existing.getOptionalContainerDomainId()); MSSBamLegalEntityByChildrenIdxKey newKeyChildrenIdx = schema.getFactoryLegalEntity().newChildrenIdxKey(); newKeyChildrenIdx.setOptionalContainerDomainId(Buff.getOptionalContainerDomainId()); // Check unique indexes // Validate foreign keys { boolean allNull = true; if (allNull) { if (null == schema.getTableDomain().readDerivedByIdIdx(Authorization, Buff.getRequiredId())) { throw CFLib.getDefaultExceptionFactory().newUnresolvedRelationException(getClass(), "updateLegalEntity", "Superclass", "SuperClass", "Domain", null); } } } // Update is valid SortedMap<MSSBamAnyObjPKey, MSSBamLegalEntityBuff> subdict; dictByPKey.remove(pkey); dictByPKey.put(pkey, Buff); subdict = dictByChildrenIdx.get(existingKeyChildrenIdx); if (subdict != null) { subdict.remove(pkey); } if (dictByChildrenIdx.containsKey(newKeyChildrenIdx)) { subdict = dictByChildrenIdx.get(newKeyChildrenIdx); } else { subdict = new TreeMap<MSSBamAnyObjPKey, MSSBamLegalEntityBuff>(); dictByChildrenIdx.put(newKeyChildrenIdx, subdict); } subdict.put(pkey, Buff); } public void deleteLegalEntity(MSSBamAuthorization Authorization, MSSBamLegalEntityBuff Buff) { final String S_ProcName = "MSSBamRamLegalEntityTable.deleteLegalEntity() "; MSSBamAnyObjPKey pkey = schema.getFactoryAnyObj().newPKey(); pkey.setRequiredId(schema.nextAnyObjIdGen()); MSSBamLegalEntityBuff existing = dictByPKey.get(pkey); if (existing == null) { throw CFLib.getDefaultExceptionFactory().newStaleCacheDetectedException(getClass(), "deleteLegalEntity", "Existing record not found", "LegalEntity", pkey); } if (existing.getRequiredRevision() != Buff.getRequiredRevision()) { throw CFLib.getDefaultExceptionFactory().newCollisionDetectedException(getClass(), "deleteLegalEntity", pkey); } MSSBamLegalEntityByChildrenIdxKey keyChildrenIdx = schema.getFactoryLegalEntity().newChildrenIdxKey(); keyChildrenIdx.setOptionalContainerDomainId(existing.getOptionalContainerDomainId()); // Validate reverse foreign keys if (schema.getTableCompany().readDerivedByIdIdx(Authorization, existing.getRequiredId()) != null) { throw CFLib.getDefaultExceptionFactory().newDependentsDetectedException(getClass(), "deleteLegalEntity", "Superclass", "SuperClass", "Company", pkey); } if (schema.getTableUser().readDerivedByIdIdx(Authorization, existing.getRequiredId()) != null) { throw CFLib.getDefaultExceptionFactory().newDependentsDetectedException(getClass(), "deleteLegalEntity", "Superclass", "SuperClass", "User", pkey); } // Delete is valid SortedMap<MSSBamAnyObjPKey, MSSBamLegalEntityBuff> subdict; dictByPKey.remove(pkey); subdict = dictByChildrenIdx.get(keyChildrenIdx); subdict.remove(pkey); } public MSSBamCursor openLegalEntityCursorAll(MSSBamAuthorization Authorization) { MSSBamCursor cursor = new MSSBamRamLegalEntityCursor(Authorization, schema, dictByPKey.values()); return (cursor); } public MSSBamCursor openLegalEntityCursorByChildrenIdx(MSSBamAuthorization Authorization, Long ContainerDomainId) { MSSBamCursor cursor; MSSBamLegalEntityByChildrenIdxKey key = schema.getFactoryLegalEntity().newChildrenIdxKey(); key.setOptionalContainerDomainId(ContainerDomainId); if (dictByChildrenIdx.containsKey(key)) { SortedMap<MSSBamAnyObjPKey, MSSBamLegalEntityBuff> subdictChildrenIdx = dictByChildrenIdx.get(key); cursor = new MSSBamRamLegalEntityCursor(Authorization, schema, subdictChildrenIdx.values()); } else { cursor = new MSSBamRamLegalEntityCursor(Authorization, schema, new ArrayList<MSSBamLegalEntityBuff>()); } return (cursor); } public void closeLegalEntityCursor(MSSBamCursor Cursor) { // Cursor.DataReader.Close(); } public MSSBamLegalEntityBuff nextLegalEntityCursor(MSSBamCursor Cursor) { MSSBamRamLegalEntityCursor cursor = (MSSBamRamLegalEntityCursor) Cursor; MSSBamLegalEntityBuff rec = cursor.getCursor().next(); cursor.setRowIdx(cursor.getRowIdx() + 1); return (rec); } public MSSBamLegalEntityBuff prevLegalEntityCursor(MSSBamCursor Cursor) { int targetRowIdx = (Cursor.getRowIdx() > 1) ? Cursor.getRowIdx() - 1 : 1; MSSBamLegalEntityBuff rec = null; if (Cursor.getRowIdx() >= targetRowIdx) { Cursor.reset(); } while (Cursor.getRowIdx() < targetRowIdx) { rec = nextLegalEntityCursor(Cursor); } return (rec); } public MSSBamLegalEntityBuff firstLegalEntityCursor(MSSBamCursor Cursor) { int targetRowIdx = 1; MSSBamLegalEntityBuff rec = null; Cursor.reset(); while (Cursor.getRowIdx() < targetRowIdx) { rec = nextLegalEntityCursor(Cursor); } return (rec); } public MSSBamLegalEntityBuff lastLegalEntityCursor(MSSBamCursor Cursor) { throw CFLib.getDefaultExceptionFactory().newNotImplementedYetException(getClass(), "lastLegalEntityCursor"); } public MSSBamLegalEntityBuff nthLegalEntityCursor(MSSBamCursor Cursor, int Idx) { int targetRowIdx = Idx; MSSBamLegalEntityBuff rec = null; if (Cursor.getRowIdx() >= targetRowIdx) { Cursor.reset(); } while (Cursor.getRowIdx() < targetRowIdx) { rec = nextLegalEntityCursor(Cursor); } return (rec); } }