org.tentackle.dbms.rmi.DbModificationTrackerRemoteDelegateImpl Maven / Gradle / Ivy
Show all versions of tentackle-database Show documentation
/*
* Tentackle - https://tentackle.org
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library 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
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
package org.tentackle.dbms.rmi;
import org.tentackle.dbms.DbModificationTracker;
import org.tentackle.misc.IdSerialTuple;
import org.tentackle.session.MasterSerial;
import org.tentackle.session.MasterSerialEvent;
import org.tentackle.session.ModificationTracker;
import java.rmi.RemoteException;
import java.util.List;
/**
* Remote delegate implementation for {@link DbModificationTracker}.
* @param the modification tracker class
* @author harald
*/
public class DbModificationTrackerRemoteDelegateImpl
extends RemoteDelegateImpl
implements DbModificationTrackerRemoteDelegate {
public DbModificationTrackerRemoteDelegateImpl(RemoteDbSessionImpl session, Class clazz) {
super(session, clazz);
}
/**
* Creates the master serial object from a long serial.
*
* If {@link MasterSerialEvent}s are registered for this remote session,
* the next event will be polled from the queue, its serial set and that event returned.
*
* @param serial the long master serial
* @return the master serial object
*/
protected MasterSerial createMasterSerial(long serial) {
MasterSerialEvent masterSerialEvent = getServerSession().pollMasterSerialEvent();
if (masterSerialEvent != null) {
masterSerialEvent.setSerial(serial);
return masterSerialEvent;
}
return new DefaultMasterSerial(serial);
}
@Override
public MasterSerial selectMasterSerial() throws RemoteException {
try {
getServerSession().setModificationTrackerSession(true);
return createMasterSerial(((DbModificationTracker) ModificationTracker.getInstance()).getMasterSerial());
}
catch (RuntimeException ex) {
throw createException(ex);
}
}
@Override
public IdSerialTuple selectIdSerialForName(String tableName) throws RemoteException {
try {
return ((DbModificationTracker) ModificationTracker.getInstance()).getIdSerialForName(tableName);
}
catch (RuntimeException ex) {
throw createException(ex);
}
}
@Override
public List selectAllSerials() throws RemoteException {
try {
return ((DbModificationTracker) ModificationTracker.getInstance()).getAllSerials();
}
catch (RuntimeException ex) {
throw createException(ex);
}
}
}