use of com.ramussoft.common.journal.command.Command in project ramus by Vitaliy-Yakovchuk.
the class Runner method recoverySession.
public boolean recoverySession(final String sessionPath, final File sourceFile) {
Window rFrame = new Window(null);
String recovering = GlobalResourcesManager.getString("File.Recovering");
rFrame.add(new Label(MessageFormat.format(recovering, ((sourceFile == null) ? GlobalResourcesManager.getString("Session.NoName") : sourceFile.getName()))));
rFrame.pack();
rFrame.setLocationRelativeTo(null);
rFrame.setVisible(true);
final String s = sessionPath + File.separator + "source.rms";
MemoryDatabase database = new MemoryDatabase() {
@Override
protected Collection<? extends PluginProvider> getAdditionalSuits() {
ArrayList<PluginProvider> ps = new ArrayList<PluginProvider>(1);
initAdditionalPluginSuits(ps);
return ps;
}
@Override
protected File getFile() {
File file = new File(s);
if (file.exists())
return file;
return null;
}
protected FileIEngineImpl createFileIEngine(PluginFactory factory) throws ClassNotFoundException, ZipException, IOException {
return new FileIEngineImpl(0, template, factory, sessionPath);
}
};
final Engine engine = database.getEngine(null);
DirectoryJournalFactory factory = database.getJournalFactory();
Journal[] journals = factory.loadJournals(database.getJournaledEngine());
if (journals.length == 0)
return false;
boolean exist = false;
Journal.RedoCallback redoCallback = new Journal.RedoCallback() {
boolean hadStartUserTransaction;
@Override
public boolean execute(Command command) {
if (command instanceof StartUserTransactionCommand) {
hadStartUserTransaction = true;
}
return hadStartUserTransaction;
}
};
for (Journal journal : journals) {
try {
Command command = null;
while (journal.canRedo()) {
command = journal.redo(redoCallback);
}
if ((journal.getPointer() == 0l) || (command instanceof StopUndoPointCommand)) {
rFrame.setVisible(false);
continue;
} else
exist = true;
if (!(command instanceof EndUserTransactionCommand))
throw new Exception();
} catch (Exception e) {
e.printStackTrace();
while (journal.canUndo()) {
if (journal.undo() instanceof StartUserTransactionCommand)
break;
}
}
}
if (!exist) {
try {
((FileIEngineImpl) engine.getDeligate()).close();
for (Journal journal : journals) journal.close();
} catch (IOException e) {
e.printStackTrace();
}
return false;
}
((FileIEngineImpl) engine.getDeligate()).recoveryStreams();
engine.setPluginProperty(CORE, "Changed", Boolean.TRUE);
engine.setActiveBranch(-1l);
final AccessRules accessor = database.getAccessRules(null);
rFrame.setVisible(false);
Runnable runnable = new Runnable() {
@Override
public void run() {
SplashScreen screen = new SplashScreen() {
/**
*/
private static final long serialVersionUID = -2727237354089088151L;
@Override
protected String getImageName() {
return Runner.this.getSplashImageName();
}
};
screen.setLocationRelativeTo(null);
screen.setVisible(true);
final JFrame frame = openInNewWindows(engine, accessor, sourceFile, true);
SwingUtilities.invokeLater(new Runnable() {
@Override
public void run() {
String recovered = GlobalResourcesManager.getString("File.Recovered");
frame.setTitle(frame.getTitle() + " " + recovered);
}
});
screen.setVisible(false);
}
};
recoveredCount++;
Thread thread = new Thread(runnable);
thread.start();
return true;
}
use of com.ramussoft.common.journal.command.Command in project ramus by Vitaliy-Yakovchuk.
the class Journal method redo.
public Command redo(RedoCallback callback) {
Command command = null;
long index = getPointer();
try {
command = readNext();
IEngine engine = command.getEngine().deligate;
if (callback.execute(command))
command.redo(engine);
JournalEvent event = new JournalEvent(this, command, index);
afterRedo(event);
} catch (Exception e) {
try {
accessFile.seek(index);
} catch (IOException e1) {
}
throw new RuntimeException(e);
}
return command;
}
use of com.ramussoft.common.journal.command.Command in project ramus by Vitaliy-Yakovchuk.
the class Journal method rollbackUserTransaction.
@Override
public void rollbackUserTransaction() {
Command command;
while (!((command = undo()) instanceof StartUserTransactionCommand)) {
if (command instanceof EndUserTransactionCommand) {
redo();
throw new RuntimeException("Trying to rollback commited transaction");
}
}
;
transaction = false;
try {
if (accessFile.length() > accessFile.getFilePointer()) {
accessFile.setLength(accessFile.getFilePointer());
}
} catch (IOException e) {
e.printStackTrace();
}
}
use of com.ramussoft.common.journal.command.Command in project ramus by Vitaliy-Yakovchuk.
the class Journal method readCommand.
private Command readCommand() throws IOException {
int engineId = accessFile.read();
JournaledEngine engine = getEngine(engineId);
int commandType = accessFile.read();
Class<? extends Command> clazz = commandsTypeBytes.get(commandType);
try {
Constructor<? extends Command> c = clazz.getConstructor(JournaledEngine.class);
Command command = c.newInstance(engine);
command.readCommand(accessFile, 2);
if (command instanceof StopUndoPointCommand)
minCommandPos = accessFile.getFilePointer();
return command;
} catch (SecurityException e) {
e.printStackTrace();
} catch (NoSuchMethodException e) {
e.printStackTrace();
} catch (IllegalArgumentException e) {
e.printStackTrace();
} catch (InstantiationException e) {
e.printStackTrace();
} catch (IllegalAccessException e) {
e.printStackTrace();
} catch (InvocationTargetException e) {
e.printStackTrace();
}
return null;
}
use of com.ramussoft.common.journal.command.Command in project ramus by Vitaliy-Yakovchuk.
the class Journal method undo.
public Command undo() {
long index = getPointer();
Command command = null;
try {
command = readPrev();
IEngine engine = command.getEngine().deligate;
command.undo(engine);
JournalEvent event = new JournalEvent(this, command, getPointer());
afterUndo(event);
} catch (Exception e) {
try {
accessFile.seek(index);
} catch (IOException e1) {
}
throw new RuntimeException(e);
}
return command;
}
Aggregations