net.oneandone.stool.Select 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.ArgumentException;
import net.oneandone.sushi.cli.Remaining;
import net.oneandone.sushi.fs.file.FileNode;
import java.io.IOException;
import java.util.ArrayList;
import java.util.List;
public class Select extends SessionCommand {
private String stageName;
public Select(Session session) {
super(session, Mode.NONE);
}
@Remaining
public Select stageToSelect(String stage) {
if (stageName != null) {
throw new ArgumentException("too many arguments");
}
stageName = stage;
return this;
}
@Override
public void doInvoke() throws Exception {
FileNode backstage;
Stage stage;
if (stageName == null) {
console.info.println("currently selected: "
+ (session.getSelectedStageName() == null ? "none" : session.getSelectedStageName()));
return;
}
if ("none".equals(stageName)) {
if (session.getSelectedStageName() == null) {
console.info.println("already selected: none");
} else {
console.verbose.println("selecting none");
session.resetEnvironment();
}
return;
}
try {
backstage = session.backstages.join(stageName);
} catch (IllegalArgumentException e) {
// user specified an apsolute path
throw new IOException("No such stage: " + stageName);
}
if (!backstage.isDirectory()) {
throw new IOException("No such stage: " + stageName + suggestion());
}
console.verbose.println("selecting stage " + stageName);
if (session.getSelectedStageName() == null) {
session.backupEnvironment();
}
stage = Stage.load(session, backstage);
session.select(stage);
session.cd(stage.getDirectory());
}
private String suggestion() throws IOException {
List candidates;
candidates = candidates(session.stageNames(), stageName);
switch (candidates.size()) {
case 0:
return "";
case 1:
return "\nDid you mean " + candidates.get(0) + "?";
default:
return "\nDid you mean one of " + candidates + "?";
}
}
public static List candidates(List names, String search) {
String reduced;
List result;
result = new ArrayList<>();
reduced = reduce(search);
for (String name : names) {
if (reduce(name).contains(reduced)) {
result.add(name);
}
}
return result;
}
private static String reduce(String name) {
StringBuilder builder;
char c;
builder = new StringBuilder();
for (int i = 0, max = name.length(); i < max; i++) {
c = name.charAt(i);
if (c >= '0' && c <= '9') {
builder.append(c);
} else if (c >= 'a' && c <= 'z') {
builder.append(c);
} else if (c >= 'A' && c <= 'Z') {
builder.append(Character.toLowerCase(c));
}
}
return builder.toString();
}
}