io.mokamint.plotter.cli.internal.Show Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of io-mokamint-plotter-cli Show documentation
Show all versions of io-mokamint-plotter-cli Show documentation
This module implements a command-line tool for working with Mokamint plot files.
The newest version!
/*
Copyright 2023 Fausto Spoto
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 io.mokamint.plotter.cli.internal;
import java.io.IOException;
import java.nio.file.Path;
import java.security.NoSuchAlgorithmException;
import io.hotmoka.cli.AbstractCommand;
import io.hotmoka.cli.CommandException;
import io.hotmoka.crypto.Hex;
import io.mokamint.plotter.Plots;
import jakarta.websocket.EncodeException;
import picocli.CommandLine.Command;
import picocli.CommandLine.Option;
import picocli.CommandLine.Parameters;
@Command(name = "show",
description = "Show a plot file.",
showDefaultValues = true)
public class Show extends AbstractCommand {
@Parameters(index = "0", description = "the path of the new plot file")
private Path path;
@Option(names = "--json", description = "print the output in JSON", defaultValue = "false")
private boolean json;
@Override
protected void execute() throws CommandException {
try (var plot = Plots.load(path)) {
var prolog = plot.getProlog();
if (json) {
try {
System.out.println(new Plots.Encoder().encode(plot));
}
catch (EncodeException e) {
throw new CommandException("Cannot encode the plot in JSON format!", e);
}
}
else {
System.out.println("* prolog:");
System.out.println(" * chain identifier: " + prolog.getChainId());
System.out.println(" * node's public key for signing blocks: " + prolog.getPublicKeyForSigningBlocksBase58() + " (" + prolog.getSignatureForBlocks() + ", base58)");
System.out.println(" * plot's public key for signing deadlines: " + prolog.getPublicKeyForSigningDeadlinesBase58() + " (" + prolog.getSignatureForDeadlines() + ", base58)");
System.out.println(" * extra: " + Hex.toHexString(prolog.getExtra()));
long start = plot.getStart();
System.out.println("* nonces: [" + start + "," + (start + plot.getLength()) + ")");
System.out.println("* hashing for deadlines: " + plot.getHashing());
}
}
catch (NoSuchAlgorithmException e) {
throw new CommandException("The plot file uses an unknown cryptographic algorithm!", e);
}
catch (InterruptedException e) {
throw new CommandException("Interrupted while waiting!", e);
}
catch (IOException e) {
throw new CommandException("Cannot read the plot file!", e);
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy