net.sourceforge.msscodefactory.cfasterisk.v2_0.CFAstRam.CFAstRamVersionTable.java Source code

Java tutorial

Introduction

Here is the source code for net.sourceforge.msscodefactory.cfasterisk.v2_0.CFAstRam.CFAstRamVersionTable.java

Source

// Description: Java7 in-memory RAM DbIO implementation for Version.

/*
 *   CF Asterisk 11 Configuration Model
 *
 *   Copyright (c) 2013-2014 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/>.
 *   
 *      This source code incorporates modified modules originally licensed
 *      under the Apache 2.0 license by MSS Code Factory including CFSecurity
 *      (net-sourceforge-msscodefactory-2.0-cfsecurity.xml),
 *      CFInternet (net-sourceforge-msscodefactory-2.0-cfinternet.xml), and
 *      CFCrm 2.0 (net-sourceforge-msscodefactory-2.0-cfcrm.xml), with all of the
 *      required models being available as part of the MSS Code Factory 1.11
 *      distribution source and install zips.
 *   
 *      You can download installations of MSS Code Factory 1.11 from
 *      http://msscodefactory.sourceforge.net/
 *   
 * ***********************************************************************
 *
 *   Code manufactured by MSS Code Factory
 */

package net.sourceforge.msscodefactory.cfasterisk.v2_0.CFAstRam;

import java.sql.*;
import java.util.*;
import net.sourceforge.msscodefactory.cflib.v1_11.CFLib.*;
import org.apache.commons.codec.binary.Base64;
import net.sourceforge.msscodefactory.cfasterisk.v2_0.CFAst.*;
import net.sourceforge.msscodefactory.cfasterisk.v2_0.CFAstRam.*;

/*
 *   CFAstRamVersionTable in-memory RAM DbIO implementation
 *   for Version.
 */
public class CFAstRamVersionTable implements ICFAstVersionTable {
    private CFAstRamSchema schema;
    private Map<CFAstDomainBasePKey, CFAstVersionBuff> dictByPKey = new HashMap<CFAstDomainBasePKey, CFAstVersionBuff>();

    public CFAstRamVersionTable(CFAstRamSchema argSchema) {
        schema = argSchema;
    }

    public void createVersion(CFAstAuthorization Authorization, CFAstVersionBuff Buff) {
        schema.getTableProjectBase().createProjectBase(Authorization, Buff);
        CFAstDomainBasePKey pkey = schema.getFactoryDomainBase().newPKey();
        pkey.setClassCode(Buff.getClassCode());
        pkey.setRequiredTenantId(Buff.getRequiredTenantId());
        pkey.setRequiredId(Buff.getRequiredId());
        // Validate unique indexes

        if (dictByPKey.containsKey(pkey)) {
            throw CFLib.getDefaultExceptionFactory().newPrimaryKeyNotNewException(getClass(), "createVersion",
                    pkey);
        }

        // Validate foreign keys

        {
            boolean allNull = true;
            allNull = false;
            allNull = false;
            if (!allNull) {
                if (null == schema.getTableProjectBase().readDerivedByIdIdx(Authorization,
                        Buff.getRequiredTenantId(), Buff.getRequiredId())) {
                    throw CFLib.getDefaultExceptionFactory().newUnresolvedRelationException(getClass(),
                            "createVersion", "Superclass", "SuperClass", "ProjectBase", null);
                }
            }
        }

        // Proceed with adding the new record

        dictByPKey.put(pkey, Buff);

    }

    public CFAstVersionBuff readDerived(CFAstAuthorization Authorization, CFAstDomainBasePKey PKey) {
        final String S_ProcName = "CFAstRamVersion.readDerived() ";
        CFAstDomainBasePKey key = schema.getFactoryDomainBase().newPKey();
        key.setRequiredTenantId(PKey.getRequiredTenantId());
        key.setRequiredId(PKey.getRequiredId());
        CFAstVersionBuff buff;
        if (dictByPKey.containsKey(key)) {
            buff = dictByPKey.get(key);
        } else {
            buff = null;
        }
        return (buff);
    }

    public CFAstVersionBuff lockDerived(CFAstAuthorization Authorization, CFAstDomainBasePKey PKey) {
        final String S_ProcName = "CFAstRamVersion.readDerived() ";
        CFAstDomainBasePKey key = schema.getFactoryDomainBase().newPKey();
        key.setRequiredTenantId(PKey.getRequiredTenantId());
        key.setRequiredId(PKey.getRequiredId());
        CFAstVersionBuff buff;
        if (dictByPKey.containsKey(key)) {
            buff = dictByPKey.get(key);
        } else {
            buff = null;
        }
        return (buff);
    }

    public CFAstVersionBuff[] readAllDerived(CFAstAuthorization Authorization) {
        final String S_ProcName = "CFAstRamVersion.readAllDerived() ";
        CFAstVersionBuff[] retList = new CFAstVersionBuff[dictByPKey.values().size()];
        Iterator<CFAstVersionBuff> iter = dictByPKey.values().iterator();
        int idx = 0;
        while (iter.hasNext()) {
            retList[idx++] = iter.next();
        }
        return (retList);
    }

    public CFAstVersionBuff[] readDerivedByTenantIdx(CFAstAuthorization Authorization, long TenantId) {
        final String S_ProcName = "CFAstRamDomainBase.readDerivedByTenantIdx() ";
        CFAstDomainBaseBuff buffList[] = schema.getTableDomainBase().readDerivedByTenantIdx(Authorization,
                TenantId);
        if (buffList == null) {
            return (null);
        } else {
            CFAstDomainBaseBuff buff;
            ArrayList<CFAstVersionBuff> filteredList = new ArrayList<CFAstVersionBuff>();
            for (int idx = 0; idx < buffList.length; idx++) {
                buff = buffList[idx];
                if ((buff != null) && (buff instanceof CFAstVersionBuff)) {
                    filteredList.add((CFAstVersionBuff) buff);
                }
            }
            return (filteredList.toArray(new CFAstVersionBuff[0]));
        }
    }

    public CFAstVersionBuff readDerivedByIdIdx(CFAstAuthorization Authorization, long TenantId, long Id) {
        final String S_ProcName = "CFAstRamDomainBase.readDerivedByIdIdx() ";
        CFAstDomainBasePKey key = schema.getFactoryDomainBase().newPKey();
        key.setRequiredTenantId(TenantId);
        key.setRequiredId(Id);

        CFAstVersionBuff buff;
        if (dictByPKey.containsKey(key)) {
            buff = dictByPKey.get(key);
        } else {
            buff = null;
        }
        return (buff);
    }

    public CFAstVersionBuff readBuff(CFAstAuthorization Authorization, CFAstDomainBasePKey PKey) {
        final String S_ProcName = "CFAstRamVersion.readBuff() ";
        CFAstVersionBuff buff = readDerived(Authorization, PKey);
        if ((buff != null) && (!buff.getClassCode().equals("VERN"))) {
            buff = null;
        }
        return (buff);
    }

    public CFAstVersionBuff lockBuff(CFAstAuthorization Authorization, CFAstDomainBasePKey PKey) {
        final String S_ProcName = "CFAstRamVersion.readBuff() ";
        CFAstVersionBuff buff = readDerived(Authorization, PKey);
        if ((buff != null) && (!buff.getClassCode().equals("VERN"))) {
            buff = null;
        }
        return (buff);
    }

    public CFAstVersionBuff[] readAllBuff(CFAstAuthorization Authorization) {
        final String S_ProcName = "CFAstRamVersion.readAllBuff() ";
        CFAstVersionBuff buff;
        ArrayList<CFAstVersionBuff> filteredList = new ArrayList<CFAstVersionBuff>();
        CFAstVersionBuff[] buffList = readAllDerived(Authorization);
        for (int idx = 0; idx < buffList.length; idx++) {
            buff = buffList[idx];
            if ((buff != null) && buff.getClassCode().equals("VERN")) {
                filteredList.add(buff);
            }
        }
        return (filteredList.toArray(new CFAstVersionBuff[0]));
    }

    public CFAstVersionBuff readBuffByIdIdx(CFAstAuthorization Authorization, long TenantId, long Id) {
        final String S_ProcName = "CFAstRamDomainBase.readBuffByIdIdx() ";
        CFAstDomainBaseBuff buff = readDerivedByIdIdx(Authorization, TenantId, Id);
        if ((buff != null) && buff.getClassCode().equals("BDOM")) {
            return ((CFAstVersionBuff) buff);
        } else {
            return (null);
        }
    }

    public CFAstVersionBuff[] readBuffByTenantIdx(CFAstAuthorization Authorization, long TenantId) {
        final String S_ProcName = "CFAstRamDomainBase.readBuffByTenantIdx() ";
        CFAstDomainBaseBuff buff;
        ArrayList<CFAstVersionBuff> filteredList = new ArrayList<CFAstVersionBuff>();
        CFAstDomainBaseBuff[] buffList = readDerivedByTenantIdx(Authorization, TenantId);
        for (int idx = 0; idx < buffList.length; idx++) {
            buff = buffList[idx];
            if ((buff != null) && buff.getClassCode().equals("BDOM")) {
                filteredList.add((CFAstVersionBuff) buff);
            }
        }
        return (filteredList.toArray(new CFAstVersionBuff[0]));
    }

    public void updateVersion(CFAstAuthorization Authorization, CFAstVersionBuff Buff) {
        schema.getTableProjectBase().updateProjectBase(Authorization, Buff);
        CFAstDomainBasePKey pkey = schema.getFactoryDomainBase().newPKey();
        pkey.setRequiredTenantId(Buff.getRequiredTenantId());
        pkey.setRequiredId(Buff.getRequiredId());
        CFAstVersionBuff existing = dictByPKey.get(pkey);
        if (existing == null) {
            throw CFLib.getDefaultExceptionFactory().newStaleCacheDetectedException(getClass(), "updateVersion",
                    "Existing record not found", "Version", pkey);
        }
        // Check unique indexes

        // Validate foreign keys

        {
            boolean allNull = true;

            if (allNull) {
                if (null == schema.getTableProjectBase().readDerivedByIdIdx(Authorization,
                        Buff.getRequiredTenantId(), Buff.getRequiredId())) {
                    throw CFLib.getDefaultExceptionFactory().newUnresolvedRelationException(getClass(),
                            "updateVersion", "Superclass", "SuperClass", "ProjectBase", null);
                }
            }
        }

        // Update is valid

        SortedMap<CFAstDomainBasePKey, CFAstVersionBuff> subdict;

        dictByPKey.remove(pkey);
        dictByPKey.put(pkey, Buff);

    }

    public void deleteVersion(CFAstAuthorization Authorization, CFAstVersionBuff Buff) {
        final String S_ProcName = "CFAstRamVersionTable.deleteVersion() ";
        CFAstDomainBasePKey pkey = schema.getFactoryDomainBase().newPKey();
        pkey.setRequiredTenantId(Buff.getRequiredTenantId());
        pkey.setRequiredId(Buff.getRequiredId());
        CFAstVersionBuff existing = dictByPKey.get(pkey);
        if (existing == null) {
            return;
        }
        if (existing.getRequiredRevision() != Buff.getRequiredRevision()) {
            throw CFLib.getDefaultExceptionFactory().newCollisionDetectedException(getClass(), "deleteVersion",
                    pkey);
        }

        // Validate reverse foreign keys

        if (schema.getTableMajorVersion().readDerivedByIdIdx(Authorization, existing.getRequiredTenantId(),
                existing.getRequiredId()) != null) {
            throw CFLib.getDefaultExceptionFactory().newDependentsDetectedException(getClass(), "deleteVersion",
                    "Superclass", "SuperClass", "MajorVersion", pkey);
        }

        if (schema.getTableMinorVersion().readDerivedByIdIdx(Authorization, existing.getRequiredTenantId(),
                existing.getRequiredId()) != null) {
            throw CFLib.getDefaultExceptionFactory().newDependentsDetectedException(getClass(), "deleteVersion",
                    "Superclass", "SuperClass", "MinorVersion", pkey);
        }

        // Delete is valid

        SortedMap<CFAstDomainBasePKey, CFAstVersionBuff> subdict;

        dictByPKey.remove(pkey);

        schema.getTableProjectBase().deleteProjectBase(Authorization, Buff);
    }

    public void deleteVersionByIdIdx(CFAstAuthorization Authorization, long argTenantId, long argId) {
        CFAstDomainBasePKey key = schema.getFactoryDomainBase().newPKey();
        key.setRequiredTenantId(argTenantId);
        key.setRequiredId(argId);
        deleteVersionByIdIdx(Authorization, key);
    }

    public void deleteVersionByIdIdx(CFAstAuthorization Authorization, CFAstDomainBasePKey argKey) {
        final String S_ProcName = "deleteVersionByIdIdx";
        CFAstVersionBuff cur;
        LinkedList<CFAstVersionBuff> matchSet = new LinkedList<CFAstVersionBuff>();
        Iterator<CFAstVersionBuff> values = dictByPKey.values().iterator();
        while (values.hasNext()) {
            cur = values.next();
            if (argKey.equals(cur)) {
                matchSet.add(cur);
            }
        }
        Iterator<CFAstVersionBuff> iterMatch = matchSet.iterator();
        while (iterMatch.hasNext()) {
            cur = iterMatch.next();
            String subClassCode = cur.getClassCode();
            if ("VERN".equals(subClassCode)) {
                schema.getTableVersion().deleteVersion(Authorization, cur);
            } else if ("MJVR".equals(subClassCode)) {
                schema.getTableMajorVersion().deleteMajorVersion(Authorization, (CFAstMajorVersionBuff) cur);
            } else if ("MNVR".equals(subClassCode)) {
                schema.getTableMinorVersion().deleteMinorVersion(Authorization, (CFAstMinorVersionBuff) cur);
            } else {
                throw CFLib.getDefaultExceptionFactory().newUnsupportedClassException(getClass(), S_ProcName,
                        "subClassCode", cur,
                        "Instance of or subclass of Version must not be \"" + subClassCode + "\"");
            }
        }
    }

    public void deleteVersionByTenantIdx(CFAstAuthorization Authorization, long argTenantId) {
        CFAstDomainBaseByTenantIdxKey key = schema.getFactoryDomainBase().newTenantIdxKey();
        key.setRequiredTenantId(argTenantId);
        deleteVersionByTenantIdx(Authorization, key);
    }

    public void deleteVersionByTenantIdx(CFAstAuthorization Authorization, CFAstDomainBaseByTenantIdxKey argKey) {
        final String S_ProcName = "deleteVersionByTenantIdx";
        CFAstVersionBuff cur;
        LinkedList<CFAstVersionBuff> matchSet = new LinkedList<CFAstVersionBuff>();
        Iterator<CFAstVersionBuff> values = dictByPKey.values().iterator();
        while (values.hasNext()) {
            cur = values.next();
            if (argKey.equals(cur)) {
                matchSet.add(cur);
            }
        }
        Iterator<CFAstVersionBuff> iterMatch = matchSet.iterator();
        while (iterMatch.hasNext()) {
            cur = iterMatch.next();
            String subClassCode = cur.getClassCode();
            if ("VERN".equals(subClassCode)) {
                schema.getTableVersion().deleteVersion(Authorization, cur);
            } else if ("MJVR".equals(subClassCode)) {
                schema.getTableMajorVersion().deleteMajorVersion(Authorization, (CFAstMajorVersionBuff) cur);
            } else if ("MNVR".equals(subClassCode)) {
                schema.getTableMinorVersion().deleteMinorVersion(Authorization, (CFAstMinorVersionBuff) cur);
            } else {
                throw CFLib.getDefaultExceptionFactory().newUnsupportedClassException(getClass(), S_ProcName,
                        "subClassCode", cur,
                        "Instance of or subclass of Version must not be \"" + subClassCode + "\"");
            }
        }
    }

    public CFAstCursor openVersionCursorAll(CFAstAuthorization Authorization) {
        CFAstCursor cursor = new CFAstRamVersionCursor(Authorization, schema, dictByPKey.values());
        return (cursor);
    }

    public void closeVersionCursor(CFAstCursor Cursor) {
        // Cursor.DataReader.Close();
    }

    public CFAstVersionBuff nextVersionCursor(CFAstCursor Cursor) {
        CFAstRamVersionCursor cursor = (CFAstRamVersionCursor) Cursor;
        CFAstVersionBuff rec = cursor.getCursor().next();
        cursor.setRowIdx(cursor.getRowIdx() + 1);
        return (rec);
    }

    public CFAstVersionBuff prevVersionCursor(CFAstCursor Cursor) {
        int targetRowIdx = (Cursor.getRowIdx() > 1) ? Cursor.getRowIdx() - 1 : 1;
        CFAstVersionBuff rec = null;
        if (Cursor.getRowIdx() >= targetRowIdx) {
            Cursor.reset();
        }
        while (Cursor.getRowIdx() < targetRowIdx) {
            rec = nextVersionCursor(Cursor);
        }
        return (rec);
    }

    public CFAstVersionBuff firstVersionCursor(CFAstCursor Cursor) {
        int targetRowIdx = 1;
        CFAstVersionBuff rec = null;
        Cursor.reset();
        while (Cursor.getRowIdx() < targetRowIdx) {
            rec = nextVersionCursor(Cursor);
        }
        return (rec);
    }

    public CFAstVersionBuff lastVersionCursor(CFAstCursor Cursor) {
        throw CFLib.getDefaultExceptionFactory().newNotImplementedYetException(getClass(), "lastVersionCursor");
    }

    public CFAstVersionBuff nthVersionCursor(CFAstCursor Cursor, int Idx) {
        int targetRowIdx = Idx;
        CFAstVersionBuff rec = null;
        if (Cursor.getRowIdx() >= targetRowIdx) {
            Cursor.reset();
        }
        while (Cursor.getRowIdx() < targetRowIdx) {
            rec = nextVersionCursor(Cursor);
        }
        return (rec);
    }

    public void releasePreparedStatements() {
    }
}