blob: f63ca1ae2d41709b511ebe3948e636e274e24df3 [file] [log] [blame]
/**
* Copyright (c) 2009, 2019 Mia-Software and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v20.html
*
* Contributors:
* Gregoire DUPE (Mia-Software) - initial API and implementation
*/
package org.eclipse.modisco.infra.facet.validation;
import java.util.Map;
import org.eclipse.core.runtime.IStatus;
import org.eclipse.core.runtime.NullProgressMonitor;
import org.eclipse.core.runtime.Status;
import org.eclipse.emf.common.util.BasicDiagnostic;
import org.eclipse.emf.common.util.DiagnosticChain;
import org.eclipse.emf.ecore.EClass;
import org.eclipse.emf.ecore.EObject;
import org.eclipse.emf.ecore.util.EObjectValidator;
import org.eclipse.emf.validation.model.EvaluationMode;
import org.eclipse.emf.validation.model.IConstraintStatus;
import org.eclipse.emf.validation.service.IBatchValidator;
import org.eclipse.emf.validation.service.ModelValidationService;
/**
* This class has been written using the "Tutorial: EMF Validation Adapter"
* documentation ({@link
* /org.eclipse.emf.validation.doc/tutorials/validationAdapterTutorial.html})
* @deprecated Replaced by EMF Facet
*/
@Deprecated
public class EValidatorAdapter extends EObjectValidator {
private final IBatchValidator batchValidator;
public EValidatorAdapter() {
super();
this.batchValidator = (IBatchValidator) ModelValidationService.getInstance()
.newValidator(EvaluationMode.BATCH);
this.batchValidator.setIncludeLiveConstraints(true);
this.batchValidator.setReportSuccesses(false);
}
@Override
public boolean validate(final EObject eObject,
final DiagnosticChain diagnostics,
final Map<Object, Object> context) {
return validate(eObject.eClass(), eObject, diagnostics, context);
}
@Override
public boolean validate(final EClass eClass, final EObject eObject,
final DiagnosticChain diagnostics, final Map<Object, Object> context) {
super.validate(eClass, eObject, diagnostics, context);
IStatus status = Status.OK_STATUS;
if (diagnostics != null) {
if (!hasProcessed(eObject, context)) {
status = this.batchValidator.validate(
eObject,
new NullProgressMonitor());
processed(eObject, context, status);
appendDiagnostics(status, diagnostics);
}
}
return status.isOK();
}
private void processed(final EObject eObject,
final Map<Object, Object> context, final IStatus status) {
if (context != null) {
context.put(eObject, status);
}
}
private boolean hasProcessed(final EObject eObject,
final Map<Object, Object> context) {
boolean result = false;
EObject currentEObject = eObject;
if (context != null) {
while (currentEObject != null) {
if (context.containsKey(currentEObject)) {
result = true;
currentEObject = null;
} else {
currentEObject = currentEObject.eContainer();
}
}
}
return result;
}
private void appendDiagnostics(final IStatus status,
final DiagnosticChain diagnostics) {
if (status.isMultiStatus()) {
IStatus[] children = status.getChildren();
for (int i = 0; i < children.length; i++) {
appendDiagnostics(children[i], diagnostics);
}
} else if (status instanceof IConstraintStatus) {
diagnostics.add(new BasicDiagnostic(
status.getSeverity(),
status.getPlugin(),
status.getCode(),
status.getMessage(),
((IConstraintStatus) status).getResultLocus().toArray()));
}
}
}