-
Notifications
You must be signed in to change notification settings - Fork 2
/
Client.java
141 lines (109 loc) · 4.03 KB
/
Client.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
import java.rmi.registry.LocateRegistry;
import java.rmi.registry.Registry;
import java.util.Scanner;
public class Client {
private Client() {}
public static void main(String[] args) {
String host = (args.length < 1) ? null : args[0];
try
{
Registry registry = LocateRegistry.getRegistry(host);
Oliver stub = (Oliver) registry.lookup("Oliver");
int op = 0;
Scanner s = new Scanner(System.in);
do
{
System.out.println("\nDigite a opcao desejada: \n");
System.out.println("1 - Cadastrar um publisher;");
System.out.println("2 - Cadastrar um curso;");
System.out.println("3 - Ver todos os publishers;");
System.out.println("4 - Ver todos os cursos;");
System.out.println("5 - Enviar mensagem para um curso;");
System.out.println("6 - Sair");
op = s.nextInt();
switch(op)
{
case 1:
System.out.println(cadastrarPublisher(stub));
break;
case 2:
System.out.println(cadastrarCurso(stub));
break;
case 3:
Thread t1 = new Thread(new ClientThread(host, "Publishers"));
t1.start();
break;
case 4:
Thread t2 = new Thread(new ClientThread(host, "Cursos"));
t2.start();
break;
case 5:
enviarMensagem(stub);
break;
default:
break;
}
} while (op != 6);
}
catch (Exception e)
{
System.err.println("Client exception: " + e.toString());
e.printStackTrace();
}
}
public static void enviarMensagem(Oliver stub)
{
try {
Scanner s = new Scanner(System.in);
System.out.println("\nDigite o id do curso: ");
int id_curso = s.nextInt();
Scanner x = new Scanner(System.in);
System.out.println("Digite a mensagem: ");
String mensagem = x.nextLine();
System.out.println(stub.post(id_curso, mensagem));
}
catch (Exception e)
{
System.err.println("Client exception: " + e.toString());
e.printStackTrace();
}
}
public static String cadastrarPublisher(Oliver stub)
{
try {
Scanner s = new Scanner(System.in);
System.out.println("\nDigite seu nome: ");
String nome = s.nextLine();
System.out.println("Digite seu id: ");
int id = s.nextInt();
return stub.cadastrarPublisher(id, nome);
}
catch (Exception e)
{
System.out.println("Publisher Exception: " + e.toString());
e.printStackTrace();
}
return "Nao";
}
public static String cadastrarCurso(Oliver stub)
{
try {
Scanner c = new Scanner(System.in);
System.out.println("\nDigite o titulo do curso: ");
String titulo = c.nextLine();
System.out.println("Digite a palavra chave: ");
String palavra = c.nextLine();
System.out.println("Digite o id do curso: ");
int id = c.nextInt();
System.out.println("Digite o id do publicador do curso: ");
int id_publisher = c.nextInt();
return stub.cadastrarCurso(id, titulo, id_publisher, palavra);
}
catch (Exception e)
{
System.out.println("Curso Exception: " + e.toString());
e.printStackTrace();
}
return "Nao";
}
}