1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package org.kuali.common.util;
17
18 import java.io.File;
19 import java.io.IOException;
20 import java.util.ArrayList;
21 import java.util.Arrays;
22 import java.util.Collections;
23 import java.util.List;
24
25 import org.apache.commons.io.FileUtils;
26 import org.apache.commons.lang3.StringUtils;
27 import org.codehaus.plexus.util.cli.CommandLineException;
28 import org.codehaus.plexus.util.cli.CommandLineUtils;
29 import org.codehaus.plexus.util.cli.Commandline;
30 import org.codehaus.plexus.util.cli.StreamConsumer;
31 import org.slf4j.Logger;
32 import org.slf4j.LoggerFactory;
33 import org.springframework.util.Assert;
34
35
36
37
38 public class UnixUtils {
39
40 private static final Logger logger = LoggerFactory.getLogger(UnixUtils.class);
41
42 private static final String SCP = "scp";
43 private static final String SSH = "ssh";
44 private static final String SU = "su";
45 private static final String MKDIR = "mkdir";
46 private static final String RM = "rm";
47 private static final String CHOWN = "chown";
48 private static final String CHMOD = "chmod";
49 private static final String RSYNC = "rsync";
50 private static final String FORWARD_SLASH = "/";
51 public static final int SUCCESS = 0;
52
53
54
55
56
57
58
59
60
61 public static final int rsyncdirs(File source, File destination) {
62 String sourcePath = validateRsyncSourceDir(source);
63 String destinationPath = validateRsyncDestinationDir(destination);
64
65
66 boolean different = !source.equals(destination);
67 Assert.isTrue(different);
68
69 return rsyncdirs(null, sourcePath, destinationPath);
70 }
71
72
73
74
75
76
77
78
79 public static final int rsyncdirs(File source, String destination) {
80 String sourcePath = validateRsyncSourceDir(source);
81 return rsyncdirs(null, sourcePath, destination);
82 }
83
84
85
86
87
88
89
90
91 public static final int rsyncdirs(String source, File destination) {
92 String destinationPath = validateRsyncDestinationDir(destination);
93 return rsyncdirs(null, source, destinationPath);
94 }
95
96
97
98
99
100
101
102
103
104 public static final int rsyncdirs(List<String> options, File source, File destination) {
105 String sourcePath = validateRsyncSourceDir(source);
106 String destinationPath = validateRsyncDestinationDir(destination);
107 return rsyncdirs(options, sourcePath, destinationPath);
108 }
109
110
111
112
113
114
115
116
117 public static final int rsync(List<String> options, File source, String destination) {
118 String sourcePath = validateRsyncSourceDir(source);
119 return rsyncdirs(options, sourcePath, destination);
120 }
121
122
123
124
125
126
127
128
129 public static final int rsyncdirs(List<String> options, String source, File destination) {
130 String destinationPath = validateRsyncDestinationDir(destination);
131 return rsyncdirs(options, source, destinationPath);
132 }
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151 public static final int rsyncdirs(List<String> options, String source, String destination) {
152 List<String> rsyncDirOptions = getRsyncDirOptions(options);
153
154 String trailingSlashSource = StringUtils.endsWith(source, FORWARD_SLASH) ? source : source + FORWARD_SLASH;
155 return rsync(rsyncDirOptions, trailingSlashSource, destination);
156 }
157
158
159
160
161
162
163
164
165 public static final int rsyncdirs(String source, String destination) {
166 return rsyncdirs(null, source, destination);
167 }
168
169
170
171
172
173
174
175
176 public static final int rsync(String source, String destination) {
177 return rsync(null, source, destination);
178 }
179
180
181
182
183
184
185
186
187 public static final int rsync(List<String> options, String source, String destination) {
188 Assert.notNull(source);
189 Assert.notNull(destination);
190 List<String> arguments = new ArrayList<String>();
191 arguments.addAll(CollectionUtils.toEmpty(options));
192 arguments.add(source);
193 arguments.add(destination);
194 Commandline cl = new Commandline();
195 cl.setExecutable(RSYNC);
196 cl.addArguments(CollectionUtils.toStringArray(arguments));
197 return execute(cl);
198 }
199
200
201
202
203
204
205 public static final int sshchown(List<String> args, String user, String hostname, List<String> chownargs, String owner, String group, String file) {
206 Assert.notNull(owner);
207 Assert.notNull(group);
208 Assert.notNull(file);
209 String command = getChownCommand(chownargs, owner, group, file);
210 return ssh(args, user, hostname, command);
211 }
212
213
214
215
216
217
218 public static final int sshchownrecursive(String hostname, String owner, String group, String file) {
219 return sshchownrecursive(null, null, hostname, owner, group, file);
220 }
221
222
223
224
225
226
227 public static final int sshchownrecursive(String user, String hostname, String owner, String group, String file) {
228 return sshchownrecursive(null, user, hostname, owner, group, file);
229 }
230
231
232
233
234
235
236 public static final int sshchownrecursive(List<String> args, String hostname, String owner, String group, String file) {
237 return sshchownrecursive(args, null, hostname, owner, group, file);
238 }
239
240
241
242
243
244
245 public static final int sshchownrecursive(List<String> args, String user, String hostname, String owner, String group, String file) {
246 return sshchown(args, user, hostname, Arrays.asList("-R"), owner, group, file);
247 }
248
249
250
251
252
253
254 public static final int sshchown(List<String> args, String hostname, String owner, String group, String file) {
255 return sshchown(args, null, hostname, null, owner, group, file);
256 }
257
258
259
260
261
262
263 public static final int sshchown(List<String> args, String user, String hostname, String owner, String group, String file) {
264 return sshchown(args, user, hostname, null, owner, group, file);
265 }
266
267
268
269
270
271
272 public static final int sshchown(String user, String hostname, String owner, String group, String file) {
273 return sshchown(null, user, hostname, null, owner, group, file);
274 }
275
276
277
278
279
280
281 public static final int sshchown(String hostname, String owner, String group, String file) {
282 return sshchown(null, null, hostname, owner, group, file);
283 }
284
285
286
287
288
289
290 public static final int sshrm(String hostname, String file) {
291 return sshrm(null, null, hostname, file);
292 }
293
294
295
296
297
298
299 public static final int sshrm(String user, String hostname, String file) {
300 return sshrm(null, user, hostname, file);
301 }
302
303
304
305
306
307
308 public static final int sshrm(List<String> args, String hostname, String file) {
309 return sshrm(args, null, hostname, file);
310 }
311
312
313
314
315
316
317 public static final int sshrm(List<String> args, String user, String hostname, String file) {
318 Assert.notNull(file);
319 return sshrm(args, user, hostname, Collections.singletonList(file));
320 }
321
322
323
324
325
326
327 public static final int sshrm(String hostname, List<String> files) {
328 return sshrm(null, null, hostname, files);
329 }
330
331
332
333
334
335
336 public static final int sshrm(String user, String hostname, List<String> files) {
337 return sshrm(null, user, hostname, files);
338 }
339
340
341
342
343
344
345 public static final int sshrm(List<String> args, String hostname, List<String> files) {
346 return sshrm(args, null, hostname, files);
347 }
348
349
350
351
352
353
354 public static final int sshrm(List<String> args, String user, String hostname, List<String> files) {
355 return sshrm(args, user, hostname, Arrays.asList("-rf"), files);
356 }
357
358
359
360
361
362
363 public static final int sshrm(List<String> args, String user, String hostname, List<String> rmargs, List<String> files) {
364 Assert.notNull(files);
365 Assert.isTrue(files.size() > 0);
366 String command = getRmCommand(rmargs, files);
367 return ssh(args, user, hostname, command);
368 }
369
370 public static final String getRmCommand(List<String> args, List<String> files) {
371 Assert.notNull(files);
372 StringBuilder sb = new StringBuilder();
373 sb.append(RM);
374 String arguments = getSpaceSeparatedStrings(args);
375 if (arguments != null) {
376 sb.append(" ");
377 sb.append(arguments);
378 }
379 sb.append(" ");
380 sb.append(getSpaceSeparatedStrings(files));
381 return sb.toString();
382 }
383
384
385
386
387
388
389 public static final int sshchmod(List<String> args, String user, String hostname, String mode, String file) {
390 Assert.notNull(mode);
391 Assert.notNull(file);
392 return ssh(args, user, hostname, CHMOD + " " + mode + " " + file);
393 }
394
395
396
397
398
399
400 public static final int sshchmod(String user, String hostname, String mode, String file) {
401 return sshchmod(null, user, hostname, mode, file);
402 }
403
404
405
406
407
408
409 public static final int sshmkdir(String user, String hostname, String directory) {
410 return sshmkdir(null, user, hostname, directory);
411 }
412
413
414
415
416
417
418 public static final int sshmkdir(List<String> args, String user, String hostname, String directory) {
419 Assert.notNull(directory);
420 return ssh(args, user, hostname, MKDIR + " -p " + directory);
421 }
422
423
424
425
426
427
428 public static final int sshmkdir(String hostname, String directory) {
429 return sshmkdir(null, null, hostname, directory);
430 }
431
432
433
434
435
436
437 public static final int sshmkdir(List<String> args, String hostname, String directory) {
438 return sshmkdir(args, null, hostname, directory);
439 }
440
441
442
443
444
445
446 public static final int sshsu(String hostname, String login, String command) {
447 return sshsu(null, null, hostname, login, command);
448 }
449
450
451
452
453
454
455 public static final int sshsu(List<String> args, String hostname, String login, String command) {
456 return sshsu(args, null, hostname, login, command);
457 }
458
459
460
461
462
463
464 public static final int sshsu(String user, String hostname, String login, String command) {
465 return sshsu(null, user, hostname, login, command);
466 }
467
468
469
470
471
472
473 public static final int sshsu(List<String> args, String user, String hostname, String login, String command) {
474 Assert.notNull(login);
475 Assert.notNull(command);
476 return ssh(user, hostname, SU + " - " + login + " " + command);
477 }
478
479
480
481
482
483
484 public static final int ssh(String hostname, String command) {
485 return ssh(null, null, hostname, command);
486 }
487
488
489
490
491
492
493 public static final int ssh(String user, String hostname, String command) {
494 return ssh(null, user, hostname, command);
495 }
496
497
498
499
500
501
502 public static final int ssh(List<String> args, String hostname, String command) {
503 return ssh(args, null, hostname, command);
504 }
505
506
507
508
509
510
511 public static final int ssh(List<String> args, String user, String hostname, String command) {
512 Assert.notNull(hostname);
513 Assert.notNull(command);
514 List<String> arguments = new ArrayList<String>();
515 arguments.addAll(CollectionUtils.toEmpty(args));
516 if (!StringUtils.isBlank(user)) {
517 arguments.add(user + "@" + hostname);
518 } else {
519 arguments.add(hostname);
520 }
521 arguments.add(command);
522 Commandline cl = new Commandline();
523 cl.setExecutable(SSH);
524 cl.addArguments(CollectionUtils.toStringArray(arguments));
525 return execute(cl);
526 }
527
528
529
530
531
532
533
534
535
536
537
538
539 public static final int scp(String source, String destination) {
540 return scp(null, source, destination);
541 }
542
543
544
545
546
547
548
549
550
551
552
553
554 public static final int scp(List<String> args, String source, String destination) {
555 Assert.notNull(source);
556 Assert.notNull(destination);
557 List<String> arguments = new ArrayList<String>();
558 arguments.addAll(CollectionUtils.toEmpty(args));
559 arguments.add(source);
560 arguments.add(destination);
561 Commandline cl = new Commandline();
562 cl.setExecutable(SCP);
563 cl.addArguments(CollectionUtils.toStringArray(arguments));
564 return execute(cl);
565 }
566
567
568
569
570
571
572
573
574
575
576
577
578 public static final int scp(List<String> args, File source, String destination) {
579 Assert.notNull(source);
580 String sourcePath = LocationUtils.getCanonicalPath(source);
581 if (!source.exists()) {
582 throw new IllegalArgumentException(sourcePath + " does not exist");
583 }
584 return scp(args, sourcePath, destination);
585 }
586
587
588
589
590
591
592
593
594
595
596
597
598 public static final int scp(List<String> args, String source, File destination) {
599 try {
600 FileUtils.touch(destination);
601 } catch (IOException e) {
602 throw new IllegalStateException("Unexpected IO error", e);
603 }
604 String localPath = LocationUtils.getCanonicalPath(destination);
605 return scp(args, source, localPath);
606 }
607
608
609
610
611
612
613
614
615
616
617
618
619 public static final int scp(File source, String destination) {
620 return scp(null, source, destination);
621 }
622
623
624
625
626
627
628
629
630
631
632
633
634 public static final int scp(String source, File destination) {
635 return scp(null, source, destination);
636 }
637
638 public static final void validate(int exitValue, String message, Mode mode) {
639 if (exitValue != UnixUtils.SUCCESS) {
640 ModeUtils.validate(mode, message + " Exit value=[" + exitValue + "]");
641 }
642 }
643
644 public static final void validate(int exitValue, String message) {
645 validate(exitValue, message, Mode.ERROR);
646 }
647
648 public static final int execute(Commandline cl) {
649 try {
650 StreamConsumer stdout = new LoggingStreamConsumer(logger, LoggerLevel.INFO);
651 StreamConsumer stderr = new LoggingStreamConsumer(logger, LoggerLevel.WARN);
652 logger.info(cl.toString());
653 return CommandLineUtils.executeCommandLine(cl, stdout, stderr);
654 } catch (CommandLineException e) {
655 throw new IllegalStateException(e);
656 }
657 }
658
659 protected static final String getChownCommand(List<String> args, String owner, String group, String file) {
660 StringBuilder sb = new StringBuilder();
661 sb.append(CHOWN);
662 String arguments = getSpaceSeparatedStrings(args);
663 if (arguments != null) {
664 sb.append(" ");
665 sb.append(arguments);
666 }
667 sb.append(" ");
668 sb.append(owner + ":" + group);
669 sb.append(" ");
670 sb.append(file);
671 return sb.toString();
672 }
673
674 public static final String getLocation(String user, String hostname, String filename) {
675 Assert.notNull(user);
676 Assert.notNull(filename);
677 StringBuilder sb = new StringBuilder();
678 if (!StringUtils.isBlank(user)) {
679 sb.append(user + "@");
680 }
681 sb.append(hostname);
682 sb.append(":");
683 sb.append(filename);
684 return sb.toString();
685 }
686
687 public static final String getSpaceSeparatedStrings(List<String> strings) {
688 if (CollectionUtils.isEmpty(strings)) {
689 return null;
690 }
691 StringBuilder sb = new StringBuilder();
692 for (int i = 0; i < strings.size(); i++) {
693 if (i != 0) {
694 sb.append(" ");
695 }
696 sb.append(strings.get(i));
697 }
698 return sb.toString();
699 }
700
701 protected static final String validateRsyncSourceDir(File dir) {
702 String path = LocationUtils.getCanonicalPath(dir);
703 if (!dir.exists()) {
704 throw new IllegalArgumentException(path + " does not exist");
705 }
706 if (!dir.isDirectory()) {
707 throw new IllegalArgumentException(path + " is not a directory");
708 }
709 if (!StringUtils.endsWith(path, FORWARD_SLASH)) {
710 return path + FORWARD_SLASH;
711 } else {
712 return path;
713 }
714 }
715
716 protected static final String validateRsyncDestinationDir(File dir) {
717 try {
718 FileUtils.forceMkdir(dir);
719 return dir.getCanonicalPath();
720 } catch (IOException e) {
721 throw new IllegalArgumentException("Unexpected IO error", e);
722 }
723 }
724
725
726
727
728
729 protected static final List<String> getRsyncDirOptions(List<String> options) {
730 List<String> rsyncDirOptions = new ArrayList<String>();
731 rsyncDirOptions.add("--recursive");
732 rsyncDirOptions.add("--archive");
733 rsyncDirOptions.add("--delete");
734 for (String option : CollectionUtils.toEmpty(options)) {
735 if (!rsyncDirOptions.contains(option)) {
736 rsyncDirOptions.add(option);
737 }
738 }
739 return rsyncDirOptions;
740 }
741
742 }