source: josm/trunk/src/org/openstreetmap/josm/actions/ValidateAction.java@ 13494

Last change on this file since 13494 was 13434, checked in by Don-vip, 6 years ago

see #8039, see #10456 - support read-only data layers

  • Property svn:eol-style set to native
File size: 7.0 KB
Line 
1// License: GPL. For details, see LICENSE file.
2package org.openstreetmap.josm.actions;
3
4import static org.openstreetmap.josm.tools.I18n.tr;
5
6import java.awt.event.ActionEvent;
7import java.awt.event.KeyEvent;
8import java.io.IOException;
9import java.util.ArrayList;
10import java.util.Collection;
11import java.util.List;
12import java.util.Optional;
13
14import org.openstreetmap.josm.data.osm.OsmPrimitive;
15import org.openstreetmap.josm.data.preferences.sources.ValidatorPrefHelper;
16import org.openstreetmap.josm.data.validation.OsmValidator;
17import org.openstreetmap.josm.data.validation.Test;
18import org.openstreetmap.josm.data.validation.TestError;
19import org.openstreetmap.josm.data.validation.util.AggregatePrimitivesVisitor;
20import org.openstreetmap.josm.gui.MainApplication;
21import org.openstreetmap.josm.gui.MapFrame;
22import org.openstreetmap.josm.gui.PleaseWaitRunnable;
23import org.openstreetmap.josm.gui.layer.ValidatorLayer;
24import org.openstreetmap.josm.gui.util.GuiHelper;
25import org.openstreetmap.josm.io.OsmTransferException;
26import org.openstreetmap.josm.tools.Shortcut;
27import org.xml.sax.SAXException;
28
29/**
30 * The action that does the validate thing.
31 * <p>
32 * This action iterates through all active tests and give them the data, so that
33 * each one can test it.
34 *
35 * @author frsantos
36 */
37public class ValidateAction extends JosmAction {
38
39 /** Last selection used to validate */
40 private transient Collection<OsmPrimitive> lastSelection;
41
42 /**
43 * Constructor
44 */
45 public ValidateAction() {
46 super(tr("Validation"), "dialogs/validator", tr("Performs the data validation"),
47 Shortcut.registerShortcut("tools:validate", tr("Tool: {0}", tr("Validation")),
48 KeyEvent.VK_V, Shortcut.SHIFT), true);
49 }
50
51 @Override
52 public void actionPerformed(ActionEvent ev) {
53 doValidate(true);
54 }
55
56 /**
57 * Does the validation.
58 * <p>
59 * If getSelectedItems is true, the selected items (or all items, if no one
60 * is selected) are validated. If it is false, last selected items are revalidated
61 *
62 * @param getSelectedItems If selected or last selected items must be validated
63 */
64 public void doValidate(boolean getSelectedItems) {
65 MapFrame map = MainApplication.getMap();
66 if (map == null || !map.isVisible())
67 return;
68
69 OsmValidator.initializeTests();
70 OsmValidator.initializeErrorLayer();
71
72 Collection<Test> tests = OsmValidator.getEnabledTests(false);
73 if (tests.isEmpty())
74 return;
75
76 Collection<OsmPrimitive> selection;
77 if (getSelectedItems) {
78 selection = getLayerManager().getActiveDataSet().getAllSelected();
79 if (selection.isEmpty()) {
80 selection = getLayerManager().getActiveDataSet().allNonDeletedPrimitives();
81 lastSelection = null;
82 } else {
83 AggregatePrimitivesVisitor v = new AggregatePrimitivesVisitor();
84 selection = v.visit(selection);
85 lastSelection = selection;
86 }
87 } else {
88 selection = Optional.ofNullable(lastSelection).orElseGet(
89 () -> getLayerManager().getActiveDataSet().allNonDeletedPrimitives());
90 }
91
92 MainApplication.worker.submit(new ValidationTask(tests, selection, lastSelection));
93 }
94
95 @Override
96 public void updateEnabledState() {
97 setEnabled(getLayerManager().getActiveDataSet() != null);
98 }
99
100 @Override
101 public void destroy() {
102 // Hack - this action should stay forever because it could be added to toolbar
103 // Do not call super.destroy() here
104 }
105
106 /**
107 * Asynchronous task for running a collection of tests against a collection of primitives
108 */
109 static class ValidationTask extends PleaseWaitRunnable {
110 private Collection<Test> tests;
111 private final Collection<OsmPrimitive> validatedPrimitives;
112 private final Collection<OsmPrimitive> formerValidatedPrimitives;
113 private boolean canceled;
114 private List<TestError> errors;
115
116 /**
117 * Constructs a new {@code ValidationTask}
118 * @param tests the tests to run
119 * @param validatedPrimitives the collection of primitives to validate.
120 * @param formerValidatedPrimitives the last collection of primitives being validates. May be null.
121 */
122 ValidationTask(Collection<Test> tests, Collection<OsmPrimitive> validatedPrimitives,
123 Collection<OsmPrimitive> formerValidatedPrimitives) {
124 super(tr("Validating"), false /*don't ignore exceptions */);
125 this.validatedPrimitives = validatedPrimitives;
126 this.formerValidatedPrimitives = formerValidatedPrimitives;
127 this.tests = tests;
128 }
129
130 @Override
131 protected void cancel() {
132 this.canceled = true;
133 }
134
135 @Override
136 protected void finish() {
137 if (canceled) return;
138
139 // update GUI on Swing EDT
140 //
141 GuiHelper.runInEDT(() -> {
142 MapFrame map = MainApplication.getMap();
143 map.validatorDialog.tree.setErrors(errors);
144 map.validatorDialog.unfurlDialog();
145 //FIXME: nicer way to find / invalidate the corresponding error layer
146 MainApplication.getLayerManager().getLayersOfType(ValidatorLayer.class).forEach(ValidatorLayer::invalidate);
147 });
148 }
149
150 @Override
151 protected void realRun() throws SAXException, IOException,
152 OsmTransferException {
153 if (tests == null || tests.isEmpty())
154 return;
155 errors = new ArrayList<>(200);
156 getProgressMonitor().setTicksCount(tests.size() * validatedPrimitives.size());
157 int testCounter = 0;
158 for (Test test : tests) {
159 if (canceled)
160 return;
161 testCounter++;
162 getProgressMonitor().setCustomText(tr("Test {0}/{1}: Starting {2}", testCounter, tests.size(), test.getName()));
163 test.setPartialSelection(formerValidatedPrimitives != null);
164 test.startTest(getProgressMonitor().createSubTaskMonitor(validatedPrimitives.size(), false));
165 test.visit(validatedPrimitives);
166 test.endTest();
167 errors.addAll(test.getErrors());
168 }
169 tests = null;
170 if (ValidatorPrefHelper.PREF_USE_IGNORE.get()) {
171 getProgressMonitor().subTask(tr("Updating ignored errors ..."));
172 for (TestError error : errors) {
173 if (canceled) return;
174 List<String> s = new ArrayList<>();
175 s.add(error.getIgnoreState());
176 s.add(error.getIgnoreGroup());
177 s.add(error.getIgnoreSubGroup());
178 for (String state : s) {
179 if (state != null && OsmValidator.hasIgnoredError(state)) {
180 error.setIgnored(true);
181 }
182 }
183 }
184 }
185 }
186 }
187}
Note: See TracBrowser for help on using the repository browser.