Wip roundRobin
This commit is contained in:
parent
aa7be85663
commit
665ca35c69
@ -92,7 +92,12 @@ public class AccessPoint {
|
|||||||
public ResourceBlock[][] getFrame() {
|
public ResourceBlock[][] getFrame() {
|
||||||
return frame;
|
return frame;
|
||||||
}
|
}
|
||||||
public void setFrame(ResourceBlock[][] frame) {
|
|
||||||
this.frame = frame;
|
public static int getTimeSlotNb() {
|
||||||
|
return timeSlotNb;
|
||||||
|
}
|
||||||
|
|
||||||
|
public static int getSubCarrierNb() {
|
||||||
|
return subCarrierNb;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -8,4 +8,12 @@ public class ResourceBlock {
|
|||||||
this.user = user;
|
this.user = user;
|
||||||
this.bandwith = bandwith;
|
this.bandwith = bandwith;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public void setUser(User user) {
|
||||||
|
this.user = user;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setBandwith(double bandwith) {
|
||||||
|
this.bandwith = bandwith;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,5 +1,9 @@
|
|||||||
package fr.ntr.scheduler;
|
package fr.ntr.scheduler;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
import java.util.Random;
|
||||||
|
|
||||||
|
import fr.ntr.AccessPoint;
|
||||||
|
import fr.ntr.ResourceBlock;
|
||||||
import fr.ntr.User;
|
import fr.ntr.User;
|
||||||
|
|
||||||
|
|
||||||
@ -8,19 +12,37 @@ public class RoundRobin extends Scheduler {
|
|||||||
private String name;
|
private String name;
|
||||||
private int index;
|
private int index;
|
||||||
|
|
||||||
public RoundRobin(String name, int index) {
|
private List<User> users;
|
||||||
|
private ResourceBlock[][] frame;
|
||||||
|
|
||||||
|
public RoundRobin(String name, int index, List<User> users, ResourceBlock[][] frame ) {
|
||||||
this.name = name;
|
this.name = name;
|
||||||
this.index = index;
|
this.index = index;
|
||||||
|
this.users = users;
|
||||||
|
this.frame = frame;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Entry
|
* Entry
|
||||||
|
* Rempli la trame avec les utilisateurs
|
||||||
* Return
|
* Return
|
||||||
*/
|
*/
|
||||||
@Override
|
@Override
|
||||||
public void scheduling() {
|
public void scheduling() {
|
||||||
index = 0;
|
Random random = new Random();
|
||||||
|
index = random.nextInt(users.size()-1);
|
||||||
|
|
||||||
|
for (int Ts = 0; Ts < AccessPoint.getTimeSlotNb(); Ts++) {
|
||||||
|
for(int Sp = 0; Sp < AccessPoint.getSubCarrierNb(); Sp++) {
|
||||||
|
|
||||||
|
if (users.get(index).getPacketsToSend() == null) {
|
||||||
|
users.remove(index);
|
||||||
|
}
|
||||||
|
frame[Ts][Sp].setUser(UserSelection(Ts, Sp, users));
|
||||||
|
|
||||||
|
//AccessPoint.setFrame[Ts][Sp]();
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Reference in New Issue
Block a user