alvinalexander.com | career | drupal | java | mac | mysql | perl | scala | uml | unix  

What this is

This file is included in the DevDaily.com "Java Source Code Warehouse" project. The intent of this project is to help you "Learn Java by Example" TM.

Other links

The source code

/*
 *                 Sun Public License Notice
 * 
 * The contents of this file are subject to the Sun Public License
 * Version 1.0 (the "License"). You may not use this file except in
 * compliance with the License. A copy of the License is available at
 * http://www.sun.com/
 * 
 * The Original Code is NetBeans. The Initial Developer of the Original
 * Code is Sun Microsystems, Inc. Portions Copyright 1997-2001 Sun
 * Microsystems, Inc. All Rights Reserved.
 */

package org.netbeans.mdr.storagemodel;

import java.util.ArrayList;
import java.util.HashMap;
import java.util.Iterator;
import org.netbeans.mdr.persistence.MOFID;
import org.netbeans.mdr.persistence.StorageException;
import org.netbeans.mdr.storagemodel.transientimpl.TransientStorage;
import org.netbeans.mdr.util.DebugException;
import org.netbeans.mdr.util.Logger;

/**
 *
 * @author Tomas Zezula
 */
public class TransientStorableObject extends StorableObject implements Transient {
    
    private ArrayList referentQueue;
    private HashMap attrTxLog;
    
    /** Creates a new instance of TransientStorableObject */
    public TransientStorableObject() {
        super ();
        this.attrTxLog = new HashMap ();
    }
    
    public TransientStorableObject (MdrStorage mdrStorage, MOFID immediatePackage, MOFID meta, MOFID classProxy) throws StorageException {
        this (mdrStorage, immediatePackage, meta, classProxy, null);
    }
    
    public TransientStorableObject (MdrStorage mdrStorage, MOFID immediatePackage, MOFID meta, MOFID classProxy, Object[] params) throws StorageException {
        super (mdrStorage, immediatePackage, meta, classProxy, params, TransientStorage.STORAGE_ID);
        this.attrTxLog = new HashMap ();
    }
    
    
    public void delete () throws StorageException {
        this.deleteRecursive ();
    }
    
    public void write(java.io.OutputStream outputStream) {
        throw new DebugException ("Trying to write tranient object");
    }
    
    public void read (java.io.InputStream inputStream) {
        throw new DebugException ("Trying to read transient object");
    }
    
    public void addReferent (TransientStorableObject referent) {
        if (this.referentQueue == null) 
            this.referentQueue = new ArrayList ();
        this.referentQueue.add (referent);
    }
    
    public void removeReferent (TransientStorableObject referent) {
        if (this.referentQueue == null)
            return;
        this.referentQueue.remove (referent);
    }
   
    /** Transactional support
     *  the setAttribute is overloaded to allow more efficient transaction
     *  handling
     */
    public void setAttribute (int index, Object value) throws StorageException {
        check ();
        Object oldValue = values[index];
        super.setAttribute (index, value);
        Integer key = new Integer (index);
        if (!attrTxLog.containsKey (key)) {
            this.attrTxLog.put (key, oldValue);
        }
    }
    
     /** Transaction support
      *  commits transaction, clears the compensation transactions log
      */
    public void commit () {
        this.attrTxLog.clear ();
    }
    
    /** Transaction support
      *  rollbacks transaction, performs the compensation transactions log
      */
    public void rollBack () {
        for (Iterator it = this.attrTxLog.keySet ().iterator (); it.hasNext ();) {
            Integer key = (Integer) it.next ();
            Object value = this.attrTxLog.get (key);
            it.remove ();
            try {
                super.setAttribute (key.intValue (), value);
            } catch (StorageException se) {
                Logger.getDefault().notify(Logger.INFORMATIONAL, se);
            }
        }
    }
   
    protected void deleteRecursive () throws StorageException {
        this.getMdrStorage().removeInstance (this);
    }
    
    /** Additional indexing is not supported on transient metadata
     *  the methods are implemented as noops
     */
    
    protected void modifyIndex (int attrIdx, Object oldValue, Object newValue) throws StorageException {
    }
    
    void addToIndex (String proxyId, String endId) throws StorageException {
    }
    
    void removeFromIndex (String proxyId, String endId) throws StorageException {
    }
    
}
... this post is sponsored by my books ...

#1 New Release!

FP Best Seller

 

new blog posts

 

Copyright 1998-2021 Alvin Alexander, alvinalexander.com
All Rights Reserved.

A percentage of advertising revenue from
pages under the /java/jwarehouse URI on this website is
paid back to open source projects.