
org.btrplace.model.constraint.Spread 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.VM;
import java.util.Objects;
import java.util.Set;
/**
* A constraint to force that the given VMs, if running,
* to be hosted on distinct nodes.
*
* If the restriction is continuous, the constraint ensure no VMs are relocated to a node hosting a VM
* involved in the same Spread constraint.
*
* If the restriction is discrete, the constraint only ensures that there is no co-location
* at the end of the reconfiguration plan.
*
* @author Fabien Hermenier
*/
public class Spread extends SimpleConstraint {
private Set vms;
/**
* Make a new constraint having a continuous restriction.
*
* @param vms the VMs to consider
*/
public Spread(Set vms) {
this(vms, true);
}
/**
* Make a new constraint.
*
* @param vms the VMs to consider
* @param continuous {@code true} for a continuous restriction.
*/
public Spread(Set vms, boolean continuous) {
super(continuous);
this.vms = vms;
}
@Override
public String toString() {
return "spread(vms=" + getInvolvedVMs() + ", " + (isContinuous() ? "continuous" : "discrete") + ')';
}
@Override
public SpreadChecker getChecker() {
return new SpreadChecker(this);
}
@Override
public Set getInvolvedVMs() {
return vms;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
Spread spread = (Spread) o;
return isContinuous() == spread.isContinuous() &&
Objects.equals(vms, spread.vms);
}
@Override
public int hashCode() {
return Objects.hash(vms, isContinuous());
}
}