blob: 6fa546fdac38c00b089b3b4e25e864bc1e7db834 [file] [log] [blame]
/**
********************************************************************************
* Copyright (c) 2021 Robert Bosch GmbH and others.
*
* This program and the accompanying materials are made
* available under the terms of the Eclipse Public License 2.0
* which is available at https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Robert Bosch GmbH - initial API and implementation
********************************************************************************
*/
package org.eclipse.app4mc.amalthea.validations.sim.mapping;
import java.util.List;
import org.eclipse.app4mc.amalthea.model.TaskAllocation;
import org.eclipse.app4mc.amalthea.validation.core.AmaltheaValidation;
import org.eclipse.app4mc.validation.annotation.Validation;
import org.eclipse.app4mc.validation.core.ValidationDiagnostic;
import org.eclipse.emf.ecore.EClassifier;
import org.eclipse.emf.ecore.EObject;
/**
* Checks the sanity of scheduler allocations.
*
* <ul>
* <li>Executing processing unit must be set</li>
* </ul>
*/
@Validation(
id = "Sim-Mapping-TaskPriorityIsSet",
checks = { "Task priority must be set in task allocation's scheduling parameters" })
public class SimMappingTaskPriorityIsSet extends AmaltheaValidation {
@Override
public EClassifier getEClassifier() {
return ePackage.getTaskAllocation();
}
@Override
public void validate(EObject eObject, List<ValidationDiagnostic> results) {
if (eObject instanceof TaskAllocation) {
TaskAllocation alloc = (TaskAllocation) eObject;
// FIXME
// if (alloc.getSchedulingParameters() == null || alloc.getSchedulingParameters().getPriority() == null ) {
// addIssue(results, alloc, ePackage.getTaskAllocation_Task(), "Priority of allocated task is not set");
// }
}
}
}