
org.btrplace.model.constraint.AmongChecker Maven / Gradle / Ivy
/*
* Copyright (c) 2016 University Nice Sophia Antipolis
*
* This file is part of btrplace.
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 3 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program. If not, see .
*/
package org.btrplace.model.constraint;
import org.btrplace.model.Mapping;
import org.btrplace.model.Model;
import org.btrplace.model.Node;
import org.btrplace.model.VM;
import org.btrplace.plan.event.RunningVMPlacement;
import java.util.Collection;
/**
* Checker for the {@link Among} constraint
*
* @author Fabien Hermenier
* @see Among
*/
public class AmongChecker extends AllowAllConstraintChecker {
/**
* Current group (for the continuous restriction). {@code null} if no group has been selected.
*/
private Collection selectedGroup = null;
/**
* Make a new checker.
*
* @param a the associated constraint
*/
public AmongChecker(Among a) {
super(a);
}
@Override
public boolean startsWith(Model mo) {
if (getConstraint().isContinuous()) {
Mapping map = mo.getMapping();
for (VM vm : getVMs()) {
if (map.isRunning(vm)) {
Collection nodes = getConstraint().getAssociatedPGroup(map.getVMLocation(vm));
if (nodes.isEmpty()) {
return false;
} else if (selectedGroup == null) {
selectedGroup = nodes;
} else if (!selectedGroup.equals(nodes)) {
return false;
}
}
}
}
return true;
}
@Override
public boolean startRunningVMPlacement(RunningVMPlacement a) {
if (getConstraint().isContinuous() && getVMs().contains(a.getVM())) {
if (selectedGroup == null) {
selectedGroup = getConstraint().getAssociatedPGroup(a.getDestinationNode());
if (selectedGroup.isEmpty()) {
//disallowed group
return false;
}
} else {
if (!selectedGroup.contains(a.getDestinationNode())) {
//Not the right group
return false;
}
}
}
return true;
}
@Override
public boolean endsWith(Model i) {
Mapping map = i.getMapping();
Collection grp = null;
for (VM vm : getVMs()) {
if (map.isRunning(vm)) {
Collection nodes = getConstraint().getAssociatedPGroup(map.getVMLocation(vm));
if (nodes.isEmpty()) {
return false;
} else if (grp == null) {
grp = nodes;
} else if (!grp.equals(nodes)) {
return false;
}
}
}
return true;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy