Search in sources :

Example 1 with CovFileTreeElement

use of org.eclipse.linuxtools.internal.gcov.model.CovFileTreeElement in project linuxtools by eclipse.

the class CovManager method fillGcovView.

/**
 * fill the model by count results
 * @throws CoreException, IOException, InterruptedException
 */
public void fillGcovView() {
    // process counts for summary level
    int summaryTotal = 0, summaryInstrumented = 0, summaryExecuted = 0;
    for (Folder f : allFolders) {
        summaryTotal += f.getNumLines();
        summaryInstrumented += f.getLinesInstrumented();
        summaryExecuted += f.getLinesExecuted();
    }
    // fill rootNode model: the entry of the contentProvider
    rootNode = new CovRootTreeElement(Messages.CovManager_Summary, summaryTotal, summaryExecuted, summaryInstrumented);
    IBinaryObject binaryObject = STSymbolManager.sharedInstance.getBinaryObject(new Path(binaryPath));
    for (Folder fldr : allFolders) {
        String folderLocation = fldr.getPath();
        CovFolderTreeElement fldrTreeElem = new CovFolderTreeElement(rootNode, folderLocation, fldr.getNumLines(), fldr.getLinesExecuted(), fldr.getLinesInstrumented());
        rootNode.addChild(fldrTreeElem);
        for (SourceFile src : fldr.getSrcFiles()) {
            CovFileTreeElement srcTreeElem = new CovFileTreeElement(fldrTreeElem, src.getName(), src.getNumLines(), src.getLinesExecuted(), src.getLinesInstrumented());
            fldrTreeElem.addChild(srcTreeElem);
            for (GcnoFunction fnctn : src.getFnctns()) {
                String name = fnctn.getName();
                name = STSymbolManager.sharedInstance.demangle(binaryObject, name, project);
                srcTreeElem.addChild(new CovFunctionTreeElement(srcTreeElem, name, fnctn.getSrcFile(), fnctn.getFirstLineNmbr(), fnctn.getCvrge().getLinesExecuted(), fnctn.getCvrge().getLinesInstrumented()));
            }
        }
    }
}
Also used : IPath(org.eclipse.core.runtime.IPath) Path(org.eclipse.core.runtime.Path) CovFunctionTreeElement(org.eclipse.linuxtools.internal.gcov.model.CovFunctionTreeElement) CovRootTreeElement(org.eclipse.linuxtools.internal.gcov.model.CovRootTreeElement) IBinaryObject(org.eclipse.cdt.core.IBinaryParser.IBinaryObject) CovFolderTreeElement(org.eclipse.linuxtools.internal.gcov.model.CovFolderTreeElement) CovFileTreeElement(org.eclipse.linuxtools.internal.gcov.model.CovFileTreeElement)

Aggregations

IBinaryObject (org.eclipse.cdt.core.IBinaryParser.IBinaryObject)1 IPath (org.eclipse.core.runtime.IPath)1 Path (org.eclipse.core.runtime.Path)1 CovFileTreeElement (org.eclipse.linuxtools.internal.gcov.model.CovFileTreeElement)1 CovFolderTreeElement (org.eclipse.linuxtools.internal.gcov.model.CovFolderTreeElement)1 CovFunctionTreeElement (org.eclipse.linuxtools.internal.gcov.model.CovFunctionTreeElement)1 CovRootTreeElement (org.eclipse.linuxtools.internal.gcov.model.CovRootTreeElement)1