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

com.github.robozonky.cli.StrategyValidationFeature Maven / Gradle / Ivy

There is a newer version: 6.4.1
Show newest version
/*
 * Copyright 2020 The RoboZonky Project
 *
 * 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 com.github.robozonky.cli;

import static picocli.CommandLine.Command;
import static picocli.CommandLine.Option;

import java.io.BufferedInputStream;
import java.io.File;
import java.net.MalformedURLException;
import java.net.URL;
import java.util.concurrent.atomic.LongAdder;

import com.github.robozonky.internal.extensions.StrategyLoader;
import com.github.robozonky.internal.util.StringUtil;
import com.github.robozonky.internal.util.UrlUtil;

@Command(name = "strategy-validator", description = StrategyValidationFeature.DESCRIPTION)
public final class StrategyValidationFeature extends AbstractFeature {

    static final String DESCRIPTION = "Validate a strategy file.";

    @Option(names = { "-l", "--location" }, description = "URL leading to the strategy.", required = true)
    private URL location;
    private String text;
    private LongAdder adder = new LongAdder();

    public StrategyValidationFeature(final URL location) {
        this.location = location;
    }

    public StrategyValidationFeature(final File location) throws MalformedURLException {
        this(location.toURI()
            .toURL());
    }

    StrategyValidationFeature(final File location, final LongAdder adder) throws MalformedURLException {
        this(location);
        this.adder = adder;
    }

    StrategyValidationFeature() { // for Picocli
        this.adder = new LongAdder();
    }

    @Override
    public String describe() {
        return DESCRIPTION;
    }

    @Override
    public void setup() throws SetupFailedException {
        try (var inputStream = new BufferedInputStream(UrlUtil.open(location)
            .getInputStream())) {
            text = StringUtil.toString(inputStream);
        } catch (Exception ex) {
            throw new SetupFailedException(ex);
        }
    }

    private void report(final LongAdder adder, final String type) {
        adder.increment();
        logger.info("{} strategy present.", type);
    }

    @Override
    public void test() throws TestFailedException {
        adder.reset();
        StrategyLoader.toInvest(text)
            .ifPresent(s -> report(adder, "Investing"));
        StrategyLoader.toPurchase(text)
            .ifPresent(s -> report(adder, "Purchasing"));
        StrategyLoader.toSell(text)
            .ifPresent(s -> report(adder, "Selling"));
        StrategyLoader.forReservations(text)
            .ifPresent(s -> report(adder, "Reservation system"));
        if (adder.sum() == 0) {
            throw new TestFailedException("No strategies found. Check log for possible parser errors.");
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy