IdMCmdShell.java
/*
* Copyright © 2023 Mark Raynsford <code@io7m.com> https://www.io7m.com
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* copyright notice and this permission notice appear in all copies.
*
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
* SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
* IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
package com.io7m.idstore.main.internal;
import com.io7m.idstore.shell.admin.IdAShellConfiguration;
import com.io7m.idstore.shell.admin.IdAShells;
import com.io7m.quarrel.core.QCommandContextType;
import com.io7m.quarrel.core.QCommandMetadata;
import com.io7m.quarrel.core.QCommandStatus;
import com.io7m.quarrel.core.QCommandType;
import com.io7m.quarrel.core.QParameterNamedType;
import com.io7m.quarrel.core.QStringType.QConstant;
import com.io7m.quarrel.ext.logback.QLogback;
import java.util.List;
import java.util.Locale;
import java.util.Optional;
import java.util.stream.Stream;
import static com.io7m.quarrel.core.QCommandStatus.FAILURE;
import static com.io7m.quarrel.core.QCommandStatus.SUCCESS;
/**
* The "shell" command.
*/
public final class IdMCmdShell implements QCommandType
{
private final QCommandMetadata metadata;
/**
* The "shell" command.
*/
public IdMCmdShell()
{
this.metadata = new QCommandMetadata(
"shell",
new QConstant("Run the admin command shell."),
Optional.empty()
);
}
@Override
public List<QParameterNamedType<?>> onListNamedParameters()
{
return Stream.concat(
Stream.of(),
QLogback.parameters().stream()
).toList();
}
@Override
public QCommandStatus onExecute(
final QCommandContextType context)
throws Exception
{
QLogback.configure(context);
final var configuration =
new IdAShellConfiguration(
Locale.getDefault(),
Optional.empty()
);
final var shells = new IdAShells();
try (var shell = shells.create(configuration)) {
shell.run();
return shell.exitCode() == 0 ? SUCCESS : FAILURE;
}
}
@Override
public QCommandMetadata metadata()
{
return this.metadata;
}
}