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