Search in sources :

Example 6 with ConsoleErrorHandler

use of org.eclipse.titanium.error.ConsoleErrorHandler in project titan.EclipsePlug-ins by eclipse.

the class SaveModuleNet method exportInformationForProject.

@Override
protected void exportInformationForProject(final String[] args, final IProject project, final IProgressMonitor monitor) {
    final ErrorHandler errorHandler = new ConsoleErrorHandler();
    final ModuleGraphGenerator generator = new ModuleGraphGenerator(project, errorHandler);
    try {
        generator.generateGraph();
        String clusterName = "";
        for (int i = 1; i < args.length; ++i) {
            if (args[i].startsWith("-c")) {
                clusterName = args[i].substring(2);
            }
        }
        if (clusterName.isEmpty()) {
            graph = generator.getGraph();
        } else {
            final BaseCluster clusterer = new ClustererBuilder().setAlgorithm(clusterName).setGraph(generator.getGraph()).setProject(project).build();
            clusterer.run(monitor, false);
            graph = clusterer.getGraph();
        }
        final String fileName = args[0] + project.getName() + ".net";
        GraphHandler.saveGraphToPajek(graph, fileName);
        errorHandler.reportInformation("The graphs have been successfully saved. See results at " + new File(fileName).getAbsolutePath());
    } catch (Exception e) {
        errorHandler.reportException("Error while exporting", e);
    }
}
Also used : ConsoleErrorHandler(org.eclipse.titanium.error.ConsoleErrorHandler) ErrorHandler(org.eclipse.titanium.error.ErrorHandler) ModuleGraphGenerator(org.eclipse.titanium.graph.generators.ModuleGraphGenerator) ClustererBuilder(org.eclipse.titanium.graph.clustering.ClustererBuilder) BaseCluster(org.eclipse.titanium.graph.clustering.BaseCluster) ConsoleErrorHandler(org.eclipse.titanium.error.ConsoleErrorHandler) File(java.io.File)

Example 7 with ConsoleErrorHandler

use of org.eclipse.titanium.error.ConsoleErrorHandler in project titan.EclipsePlug-ins by eclipse.

the class SonarDataExporter method exportComponentDot.

private void exportComponentDot(final URI exportDir) {
    final URI filePath = URIUtil.append(exportDir, "component_graph.dot");
    final ErrorHandler errorHandler = new ConsoleErrorHandler();
    final GraphGenerator generator = new ComponentGraphGenerator(project, errorHandler);
    try {
        generator.generateGraph();
        GraphHandler.saveGraphToDot(generator.getGraph(), filePath.getPath(), project.getName());
    } catch (Exception e) {
        errorHandler.reportException("Error while exporting the component graph", e);
    }
}
Also used : ConsoleErrorHandler(org.eclipse.titanium.error.ConsoleErrorHandler) ErrorHandler(org.eclipse.titanium.error.ErrorHandler) GraphGenerator(org.eclipse.titanium.graph.generators.GraphGenerator) ModuleGraphGenerator(org.eclipse.titanium.graph.generators.ModuleGraphGenerator) ComponentGraphGenerator(org.eclipse.titanium.graph.generators.ComponentGraphGenerator) ConsoleErrorHandler(org.eclipse.titanium.error.ConsoleErrorHandler) URI(java.net.URI) ComponentGraphGenerator(org.eclipse.titanium.graph.generators.ComponentGraphGenerator) IOException(java.io.IOException) JAXBException(javax.xml.bind.JAXBException)

Example 8 with ConsoleErrorHandler

use of org.eclipse.titanium.error.ConsoleErrorHandler in project titan.EclipsePlug-ins by eclipse.

the class SonarDataExporter method exportModuleDot.

private void exportModuleDot(final URI exportDir) {
    final URI filePath = URIUtil.append(exportDir, "module_graph.dot");
    final ErrorHandler errorHandler = new ConsoleErrorHandler();
    final GraphGenerator generator = new ModuleGraphGenerator(project, errorHandler);
    try {
        generator.generateGraph();
        GraphHandler.saveGraphToDot(generator.getGraph(), filePath.getPath(), project.getName());
    } catch (Exception e) {
        errorHandler.reportException("Error while exporting the module graph", e);
    }
}
Also used : ConsoleErrorHandler(org.eclipse.titanium.error.ConsoleErrorHandler) ErrorHandler(org.eclipse.titanium.error.ErrorHandler) ModuleGraphGenerator(org.eclipse.titanium.graph.generators.ModuleGraphGenerator) GraphGenerator(org.eclipse.titanium.graph.generators.GraphGenerator) ModuleGraphGenerator(org.eclipse.titanium.graph.generators.ModuleGraphGenerator) ComponentGraphGenerator(org.eclipse.titanium.graph.generators.ComponentGraphGenerator) ConsoleErrorHandler(org.eclipse.titanium.error.ConsoleErrorHandler) URI(java.net.URI) IOException(java.io.IOException) JAXBException(javax.xml.bind.JAXBException)

Aggregations

ConsoleErrorHandler (org.eclipse.titanium.error.ConsoleErrorHandler)8 ErrorHandler (org.eclipse.titanium.error.ErrorHandler)6 ComponentGraphGenerator (org.eclipse.titanium.graph.generators.ComponentGraphGenerator)4 ModuleGraphGenerator (org.eclipse.titanium.graph.generators.ModuleGraphGenerator)4 File (java.io.File)3 URI (java.net.URI)3 JAXBException (javax.xml.bind.JAXBException)3 IOException (java.io.IOException)2 BaseCluster (org.eclipse.titanium.graph.clustering.BaseCluster)2 ClustererBuilder (org.eclipse.titanium.graph.clustering.ClustererBuilder)2 GraphGenerator (org.eclipse.titanium.graph.generators.GraphGenerator)2 SonarMetricsExporter (org.eclipse.titanium.sonar.metrics.SonarMetricsExporter)1