/* * Copyright (c) [2016] [ <ether.camp> ] * 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 <http://www.gnu.org/licenses/>. */ package org.ethereum.manager; import org.springframework.stereotype.Component; import javax.annotation.PostConstruct; import java.util.ArrayList; import java.util.LinkedList; import java.util.List; /** * @author Roman Mandeleil * @since 11.12.2014 */ @Component public class AdminInfo { private static final int ExecTimeListLimit = 10000; private long startupTimeStamp; private boolean consensus = true; private List<Long> blockExecTime = new LinkedList<>(); @PostConstruct public void init() { startupTimeStamp = System.currentTimeMillis(); } public long getStartupTimeStamp() { return startupTimeStamp; } public boolean isConsensus() { return consensus; } public void lostConsensus() { consensus = false; } public void addBlockExecTime(long time){ while (blockExecTime.size() > ExecTimeListLimit) { blockExecTime.remove(0); } blockExecTime.add(time); } public Long getExecAvg(){ if (blockExecTime.isEmpty()) return 0L; long sum = 0; for (int i = 0; i < blockExecTime.size(); ++i){ sum += blockExecTime.get(i); } return sum / blockExecTime.size(); } public List<Long> getBlockExecTime(){ return blockExecTime; } }