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

Last change on this file since 13252 was 12649, checked in by Don-vip, 7 years ago

see #15182 - code refactoring to avoid dependence on GUI packages from Preferences

  • 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().getEditDataSet().getAllSelected();
79 if (selection.isEmpty()) {
80 selection = getLayerManager().getEditDataSet().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().getEditDataSet().allNonDeletedPrimitives());
90 }
91
92 MainApplication.worker.submit(new ValidationTask(tests, selection, lastSelection));
93 }
94
95 @Override
96 public void updateEnabledState() {
97 setEnabled(getLayerManager().getEditLayer() != 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
108 * of primitives
109 *
110 */
111 static class ValidationTask extends PleaseWaitRunnable {
112 private Collection<Test> tests;
113 private final Collection<OsmPrimitive> validatedPrimitives;
114 private final Collection<OsmPrimitive> formerValidatedPrimitives;
115 private boolean canceled;
116 private List<TestError> errors;
117
118 /**
119 *
120 * @param tests the tests to run
121 * @param validatedPrimitives the collection of primitives to validate.
122 * @param formerValidatedPrimitives the last collection of primitives being validates. May be null.
123 */
124 ValidationTask(Collection<Test> tests, Collection<OsmPrimitive> validatedPrimitives,
125 Collection<OsmPrimitive> formerValidatedPrimitives) {
126 super(tr("Validating"), false /*don't ignore exceptions */);
127 this.validatedPrimitives = validatedPrimitives;
128 this.formerValidatedPrimitives = formerValidatedPrimitives;
129 this.tests = tests;
130 }
131
132 @Override
133 protected void cancel() {
134 this.canceled = true;
135 }
136
137 @Override
138 protected void finish() {
139 if (canceled) return;
140
141 // update GUI on Swing EDT
142 //
143 GuiHelper.runInEDT(() -> {
144 MapFrame map = MainApplication.getMap();
145 map.validatorDialog.tree.setErrors(errors);
146 map.validatorDialog.unfurlDialog();
147 //FIXME: nicer way to find / invalidate the corresponding error layer
148 MainApplication.getLayerManager().getLayersOfType(ValidatorLayer.class).forEach(ValidatorLayer::invalidate);
149 });
150 }
151
152 @Override
153 protected void realRun() throws SAXException, IOException,
154 OsmTransferException {
155 if (tests == null || tests.isEmpty())
156 return;
157 errors = new ArrayList<>(200);
158 getProgressMonitor().setTicksCount(tests.size() * validatedPrimitives.size());
159 int testCounter = 0;
160 for (Test test : tests) {
161 if (canceled)
162 return;
163 testCounter++;
164 getProgressMonitor().setCustomText(tr("Test {0}/{1}: Starting {2}", testCounter, tests.size(), test.getName()));
165 test.setPartialSelection(formerValidatedPrimitives != null);
166 test.startTest(getProgressMonitor().createSubTaskMonitor(validatedPrimitives.size(), false));
167 test.visit(validatedPrimitives);
168 test.endTest();
169 errors.addAll(test.getErrors());
170 }
171 tests = null;
172 if (ValidatorPrefHelper.PREF_USE_IGNORE.get()) {
173 getProgressMonitor().subTask(tr("Updating ignored errors ..."));
174 for (TestError error : errors) {
175 if (canceled) return;
176 List<String> s = new ArrayList<>();
177 s.add(error.getIgnoreState());
178 s.add(error.getIgnoreGroup());
179 s.add(error.getIgnoreSubGroup());
180 for (String state : s) {
181 if (state != null && OsmValidator.hasIgnoredError(state)) {
182 error.setIgnored(true);
183 }
184 }
185 }
186 }
187 }
188 }
189}
Note: See TracBrowser for help on using the repository browser.