use of edu.cmu.cs.hcii.cogtool.util.RcvrIOSaveException in project cogtool by cogtool.
the class DefaultController method saveAs.
/**
* Perform a Save As... operation, prompting for a save location.
*
* @return true if file was saved, false otherwise
* @throws RcvrIOException if the save operation fails
*/
protected boolean saveAs() {
Interaction stdInteraction = getUI().getStandardInteraction();
try {
boolean nameIsInUse;
File saveLoc;
do {
// Request a new file name, using the project's current name
// as the default.
// TODO: It is "evil" that the test for existing files is
// hidden within this call; separate at some point (mlh)
saveLoc = stdInteraction.selectFileDest(project.getName());
// If the save dialog was canceled, do nothing.
if (saveLoc == null) {
return false;
}
// If saveLoc is already open, refuse to save there.
nameIsInUse = persist.isRegistered(saveLoc, project);
if (nameIsInUse) {
switch(stdInteraction.protestBeingEdited(saveLoc)) {
case Interaction.SAVE:
{
nameIsInUse = false;
break;
}
case Interaction.NO_SAVE:
{
// Simply loop to ask for a new name
break;
}
case Interaction.CANCEL:
{
return false;
}
}
}
} while (nameIsInUse);
CogToolPref.setRecent(saveLoc.getCanonicalPath());
// Set the title BEFORE saving the project.
String name = saveLoc.getName();
// Remove the .cgt, if it is there.
int periodIndex = name.lastIndexOf('.');
if (periodIndex > 0) {
name = name.substring(0, periodIndex);
}
project.setName(name);
// Save to the selected location.
project.setBuildVersion(CogTool.getVersion());
persist.save(project, saveLoc);
// Tell undo manager(s) that a save has just occurred
try {
UndoManager.markSavePoint(project);
} catch (IllegalStateException ex) {
throw new RcvrCannotUndoRedoException("Marking save point", ex);
}
return true;
} catch (IOException e) {
throw new RcvrIOSaveException("Error persisting project: " + e.getMessage(), e);
}
}
use of edu.cmu.cs.hcii.cogtool.util.RcvrIOSaveException in project cogtool by cogtool.
the class DefaultController method saveAsFilename.
public void saveAsFilename(String pathname) {
File f = new File(pathname);
project.setName(f.getName());
project.setBuildVersion(CogTool.getVersion());
try {
persist.save(project, f);
} catch (IOException e) {
throw new RcvrIOSaveException("Error persisting project: " + e.getMessage(), e);
}
save();
}
Aggregations