-
Notifications
You must be signed in to change notification settings - Fork 0
/
ProcessMain.java
47 lines (39 loc) · 1.59 KB
/
ProcessMain.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
import java.io.IOException;
import java.util.*;
public class ProcessMain{
public static void main(String[] args) throws IOException {
//Otorga todos los permisos al proceso
System.setProperty("java.security.policy", "policy");
int ID = Integer.parseInt(args[0]);
int maxID = ID;
String[] tempNeighbor = args[1].split(","); //se separa la lista con los IDs vecinos
Integer[] neighborID = new Integer[tempNeighbor.length];
for(int i = 0; i < tempNeighbor.length; i++){
neighborID[i] = Integer.parseInt(tempNeighbor[i]);
}
boolean initiator = Boolean.parseBoolean(args[2]);
//String rutaArchivoCifrado = "/home/grupo14/proyecto_linux"; //Quitar de aqui
//String ipServidor = "10.10.2.214";
if(initiator){
try {
String rutaArchivoCifrado = args[3];
String ipServidor = args[4];
Process proceso = new Process(ID, neighborID, initiator, rutaArchivoCifrado, ipServidor);
//Verifica cada cierto tiempo si el proceso es el representante
proceso.timerRepresentative();
}
catch (Exception e){
e.printStackTrace();
}
} else {
try {
Process proceso = new Process(ID, neighborID, initiator);
//Verifica cada cierto tiempo si el proceso es el representante
proceso.timerRepresentative();
}
catch (Exception e){
e.printStackTrace();
}
}
}
}