/* * Copyright 2000-2016 JetBrains s.r.o. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.intellij.coverage.actions; import com.intellij.codeInspection.export.ExportToHTMLDialog; import com.intellij.coverage.CoverageDataManager; import com.intellij.coverage.CoverageEngine; import com.intellij.coverage.CoverageSuitesBundle; import com.intellij.openapi.actionSystem.AnAction; import com.intellij.openapi.actionSystem.AnActionEvent; import com.intellij.openapi.actionSystem.DataContext; import com.intellij.openapi.actionSystem.Presentation; import com.intellij.openapi.project.Project; public class GenerateCoverageReportAction extends AnAction { public void actionPerformed(final AnActionEvent e) { final DataContext dataContext = e.getDataContext(); final Project project = e.getProject(); assert project != null; final CoverageDataManager coverageDataManager = CoverageDataManager.getInstance(project); final CoverageSuitesBundle currentSuite = coverageDataManager.getCurrentSuitesBundle(); final CoverageEngine coverageEngine = currentSuite.getCoverageEngine(); final ExportToHTMLDialog dialog = coverageEngine.createGenerateReportDialog(project, dataContext, currentSuite); dialog.reset(); if (!dialog.showAndGet()) { return; } dialog.apply(); coverageEngine.generateReport(project, dataContext, currentSuite); } public void update(final AnActionEvent e) { final DataContext dataContext = e.getDataContext(); final Presentation presentation = e.getPresentation(); presentation.setEnabled(false); presentation.setVisible(false); final Project project = e.getProject(); if (project != null) { final CoverageSuitesBundle currentSuite = CoverageDataManager.getInstance(project).getCurrentSuitesBundle(); if (currentSuite != null) { final CoverageEngine coverageEngine = currentSuite.getCoverageEngine(); if (coverageEngine.isReportGenerationAvailable(project, dataContext, currentSuite)) { presentation.setEnabled(true); presentation.setVisible(true); } } } } }