blob: 8c6cb7bbce2476f0980246ea5bbec3bcd9e025b3 [file] [log] [blame]
/**
********************************************************************************
* Copyright (c) 2019-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.standard.mapping;
import java.util.List;
import org.eclipse.app4mc.amalthea.model.Scheduler;
import org.eclipse.app4mc.amalthea.model.SchedulerAllocation;
import org.eclipse.app4mc.amalthea.model.TaskScheduler;
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.common.util.EList;
import org.eclipse.emf.ecore.EClassifier;
import org.eclipse.emf.ecore.EObject;
/**
* Checks the correctness of Scheduler -> ProcessingUnit mapping
*
* <ul>
* <li>A top level scheduler should be responsible for at least one processing unit</li>
* </ul>
*/
@Validation(
id = "AM-Mapping-Scheduler-ProcessingUnit",
checks = { "A top level scheduler should be responsible for at least one processing unit" })
public class AmMappingSchedulerProcessingUnit extends AmaltheaValidation {
@Override
public EClassifier getEClassifier() {
return ePackage.getScheduler();
}
@Override
public void validate(EObject object, List<ValidationDiagnostic> results) {
if (object instanceof Scheduler) {
Scheduler sched = (Scheduler) object;
if (sched instanceof TaskScheduler && ((TaskScheduler)sched).getParentScheduler() != null) {
return; // no core responsibility required for child schedulers
}
EList<SchedulerAllocation> allocations = sched.getSchedulerAllocations();
if (allocations.isEmpty()) {
addIssue(results, sched, null, "Scheduler not responsible for any core: " + name(sched));
}
}
}
}