-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathDijkstra.java
executable file
·341 lines (296 loc) · 12.8 KB
/
Dijkstra.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
/* Implementation of Link State Routing Protocol - Dijkstra's Algorithm */
import java.io.BufferedReader;
import java.io.File;
import java.io.FileReader;
import java.util.Scanner;
import javax.swing.JFileChooser;
/* Dijkstra.java */
public class Dijkstra {
static int Max_rooters;
static int DistGrph[][] = null; //Initialization and Declarations of variables
static int DistRow[] = null;
static int source = -1,destination = -1;
class ConTableEntry {
boolean flg;
int length;
int []ids;
int depth;
}
static ConTableEntry []conTable = null; //Connection Table initialization
/* Main Method */
public static void main(String[] args) {
Dijkstra psFrame = new Dijkstra();
}
public int nodeid(int in){
return (in+1);
}
/* ReadTextfileToBuildGraph Method */
public void ReadTextfileToBuildGraph() {
try
{
System.out.println("Enter Text File name to read Network Topology Matrix:");
Scanner in1 = new Scanner(System.in); //Takes from the user the input file name
String fiename = in1.nextLine();
FileReader fr = new FileReader(fiename); //Creation of FileReader object
String val=new String();
BufferedReader br = new BufferedReader(fr); //Creation of BufferedReader Object
String[] temp;
val=br.readLine();
temp = val.split(" "); //to find size of the matrices or number of routers
DistGrph = new int [temp.length][temp.length];
br.close();
fr.close();
System.out.println("<=======:Graph Size Read:=======>"+temp.length);
fr = new FileReader(fiename); //Read the content of file into the FileReader object
val=new String();
br = new BufferedReader(fr);
int i = 0;
while((val=br.readLine())!=null)
{
String[] temp1;
temp1 = val.split(" "); //Splitting with space as a Delimiter
for (int dist =0; dist < temp1.length; dist++ ){
DistGrph[i][dist] = Integer.parseInt(temp1[dist]);
}
i++;
}
br.close();
fr.close();
System.out.println("<=======:Graph Table Initialized:=======>");
Max_rooters = i;
String imageName = "%3d" ; //Formatting to display the Content in the Matrix format
System.out.println();
System.out.print("ID|");
for (int j =0; j < Max_rooters; j++ ){
System.out.print(String.format( imageName,nodeid(j)));
}
System.out.println();
System.out.println("-------------------------------------------------------------------");
for (int j =0; j < Max_rooters; j++ ){
imageName = "%2d|" ; //Formatting to display the Content in the Matrix format
System.out.print(String.format( imageName,nodeid(j)));
imageName = "%3d" ;
for (int k =0; k < Max_rooters; k++ )
System.out.print( String.format( imageName, DistGrph[j][k]));
System.out.println();
}
System.out.println("-------------------------------------------------------------------");
} catch(Exception e){
System.out.println("File Not Found, Please Enter a Valid File !"); //To Handle File Not Found Exception
}
}
/* ComputeConnectionTable Method*/
public void ComputeConnectionTabel(){
if (DistGrph[source][source] == 0) {
conTable = new ConTableEntry[Max_rooters]; //Creates a ConTable Object with the Number of Routers
for (int j = 0;j<Max_rooters;j++) {
ConTableEntry ce = new ConTableEntry();
ce.flg = true;
ce.length = -1; //Initializing the variables to start processing
ce.ids = new int[Max_rooters];
ce.ids[0] = source ;
ce.depth = 1;
for (int i = 1;i<Max_rooters;i++) ce.ids[i] = -1;
conTable[j] = ce;
}
//initializing source in working row
int tmpsorce = source;
conTable[tmpsorce].length = 0;
conTable[tmpsorce].ids[0]=source;
conTable[tmpsorce].flg = false;
//int nodedepth = 1;
for (int loopcnt = 0 ; loopcnt<Max_rooters; loopcnt++) {
for (int k = 0 ; k< Max_rooters ; k++)
{
if (conTable[k].flg)
{
if (DistGrph[tmpsorce][k]!= -1){
if ((conTable[k].length != -1) ) {
// smaller ( selected node length+ tableentry,previous entry path)
if (conTable[k].length > conTable[tmpsorce].length + DistGrph[tmpsorce][k]) {
conTable[k].length = conTable[tmpsorce].length + DistGrph[tmpsorce][k];
for (int idx = 0; idx< conTable[tmpsorce].depth ;idx ++)
conTable[k].ids[idx] = conTable[tmpsorce].ids[idx];
conTable[k].depth = conTable[tmpsorce].depth ;
conTable[k].ids[conTable[k].depth] = k;
conTable[k].depth++;
}
}
else
{ //selected node length is added to length table entry for new length
conTable[k].length = conTable[tmpsorce].length + DistGrph[tmpsorce][k];
for (int idx = 0; idx< conTable[tmpsorce].depth ;idx ++){
conTable[k].ids[idx] = conTable[tmpsorce].ids[idx];
}
conTable[k].depth = conTable[tmpsorce].depth ;
conTable[k].ids[conTable[k].depth] = k;
conTable[k].depth++;
}
}
}
}
for (int i = 0; i<Max_rooters; i++){
//System.out.print(" "+conTable[i].length);
}
System.out.println();
//initalize smallest dist
int small = 0;
int indx_small = 0;
for (int i = 0; i<Max_rooters; i++){
if (conTable[i].flg){
if(conTable[i].length !=-1 ){
small = conTable[i].length;
indx_small = i;
break;
}
}
}
//find source for next iteration
for (int i = 0; i<Max_rooters; i++){
if (conTable[i].flg){
if(conTable[i].length != -1 ){
if (small > conTable[i].length){
small = conTable[i].length;
indx_small = i;
}
}
}
}
tmpsorce = indx_small;
conTable[tmpsorce].flg = false;
}
System.out.println("Router [" + nodeid(source) + "] "+ "Connection Table:");
System.out.println("============================");
System.out.println("Destination Interface"); //Printing the Connection Table
for (int i = 0; i<Max_rooters; i++){
String tmp = String.valueOf(conTable[i].ids[1]+1);
if (conTable[i].ids[1] == -1) tmp = "-1"; //Check the Router ID if it is -1
if (i == source) tmp = "-"; //Source to Source Router will be "-"
System.out.print(" "+ nodeid(i) + " "+ tmp);
System.out.println();
}
}
else {
System.out.println("Router [" + nodeid(source) + "] "+ "Connection Table:");
System.out.println("============================");
System.out.println("Destination Interface"); //If there is no Interface to the router then assign -1
for (int i = 0; i<Max_rooters; i++){
System.out.print(" "+ nodeid(i) + " -1");
System.out.println();
}
}
}
/* PrintConnectionTable Method */
public void PrintConnectionTabel() {
System.out.println("Enter Source Rooter Id< 1 - "+ (Max_rooters)+" >:");
Scanner in1 = new Scanner(System.in); //Takes input from the User for the Source Router ID
String str_source = in1.nextLine();
source = Integer.parseInt(str_source);
source--; //Decrements the Source ID by 1
ComputeConnectionTabel(); //Invoke ComputeConnectionTable Method
}
/* PrintShortPathToDestination Method */
public void PrintShortPathToDestination() {
System.out.println("Enter Destination Rooter Id< 1 - "+ (Max_rooters)+" >:");
Scanner in1 = new Scanner(System.in); //Takes from the user the Destination Router ID as input
String str_dest = in1.nextLine();
destination = Integer.parseInt(str_dest);
destination--; //Decrements Destination Router ID
if (DistGrph[source][source] == 0) {
if (DistGrph[destination][destination] == 0) {
System.out.print("Shortest Path from Rooter:["+nodeid(source) +"] to ["+ nodeid(destination) + "] is: ");
if (conTable[destination].length > 0) {
for (int n = 0;n< conTable[destination].depth; n++ ) {
if (-1 != conTable[destination].ids[n]) System.out.print(" "+ nodeid(conTable[destination].ids[n]));
}
System.out.println();
System.out.println("The total cost is "+ conTable[destination].length);
} else System.out.println("Path Not Available");
} else System.out.println("Destination Rooter is Down"); //If Destination Router is down
} else System.out.println("Source Rooter is Down"); //If Source Rooter is down
}
/* ChangeNetworkTopology */
public void ChangeNetworkTopology(){
System.out.println("Enter Rooter Id< 1 - "+ (Max_rooters)+" > to Down:");
Scanner in1 = new Scanner(System.in); //Takes from the user the Router ID to Down as input
String str_delt = in1.nextLine();
int delid = Integer.parseInt(str_delt);
delid--;
for (int j =0; j < Max_rooters; j++ ){
DistGrph[j][delid] = -1 ; //Assigns -1 to the Down Router row
}
for (int l =0; l < Max_rooters; l++ ){
DistGrph[delid][l] = -1 ; //Assigns -1 to the Down Router column
}
System.out.println("Modified Topology:");
//insert
String imageName = "%3d" ; //Formatting the content in Matrix format
System.out.println();
System.out.print("ID|");
for (int j =0; j < Max_rooters; j++ ){
System.out.print(String.format( imageName,nodeid(j)));
}
System.out.println();
System.out.println("-------------------------------------------------------------------");
for (int j =0; j < Max_rooters; j++ ){
imageName = "%2d|" ; //Formatting the content in Matrix format
System.out.print(String.format( imageName,nodeid(j)));
imageName = "%3d" ;
for (int k =0; k < Max_rooters; k++ )
System.out.print( String.format( imageName, DistGrph[j][k]));
System.out.println();
}
System.out.println("-------------------------------------------------------------------");
}
/* MENU */
public Dijkstra() {
while (true){
System.out.println("===========================================================\n");
System.out.println("Dijkstra's Algorithm - Link State Routing Simulator:");
System.out.println("===========================================================\n");
System.out.println("Enter The Option :\n==================\n1. Create a Network Topology\n \n2. Build a Connection Table \n \n3. Shortest Path to Destination Router \n \n4. Modify a topology \n \n5. Exit\n");
System.out.println("Command:");
Scanner in = new Scanner(System.in);
String regmessage = in.nextLine();
if (regmessage.equals("1")){
ReadTextfileToBuildGraph(); //ReadTextFiletoBuildGraph method call
for (int n = 0;n<Max_rooters;n++ ) { //EXTRA FEATURE IMPLEMENTATION -> TO DISPLAY CONNECTION TABLE FOR ALL NODES
source = n;
ComputeConnectionTabel(); //ComputeConnectionTable method call
System.out.println();
}
}
if (regmessage.equals("2")){
PrintConnectionTabel(); //PrintConnectionTable method call
}
if (regmessage.equals("3")){
PrintShortPathToDestination(); //PrintShortPathToDestination method call
}
if (regmessage.equals("4")){
ChangeNetworkTopology(); //ChangeNetworkTopology method call
if ((source >-1) && (source < Max_rooters)){
ComputeConnectionTabel(); //ComputeConnectionTable method call
if (DistGrph[source][source] == 0) {
if ((destination >-1) && (destination < Max_rooters)){
if (DistGrph[destination][destination] == 0) {
System.out.print("Shortest Path from Rooter:["+nodeid(source) +"] to ["+ nodeid(destination) + "] is: ");
if (conTable[destination].length > -1) {
for (int n = 0;n<Max_rooters;n++ ) {
if (-1 != conTable[destination].ids[n]) System.out.print(" "+ nodeid(conTable[destination].ids[n]));
}
System.out.println();
System.out.println("The total cost is "+ conTable[destination].length);
}
else System.out.println("Not Available");
} else System.out.println("Destination Rooter is Down");
} else System.out.println("Destination node is not selected");
} else System.out.println("Source Rooter is Down"); //Router Check conditions
}else System.out.println("Source node is not selected");
}
if (regmessage.equals("5")){
System.out.println("Exit LinkStateRouting project. Good Bye!.");
System.exit(0); //Exit system call
}
}
}
}