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