net.sourceforge.msscodefactory.v1_10.MSSBamRam.MSSBamRamLicenseTable.java Source code

Java tutorial

Introduction

Here is the source code for net.sourceforge.msscodefactory.v1_10.MSSBamRam.MSSBamRamLicenseTable.java

Source

// Description: Java6 in-memory RAM DbIO implementation for License.

/*
 *   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.*;

/*
 *   MSSBamRamLicenseTable in-memory RAM DbIO implementation
 *   for License.
 */
public class MSSBamRamLicenseTable implements IMSSBamLicenseTable {
    private MSSBamBLRamSchema schema;
    private Map<MSSBamAnyObjPKey, MSSBamLicenseBuff> dictByPKey = new HashMap<MSSBamAnyObjPKey, MSSBamLicenseBuff>();
    private SortedMap<MSSBamLicenseByDomainIdxKey, SortedMap<MSSBamAnyObjPKey, MSSBamLicenseBuff>> dictByDomainIdx = new TreeMap<MSSBamLicenseByDomainIdxKey, SortedMap<MSSBamAnyObjPKey, MSSBamLicenseBuff>>();

    public MSSBamRamLicenseTable(MSSBamBLRamSchema argSchema) {
        schema = argSchema;
    }

    public void createLicense(MSSBamAuthorization Authorization, MSSBamLicenseBuff Buff) {
        MSSBamAnyObjPKey pkey = schema.getFactoryAnyObj().newPKey();

        pkey.setClassCode(Buff.getClassCode());

        pkey.setRequiredId(Buff.getRequiredId());

        MSSBamLicenseByDomainIdxKey keyDomainIdx = schema.getFactoryLicense().newDomainIdxKey();
        keyDomainIdx.setRequiredDomainId(Buff.getRequiredDomainId());

        // Validate unique indexes

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

        // Validate foreign keys

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

        {
            boolean allNull = true;
            allNull = false;
            if (!allNull) {
                if (null == schema.getTableDomain().readDerivedByIdIdx(Authorization, Buff.getRequiredDomainId())) {
                    throw CFLib.getDefaultExceptionFactory().newUnresolvedRelationException(getClass(),
                            "createLicense", "Container", "Domain", "Domain", null);
                }
            }
        }

        // Proceed with adding the new record

        dictByPKey.put(pkey, Buff);

        SortedMap<MSSBamAnyObjPKey, MSSBamLicenseBuff> subdictDomainIdx;
        if (dictByDomainIdx.containsKey(keyDomainIdx)) {
            subdictDomainIdx = dictByDomainIdx.get(keyDomainIdx);
        } else {
            subdictDomainIdx = new TreeMap<MSSBamAnyObjPKey, MSSBamLicenseBuff>();
            dictByDomainIdx.put(keyDomainIdx, subdictDomainIdx);
        }
        subdictDomainIdx.put(pkey, Buff);

    }

    public MSSBamLicenseBuff readDerived(MSSBamAuthorization Authorization, MSSBamAnyObjPKey PKey) {
        final String S_ProcName = "MSSBamRamLicense.readDerived() ";
        MSSBamAnyObjPKey key = schema.getFactoryAnyObj().newPKey();
        key.setRequiredId(PKey.getRequiredId());
        MSSBamLicenseBuff buff;
        if (dictByPKey.containsKey(key)) {
            buff = dictByPKey.get(key);
        } else {
            buff = null;
        }
        return (buff);
    }

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

    public MSSBamLicenseBuff[] 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<MSSBamLicenseBuff> filteredList = new ArrayList<MSSBamLicenseBuff>();
            for (int idx = 0; idx < buffList.length; idx++) {
                buff = buffList[idx];
                if ((buff != null) && (buff instanceof MSSBamLicenseBuff)) {
                    filteredList.add((MSSBamLicenseBuff) buff);
                }
            }
            return (filteredList.toArray(new MSSBamLicenseBuff[0]));
        }
    }

    public MSSBamLicenseBuff[] 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<MSSBamLicenseBuff> filteredList = new ArrayList<MSSBamLicenseBuff>();
            for (int idx = 0; idx < buffList.length; idx++) {
                buff = buffList[idx];
                if ((buff != null) && (buff instanceof MSSBamLicenseBuff)) {
                    filteredList.add((MSSBamLicenseBuff) buff);
                }
            }
            return (filteredList.toArray(new MSSBamLicenseBuff[0]));
        }
    }

    public MSSBamLicenseBuff[] 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<MSSBamLicenseBuff> filteredList = new ArrayList<MSSBamLicenseBuff>();
            for (int idx = 0; idx < buffList.length; idx++) {
                buff = buffList[idx];
                if ((buff != null) && (buff instanceof MSSBamLicenseBuff)) {
                    filteredList.add((MSSBamLicenseBuff) buff);
                }
            }
            return (filteredList.toArray(new MSSBamLicenseBuff[0]));
        }
    }

    public MSSBamLicenseBuff 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 MSSBamLicenseBuff) {
            return ((MSSBamLicenseBuff) buff);
        } else {
            return (null);
        }
    }

    public MSSBamLicenseBuff[] readDerivedByDomainIdx(MSSBamAuthorization Authorization, long DomainId) {
        final String S_ProcName = "MSSBamRamLicense.readDerivedByDomainIdx() ";
        MSSBamLicenseByDomainIdxKey key = schema.getFactoryLicense().newDomainIdxKey();
        key.setRequiredDomainId(DomainId);

        MSSBamLicenseBuff[] recArray;
        if (dictByDomainIdx.containsKey(key)) {
            SortedMap<MSSBamAnyObjPKey, MSSBamLicenseBuff> subdictDomainIdx = dictByDomainIdx.get(key);
            recArray = new MSSBamLicenseBuff[subdictDomainIdx.size()];
            Iterator<MSSBamLicenseBuff> iter = subdictDomainIdx.values().iterator();
            int idx = 0;
            while (iter.hasNext()) {
                recArray[idx++] = iter.next();
            }
        } else {
            recArray = new MSSBamLicenseBuff[0];
        }
        return (recArray);
    }

    public MSSBamLicenseBuff readDerivedByIdIdx(MSSBamAuthorization Authorization, long Id) {
        final String S_ProcName = "MSSBamRamAnyObj.readDerivedByIdIdx() ";
        MSSBamAnyObjPKey key = schema.getFactoryAnyObj().newPKey();
        key.setRequiredId(Id);

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

    public MSSBamLicenseBuff readBuff(MSSBamAuthorization Authorization, MSSBamAnyObjPKey PKey) {
        final String S_ProcName = "MSSBamRamLicense.readBuff() ";
        MSSBamLicenseBuff buff = readDerived(Authorization, PKey);
        if ((buff != null) && (!buff.getClassCode().equals("LIC"))) {
            buff = null;
        }
        return (buff);
    }

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

    public MSSBamLicenseBuff readBuffByIdIdx(MSSBamAuthorization Authorization, long Id) {
        final String S_ProcName = "MSSBamRamAnyObj.readBuffByIdIdx() ";
        MSSBamAnyObjBuff buff = readDerivedByIdIdx(Authorization, Id);
        if ((buff != null) && buff.getClassCode().equals("ANYO")) {
            return ((MSSBamLicenseBuff) buff);
        } else {
            return (null);
        }
    }

    public MSSBamLicenseBuff[] readBuffByTenantIdx(MSSBamAuthorization Authorization, long TenantId) {
        final String S_ProcName = "MSSBamRamAnyObj.readBuffByTenantIdx() ";
        MSSBamAnyObjBuff buff;
        ArrayList<MSSBamLicenseBuff> filteredList = new ArrayList<MSSBamLicenseBuff>();
        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((MSSBamLicenseBuff) buff);
            }
        }
        return (filteredList.toArray(new MSSBamLicenseBuff[0]));
    }

    public MSSBamLicenseBuff[] readBuffByScopeIdx(MSSBamAuthorization Authorization, Long ScopeId) {
        final String S_ProcName = "MSSBamRamAnyObj.readBuffByScopeIdx() ";
        MSSBamAnyObjBuff buff;
        ArrayList<MSSBamLicenseBuff> filteredList = new ArrayList<MSSBamLicenseBuff>();
        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((MSSBamLicenseBuff) buff);
            }
        }
        return (filteredList.toArray(new MSSBamLicenseBuff[0]));
    }

    public MSSBamLicenseBuff[] readBuffByAuthorIdx(MSSBamAuthorization Authorization, Long AuthorId) {
        final String S_ProcName = "MSSBamRamAnyObj.readBuffByAuthorIdx() ";
        MSSBamAnyObjBuff buff;
        ArrayList<MSSBamLicenseBuff> filteredList = new ArrayList<MSSBamLicenseBuff>();
        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((MSSBamLicenseBuff) buff);
            }
        }
        return (filteredList.toArray(new MSSBamLicenseBuff[0]));
    }

    public MSSBamLicenseBuff 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 ((MSSBamLicenseBuff) buff);
        } else {
            return (null);
        }
    }

    public MSSBamLicenseBuff[] readBuffByDomainIdx(MSSBamAuthorization Authorization, long DomainId) {
        final String S_ProcName = "MSSBamRamLicense.readBuffByDomainIdx() ";
        MSSBamLicenseBuff buff;
        ArrayList<MSSBamLicenseBuff> filteredList = new ArrayList<MSSBamLicenseBuff>();
        MSSBamLicenseBuff[] buffList = readDerivedByDomainIdx(Authorization, DomainId);
        for (int idx = 0; idx < buffList.length; idx++) {
            buff = buffList[idx];
            if ((buff != null) && buff.getClassCode().equals("LIC")) {
                filteredList.add((MSSBamLicenseBuff) buff);
            }
        }
        return (filteredList.toArray(new MSSBamLicenseBuff[0]));
    }

    public void updateLicense(MSSBamAuthorization Authorization, MSSBamLicenseBuff Buff) {
        MSSBamAnyObjPKey pkey = schema.getFactoryAnyObj().newPKey();
        pkey.setRequiredId(Buff.getRequiredId());
        MSSBamLicenseBuff existing = dictByPKey.get(pkey);
        if (existing == null) {
            throw CFLib.getDefaultExceptionFactory().newStaleCacheDetectedException(getClass(), "updateLicense",
                    "Existing record not found", "License", pkey);
        }
        MSSBamLicenseByDomainIdxKey existingKeyDomainIdx = schema.getFactoryLicense().newDomainIdxKey();
        existingKeyDomainIdx.setRequiredDomainId(existing.getRequiredDomainId());

        MSSBamLicenseByDomainIdxKey newKeyDomainIdx = schema.getFactoryLicense().newDomainIdxKey();
        newKeyDomainIdx.setRequiredDomainId(Buff.getRequiredDomainId());

        // Check unique indexes

        // Validate foreign keys

        {
            boolean allNull = true;

            if (allNull) {
                if (null == schema.getTableAnyObj().readDerivedByIdIdx(Authorization, Buff.getRequiredId())) {
                    throw CFLib.getDefaultExceptionFactory().newUnresolvedRelationException(getClass(),
                            "updateLicense", "Superclass", "SuperClass", "AnyObj", null);
                }
            }
        }

        {
            boolean allNull = true;

            if (allNull) {
                if (null == schema.getTableDomain().readDerivedByIdIdx(Authorization, Buff.getRequiredDomainId())) {
                    throw CFLib.getDefaultExceptionFactory().newUnresolvedRelationException(getClass(),
                            "updateLicense", "Container", "Domain", "Domain", null);
                }
            }
        }

        // Update is valid

        SortedMap<MSSBamAnyObjPKey, MSSBamLicenseBuff> subdict;

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

        subdict = dictByDomainIdx.get(existingKeyDomainIdx);
        if (subdict != null) {
            subdict.remove(pkey);
        }
        if (dictByDomainIdx.containsKey(newKeyDomainIdx)) {
            subdict = dictByDomainIdx.get(newKeyDomainIdx);
        } else {
            subdict = new TreeMap<MSSBamAnyObjPKey, MSSBamLicenseBuff>();
            dictByDomainIdx.put(newKeyDomainIdx, subdict);
        }
        subdict.put(pkey, Buff);

    }

    public void deleteLicense(MSSBamAuthorization Authorization, MSSBamLicenseBuff Buff) {
        final String S_ProcName = "MSSBamRamLicenseTable.deleteLicense() ";
        MSSBamAnyObjPKey pkey = schema.getFactoryAnyObj().newPKey();

        pkey.setRequiredId(schema.nextAnyObjIdGen());
        MSSBamLicenseBuff existing = dictByPKey.get(pkey);
        if (existing == null) {
            throw CFLib.getDefaultExceptionFactory().newStaleCacheDetectedException(getClass(), "deleteLicense",
                    "Existing record not found", "License", pkey);
        }
        if (existing.getRequiredRevision() != Buff.getRequiredRevision()) {
            throw CFLib.getDefaultExceptionFactory().newCollisionDetectedException(getClass(), "deleteLicense",
                    pkey);
        }
        MSSBamLicenseByDomainIdxKey keyDomainIdx = schema.getFactoryLicense().newDomainIdxKey();
        keyDomainIdx.setRequiredDomainId(existing.getRequiredDomainId());

        // Validate reverse foreign keys

        // Delete is valid

        SortedMap<MSSBamAnyObjPKey, MSSBamLicenseBuff> subdict;

        dictByPKey.remove(pkey);

        subdict = dictByDomainIdx.get(keyDomainIdx);
        subdict.remove(pkey);

    }

    public MSSBamCursor openLicenseCursorAll(MSSBamAuthorization Authorization) {
        MSSBamCursor cursor = new MSSBamRamLicenseCursor(Authorization, schema, dictByPKey.values());
        return (cursor);
    }

    public MSSBamCursor openLicenseCursorByDomainIdx(MSSBamAuthorization Authorization, long DomainId) {
        MSSBamCursor cursor;
        MSSBamLicenseByDomainIdxKey key = schema.getFactoryLicense().newDomainIdxKey();
        key.setRequiredDomainId(DomainId);

        if (dictByDomainIdx.containsKey(key)) {
            SortedMap<MSSBamAnyObjPKey, MSSBamLicenseBuff> subdictDomainIdx = dictByDomainIdx.get(key);
            cursor = new MSSBamRamLicenseCursor(Authorization, schema, subdictDomainIdx.values());
        } else {
            cursor = new MSSBamRamLicenseCursor(Authorization, schema, new ArrayList<MSSBamLicenseBuff>());
        }
        return (cursor);
    }

    public void closeLicenseCursor(MSSBamCursor Cursor) {
        // Cursor.DataReader.Close();
    }

    public MSSBamLicenseBuff nextLicenseCursor(MSSBamCursor Cursor) {
        MSSBamRamLicenseCursor cursor = (MSSBamRamLicenseCursor) Cursor;
        MSSBamLicenseBuff rec = cursor.getCursor().next();
        cursor.setRowIdx(cursor.getRowIdx() + 1);
        return (rec);
    }

    public MSSBamLicenseBuff prevLicenseCursor(MSSBamCursor Cursor) {
        int targetRowIdx = (Cursor.getRowIdx() > 1) ? Cursor.getRowIdx() - 1 : 1;
        MSSBamLicenseBuff rec = null;
        if (Cursor.getRowIdx() >= targetRowIdx) {
            Cursor.reset();
        }
        while (Cursor.getRowIdx() < targetRowIdx) {
            rec = nextLicenseCursor(Cursor);
        }
        return (rec);
    }

    public MSSBamLicenseBuff firstLicenseCursor(MSSBamCursor Cursor) {
        int targetRowIdx = 1;
        MSSBamLicenseBuff rec = null;
        Cursor.reset();
        while (Cursor.getRowIdx() < targetRowIdx) {
            rec = nextLicenseCursor(Cursor);
        }
        return (rec);
    }

    public MSSBamLicenseBuff lastLicenseCursor(MSSBamCursor Cursor) {
        throw CFLib.getDefaultExceptionFactory().newNotImplementedYetException(getClass(), "lastLicenseCursor");
    }

    public MSSBamLicenseBuff nthLicenseCursor(MSSBamCursor Cursor, int Idx) {
        int targetRowIdx = Idx;
        MSSBamLicenseBuff rec = null;
        if (Cursor.getRowIdx() >= targetRowIdx) {
            Cursor.reset();
        }
        while (Cursor.getRowIdx() < targetRowIdx) {
            rec = nextLicenseCursor(Cursor);
        }
        return (rec);
    }
}