~ubuntu-branches/ubuntu/vivid/phabricator/vivid-proposed

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
<?php

/**
 * Exception thrown when a system command fails.
 */
final class CommandException extends Exception {

  protected $command;
  protected $stdout;
  protected $stderr;
  protected $error;

  public function __construct($message, $command, $error, $stdout, $stderr) {
    $this->command = $command;
    $this->error = $error;
    $this->stdout = $stdout;
    $this->stderr = $stderr;

    $summary = array();
    $summary[] = $this->summarize($message);

    $summary[] = 'COMMAND';
    $summary[] = $this->summarize($command);

    $summary[] = null;
    $summary[] = 'STDOUT';
    $summary[] = $this->summarize($stdout);

    $summary[] = null;
    $summary[] = 'STDERR';
    $summary[] = $this->summarize($stderr);

    $summary = implode("\n", $summary);

    parent::__construct($summary);
  }

  public function getCommand() {
    return $this->command;
  }

  public function getError() {
    return $this->error;
  }

  public function getStdout() {
    return $this->stdout;
  }

  public function getStderr() {
    return $this->stderr;
  }

  private function summarize($string) {
    if (!strlen($string)) {
      return '(empty)';
    }

    $limit = 1000;

    $len = strlen($string);
    if ($len > $limit) {
      $cut = $len - $limit;
      $suffix = '... ('.number_format($cut).' more bytes) ...';
      if ($cut > strlen($suffix)) {
        $string = substr($string, 0, $limit).$suffix;
      }
    }

    // Strip out any credentials for the purpose of building a human readable
    // summary of the exception, since these are rarely-if-ever useful when
    // debugging, but can expose otherwise sensitive information.
    $string = phutil_censor_credentials($string);

    return $string;
  }

}