Add custom protocol

This commit is contained in:
manzerbredes 2016-03-21 21:03:28 +01:00
parent ac6de0d3be
commit 7f3a91e6dc
3 changed files with 20 additions and 7 deletions

View file

@ -19,7 +19,7 @@ import structure.Router;
public class Main {
public static void main(String[] args) {
Grid g=new Grid(Grid.Protocol.DSDV);
Grid g=new Grid(Grid.Protocol.CUSTOM);
MyGraph gr=new MyGraph("Routage Oportuniste", g);

View file

@ -153,7 +153,7 @@ public class MyGraph extends SingleGraph{
else{
this.miss++;
}
System.out.println("Success = " + this.success + " Miss = " + this.miss);
System.out.println("Success = " + this.success + " Miss = " + this.miss + " try number :"+(this.success+this.miss)) ;
//Build bestLink
this.showBestLink();

View file

@ -6,14 +6,15 @@ import java.util.Map.Entry;
public class Grid {
public enum Protocol {
AODV, DSDV
AODV, DSDV, CUSTOM
}
private ArrayList<Router> grid=new ArrayList<>();
private ArrayList<ArrayList<Integer>> links=new ArrayList<>();
private int bestLinkByProtocol;
private Protocol protocolChoose;
private int counterCUSTOM=5;
private Random rand = new Random();
private final int maxWeight=100;
@ -31,13 +32,14 @@ public class Grid {
this.buildRandomLink();
this.buildLinks();
this.protocolChoose=protocol;
switch(protocol){
case AODV:
this.bestLinkByProtocol=this.getBestLinkIndex();
break;
case DSDV:
case DSDV:
case CUSTOM:
HashMap<Integer,Integer> currentBestLink=new HashMap<>();
for(int i=0;i<10000;i++){
int current=this.getBestLinkIndex();
@ -69,7 +71,10 @@ public class Grid {
this.bestLinkByProtocol=maxId;
System.out.println("Retenu :"+maxId);
break;
}
}
@ -269,6 +274,14 @@ public class Grid {
* @return the bestLinkByProtocol
*/
public int getBestLinkByProtocol() {
if(this.protocolChoose==Protocol.CUSTOM){
this.counterCUSTOM--;
if(this.counterCUSTOM==0){
this.bestLinkByProtocol=this.getBestLinkIndex();
this.counterCUSTOM=5;
}
}
return bestLinkByProtocol;
}