All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.ethereum.Start Maven / Gradle / Ivy

Go to download

Java implementation of the Ethereum protocol adapted to use for Hedera Smart Contract Service

The newest version!
/*
 * Copyright (c) [2016] [  ]
 * This file is part of the ethereumJ library.
 *
 * The ethereumJ library is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Lesser General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * The ethereumJ library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
 * GNU Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public License
 * along with the ethereumJ library. If not, see .
 */
package org.ethereum;

import org.ethereum.cli.CLIInterface;
import org.ethereum.config.SystemProperties;
import org.ethereum.mine.Ethash;

import java.nio.file.Files;
import java.nio.file.Path;
import java.nio.file.Paths;
import java.util.Comparator;
import java.util.Optional;
import java.util.regex.Matcher;
import java.util.regex.Pattern;

import static java.lang.Long.parseLong;
import static org.apache.commons.lang3.StringUtils.isEmpty;
import static org.apache.commons.lang3.math.NumberUtils.toInt;
import static org.ethereum.facade.EthereumFactory.createEthereum;

/**
 * @author Roman Mandeleil
 * @since 14.11.2014
 */
public class Start {

    public static void main(String args[]) {
        CLIInterface.call(args);

        final SystemProperties config = SystemProperties.getDefault();

        getEthashBlockNumber().ifPresent(blockNumber -> createDagFileAndExit(config, blockNumber));
        getBlocksDumpPath(config).ifPresent(dumpPath -> loadDumpAndExit(config, dumpPath));

        createEthereum();
    }

    private static void disableSync(SystemProperties config) {
        config.setSyncEnabled(false);
        config.setDiscoveryEnabled(false);
    }

    private static Optional getEthashBlockNumber() {
        String value = System.getProperty("ethash.blockNumber");
        return isEmpty(value) ? Optional.empty() : Optional.of(parseLong(value));
    }

    /**
     * Creates DAG file for specified block number and terminate program execution with 0 code.
     *
     * @param config      {@link SystemProperties} config instance;
     * @param blockNumber data set block number;
     */
    private static void createDagFileAndExit(SystemProperties config, Long blockNumber) {
        disableSync(config);

        new Ethash(config, blockNumber).getFullDataset();
        // DAG file has been created, lets exit
        System.exit(0);
    }

    private static Optional getBlocksDumpPath(SystemProperties config) {
        String blocksLoader = config.blocksLoader();

        if (isEmpty(blocksLoader)) {
            return Optional.empty();
        } else {
            Path path = Paths.get(blocksLoader);
            return Files.exists(path) ? Optional.of(path) : Optional.empty();
        }
    }

    /**
     * Loads single or multiple block dumps from specified path, and terminate program execution.
* Exit code is 0 in case of successfully dumps loading, 1 otherwise. * * @param config {@link SystemProperties} config instance; * @param path file system path to dump file or directory that contains dumps; */ private static void loadDumpAndExit(SystemProperties config, Path path) { disableSync(config); boolean loaded = false; try { Pattern pattern = Pattern.compile("(\\D+)?(\\d+)?(.*)?"); Path[] paths = Files.isDirectory(path) ? Files.list(path) .sorted(Comparator.comparingInt(filePath -> { String fileName = filePath.getFileName().toString(); Matcher matcher = pattern.matcher(fileName); return matcher.matches() ? toInt(matcher.group(2)) : 0; })) .toArray(Path[]::new) : new Path[]{path}; loaded = createEthereum().getBlockLoader().loadBlocks(paths); } catch (Exception e) { e.printStackTrace(); } System.exit(loaded ? 0 : 1); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy