org.btrplace.model.constraint.AllowAllConstraintChecker Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of scheduler-api Show documentation
Show all versions of scheduler-api Show documentation
Core components for a scheduler
The newest version!
/*
* Copyright 2020 The BtrPlace Authors. All rights reserved.
* Use of this source code is governed by a LGPL-style
* license that can be found in the LICENSE.txt file.
*/
package org.btrplace.model.constraint;
import org.btrplace.model.Model;
import org.btrplace.model.Node;
import org.btrplace.model.VM;
import org.btrplace.plan.event.Allocate;
import org.btrplace.plan.event.AllocateEvent;
import org.btrplace.plan.event.BootNode;
import org.btrplace.plan.event.BootVM;
import org.btrplace.plan.event.ForgeVM;
import org.btrplace.plan.event.KillVM;
import org.btrplace.plan.event.MigrateVM;
import org.btrplace.plan.event.ResumeVM;
import org.btrplace.plan.event.RunningVMPlacement;
import org.btrplace.plan.event.ShutdownNode;
import org.btrplace.plan.event.ShutdownVM;
import org.btrplace.plan.event.SubstitutedVMEvent;
import org.btrplace.plan.event.SuspendVM;
import java.util.ArrayList;
import java.util.Collection;
import java.util.HashSet;
import java.util.List;
import java.util.Set;
/**
* A default constraint checker that allow every action and event.
* In addition, {@link SubstitutedVMEvent} events are tracked and
* considered to maintain the set of VMs that is involved in
* the constraint.
*
* @author Fabien Hermenier
*/
public class AllowAllConstraintChecker implements SatConstraintChecker {
/**
* VMs involved in the constraint.
* Updated after each {@link SubstitutedVMEvent} event.
*/
private final Set vms;
/**
* Nodes involved in the constraint.
*/
private final Set nodes;
private final C cstr;
private final List> tracked;
/**
* Make a new checker.
*
* @param c the constraint associated to the checker.
*/
public AllowAllConstraintChecker(C c) {
this.vms = new HashSet<>(c.getInvolvedVMs());
this.nodes = new HashSet<>(c.getInvolvedNodes());
this.cstr = c;
tracked = new ArrayList<>();
}
/**
* Register a new set of VMs int to track.
* Each {@link SubstitutedVMEvent} event is caught
* and all of the registered collections are updated
* accordingly
*
* @param c the collection to register
* @return {@code true} iff the collection has been added
*/
public boolean track(Collection c) {
return tracked.add(c);
}
@Override
public boolean startsWith(Model mo) {
return true;
}
/**
* @param a the executed that will be executed
* @return {@code startRunningVMPlacement(a)}
*/
@Override
public boolean start(MigrateVM a) {
return startRunningVMPlacement(a);
}
/**
* {@inheritDoc}
* Executes {@code endRunningVMPlacement(a)}
*
* @param a the executed that will be executed
*/
@Override
public void end(MigrateVM a) {
endRunningVMPlacement(a);
}
/**
* @param a the executed that will be executed
* @return {@code startRunningVMPlacement(a)}
*/
@Override
public boolean start(BootVM a) {
return startRunningVMPlacement(a);
}
/**
* {@inheritDoc}
* Executes {@code endRunningVMPlacement(a)}
*
* @param a the executed that will be executed
*/
@Override
public void end(BootVM a) {
endRunningVMPlacement(a);
}
@Override
public boolean start(BootNode a) {
return true;
}
@Override
public void end(BootNode a) {
//Nothing to complain about the termination
}
@Override
public boolean start(ShutdownVM a) {
return true;
}
@Override
public void end(ShutdownVM a) {
//Nothing to complain about the termination
}
@Override
public boolean start(ShutdownNode a) {
return true;
}
@Override
public void end(ShutdownNode a) {
//Nothing to complain about the termination
}
@Override
public boolean start(ResumeVM a) {
return startRunningVMPlacement(a);
}
@Override
public void end(ResumeVM a) {
endRunningVMPlacement(a);
}
@Override
public boolean start(SuspendVM a) {
return true;
}
@Override
public void end(SuspendVM a) {
//Nothing to complain about the termination
}
@Override
public boolean start(KillVM a) {
return true;
}
@Override
public void end(KillVM a) {
//Nothing to complain about the termination
}
@Override
public boolean start(ForgeVM a) {
return true;
}
@Override
public void end(ForgeVM a) {
//Nothing to complain about the termination
}
@Override
public boolean endsWith(Model mo) {
return true;
}
@Override
public boolean consume(SubstitutedVMEvent e) {
for (Collection c : tracked) {
if (c.remove(e.getVM())) {
c.add(e.getNewVM());
}
}
if (vms.remove(e.getVM())) {
vms.add(e.getNewVM());
}
return true;
}
@Override
public boolean consume(AllocateEvent e) {
return true;
}
@Override
public boolean start(Allocate e) {
return true;
}
@Override
public void end(Allocate e) {
//Nothing to complain about the termination
}
/**
* Allow all the {@link RunningVMPlacement} actions.
*
* @param a the action to allow
* @return {@code true}
*/
public boolean startRunningVMPlacement(RunningVMPlacement a) {
return true;
}
/**
* Notify the end of a {@link RunningVMPlacement} action.
*
* @param a the notified action
*/
public void endRunningVMPlacement(RunningVMPlacement a) {
//Nothing to complain about the termination
}
@Override
public C getConstraint() {
return cstr;
}
/**
* Get the VMs involved in the constraint.
* The set is automatically updated by the {@link SubstitutedVMEvent} events.
*
* @return a set of VMs that may be empty
*/
public Set getVMs() {
return vms;
}
/**
* Get the nodes involved in the constraint.
*
* @return a set of nodes that may be empty
*/
public Set getNodes() {
return nodes;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy