net.oneandone.stool.Remove Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of main Show documentation
Show all versions of main Show documentation
Stool's main component. Java Library, cli, setup code.
/**
* Copyright 1&1 Internet AG, https://github.com/1and1/
*
* Licensed 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 net.oneandone.stool;
import net.oneandone.stool.locking.Mode;
import net.oneandone.stool.stage.Stage;
import net.oneandone.stool.util.Session;
import net.oneandone.sushi.cli.Option;
public class Remove extends StageCommand {
@Option("batch")
private boolean batch;
@Option("force")
private boolean force;
@Option("backstage")
private boolean backstageOnly;
public Remove(Session session) {
this(session, false, false);
}
public Remove(Session session, boolean batch, boolean force) {
super(session, Mode.EXCLUSIVE, Mode.NONE, Mode.NONE);
this.batch = batch;
this.force = force;
}
@Override
public void doInvoke(Stage stage) throws Exception {
stage.checkNotUp();
stage.checkOwnership();
if (!force) {
checkCommitted(stage);
}
if (!batch) {
console.info.println("Ready to delete " + stage.getDirectory().getAbsolute() + "?");
console.pressReturn();
}
stage.backstage.deleteTree();
if (backstageOnly) {
console.info.println("Removed backstage for " + stage.getDirectory().getAbsolute());
} else {
stage.getDirectory().deleteTree();
console.info.println("Removed " + stage.getDirectory().getAbsolute());
}
if (session.isSelected(stage)) {
session.resetEnvironment();
}
session.bedroom.remove(session.gson, stage.getName());
session.cd(stage.getDirectory().getParent());
}
}