org.jsimpledb.cli.cmd.ShowAllSchemasCommand Maven / Gradle / Ivy
/*
* Copyright (C) 2015 Archie L. Cobbs. All rights reserved.
*/
package org.jsimpledb.cli.cmd;
import java.util.Map;
import org.jsimpledb.cli.CliSession;
import org.jsimpledb.core.Schema;
import org.jsimpledb.core.Transaction;
import org.jsimpledb.schema.SchemaModel;
import org.jsimpledb.util.ParseContext;
public class ShowAllSchemasCommand extends AbstractSchemaCommand {
public ShowAllSchemasCommand() {
super("show-all-schemas -x:xml");
}
@Override
public String getHelpSummary() {
return "Shows all schema versions recorded in the database";
}
@Override
public String getHelpDetail() {
return "If the `-x' flag is provided, the XML representation of each schema version is included.";
}
@Override
public CliSession.Action getAction(CliSession session, ParseContext ctx, boolean complete, Map params) {
final boolean xml = params.containsKey("xml");
return new ShowSchemasAction(xml);
}
private static class ShowSchemasAction implements CliSession.Action {
private final boolean xml;
ShowSchemasAction(boolean xml) {
this.xml = xml;
}
@Override
public void run(CliSession session) throws Exception {
AbstractSchemaCommand.runWithoutSchema(session, new SchemaAgnosticAction() {
@Override
public Void runWithoutSchema(CliSession session, Transaction tx) {
for (Map.Entry entry : tx.getSchemas().getVersions().entrySet()) {
final int number = entry.getKey();
final SchemaModel model = entry.getValue().getSchemaModel();
if (ShowSchemasAction.this.xml) {
session.getWriter().println("=== Schema version " + number + " ===\n"
+ model.toString().replaceAll("^<.xml[^>]+>\\n", ""));
} else
session.getWriter().println(number);
}
return null;
}
});
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy