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

org.antlr.works.stats.StatisticsManager Maven / Gradle / Ivy

The newest version!
/*

[The "BSD licence"]
Copyright (c) 2005 Jean Bovet
All rights reserved.

Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:

1. Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
3. The name of the author may not be used to endorse or promote products
derived from this software without specific prior written permission.

THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

*/

package org.antlr.works.stats;

import org.antlr.runtime.debug.Profiler;
import org.antlr.runtime.misc.Stats;
import org.antlr.tool.GrammarReport;

import java.io.BufferedReader;
import java.io.File;
import java.io.FileInputStream;
import java.io.InputStreamReader;
import java.util.ArrayList;
import java.util.List;

public class StatisticsManager {

    public static final int MAX_REPORTS = 1000;

    protected String type;
    protected List rawLines = new ArrayList();

    public StatisticsManager(String type) {
        this.type = type;
        load();
    }

    public int getStatsCount() {
        return rawLines.size();
    }

    public String getReadableString(int index) {
        if(index < 0 || index >= rawLines.size())
            return null;
        else {
            String rawLine = rawLines.get(index);
            if(type.equals(StatisticsReporter.TYPE_GRAMMAR))
                return GrammarReport.toString(rawLine);
            else if(type.equals(StatisticsReporter.TYPE_RUNTIME)) {
				// TJP removed 11/23/10 since we don't use anymore
                //return Profiler.toString(rawLine);
				return null;
			}
            else
                return StatisticsAW.shared().getReadableString();
        }
    }

    public String getRawString(int index) {
        if(index < 0 || index >= rawLines.size())
            return null;
        else
            return rawLines.get(index);
    }

    public boolean load() {
        rawLines.clear();
        if(type.equals(StatisticsReporter.TYPE_GRAMMAR))
            return loadGrammar();
        else if(type.equals(StatisticsReporter.TYPE_RUNTIME))
            return loadRuntime();
        else if(type.equals(StatisticsReporter.TYPE_GUI))
            return loadGUI();
        else
            return false;
    }

    protected boolean loadGUI() {
        addRawLine(StatisticsAW.shared().getRawString());
        return true;
    }

    protected boolean loadGrammar() {
        return loadFromFile(getAbsoluteFileName(GrammarReport.GRAMMAR_STATS_FILENAME));
    }

    protected boolean loadRuntime() {
        return loadFromFile(getAbsoluteFileName(Profiler.RUNTIME_STATS_FILENAME));
    }

    protected boolean loadFromFile(String file) {
        if(file == null)
            return false;

        File f = new File(file);
        if(!f.exists())
            return false;

        try {
            BufferedReader br = new BufferedReader(new InputStreamReader(new FileInputStream(f)));
            String line;
            while((line = br.readLine()) != null) {
                addRawLine(line);
            }
            br.close();
        } catch (Exception e) {
            e.printStackTrace();
            return false;
        }

        return true;
    }

    protected void addRawLine(String line) {
        rawLines.add(line);
        if(rawLines.size() > MAX_REPORTS)
            rawLines.remove(0);
    }

    public void reset() {
        reset(type);
    }

    public static void reset(String type) {
        if(type.equals(StatisticsReporter.TYPE_GRAMMAR)) {
            String file = getAbsoluteFileName(GrammarReport.GRAMMAR_STATS_FILENAME);
            new File(file).delete();
        } else if(type.equals(StatisticsReporter.TYPE_RUNTIME)) {
            String file = getAbsoluteFileName(Profiler.RUNTIME_STATS_FILENAME);
            new File(file).delete();
        } else if(type.equals(StatisticsReporter.TYPE_GUI))
            StatisticsAW.shared().reset();
    }

    public static String getAbsoluteFileName(String filename) {
        return System.getProperty("user.home")+File.separator+
                    Stats.ANTLRWORKS_DIR+File.separator+
                    filename;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy