blob: 7c0db88733beb2c12e821948a5f51ac64ee3f014 [file] [log] [blame]
/*
* Copyright (c) 2016 Eike Stepper (Berlin, Germany) and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Eike Stepper - initial API and implementation
*/
package org.eclipse.emf.cdo.server.internal.net4j.protocol;
import org.eclipse.emf.cdo.common.protocol.CDODataInput;
import org.eclipse.emf.cdo.common.protocol.CDODataOutput;
import org.eclipse.emf.cdo.common.protocol.CDOProtocolConstants;
import org.eclipse.emf.cdo.server.internal.net4j.bundle.OM;
import org.eclipse.emf.cdo.spi.server.InternalTransaction;
import org.eclipse.emf.cdo.spi.server.InternalTransaction.CommitAttempt;
import org.eclipse.net4j.util.om.trace.ContextTracer;
import java.io.IOException;
/**
* @author Eike Stepper
*/
public class ResetTransactionIndication extends CDOServerReadIndication
{
private static final ContextTracer TRACER = new ContextTracer(OM.DEBUG_PROTOCOL, ResetTransactionIndication.class);
private int transactionID;
private int commitNumber;
public ResetTransactionIndication(CDOServerProtocol protocol)
{
super(protocol, CDOProtocolConstants.SIGNAL_RESET_TRANSACTION);
}
@Override
protected void indicating(CDODataInput in) throws IOException
{
transactionID = in.readXInt();
if (TRACER.isEnabled())
{
TRACER.format("Read transactionID: {0}", transactionID); //$NON-NLS-1$
}
commitNumber = in.readXInt();
if (TRACER.isEnabled())
{
TRACER.format("Read commitNumber: {0}", commitNumber); //$NON-NLS-1$
}
}
@Override
protected void responding(CDODataOutput out) throws IOException
{
InternalTransaction transaction = (InternalTransaction)getView(transactionID);
CommitAttempt lastCommitSuccess = transaction.getLastCommitAttempt();
if (lastCommitSuccess != null && lastCommitSuccess.getCommitNumber() == commitNumber)
{
out.writeBoolean(true);
out.writeXLong(lastCommitSuccess.getTimeStamp());
out.writeXLong(lastCommitSuccess.getPreviousTimeStamp());
}
else
{
out.writeBoolean(false);
}
}
}