io.mokamint.plotter.cli.internal.Create 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.Files;
import java.nio.file.Path;
import java.security.InvalidKeyException;
import java.security.NoSuchAlgorithmException;
import java.security.spec.InvalidKeySpecException;
import io.hotmoka.cli.AbstractCommand;
import io.hotmoka.cli.CommandException;
import io.hotmoka.crypto.Base58;
import io.hotmoka.crypto.Base58ConversionException;
import io.hotmoka.crypto.api.HashingAlgorithm;
import io.hotmoka.crypto.api.SignatureAlgorithm;
import io.mokamint.nonce.Prologs;
import io.mokamint.nonce.api.Prolog;
import io.mokamint.plotter.Plots;
import picocli.CommandLine.Command;
import picocli.CommandLine.Help.Ansi;
import picocli.CommandLine.Option;
import picocli.CommandLine.Parameters;
@Command(name = "create",
description = "Create a new plot file.",
showDefaultValues = true)
public class Create extends AbstractCommand {
@Parameters(index = "0", description = "the path of the new plot file")
private Path path;
@Parameters(index = "1", description = "the initial nonce number")
private long start;
@Parameters(index = "2", description = "the amount of nonces")
private long length;
@Parameters(index = "3", description = "the chain identifier of the network for which the plot will be used")
private String chainId;
@Parameters(index = "4", description = "the base58-encoded public key of the node for which the plot will be used")
private String nodePublicKeyBase58;
@Parameters(index = "5", description = "the base58-encoded public key of the plot")
private String plotPublicKeyBase58;
@Option(names = "--extra", description = "application-specific base58-encoded extra data for the plot", defaultValue = "")
private String extraBase58;
@Option(names = "--hashing", description = "the hashing algorithm for the nonces",
converter = HashingOptionConverter.class, defaultValue = "shabal256")
private HashingAlgorithm hashing;
@Option(names = "--signature-of-node", description = "the signature algorithm used for nodePublicKeyBase58",
converter = SignatureOptionConverter.class, defaultValue = "ed25519")
private SignatureAlgorithm signatureOfNode;
@Option(names = "--signature-of-plot", description = "the signature algorithm used for plotPublicKeyBase58",
converter = SignatureOptionConverter.class, defaultValue = "ed25519")
private SignatureAlgorithm signatureOfPlot;
@Override
protected void execute() throws CommandException {
try {
Files.deleteIfExists(path);
}
catch (IOException e) {
throw new CommandException("Failed to overwrite \"" + path + "\"!", e);
}
Prolog prolog;
try {
prolog = computeProlog();
}
catch (NoSuchAlgorithmException e) {
throw new CommandException("The ed25519 signature algorithm is not available!", e);
}
catch (InvalidKeySpecException | InvalidKeyException e) {
throw new CommandException("Invalid public key!", e);
}
try (var plot = Plots.create(path, prolog, start, length, hashing, this::onNewPercent)) {
}
catch (InterruptedException e) {
throw new CommandException("Interrupted while waiting!", e);
}
catch (IOException e) {
throw new CommandException("Cannot write the plot file!", e);
}
System.out.println();
}
private void onNewPercent(int percent) {
if (percent % 5 == 0)
System.out.print(Ansi.AUTO.string("@|bold,red " + percent + "%|@ "));
else
System.out.print(percent + "% ");
}
private Prolog computeProlog() throws NoSuchAlgorithmException, InvalidKeySpecException, InvalidKeyException, CommandException {
return Prologs.of(
chainId,
signatureOfNode, signatureOfNode.publicKeyFromEncoding(bytesFromBase58(nodePublicKeyBase58)),
signatureOfPlot, signatureOfPlot.publicKeyFromEncoding(bytesFromBase58(plotPublicKeyBase58)),
bytesFromBase58(extraBase58)
);
}
private byte[] bytesFromBase58(String base58) throws CommandException {
try {
return Base58.decode(base58);
}
catch (Base58ConversionException e) {
throw new CommandException("The string " + base58 + " is not in Base58 format!", e);
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy