Search in sources :

Example 1 with ClustererBuilder

use of org.eclipse.titanium.graph.clustering.ClustererBuilder in project titan.EclipsePlug-ins by eclipse.

the class SaveModuleDot 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() + ".dot";
        GraphHandler.saveGraphToDot(graph, fileName, project.getName());
        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 2 with ClustererBuilder

use of org.eclipse.titanium.graph.clustering.ClustererBuilder 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)

Aggregations

File (java.io.File)2 ConsoleErrorHandler (org.eclipse.titanium.error.ConsoleErrorHandler)2 ErrorHandler (org.eclipse.titanium.error.ErrorHandler)2 BaseCluster (org.eclipse.titanium.graph.clustering.BaseCluster)2 ClustererBuilder (org.eclipse.titanium.graph.clustering.ClustererBuilder)2 ModuleGraphGenerator (org.eclipse.titanium.graph.generators.ModuleGraphGenerator)2