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