Java tutorial
// Description: Java6 in-memory RAM DbIO implementation for SchemaDouble. /* * 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.*; /* * MSSBamRamSchemaDoubleTable in-memory RAM DbIO implementation * for SchemaDouble. */ public class MSSBamRamSchemaDoubleTable implements IMSSBamSchemaDoubleTable { private MSSBamBLRamSchema schema; private Map<MSSBamAnyObjPKey, MSSBamSchemaDoubleBuff> dictByPKey = new HashMap<MSSBamAnyObjPKey, MSSBamSchemaDoubleBuff>(); private SortedMap<MSSBamSchemaDoubleByContainerIdxKey, SortedMap<MSSBamAnyObjPKey, MSSBamSchemaDoubleBuff>> dictByContainerIdx = new TreeMap<MSSBamSchemaDoubleByContainerIdxKey, SortedMap<MSSBamAnyObjPKey, MSSBamSchemaDoubleBuff>>(); public MSSBamRamSchemaDoubleTable(MSSBamBLRamSchema argSchema) { schema = argSchema; } public void createSchemaDouble(MSSBamAuthorization Authorization, MSSBamSchemaDoubleBuff Buff) { MSSBamAnyObjPKey pkey = schema.getFactoryAnyObj().newPKey(); pkey.setClassCode(Buff.getClassCode()); pkey.setRequiredId(Buff.getRequiredId()); MSSBamSchemaDoubleByContainerIdxKey keyContainerIdx = schema.getFactorySchemaDouble().newContainerIdxKey(); keyContainerIdx.setRequiredContainerId(Buff.getRequiredContainerId()); // Validate unique indexes if (dictByPKey.containsKey(pkey)) { throw CFLib.getDefaultExceptionFactory().newPrimaryKeyNotNewException(getClass(), "createSchemaDouble", pkey); } // Validate foreign keys { boolean allNull = true; allNull = false; if (!allNull) { if (null == schema.getTableDoubleDef().readDerivedByIdIdx(Authorization, Buff.getRequiredId())) { throw CFLib.getDefaultExceptionFactory().newUnresolvedRelationException(getClass(), "createSchemaDouble", "Superclass", "SuperClass", "DoubleDef", null); } } } { boolean allNull = true; allNull = false; if (!allNull) { if (null == schema.getTableSchemaDef().readDerivedByIdIdx(Authorization, Buff.getRequiredContainerId())) { throw CFLib.getDefaultExceptionFactory().newUnresolvedRelationException(getClass(), "createSchemaDouble", "Container", "CSchema", "SchemaDef", null); } } } // Proceed with adding the new record dictByPKey.put(pkey, Buff); SortedMap<MSSBamAnyObjPKey, MSSBamSchemaDoubleBuff> subdictContainerIdx; if (dictByContainerIdx.containsKey(keyContainerIdx)) { subdictContainerIdx = dictByContainerIdx.get(keyContainerIdx); } else { subdictContainerIdx = new TreeMap<MSSBamAnyObjPKey, MSSBamSchemaDoubleBuff>(); dictByContainerIdx.put(keyContainerIdx, subdictContainerIdx); } subdictContainerIdx.put(pkey, Buff); } public MSSBamSchemaDoubleBuff readDerived(MSSBamAuthorization Authorization, MSSBamAnyObjPKey PKey) { final String S_ProcName = "MSSBamRamSchemaDouble.readDerived() "; MSSBamAnyObjPKey key = schema.getFactoryAnyObj().newPKey(); key.setRequiredId(PKey.getRequiredId()); MSSBamSchemaDoubleBuff buff; if (dictByPKey.containsKey(key)) { buff = dictByPKey.get(key); } else { buff = null; } return (buff); } public MSSBamSchemaDoubleBuff[] readAllDerived(MSSBamAuthorization Authorization) { final String S_ProcName = "MSSBamRamSchemaDouble.readAllDerived() "; MSSBamSchemaDoubleBuff[] retList = new MSSBamSchemaDoubleBuff[dictByPKey.values().size()]; Iterator<MSSBamSchemaDoubleBuff> iter = dictByPKey.values().iterator(); int idx = 0; while (iter.hasNext()) { retList[idx++] = iter.next(); } return (retList); } public MSSBamSchemaDoubleBuff[] 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<MSSBamSchemaDoubleBuff> filteredList = new ArrayList<MSSBamSchemaDoubleBuff>(); for (int idx = 0; idx < buffList.length; idx++) { buff = buffList[idx]; if ((buff != null) && (buff instanceof MSSBamSchemaDoubleBuff)) { filteredList.add((MSSBamSchemaDoubleBuff) buff); } } return (filteredList.toArray(new MSSBamSchemaDoubleBuff[0])); } } public MSSBamSchemaDoubleBuff[] 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<MSSBamSchemaDoubleBuff> filteredList = new ArrayList<MSSBamSchemaDoubleBuff>(); for (int idx = 0; idx < buffList.length; idx++) { buff = buffList[idx]; if ((buff != null) && (buff instanceof MSSBamSchemaDoubleBuff)) { filteredList.add((MSSBamSchemaDoubleBuff) buff); } } return (filteredList.toArray(new MSSBamSchemaDoubleBuff[0])); } } public MSSBamSchemaDoubleBuff[] 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<MSSBamSchemaDoubleBuff> filteredList = new ArrayList<MSSBamSchemaDoubleBuff>(); for (int idx = 0; idx < buffList.length; idx++) { buff = buffList[idx]; if ((buff != null) && (buff instanceof MSSBamSchemaDoubleBuff)) { filteredList.add((MSSBamSchemaDoubleBuff) buff); } } return (filteredList.toArray(new MSSBamSchemaDoubleBuff[0])); } } public MSSBamSchemaDoubleBuff 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 MSSBamSchemaDoubleBuff) { return ((MSSBamSchemaDoubleBuff) buff); } else { return (null); } } public MSSBamSchemaDoubleBuff[] readDerivedByVContIdx(MSSBamAuthorization Authorization, long ValueContainerId) { final String S_ProcName = "MSSBamRamValue.readDerivedByVContIdx() "; MSSBamValueBuff buffList[] = schema.getTableValue().readDerivedByVContIdx(Authorization, ValueContainerId); if (buffList == null) { return (null); } else { MSSBamValueBuff buff; ArrayList<MSSBamSchemaDoubleBuff> filteredList = new ArrayList<MSSBamSchemaDoubleBuff>(); for (int idx = 0; idx < buffList.length; idx++) { buff = buffList[idx]; if ((buff != null) && (buff instanceof MSSBamSchemaDoubleBuff)) { filteredList.add((MSSBamSchemaDoubleBuff) buff); } } return (filteredList.toArray(new MSSBamSchemaDoubleBuff[0])); } } public MSSBamSchemaDoubleBuff[] readDerivedByDataScopeIdx(MSSBamAuthorization Authorization, Short DataScopeId) { final String S_ProcName = "MSSBamRamValue.readDerivedByDataScopeIdx() "; MSSBamValueBuff buffList[] = schema.getTableValue().readDerivedByDataScopeIdx(Authorization, DataScopeId); if (buffList == null) { return (null); } else { MSSBamValueBuff buff; ArrayList<MSSBamSchemaDoubleBuff> filteredList = new ArrayList<MSSBamSchemaDoubleBuff>(); for (int idx = 0; idx < buffList.length; idx++) { buff = buffList[idx]; if ((buff != null) && (buff instanceof MSSBamSchemaDoubleBuff)) { filteredList.add((MSSBamSchemaDoubleBuff) buff); } } return (filteredList.toArray(new MSSBamSchemaDoubleBuff[0])); } } public MSSBamSchemaDoubleBuff[] readDerivedByVAccSecIdx(MSSBamAuthorization Authorization, Short ViewAccessSecurityId) { final String S_ProcName = "MSSBamRamValue.readDerivedByVAccSecIdx() "; MSSBamValueBuff buffList[] = schema.getTableValue().readDerivedByVAccSecIdx(Authorization, ViewAccessSecurityId); if (buffList == null) { return (null); } else { MSSBamValueBuff buff; ArrayList<MSSBamSchemaDoubleBuff> filteredList = new ArrayList<MSSBamSchemaDoubleBuff>(); for (int idx = 0; idx < buffList.length; idx++) { buff = buffList[idx]; if ((buff != null) && (buff instanceof MSSBamSchemaDoubleBuff)) { filteredList.add((MSSBamSchemaDoubleBuff) buff); } } return (filteredList.toArray(new MSSBamSchemaDoubleBuff[0])); } } public MSSBamSchemaDoubleBuff[] readDerivedByVAccFreqIdx(MSSBamAuthorization Authorization, Short ViewAccessFrequencyId) { final String S_ProcName = "MSSBamRamValue.readDerivedByVAccFreqIdx() "; MSSBamValueBuff buffList[] = schema.getTableValue().readDerivedByVAccFreqIdx(Authorization, ViewAccessFrequencyId); if (buffList == null) { return (null); } else { MSSBamValueBuff buff; ArrayList<MSSBamSchemaDoubleBuff> filteredList = new ArrayList<MSSBamSchemaDoubleBuff>(); for (int idx = 0; idx < buffList.length; idx++) { buff = buffList[idx]; if ((buff != null) && (buff instanceof MSSBamSchemaDoubleBuff)) { filteredList.add((MSSBamSchemaDoubleBuff) buff); } } return (filteredList.toArray(new MSSBamSchemaDoubleBuff[0])); } } public MSSBamSchemaDoubleBuff[] readDerivedByEAccSecIdx(MSSBamAuthorization Authorization, Short EditAccessSecurityId) { final String S_ProcName = "MSSBamRamValue.readDerivedByEAccSecIdx() "; MSSBamValueBuff buffList[] = schema.getTableValue().readDerivedByEAccSecIdx(Authorization, EditAccessSecurityId); if (buffList == null) { return (null); } else { MSSBamValueBuff buff; ArrayList<MSSBamSchemaDoubleBuff> filteredList = new ArrayList<MSSBamSchemaDoubleBuff>(); for (int idx = 0; idx < buffList.length; idx++) { buff = buffList[idx]; if ((buff != null) && (buff instanceof MSSBamSchemaDoubleBuff)) { filteredList.add((MSSBamSchemaDoubleBuff) buff); } } return (filteredList.toArray(new MSSBamSchemaDoubleBuff[0])); } } public MSSBamSchemaDoubleBuff[] readDerivedByEAccFreqIdx(MSSBamAuthorization Authorization, Short EditAccessFrequencyId) { final String S_ProcName = "MSSBamRamValue.readDerivedByEAccFreqIdx() "; MSSBamValueBuff buffList[] = schema.getTableValue().readDerivedByEAccFreqIdx(Authorization, EditAccessFrequencyId); if (buffList == null) { return (null); } else { MSSBamValueBuff buff; ArrayList<MSSBamSchemaDoubleBuff> filteredList = new ArrayList<MSSBamSchemaDoubleBuff>(); for (int idx = 0; idx < buffList.length; idx++) { buff = buffList[idx]; if ((buff != null) && (buff instanceof MSSBamSchemaDoubleBuff)) { filteredList.add((MSSBamSchemaDoubleBuff) buff); } } return (filteredList.toArray(new MSSBamSchemaDoubleBuff[0])); } } public MSSBamSchemaDoubleBuff[] readDerivedByPrevIdx(MSSBamAuthorization Authorization, Long PrevId) { final String S_ProcName = "MSSBamRamValue.readDerivedByPrevIdx() "; MSSBamValueBuff buffList[] = schema.getTableValue().readDerivedByPrevIdx(Authorization, PrevId); if (buffList == null) { return (null); } else { MSSBamValueBuff buff; ArrayList<MSSBamSchemaDoubleBuff> filteredList = new ArrayList<MSSBamSchemaDoubleBuff>(); for (int idx = 0; idx < buffList.length; idx++) { buff = buffList[idx]; if ((buff != null) && (buff instanceof MSSBamSchemaDoubleBuff)) { filteredList.add((MSSBamSchemaDoubleBuff) buff); } } return (filteredList.toArray(new MSSBamSchemaDoubleBuff[0])); } } public MSSBamSchemaDoubleBuff[] readDerivedByNextIdx(MSSBamAuthorization Authorization, Long NextId) { final String S_ProcName = "MSSBamRamValue.readDerivedByNextIdx() "; MSSBamValueBuff buffList[] = schema.getTableValue().readDerivedByNextIdx(Authorization, NextId); if (buffList == null) { return (null); } else { MSSBamValueBuff buff; ArrayList<MSSBamSchemaDoubleBuff> filteredList = new ArrayList<MSSBamSchemaDoubleBuff>(); for (int idx = 0; idx < buffList.length; idx++) { buff = buffList[idx]; if ((buff != null) && (buff instanceof MSSBamSchemaDoubleBuff)) { filteredList.add((MSSBamSchemaDoubleBuff) buff); } } return (filteredList.toArray(new MSSBamSchemaDoubleBuff[0])); } } public MSSBamSchemaDoubleBuff[] readDerivedByContPrevIdx(MSSBamAuthorization Authorization, long ValueContainerId, Long PrevId) { final String S_ProcName = "MSSBamRamValue.readDerivedByContPrevIdx() "; MSSBamValueBuff buffList[] = schema.getTableValue().readDerivedByContPrevIdx(Authorization, ValueContainerId, PrevId); if (buffList == null) { return (null); } else { MSSBamValueBuff buff; ArrayList<MSSBamSchemaDoubleBuff> filteredList = new ArrayList<MSSBamSchemaDoubleBuff>(); for (int idx = 0; idx < buffList.length; idx++) { buff = buffList[idx]; if ((buff != null) && (buff instanceof MSSBamSchemaDoubleBuff)) { filteredList.add((MSSBamSchemaDoubleBuff) buff); } } return (filteredList.toArray(new MSSBamSchemaDoubleBuff[0])); } } public MSSBamSchemaDoubleBuff[] readDerivedByContNextIdx(MSSBamAuthorization Authorization, long ValueContainerId, Long NextId) { final String S_ProcName = "MSSBamRamValue.readDerivedByContNextIdx() "; MSSBamValueBuff buffList[] = schema.getTableValue().readDerivedByContNextIdx(Authorization, ValueContainerId, NextId); if (buffList == null) { return (null); } else { MSSBamValueBuff buff; ArrayList<MSSBamSchemaDoubleBuff> filteredList = new ArrayList<MSSBamSchemaDoubleBuff>(); for (int idx = 0; idx < buffList.length; idx++) { buff = buffList[idx]; if ((buff != null) && (buff instanceof MSSBamSchemaDoubleBuff)) { filteredList.add((MSSBamSchemaDoubleBuff) buff); } } return (filteredList.toArray(new MSSBamSchemaDoubleBuff[0])); } } public MSSBamSchemaDoubleBuff[] readDerivedByContainerIdx(MSSBamAuthorization Authorization, long ContainerId) { final String S_ProcName = "MSSBamRamSchemaDouble.readDerivedByContainerIdx() "; MSSBamSchemaDoubleByContainerIdxKey key = schema.getFactorySchemaDouble().newContainerIdxKey(); key.setRequiredContainerId(ContainerId); MSSBamSchemaDoubleBuff[] recArray; if (dictByContainerIdx.containsKey(key)) { SortedMap<MSSBamAnyObjPKey, MSSBamSchemaDoubleBuff> subdictContainerIdx = dictByContainerIdx.get(key); recArray = new MSSBamSchemaDoubleBuff[subdictContainerIdx.size()]; Iterator<MSSBamSchemaDoubleBuff> iter = subdictContainerIdx.values().iterator(); int idx = 0; while (iter.hasNext()) { recArray[idx++] = iter.next(); } } else { recArray = new MSSBamSchemaDoubleBuff[0]; } return (recArray); } public MSSBamSchemaDoubleBuff readDerivedByIdIdx(MSSBamAuthorization Authorization, long Id) { final String S_ProcName = "MSSBamRamAnyObj.readDerivedByIdIdx() "; MSSBamAnyObjPKey key = schema.getFactoryAnyObj().newPKey(); key.setRequiredId(Id); MSSBamSchemaDoubleBuff buff; if (dictByPKey.containsKey(key)) { buff = dictByPKey.get(key); } else { buff = null; } return (buff); } public MSSBamSchemaDoubleBuff readBuff(MSSBamAuthorization Authorization, MSSBamAnyObjPKey PKey) { final String S_ProcName = "MSSBamRamSchemaDouble.readBuff() "; MSSBamSchemaDoubleBuff buff = readDerived(Authorization, PKey); if ((buff != null) && (!buff.getClassCode().equals("SDBL"))) { buff = null; } return (buff); } public MSSBamSchemaDoubleBuff[] readAllBuff(MSSBamAuthorization Authorization) { final String S_ProcName = "MSSBamRamSchemaDouble.readAllBuff() "; MSSBamSchemaDoubleBuff buff; ArrayList<MSSBamSchemaDoubleBuff> filteredList = new ArrayList<MSSBamSchemaDoubleBuff>(); MSSBamSchemaDoubleBuff[] buffList = readAllDerived(Authorization); for (int idx = 0; idx < buffList.length; idx++) { buff = buffList[idx]; if ((buff != null) && buff.getClassCode().equals("SDBL")) { filteredList.add(buff); } } return (filteredList.toArray(new MSSBamSchemaDoubleBuff[0])); } public MSSBamSchemaDoubleBuff readBuffByIdIdx(MSSBamAuthorization Authorization, long Id) { final String S_ProcName = "MSSBamRamAnyObj.readBuffByIdIdx() "; MSSBamAnyObjBuff buff = readDerivedByIdIdx(Authorization, Id); if ((buff != null) && buff.getClassCode().equals("ANYO")) { return ((MSSBamSchemaDoubleBuff) buff); } else { return (null); } } public MSSBamSchemaDoubleBuff[] readBuffByTenantIdx(MSSBamAuthorization Authorization, long TenantId) { final String S_ProcName = "MSSBamRamAnyObj.readBuffByTenantIdx() "; MSSBamAnyObjBuff buff; ArrayList<MSSBamSchemaDoubleBuff> filteredList = new ArrayList<MSSBamSchemaDoubleBuff>(); 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((MSSBamSchemaDoubleBuff) buff); } } return (filteredList.toArray(new MSSBamSchemaDoubleBuff[0])); } public MSSBamSchemaDoubleBuff[] readBuffByScopeIdx(MSSBamAuthorization Authorization, Long ScopeId) { final String S_ProcName = "MSSBamRamAnyObj.readBuffByScopeIdx() "; MSSBamAnyObjBuff buff; ArrayList<MSSBamSchemaDoubleBuff> filteredList = new ArrayList<MSSBamSchemaDoubleBuff>(); 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((MSSBamSchemaDoubleBuff) buff); } } return (filteredList.toArray(new MSSBamSchemaDoubleBuff[0])); } public MSSBamSchemaDoubleBuff[] readBuffByAuthorIdx(MSSBamAuthorization Authorization, Long AuthorId) { final String S_ProcName = "MSSBamRamAnyObj.readBuffByAuthorIdx() "; MSSBamAnyObjBuff buff; ArrayList<MSSBamSchemaDoubleBuff> filteredList = new ArrayList<MSSBamSchemaDoubleBuff>(); 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((MSSBamSchemaDoubleBuff) buff); } } return (filteredList.toArray(new MSSBamSchemaDoubleBuff[0])); } public MSSBamSchemaDoubleBuff 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 ((MSSBamSchemaDoubleBuff) buff); } else { return (null); } } public MSSBamSchemaDoubleBuff[] readBuffByVContIdx(MSSBamAuthorization Authorization, long ValueContainerId) { final String S_ProcName = "MSSBamRamValue.readBuffByVContIdx() "; MSSBamValueBuff buff; ArrayList<MSSBamSchemaDoubleBuff> filteredList = new ArrayList<MSSBamSchemaDoubleBuff>(); MSSBamValueBuff[] buffList = readDerivedByVContIdx(Authorization, ValueContainerId); for (int idx = 0; idx < buffList.length; idx++) { buff = buffList[idx]; if ((buff != null) && buff.getClassCode().equals("VAL")) { filteredList.add((MSSBamSchemaDoubleBuff) buff); } } return (filteredList.toArray(new MSSBamSchemaDoubleBuff[0])); } public MSSBamSchemaDoubleBuff[] readBuffByDataScopeIdx(MSSBamAuthorization Authorization, Short DataScopeId) { final String S_ProcName = "MSSBamRamValue.readBuffByDataScopeIdx() "; MSSBamValueBuff buff; ArrayList<MSSBamSchemaDoubleBuff> filteredList = new ArrayList<MSSBamSchemaDoubleBuff>(); MSSBamValueBuff[] buffList = readDerivedByDataScopeIdx(Authorization, DataScopeId); for (int idx = 0; idx < buffList.length; idx++) { buff = buffList[idx]; if ((buff != null) && buff.getClassCode().equals("VAL")) { filteredList.add((MSSBamSchemaDoubleBuff) buff); } } return (filteredList.toArray(new MSSBamSchemaDoubleBuff[0])); } public MSSBamSchemaDoubleBuff[] readBuffByVAccSecIdx(MSSBamAuthorization Authorization, Short ViewAccessSecurityId) { final String S_ProcName = "MSSBamRamValue.readBuffByVAccSecIdx() "; MSSBamValueBuff buff; ArrayList<MSSBamSchemaDoubleBuff> filteredList = new ArrayList<MSSBamSchemaDoubleBuff>(); MSSBamValueBuff[] buffList = readDerivedByVAccSecIdx(Authorization, ViewAccessSecurityId); for (int idx = 0; idx < buffList.length; idx++) { buff = buffList[idx]; if ((buff != null) && buff.getClassCode().equals("VAL")) { filteredList.add((MSSBamSchemaDoubleBuff) buff); } } return (filteredList.toArray(new MSSBamSchemaDoubleBuff[0])); } public MSSBamSchemaDoubleBuff[] readBuffByVAccFreqIdx(MSSBamAuthorization Authorization, Short ViewAccessFrequencyId) { final String S_ProcName = "MSSBamRamValue.readBuffByVAccFreqIdx() "; MSSBamValueBuff buff; ArrayList<MSSBamSchemaDoubleBuff> filteredList = new ArrayList<MSSBamSchemaDoubleBuff>(); MSSBamValueBuff[] buffList = readDerivedByVAccFreqIdx(Authorization, ViewAccessFrequencyId); for (int idx = 0; idx < buffList.length; idx++) { buff = buffList[idx]; if ((buff != null) && buff.getClassCode().equals("VAL")) { filteredList.add((MSSBamSchemaDoubleBuff) buff); } } return (filteredList.toArray(new MSSBamSchemaDoubleBuff[0])); } public MSSBamSchemaDoubleBuff[] readBuffByEAccSecIdx(MSSBamAuthorization Authorization, Short EditAccessSecurityId) { final String S_ProcName = "MSSBamRamValue.readBuffByEAccSecIdx() "; MSSBamValueBuff buff; ArrayList<MSSBamSchemaDoubleBuff> filteredList = new ArrayList<MSSBamSchemaDoubleBuff>(); MSSBamValueBuff[] buffList = readDerivedByEAccSecIdx(Authorization, EditAccessSecurityId); for (int idx = 0; idx < buffList.length; idx++) { buff = buffList[idx]; if ((buff != null) && buff.getClassCode().equals("VAL")) { filteredList.add((MSSBamSchemaDoubleBuff) buff); } } return (filteredList.toArray(new MSSBamSchemaDoubleBuff[0])); } public MSSBamSchemaDoubleBuff[] readBuffByEAccFreqIdx(MSSBamAuthorization Authorization, Short EditAccessFrequencyId) { final String S_ProcName = "MSSBamRamValue.readBuffByEAccFreqIdx() "; MSSBamValueBuff buff; ArrayList<MSSBamSchemaDoubleBuff> filteredList = new ArrayList<MSSBamSchemaDoubleBuff>(); MSSBamValueBuff[] buffList = readDerivedByEAccFreqIdx(Authorization, EditAccessFrequencyId); for (int idx = 0; idx < buffList.length; idx++) { buff = buffList[idx]; if ((buff != null) && buff.getClassCode().equals("VAL")) { filteredList.add((MSSBamSchemaDoubleBuff) buff); } } return (filteredList.toArray(new MSSBamSchemaDoubleBuff[0])); } public MSSBamSchemaDoubleBuff[] readBuffByPrevIdx(MSSBamAuthorization Authorization, Long PrevId) { final String S_ProcName = "MSSBamRamValue.readBuffByPrevIdx() "; MSSBamValueBuff buff; ArrayList<MSSBamSchemaDoubleBuff> filteredList = new ArrayList<MSSBamSchemaDoubleBuff>(); MSSBamValueBuff[] buffList = readDerivedByPrevIdx(Authorization, PrevId); for (int idx = 0; idx < buffList.length; idx++) { buff = buffList[idx]; if ((buff != null) && buff.getClassCode().equals("VAL")) { filteredList.add((MSSBamSchemaDoubleBuff) buff); } } return (filteredList.toArray(new MSSBamSchemaDoubleBuff[0])); } public MSSBamSchemaDoubleBuff[] readBuffByNextIdx(MSSBamAuthorization Authorization, Long NextId) { final String S_ProcName = "MSSBamRamValue.readBuffByNextIdx() "; MSSBamValueBuff buff; ArrayList<MSSBamSchemaDoubleBuff> filteredList = new ArrayList<MSSBamSchemaDoubleBuff>(); MSSBamValueBuff[] buffList = readDerivedByNextIdx(Authorization, NextId); for (int idx = 0; idx < buffList.length; idx++) { buff = buffList[idx]; if ((buff != null) && buff.getClassCode().equals("VAL")) { filteredList.add((MSSBamSchemaDoubleBuff) buff); } } return (filteredList.toArray(new MSSBamSchemaDoubleBuff[0])); } public MSSBamSchemaDoubleBuff[] readBuffByContPrevIdx(MSSBamAuthorization Authorization, long ValueContainerId, Long PrevId) { final String S_ProcName = "MSSBamRamValue.readBuffByContPrevIdx() "; MSSBamValueBuff buff; ArrayList<MSSBamSchemaDoubleBuff> filteredList = new ArrayList<MSSBamSchemaDoubleBuff>(); MSSBamValueBuff[] buffList = readDerivedByContPrevIdx(Authorization, ValueContainerId, PrevId); for (int idx = 0; idx < buffList.length; idx++) { buff = buffList[idx]; if ((buff != null) && buff.getClassCode().equals("VAL")) { filteredList.add((MSSBamSchemaDoubleBuff) buff); } } return (filteredList.toArray(new MSSBamSchemaDoubleBuff[0])); } public MSSBamSchemaDoubleBuff[] readBuffByContNextIdx(MSSBamAuthorization Authorization, long ValueContainerId, Long NextId) { final String S_ProcName = "MSSBamRamValue.readBuffByContNextIdx() "; MSSBamValueBuff buff; ArrayList<MSSBamSchemaDoubleBuff> filteredList = new ArrayList<MSSBamSchemaDoubleBuff>(); MSSBamValueBuff[] buffList = readDerivedByContNextIdx(Authorization, ValueContainerId, NextId); for (int idx = 0; idx < buffList.length; idx++) { buff = buffList[idx]; if ((buff != null) && buff.getClassCode().equals("VAL")) { filteredList.add((MSSBamSchemaDoubleBuff) buff); } } return (filteredList.toArray(new MSSBamSchemaDoubleBuff[0])); } public MSSBamSchemaDoubleBuff[] readBuffByContainerIdx(MSSBamAuthorization Authorization, long ContainerId) { final String S_ProcName = "MSSBamRamSchemaDouble.readBuffByContainerIdx() "; MSSBamSchemaDoubleBuff buff; ArrayList<MSSBamSchemaDoubleBuff> filteredList = new ArrayList<MSSBamSchemaDoubleBuff>(); MSSBamSchemaDoubleBuff[] buffList = readDerivedByContainerIdx(Authorization, ContainerId); for (int idx = 0; idx < buffList.length; idx++) { buff = buffList[idx]; if ((buff != null) && buff.getClassCode().equals("SDBL")) { filteredList.add((MSSBamSchemaDoubleBuff) buff); } } return (filteredList.toArray(new MSSBamSchemaDoubleBuff[0])); } public void updateSchemaDouble(MSSBamAuthorization Authorization, MSSBamSchemaDoubleBuff Buff) { MSSBamAnyObjPKey pkey = schema.getFactoryAnyObj().newPKey(); pkey.setRequiredId(Buff.getRequiredId()); MSSBamSchemaDoubleBuff existing = dictByPKey.get(pkey); if (existing == null) { throw CFLib.getDefaultExceptionFactory().newStaleCacheDetectedException(getClass(), "updateSchemaDouble", "Existing record not found", "SchemaDouble", pkey); } MSSBamSchemaDoubleByContainerIdxKey existingKeyContainerIdx = schema.getFactorySchemaDouble() .newContainerIdxKey(); existingKeyContainerIdx.setRequiredContainerId(existing.getRequiredContainerId()); MSSBamSchemaDoubleByContainerIdxKey newKeyContainerIdx = schema.getFactorySchemaDouble() .newContainerIdxKey(); newKeyContainerIdx.setRequiredContainerId(Buff.getRequiredContainerId()); // Check unique indexes // Validate foreign keys { boolean allNull = true; if (allNull) { if (null == schema.getTableDoubleDef().readDerivedByIdIdx(Authorization, Buff.getRequiredId())) { throw CFLib.getDefaultExceptionFactory().newUnresolvedRelationException(getClass(), "updateSchemaDouble", "Superclass", "SuperClass", "DoubleDef", null); } } } { boolean allNull = true; if (allNull) { if (null == schema.getTableSchemaDef().readDerivedByIdIdx(Authorization, Buff.getRequiredContainerId())) { throw CFLib.getDefaultExceptionFactory().newUnresolvedRelationException(getClass(), "updateSchemaDouble", "Container", "CSchema", "SchemaDef", null); } } } // Update is valid SortedMap<MSSBamAnyObjPKey, MSSBamSchemaDoubleBuff> subdict; dictByPKey.remove(pkey); dictByPKey.put(pkey, Buff); subdict = dictByContainerIdx.get(existingKeyContainerIdx); if (subdict != null) { subdict.remove(pkey); } if (dictByContainerIdx.containsKey(newKeyContainerIdx)) { subdict = dictByContainerIdx.get(newKeyContainerIdx); } else { subdict = new TreeMap<MSSBamAnyObjPKey, MSSBamSchemaDoubleBuff>(); dictByContainerIdx.put(newKeyContainerIdx, subdict); } subdict.put(pkey, Buff); } public void deleteSchemaDouble(MSSBamAuthorization Authorization, MSSBamSchemaDoubleBuff Buff) { final String S_ProcName = "MSSBamRamSchemaDoubleTable.deleteSchemaDouble() "; MSSBamAnyObjPKey pkey = schema.getFactoryAnyObj().newPKey(); pkey.setRequiredId(schema.nextAnyObjIdGen()); MSSBamSchemaDoubleBuff existing = dictByPKey.get(pkey); if (existing == null) { throw CFLib.getDefaultExceptionFactory().newStaleCacheDetectedException(getClass(), "deleteSchemaDouble", "Existing record not found", "SchemaDouble", pkey); } if (existing.getRequiredRevision() != Buff.getRequiredRevision()) { throw CFLib.getDefaultExceptionFactory().newCollisionDetectedException(getClass(), "deleteSchemaDouble", pkey); } MSSBamSchemaDoubleByContainerIdxKey keyContainerIdx = schema.getFactorySchemaDouble().newContainerIdxKey(); keyContainerIdx.setRequiredContainerId(existing.getRequiredContainerId()); // Validate reverse foreign keys // Delete is valid SortedMap<MSSBamAnyObjPKey, MSSBamSchemaDoubleBuff> subdict; dictByPKey.remove(pkey); subdict = dictByContainerIdx.get(keyContainerIdx); subdict.remove(pkey); } public MSSBamCursor openSchemaDoubleCursorAll(MSSBamAuthorization Authorization) { MSSBamCursor cursor = new MSSBamRamSchemaDoubleCursor(Authorization, schema, dictByPKey.values()); return (cursor); } public MSSBamCursor openSchemaDoubleCursorByContainerIdx(MSSBamAuthorization Authorization, long ContainerId) { MSSBamCursor cursor; MSSBamSchemaDoubleByContainerIdxKey key = schema.getFactorySchemaDouble().newContainerIdxKey(); key.setRequiredContainerId(ContainerId); if (dictByContainerIdx.containsKey(key)) { SortedMap<MSSBamAnyObjPKey, MSSBamSchemaDoubleBuff> subdictContainerIdx = dictByContainerIdx.get(key); cursor = new MSSBamRamSchemaDoubleCursor(Authorization, schema, subdictContainerIdx.values()); } else { cursor = new MSSBamRamSchemaDoubleCursor(Authorization, schema, new ArrayList<MSSBamSchemaDoubleBuff>()); } return (cursor); } public void closeSchemaDoubleCursor(MSSBamCursor Cursor) { // Cursor.DataReader.Close(); } public MSSBamSchemaDoubleBuff nextSchemaDoubleCursor(MSSBamCursor Cursor) { MSSBamRamSchemaDoubleCursor cursor = (MSSBamRamSchemaDoubleCursor) Cursor; MSSBamSchemaDoubleBuff rec = cursor.getCursor().next(); cursor.setRowIdx(cursor.getRowIdx() + 1); return (rec); } public MSSBamSchemaDoubleBuff prevSchemaDoubleCursor(MSSBamCursor Cursor) { int targetRowIdx = (Cursor.getRowIdx() > 1) ? Cursor.getRowIdx() - 1 : 1; MSSBamSchemaDoubleBuff rec = null; if (Cursor.getRowIdx() >= targetRowIdx) { Cursor.reset(); } while (Cursor.getRowIdx() < targetRowIdx) { rec = nextSchemaDoubleCursor(Cursor); } return (rec); } public MSSBamSchemaDoubleBuff firstSchemaDoubleCursor(MSSBamCursor Cursor) { int targetRowIdx = 1; MSSBamSchemaDoubleBuff rec = null; Cursor.reset(); while (Cursor.getRowIdx() < targetRowIdx) { rec = nextSchemaDoubleCursor(Cursor); } return (rec); } public MSSBamSchemaDoubleBuff lastSchemaDoubleCursor(MSSBamCursor Cursor) { throw CFLib.getDefaultExceptionFactory().newNotImplementedYetException(getClass(), "lastSchemaDoubleCursor"); } public MSSBamSchemaDoubleBuff nthSchemaDoubleCursor(MSSBamCursor Cursor, int Idx) { int targetRowIdx = Idx; MSSBamSchemaDoubleBuff rec = null; if (Cursor.getRowIdx() >= targetRowIdx) { Cursor.reset(); } while (Cursor.getRowIdx() < targetRowIdx) { rec = nextSchemaDoubleCursor(Cursor); } return (rec); } }