blob: f08fa4631567f6b16f1a7d07025400d5b40e0f43 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*
*/
package org.apache.directory.server.core.shared.txn.logedit;
import java.io.IOException;
import java.io.ObjectInput;
import java.io.ObjectOutput;
import org.apache.directory.server.core.api.txn.logedit.AbstractLogEdit;
/**
* A class used to store a transaction changeState (either BEGIN, COMMIT or ABORT).
*
* @author <a href="mailto:dev@directory.apache.org">Apache Directory Project</a>
*/
public class TxnStateChange extends AbstractLogEdit
{
/** SerialVrsionUID as requested for serializable classes */
private static final long serialVersionUID = 1;
/**
* Change State, one of :
* <ul>
* <li>TXN_BEGIN : for a starting transaction</li>
* <li>TXN_COMMIT : for a validated transaction</li>
* <li>TXN_ABORT : for an aborted transaction</li>
* </ul>
*/
public enum ChangeState
{
TXN_BEGIN,
TXN_COMMIT,
TXN_ABORT
}
/** State to record for the txn */
ChangeState txnState;
/**
* A default constructor used by deserialization
*/
public TxnStateChange()
{
super( Long.MIN_VALUE );
}
/**
* Creates a new TxnStateChange instance, with a transaction ID and a ChangeState.
*
* @param txnID The transaction ID
* @param txnState The ChangeState
*/
public TxnStateChange( long txnID, ChangeState txnState )
{
super( txnID );
this.txnState = txnState;
}
/**
* @return The ChangeState for this transaction
*/
public ChangeState getTxnState()
{
return txnState;
}
@Override
public void readExternal( ObjectInput in ) throws IOException, ClassNotFoundException
{
txnID = in.readLong();
txnState = ChangeState.values()[in.read()];
}
@Override
public void writeExternal( ObjectOutput out ) throws IOException
{
out.write(EditType.TXN_MARKER.ordinal());
out.writeLong( txnID );
out.write( txnState.ordinal() );
}
/**
* @see Object#toString()
*/
public String toString()
{
return "TxnStateChange[" + txnID + "/" + txnState + "]";
}
}