Java tutorial
// Description: Java6 in-memory RAM DbIO implementation for TableInt32. /* * 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.*; /* * MSSBamRamTableInt32Table in-memory RAM DbIO implementation * for TableInt32. */ public class MSSBamRamTableInt32Table implements IMSSBamTableInt32Table { private MSSBamBLRamSchema schema; private Map<MSSBamAnyObjPKey, MSSBamTableInt32Buff> dictByPKey = new HashMap<MSSBamAnyObjPKey, MSSBamTableInt32Buff>(); private SortedMap<MSSBamTableInt32ByContainerIdxKey, SortedMap<MSSBamAnyObjPKey, MSSBamTableInt32Buff>> dictByContainerIdx = new TreeMap<MSSBamTableInt32ByContainerIdxKey, SortedMap<MSSBamAnyObjPKey, MSSBamTableInt32Buff>>(); public MSSBamRamTableInt32Table(MSSBamBLRamSchema argSchema) { schema = argSchema; } public void createTableInt32(MSSBamAuthorization Authorization, MSSBamTableInt32Buff Buff) { MSSBamAnyObjPKey pkey = schema.getFactoryAnyObj().newPKey(); pkey.setClassCode(Buff.getClassCode()); pkey.setRequiredId(Buff.getRequiredId()); MSSBamTableInt32ByContainerIdxKey keyContainerIdx = schema.getFactoryTableInt32().newContainerIdxKey(); keyContainerIdx.setRequiredContainerId(Buff.getRequiredContainerId()); // Validate unique indexes if (dictByPKey.containsKey(pkey)) { throw CFLib.getDefaultExceptionFactory().newPrimaryKeyNotNewException(getClass(), "createTableInt32", pkey); } // Validate foreign keys { boolean allNull = true; allNull = false; if (!allNull) { if (null == schema.getTableInt32Def().readDerivedByIdIdx(Authorization, Buff.getRequiredId())) { throw CFLib.getDefaultExceptionFactory().newUnresolvedRelationException(getClass(), "createTableInt32", "Superclass", "SuperClass", "Int32Def", null); } } } { boolean allNull = true; allNull = false; if (!allNull) { if (null == schema.getTableTable().readDerivedByIdIdx(Authorization, Buff.getRequiredContainerId())) { throw CFLib.getDefaultExceptionFactory().newUnresolvedRelationException(getClass(), "createTableInt32", "Container", "CTable", "Table", null); } } } // Proceed with adding the new record dictByPKey.put(pkey, Buff); SortedMap<MSSBamAnyObjPKey, MSSBamTableInt32Buff> subdictContainerIdx; if (dictByContainerIdx.containsKey(keyContainerIdx)) { subdictContainerIdx = dictByContainerIdx.get(keyContainerIdx); } else { subdictContainerIdx = new TreeMap<MSSBamAnyObjPKey, MSSBamTableInt32Buff>(); dictByContainerIdx.put(keyContainerIdx, subdictContainerIdx); } subdictContainerIdx.put(pkey, Buff); } public MSSBamTableInt32Buff readDerived(MSSBamAuthorization Authorization, MSSBamAnyObjPKey PKey) { final String S_ProcName = "MSSBamRamTableInt32.readDerived() "; MSSBamAnyObjPKey key = schema.getFactoryAnyObj().newPKey(); key.setRequiredId(PKey.getRequiredId()); MSSBamTableInt32Buff buff; if (dictByPKey.containsKey(key)) { buff = dictByPKey.get(key); } else { buff = null; } return (buff); } public MSSBamTableInt32Buff[] readAllDerived(MSSBamAuthorization Authorization) { final String S_ProcName = "MSSBamRamTableInt32.readAllDerived() "; MSSBamTableInt32Buff[] retList = new MSSBamTableInt32Buff[dictByPKey.values().size()]; Iterator<MSSBamTableInt32Buff> iter = dictByPKey.values().iterator(); int idx = 0; while (iter.hasNext()) { retList[idx++] = iter.next(); } return (retList); } public MSSBamTableInt32Buff[] 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<MSSBamTableInt32Buff> filteredList = new ArrayList<MSSBamTableInt32Buff>(); for (int idx = 0; idx < buffList.length; idx++) { buff = buffList[idx]; if ((buff != null) && (buff instanceof MSSBamTableInt32Buff)) { filteredList.add((MSSBamTableInt32Buff) buff); } } return (filteredList.toArray(new MSSBamTableInt32Buff[0])); } } public MSSBamTableInt32Buff[] 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<MSSBamTableInt32Buff> filteredList = new ArrayList<MSSBamTableInt32Buff>(); for (int idx = 0; idx < buffList.length; idx++) { buff = buffList[idx]; if ((buff != null) && (buff instanceof MSSBamTableInt32Buff)) { filteredList.add((MSSBamTableInt32Buff) buff); } } return (filteredList.toArray(new MSSBamTableInt32Buff[0])); } } public MSSBamTableInt32Buff[] 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<MSSBamTableInt32Buff> filteredList = new ArrayList<MSSBamTableInt32Buff>(); for (int idx = 0; idx < buffList.length; idx++) { buff = buffList[idx]; if ((buff != null) && (buff instanceof MSSBamTableInt32Buff)) { filteredList.add((MSSBamTableInt32Buff) buff); } } return (filteredList.toArray(new MSSBamTableInt32Buff[0])); } } public MSSBamTableInt32Buff 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 MSSBamTableInt32Buff) { return ((MSSBamTableInt32Buff) buff); } else { return (null); } } public MSSBamTableInt32Buff[] 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<MSSBamTableInt32Buff> filteredList = new ArrayList<MSSBamTableInt32Buff>(); for (int idx = 0; idx < buffList.length; idx++) { buff = buffList[idx]; if ((buff != null) && (buff instanceof MSSBamTableInt32Buff)) { filteredList.add((MSSBamTableInt32Buff) buff); } } return (filteredList.toArray(new MSSBamTableInt32Buff[0])); } } public MSSBamTableInt32Buff[] 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<MSSBamTableInt32Buff> filteredList = new ArrayList<MSSBamTableInt32Buff>(); for (int idx = 0; idx < buffList.length; idx++) { buff = buffList[idx]; if ((buff != null) && (buff instanceof MSSBamTableInt32Buff)) { filteredList.add((MSSBamTableInt32Buff) buff); } } return (filteredList.toArray(new MSSBamTableInt32Buff[0])); } } public MSSBamTableInt32Buff[] 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<MSSBamTableInt32Buff> filteredList = new ArrayList<MSSBamTableInt32Buff>(); for (int idx = 0; idx < buffList.length; idx++) { buff = buffList[idx]; if ((buff != null) && (buff instanceof MSSBamTableInt32Buff)) { filteredList.add((MSSBamTableInt32Buff) buff); } } return (filteredList.toArray(new MSSBamTableInt32Buff[0])); } } public MSSBamTableInt32Buff[] 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<MSSBamTableInt32Buff> filteredList = new ArrayList<MSSBamTableInt32Buff>(); for (int idx = 0; idx < buffList.length; idx++) { buff = buffList[idx]; if ((buff != null) && (buff instanceof MSSBamTableInt32Buff)) { filteredList.add((MSSBamTableInt32Buff) buff); } } return (filteredList.toArray(new MSSBamTableInt32Buff[0])); } } public MSSBamTableInt32Buff[] 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<MSSBamTableInt32Buff> filteredList = new ArrayList<MSSBamTableInt32Buff>(); for (int idx = 0; idx < buffList.length; idx++) { buff = buffList[idx]; if ((buff != null) && (buff instanceof MSSBamTableInt32Buff)) { filteredList.add((MSSBamTableInt32Buff) buff); } } return (filteredList.toArray(new MSSBamTableInt32Buff[0])); } } public MSSBamTableInt32Buff[] 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<MSSBamTableInt32Buff> filteredList = new ArrayList<MSSBamTableInt32Buff>(); for (int idx = 0; idx < buffList.length; idx++) { buff = buffList[idx]; if ((buff != null) && (buff instanceof MSSBamTableInt32Buff)) { filteredList.add((MSSBamTableInt32Buff) buff); } } return (filteredList.toArray(new MSSBamTableInt32Buff[0])); } } public MSSBamTableInt32Buff[] 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<MSSBamTableInt32Buff> filteredList = new ArrayList<MSSBamTableInt32Buff>(); for (int idx = 0; idx < buffList.length; idx++) { buff = buffList[idx]; if ((buff != null) && (buff instanceof MSSBamTableInt32Buff)) { filteredList.add((MSSBamTableInt32Buff) buff); } } return (filteredList.toArray(new MSSBamTableInt32Buff[0])); } } public MSSBamTableInt32Buff[] 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<MSSBamTableInt32Buff> filteredList = new ArrayList<MSSBamTableInt32Buff>(); for (int idx = 0; idx < buffList.length; idx++) { buff = buffList[idx]; if ((buff != null) && (buff instanceof MSSBamTableInt32Buff)) { filteredList.add((MSSBamTableInt32Buff) buff); } } return (filteredList.toArray(new MSSBamTableInt32Buff[0])); } } public MSSBamTableInt32Buff[] 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<MSSBamTableInt32Buff> filteredList = new ArrayList<MSSBamTableInt32Buff>(); for (int idx = 0; idx < buffList.length; idx++) { buff = buffList[idx]; if ((buff != null) && (buff instanceof MSSBamTableInt32Buff)) { filteredList.add((MSSBamTableInt32Buff) buff); } } return (filteredList.toArray(new MSSBamTableInt32Buff[0])); } } public MSSBamTableInt32Buff[] 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<MSSBamTableInt32Buff> filteredList = new ArrayList<MSSBamTableInt32Buff>(); for (int idx = 0; idx < buffList.length; idx++) { buff = buffList[idx]; if ((buff != null) && (buff instanceof MSSBamTableInt32Buff)) { filteredList.add((MSSBamTableInt32Buff) buff); } } return (filteredList.toArray(new MSSBamTableInt32Buff[0])); } } public MSSBamTableInt32Buff[] readDerivedByContainerIdx(MSSBamAuthorization Authorization, long ContainerId) { final String S_ProcName = "MSSBamRamTableInt32.readDerivedByContainerIdx() "; MSSBamTableInt32ByContainerIdxKey key = schema.getFactoryTableInt32().newContainerIdxKey(); key.setRequiredContainerId(ContainerId); MSSBamTableInt32Buff[] recArray; if (dictByContainerIdx.containsKey(key)) { SortedMap<MSSBamAnyObjPKey, MSSBamTableInt32Buff> subdictContainerIdx = dictByContainerIdx.get(key); recArray = new MSSBamTableInt32Buff[subdictContainerIdx.size()]; Iterator<MSSBamTableInt32Buff> iter = subdictContainerIdx.values().iterator(); int idx = 0; while (iter.hasNext()) { recArray[idx++] = iter.next(); } } else { recArray = new MSSBamTableInt32Buff[0]; } return (recArray); } public MSSBamTableInt32Buff readDerivedByIdIdx(MSSBamAuthorization Authorization, long Id) { final String S_ProcName = "MSSBamRamAnyObj.readDerivedByIdIdx() "; MSSBamAnyObjPKey key = schema.getFactoryAnyObj().newPKey(); key.setRequiredId(Id); MSSBamTableInt32Buff buff; if (dictByPKey.containsKey(key)) { buff = dictByPKey.get(key); } else { buff = null; } return (buff); } public MSSBamTableInt32Buff readBuff(MSSBamAuthorization Authorization, MSSBamAnyObjPKey PKey) { final String S_ProcName = "MSSBamRamTableInt32.readBuff() "; MSSBamTableInt32Buff buff = readDerived(Authorization, PKey); if ((buff != null) && (!buff.getClassCode().equals("TI32"))) { buff = null; } return (buff); } public MSSBamTableInt32Buff[] readAllBuff(MSSBamAuthorization Authorization) { final String S_ProcName = "MSSBamRamTableInt32.readAllBuff() "; MSSBamTableInt32Buff buff; ArrayList<MSSBamTableInt32Buff> filteredList = new ArrayList<MSSBamTableInt32Buff>(); MSSBamTableInt32Buff[] buffList = readAllDerived(Authorization); for (int idx = 0; idx < buffList.length; idx++) { buff = buffList[idx]; if ((buff != null) && buff.getClassCode().equals("TI32")) { filteredList.add(buff); } } return (filteredList.toArray(new MSSBamTableInt32Buff[0])); } public MSSBamTableInt32Buff readBuffByIdIdx(MSSBamAuthorization Authorization, long Id) { final String S_ProcName = "MSSBamRamAnyObj.readBuffByIdIdx() "; MSSBamAnyObjBuff buff = readDerivedByIdIdx(Authorization, Id); if ((buff != null) && buff.getClassCode().equals("ANYO")) { return ((MSSBamTableInt32Buff) buff); } else { return (null); } } public MSSBamTableInt32Buff[] readBuffByTenantIdx(MSSBamAuthorization Authorization, long TenantId) { final String S_ProcName = "MSSBamRamAnyObj.readBuffByTenantIdx() "; MSSBamAnyObjBuff buff; ArrayList<MSSBamTableInt32Buff> filteredList = new ArrayList<MSSBamTableInt32Buff>(); 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((MSSBamTableInt32Buff) buff); } } return (filteredList.toArray(new MSSBamTableInt32Buff[0])); } public MSSBamTableInt32Buff[] readBuffByScopeIdx(MSSBamAuthorization Authorization, Long ScopeId) { final String S_ProcName = "MSSBamRamAnyObj.readBuffByScopeIdx() "; MSSBamAnyObjBuff buff; ArrayList<MSSBamTableInt32Buff> filteredList = new ArrayList<MSSBamTableInt32Buff>(); 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((MSSBamTableInt32Buff) buff); } } return (filteredList.toArray(new MSSBamTableInt32Buff[0])); } public MSSBamTableInt32Buff[] readBuffByAuthorIdx(MSSBamAuthorization Authorization, Long AuthorId) { final String S_ProcName = "MSSBamRamAnyObj.readBuffByAuthorIdx() "; MSSBamAnyObjBuff buff; ArrayList<MSSBamTableInt32Buff> filteredList = new ArrayList<MSSBamTableInt32Buff>(); 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((MSSBamTableInt32Buff) buff); } } return (filteredList.toArray(new MSSBamTableInt32Buff[0])); } public MSSBamTableInt32Buff 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 ((MSSBamTableInt32Buff) buff); } else { return (null); } } public MSSBamTableInt32Buff[] readBuffByVContIdx(MSSBamAuthorization Authorization, long ValueContainerId) { final String S_ProcName = "MSSBamRamValue.readBuffByVContIdx() "; MSSBamValueBuff buff; ArrayList<MSSBamTableInt32Buff> filteredList = new ArrayList<MSSBamTableInt32Buff>(); 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((MSSBamTableInt32Buff) buff); } } return (filteredList.toArray(new MSSBamTableInt32Buff[0])); } public MSSBamTableInt32Buff[] readBuffByDataScopeIdx(MSSBamAuthorization Authorization, Short DataScopeId) { final String S_ProcName = "MSSBamRamValue.readBuffByDataScopeIdx() "; MSSBamValueBuff buff; ArrayList<MSSBamTableInt32Buff> filteredList = new ArrayList<MSSBamTableInt32Buff>(); 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((MSSBamTableInt32Buff) buff); } } return (filteredList.toArray(new MSSBamTableInt32Buff[0])); } public MSSBamTableInt32Buff[] readBuffByVAccSecIdx(MSSBamAuthorization Authorization, Short ViewAccessSecurityId) { final String S_ProcName = "MSSBamRamValue.readBuffByVAccSecIdx() "; MSSBamValueBuff buff; ArrayList<MSSBamTableInt32Buff> filteredList = new ArrayList<MSSBamTableInt32Buff>(); 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((MSSBamTableInt32Buff) buff); } } return (filteredList.toArray(new MSSBamTableInt32Buff[0])); } public MSSBamTableInt32Buff[] readBuffByVAccFreqIdx(MSSBamAuthorization Authorization, Short ViewAccessFrequencyId) { final String S_ProcName = "MSSBamRamValue.readBuffByVAccFreqIdx() "; MSSBamValueBuff buff; ArrayList<MSSBamTableInt32Buff> filteredList = new ArrayList<MSSBamTableInt32Buff>(); 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((MSSBamTableInt32Buff) buff); } } return (filteredList.toArray(new MSSBamTableInt32Buff[0])); } public MSSBamTableInt32Buff[] readBuffByEAccSecIdx(MSSBamAuthorization Authorization, Short EditAccessSecurityId) { final String S_ProcName = "MSSBamRamValue.readBuffByEAccSecIdx() "; MSSBamValueBuff buff; ArrayList<MSSBamTableInt32Buff> filteredList = new ArrayList<MSSBamTableInt32Buff>(); 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((MSSBamTableInt32Buff) buff); } } return (filteredList.toArray(new MSSBamTableInt32Buff[0])); } public MSSBamTableInt32Buff[] readBuffByEAccFreqIdx(MSSBamAuthorization Authorization, Short EditAccessFrequencyId) { final String S_ProcName = "MSSBamRamValue.readBuffByEAccFreqIdx() "; MSSBamValueBuff buff; ArrayList<MSSBamTableInt32Buff> filteredList = new ArrayList<MSSBamTableInt32Buff>(); 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((MSSBamTableInt32Buff) buff); } } return (filteredList.toArray(new MSSBamTableInt32Buff[0])); } public MSSBamTableInt32Buff[] readBuffByPrevIdx(MSSBamAuthorization Authorization, Long PrevId) { final String S_ProcName = "MSSBamRamValue.readBuffByPrevIdx() "; MSSBamValueBuff buff; ArrayList<MSSBamTableInt32Buff> filteredList = new ArrayList<MSSBamTableInt32Buff>(); 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((MSSBamTableInt32Buff) buff); } } return (filteredList.toArray(new MSSBamTableInt32Buff[0])); } public MSSBamTableInt32Buff[] readBuffByNextIdx(MSSBamAuthorization Authorization, Long NextId) { final String S_ProcName = "MSSBamRamValue.readBuffByNextIdx() "; MSSBamValueBuff buff; ArrayList<MSSBamTableInt32Buff> filteredList = new ArrayList<MSSBamTableInt32Buff>(); 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((MSSBamTableInt32Buff) buff); } } return (filteredList.toArray(new MSSBamTableInt32Buff[0])); } public MSSBamTableInt32Buff[] readBuffByContPrevIdx(MSSBamAuthorization Authorization, long ValueContainerId, Long PrevId) { final String S_ProcName = "MSSBamRamValue.readBuffByContPrevIdx() "; MSSBamValueBuff buff; ArrayList<MSSBamTableInt32Buff> filteredList = new ArrayList<MSSBamTableInt32Buff>(); 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((MSSBamTableInt32Buff) buff); } } return (filteredList.toArray(new MSSBamTableInt32Buff[0])); } public MSSBamTableInt32Buff[] readBuffByContNextIdx(MSSBamAuthorization Authorization, long ValueContainerId, Long NextId) { final String S_ProcName = "MSSBamRamValue.readBuffByContNextIdx() "; MSSBamValueBuff buff; ArrayList<MSSBamTableInt32Buff> filteredList = new ArrayList<MSSBamTableInt32Buff>(); 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((MSSBamTableInt32Buff) buff); } } return (filteredList.toArray(new MSSBamTableInt32Buff[0])); } public MSSBamTableInt32Buff[] readBuffByContainerIdx(MSSBamAuthorization Authorization, long ContainerId) { final String S_ProcName = "MSSBamRamTableInt32.readBuffByContainerIdx() "; MSSBamTableInt32Buff buff; ArrayList<MSSBamTableInt32Buff> filteredList = new ArrayList<MSSBamTableInt32Buff>(); MSSBamTableInt32Buff[] buffList = readDerivedByContainerIdx(Authorization, ContainerId); for (int idx = 0; idx < buffList.length; idx++) { buff = buffList[idx]; if ((buff != null) && buff.getClassCode().equals("TI32")) { filteredList.add((MSSBamTableInt32Buff) buff); } } return (filteredList.toArray(new MSSBamTableInt32Buff[0])); } public void updateTableInt32(MSSBamAuthorization Authorization, MSSBamTableInt32Buff Buff) { MSSBamAnyObjPKey pkey = schema.getFactoryAnyObj().newPKey(); pkey.setRequiredId(Buff.getRequiredId()); MSSBamTableInt32Buff existing = dictByPKey.get(pkey); if (existing == null) { throw CFLib.getDefaultExceptionFactory().newStaleCacheDetectedException(getClass(), "updateTableInt32", "Existing record not found", "TableInt32", pkey); } MSSBamTableInt32ByContainerIdxKey existingKeyContainerIdx = schema.getFactoryTableInt32() .newContainerIdxKey(); existingKeyContainerIdx.setRequiredContainerId(existing.getRequiredContainerId()); MSSBamTableInt32ByContainerIdxKey newKeyContainerIdx = schema.getFactoryTableInt32().newContainerIdxKey(); newKeyContainerIdx.setRequiredContainerId(Buff.getRequiredContainerId()); // Check unique indexes // Validate foreign keys { boolean allNull = true; if (allNull) { if (null == schema.getTableInt32Def().readDerivedByIdIdx(Authorization, Buff.getRequiredId())) { throw CFLib.getDefaultExceptionFactory().newUnresolvedRelationException(getClass(), "updateTableInt32", "Superclass", "SuperClass", "Int32Def", null); } } } { boolean allNull = true; if (allNull) { if (null == schema.getTableTable().readDerivedByIdIdx(Authorization, Buff.getRequiredContainerId())) { throw CFLib.getDefaultExceptionFactory().newUnresolvedRelationException(getClass(), "updateTableInt32", "Container", "CTable", "Table", null); } } } // Update is valid SortedMap<MSSBamAnyObjPKey, MSSBamTableInt32Buff> 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, MSSBamTableInt32Buff>(); dictByContainerIdx.put(newKeyContainerIdx, subdict); } subdict.put(pkey, Buff); } public void deleteTableInt32(MSSBamAuthorization Authorization, MSSBamTableInt32Buff Buff) { final String S_ProcName = "MSSBamRamTableInt32Table.deleteTableInt32() "; MSSBamAnyObjPKey pkey = schema.getFactoryAnyObj().newPKey(); pkey.setRequiredId(schema.nextAnyObjIdGen()); MSSBamTableInt32Buff existing = dictByPKey.get(pkey); if (existing == null) { throw CFLib.getDefaultExceptionFactory().newStaleCacheDetectedException(getClass(), "deleteTableInt32", "Existing record not found", "TableInt32", pkey); } if (existing.getRequiredRevision() != Buff.getRequiredRevision()) { throw CFLib.getDefaultExceptionFactory().newCollisionDetectedException(getClass(), "deleteTableInt32", pkey); } MSSBamTableInt32ByContainerIdxKey keyContainerIdx = schema.getFactoryTableInt32().newContainerIdxKey(); keyContainerIdx.setRequiredContainerId(existing.getRequiredContainerId()); // Validate reverse foreign keys // Delete is valid SortedMap<MSSBamAnyObjPKey, MSSBamTableInt32Buff> subdict; dictByPKey.remove(pkey); subdict = dictByContainerIdx.get(keyContainerIdx); subdict.remove(pkey); } public MSSBamCursor openTableInt32CursorAll(MSSBamAuthorization Authorization) { MSSBamCursor cursor = new MSSBamRamTableInt32Cursor(Authorization, schema, dictByPKey.values()); return (cursor); } public MSSBamCursor openTableInt32CursorByContainerIdx(MSSBamAuthorization Authorization, long ContainerId) { MSSBamCursor cursor; MSSBamTableInt32ByContainerIdxKey key = schema.getFactoryTableInt32().newContainerIdxKey(); key.setRequiredContainerId(ContainerId); if (dictByContainerIdx.containsKey(key)) { SortedMap<MSSBamAnyObjPKey, MSSBamTableInt32Buff> subdictContainerIdx = dictByContainerIdx.get(key); cursor = new MSSBamRamTableInt32Cursor(Authorization, schema, subdictContainerIdx.values()); } else { cursor = new MSSBamRamTableInt32Cursor(Authorization, schema, new ArrayList<MSSBamTableInt32Buff>()); } return (cursor); } public void closeTableInt32Cursor(MSSBamCursor Cursor) { // Cursor.DataReader.Close(); } public MSSBamTableInt32Buff nextTableInt32Cursor(MSSBamCursor Cursor) { MSSBamRamTableInt32Cursor cursor = (MSSBamRamTableInt32Cursor) Cursor; MSSBamTableInt32Buff rec = cursor.getCursor().next(); cursor.setRowIdx(cursor.getRowIdx() + 1); return (rec); } public MSSBamTableInt32Buff prevTableInt32Cursor(MSSBamCursor Cursor) { int targetRowIdx = (Cursor.getRowIdx() > 1) ? Cursor.getRowIdx() - 1 : 1; MSSBamTableInt32Buff rec = null; if (Cursor.getRowIdx() >= targetRowIdx) { Cursor.reset(); } while (Cursor.getRowIdx() < targetRowIdx) { rec = nextTableInt32Cursor(Cursor); } return (rec); } public MSSBamTableInt32Buff firstTableInt32Cursor(MSSBamCursor Cursor) { int targetRowIdx = 1; MSSBamTableInt32Buff rec = null; Cursor.reset(); while (Cursor.getRowIdx() < targetRowIdx) { rec = nextTableInt32Cursor(Cursor); } return (rec); } public MSSBamTableInt32Buff lastTableInt32Cursor(MSSBamCursor Cursor) { throw CFLib.getDefaultExceptionFactory().newNotImplementedYetException(getClass(), "lastTableInt32Cursor"); } public MSSBamTableInt32Buff nthTableInt32Cursor(MSSBamCursor Cursor, int Idx) { int targetRowIdx = Idx; MSSBamTableInt32Buff rec = null; if (Cursor.getRowIdx() >= targetRowIdx) { Cursor.reset(); } while (Cursor.getRowIdx() < targetRowIdx) { rec = nextTableInt32Cursor(Cursor); } return (rec); } }