Package ro.redeul.google.go.runner

Source Code of ro.redeul.google.go.runner.GoConsoleFilter

package ro.redeul.google.go.runner;

import com.intellij.execution.filters.Filter;
import com.intellij.execution.filters.HyperlinkInfo;
import com.intellij.execution.filters.OpenFileHyperlinkInfo;
import com.intellij.openapi.project.Project;
import com.intellij.openapi.vfs.VirtualFile;

import java.util.regex.Matcher;
import java.util.regex.Pattern;

class GoConsoleFilter implements Filter {
    private static final Pattern MSG_LINE = Pattern.compile("\t?(\\S+\\.\\w+):(\\d+)[:\\s].*\n");

    private final Project project;
    private final String packageDir;

    public GoConsoleFilter(Project project, String packageDir) {
        this.project = project;
        this.packageDir = packageDir;
    }

    @Override
    public Result applyFilter(String line, int entireLength) {
        Matcher matcher = MSG_LINE.matcher(line);
        if (!matcher.matches()) {
            return null;
        }

        String fileName = matcher.group(1);
        int fileLine;
        try {
            fileLine = Integer.parseInt(matcher.group(2)) - 1;
        } catch (NumberFormatException e) {
            return null;
        }
        VirtualFile vf;
        if (fileName.startsWith("/")||fileName.contains(":")) {
            vf = project.getBaseDir().getFileSystem().findFileByPath(fileName);
        }else if (fileName.contains("/")){
            vf = project.getBaseDir().findFileByRelativePath(fileName);
        }else{
            vf = project.getBaseDir().getFileSystem().findFileByPath(packageDir + "/" + fileName);
        }
        if (vf == null) {
            return null;
        }

        HyperlinkInfo hyperlinkInfo = new OpenFileHyperlinkInfo(project, vf, fileLine);
        int outputStart = entireLength - line.length();
        return new Result(outputStart + matcher.start(1), outputStart + matcher.end(2), hyperlinkInfo);
    }
}
TOP

Related Classes of ro.redeul.google.go.runner.GoConsoleFilter

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.