-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathClient.java
392 lines (338 loc) · 9.42 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
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
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
import java.net.*;
import java.io.*;
import java.util.*;
/**
*Clase del cliente
*/
public class Client{
private static Socket client_socket = null;
private static int node_port = -1;
private static String node = null;
private static String download_path = null;
private static ArrayList<Song> current_songs = new ArrayList<Song>();
private static HashMap<String,Song> downloaded_songs = new
HashMap<String,Song>();
/**
*
* @param args
*/
public static void main(String args[]){
BufferedReader console = new BufferedReader
(new InputStreamReader(System.in));
boolean running = true;
set_params(args);
System.out.println("Cliente listo para recibir o mandar ordenes");
while(running){
String command = null;
ServerRequest svr = null;
String ans = null;
String[] resto;
Song s = new Song();
print_songs();
try{
command = console.readLine();
command.trim();
}
catch(IOException e){
System.exit(1);
}
if(command.length() <= 0)
continue;
switch(command.charAt(0)){
case 'C':
case 'c':
resto = command.split("\\s");
// Preparar cadena
if (resto.length > 1) {
// Búsqueda por autor ?
if (resto[1].compareTo("-a") == 0) {
String expr = parseSearchEntry(resto, 2);
ServerRequest srv =
new ServerRequest(client_socket,
node_port, node, "consult", "A@@"+expr,
download_path);
ans = srv.run();
}
// Búsqueda por título
else {
String expr = parseSearchEntry(resto, 2);
ServerRequest srv =
new ServerRequest(client_socket,
node_port,node, "consult", "T@@"+expr,
download_path);
ans = srv.run();
}
}
// Búsqueda de todos los archivos
else {
ServerRequest srv =
new ServerRequest(client_socket,
node_port,node, "consult", "W@@",
download_path);
ans = srv.run();
}
current_songs = parse_songs(ans);
break;
case 'A':
case 'a':
ServerRequest srv = new ServerRequest(client_socket,
node_port,node, "reachable", "","");
ans = srv.run();
print_reachable(ans);
break;
case 'D':
case 'd':
resto = command.split("\\s");
if(resto.length > 1){
int index = Integer.parseInt(resto[1]);
if(index >= current_songs.size()){
System.out.println("La cancion con el id "+index+" no existe");
break;
}
s = current_songs.get(index);
svr = new ServerRequest(client_socket,node_port,s.location,
"download",s.title+"-"+s.creator,
download_path);
String res = svr.run();
if(res != null){
Song ds = new Song();
ds.title = s.title;
ds.creator = s.creator;
downloaded_songs.put(s.title+"-"+s.creator,ds);
}
}
else{
System.out.println("Comando Download malformado");
}
break;
case 'P':
case 'p':
resto = command.split("\\s");
if(resto.length > 1){
int index = Integer.parseInt(resto[1]);
if(index >= current_songs.size()){
System.out.println("La cancion con el id "+index+" no existe");
break;
}
s = current_songs.get(index);
if(downloaded_songs.get(s.title+"-"+s.creator) == null){
svr = new ServerRequest(client_socket,node_port,s.location,
"download",s.title+"-"+s.creator,
download_path);
String res = svr.run();
if(res != null){
Song ds = new Song();
ds.title = s.title;
ds.creator = s.creator;
downloaded_songs.put(s.title+"-"+s.creator,ds);
}
}
}
else{
System.out.println("Comando Play malformado");
}
try{
Runtime.getRuntime().exec(new String[]{"cvlc",
download_path+"/"+s.title+"-"+s.creator+".mp3"});
}
catch(IOException e){
System.out.println("I/O Error: "+e);
}
break;
case 'Q':
case 'q':
running = false;
break;
default:
System.out.println("Comando invalido");
break;
}
}
}
/**
* Devuelve el número de caracteres.
* del título con más carácteres en su nombre.
* @param songs Canciones que serán analizadas.
* @return Número de carácteres del título mas largo.
*/
private static int longest_title(ArrayList<Song> songs){
int max = 0;
for (int i = 0; i < songs.size(); ++i){
int aux = songs.get(i).title.length();
if (aux > max)
max = aux;
}
return max;
}
/**
* Devuelve el número de caracteres del autor con mas
* caracteres en su nombre.
* @param songs Canciones que serán analizadas.
* @return Número de caracteres del autor mas largo.
*/
private static int longest_creator(ArrayList<Song> songs){
int max = 0;
for (int i = 0; i < songs.size(); ++i){
int aux = songs.get(i).creator.length();
if ( aux > max)
max = aux;
}
return max;
}
/**
*
* @param n Número a procesar.
* @return Número de dígitos del número.
*/
private static int number_of_digits(int n){
if (n == 0)
return 1;
int digits = 0;
while(n > 0){
digits += 1;
n = n/10;
}
return digits;
}
/**
* Genera un String de espacios en blanco.
* @param n Número de espacios en blanco.
* @return String de espacios en blanco.
*/
private static String tab(int n){
String tab = "";
for(int i = 0; i < n; ++i){
tab += " ";
}
return tab;
}
/**
* Genera un String de espacios en blanco.
* @param n Número de espacios en blanco.
* @return String de espacios en blanco.
*/
private static void print_reachable(String r){
if (r.length() == 0)
System.out.println("No se encontraron nodos alcanzables");
String rl[] = r.split("##");
HashSet<String> s = new HashSet<String>();
for(int i = 0; i < rl.length; ++i)
s.add(rl[i]);
Iterator<String> i = s.iterator();
while(i.hasNext())
System.out.println(i.next());
return;
}
/**
* Imprime las canciones que resultaron de la última consulta.
*/
private static void print_songs(){
if (current_songs.size() <= 0){
return;
}
int lt = max(longest_title(current_songs),6);
int lc = max(longest_creator(current_songs),5);
int d = max(number_of_digits(current_songs.size()),3);
int sp = 4;
System.out.println("Num"+tab(d-3+sp)+"Autor"+tab(lc-5+sp)+"Titulo"+tab(lt-6+sp)+"Nodo");
for (int i = 0; i < current_songs.size(); ++i){
String c = current_songs.get(i).creator;
String t = current_songs.get(i).title;
String l = current_songs.get(i).node_id;
System.out.println(i + tab(d-number_of_digits(i)+sp)+
c + tab(lc-c.length()+sp)+
t + tab(lt-t.length()+sp)+
l);
}
return;
}
/**
* Parsea el resultado del comando C.
* @param ss resultado del comando C.
* @return Canciones parseadas.
*/
private static ArrayList<Song> parse_songs(String ss){
ArrayList<Song> songs = new ArrayList<Song>();
if(ss.length() <= 0){
System.out.println("No se encontraron canciones");
return songs;
}
String ss_strs[] = ss.split("##");
for(int i = 0; i < ss_strs.length; ++i){
songs.add(parse_song(ss_strs[i]));
}
return songs;
}
/**
* Genera un objeto Song a partir de una entrada del resultado
* del comando C.
* @param s Canción a parsear.
* @return Objeto Song con la información de la canción.
*/
private static Song parse_song(String s){
Song res = new Song();
String song_data[] = s.split("@@");
res.creator = song_data[0];
res.title = song_data[1];
res.location = song_data[2];
res.node_id = song_data[3];
return res;
}
/**
* Parsea los argumentos del comando C.
* @param resto contiene la información de la consulta.
* @param startPoint índice desde donde se itera para extraer consulta.
* @return Objeto Song con la información de la canción.
*/
private static String parseSearchEntry(String[] resto, int startPoint) {
String expr = new String();
int i = startPoint;
for(i = startPoint; i < resto.length - 1; i++){
expr += resto[i].toLowerCase();
expr += " ";
}
expr += resto[i].toLowerCase();
return expr;
}
/**
* Parsea las opciones de la línea de comandos -p, -n y -d.
* @param args Línea de comandos.
*/
private static void set_params(String args[]){
char op = '\0';
int i = 0;
while( i < args.length ){
op = args[i].charAt(1);
switch(op){
case 'p':
node_port = Integer.parseInt(args[i+1]);
break;
case 'n':
node = args[i+1];
break;
case 'd':
download_path = args[i+1];
break;
default:
System.out.println("Opción incorrecta");
System.exit(1);
break;
}
i += 2;
}
//Si no se especifico el puerto o el nodo al cual
//conectarse salir con error
if((node_port == -1)||(node == null)){
System.out.println("Uso: Cliente -p <puerto> -n <nodo> [-d <directorio de descargas>]");
System.exit(1);
}
if(download_path == null)
download_path = ".";
}
private static int max(int a, int b){
if(a > b)
return a;
else
return b;
}
}