/adei/trunk

To get this branch, use:
bzr branch http://darksoft.org/webbzr/adei/trunk
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
<?php

    function ShowTime($tm) {
	return $tm->format("F j, Y H:i:s.uP");
    }


    $logfile = $_REQUEST['logfile'];
    $logpos = $_REQUEST['logpos'];

    $info = adeiGetLogInfo($logfile, $logpos);
    
    ?><br/><table class="loginfo">
	<tr>
	    <th><?echo translate("Time");?></th>
	    <td><?echo ShowTime($info['time']);?></td>
	</tr>
	<tr>
	    <th><?echo translate("Latency");?></th>
	    <td><?echo (1. * $info['latency'] / 1000000) . " s";?></td>
	</tr>
	<tr>
	    <th><?echo translate("Server");?></th>
	    <td><?echo $info['setup'] . " / " . $info['server'];?></td>
	</tr>
	<tr>
	    <th><?echo translate("Source");?></th>
	    <td><?echo $info['source'] . " " . $info['target'];?></td>
	</tr>
	<tr>
	    <th><?echo translate("Request");?></th>
	    <td><?echo $info['session'] . " / " . $info['request'];?></td>
	</tr>
	<tr>
	    <th><?echo translate("Priority");?></th>    
	    <td><?echo $info['priority'];?></td>
	</tr>
	<tr>
	    <th><?echo translate("Request");?></th>    
	    <td><?
		if ($info['request']) echo $info['request'];
		else echo "-";
	    ?></td>
	</tr>
	<tr>
	    <th><?echo translate("Message");?></th>    
	    <td><?
		if ($info['message']) echo $info['message'];
		else echo "-";
	    ?></td>
	</tr>
    </table><br/><?
    
    if ($info['exception']) {
	echo "<h4>" . translate("Exception: ") . "</h4>";
	
	$ae = LOGGER::DecodeObject($info['exception']);
	echo translate("Code: %d", $ae->getCode()) . "<br/>";
	echo translate("Message: %s", $ae->getMessage()) . "<br/>";
	echo translate("Location: %s:%d", $ae->getFile(), $ae->getLine()) . "<br/>";
    }
    
    if ($info['GET']) {
	echo "<h4>" . translate("GET options: ") . "</h4>";
	echo "<pre>";
	print_r($info['GET']);
	echo "</pre>";
    }

    if ($info['POST']) {
	echo "<h4>" . translate("POST options: ") . "</h4>";
	echo "<pre>";
	print_r($info['POST']);
	echo "</pre>";
    }

    if ($info['RAW_DATA']) {
	echo "<h4>" . translate("POST data: ") . "</h4>";
	echo "<pre>";
	print_r($info['RAW_DATA']);
	echo "</pre>";
    }

    if ($info['REQUEST_DETAILS']) {
	echo "<h4>" . translate("Request details: ") . "</h4>";
	
	echo "<table>
	    <tr><td>" . translate("Client") . ":</td><td>" . $info['REQUEST_DETAILS']['REMOTE_ADDR'] . "</td></tr>
	    <tr><td>" . translate("User Agent") . ":</td><td>" . $info['REQUEST_DETAILS']['HTTP_USER_AGENT'] . "</td></tr>
	</table>";

	echo "<pre>";
	print_r($info['REQUEST_DETAILS']);
	echo "</pre>";
    }

    if ($info['object']) {
	echo "<h4>" . translate("Affected Object: ") . "</h4>";

	echo "<pre>";
	print_r(LOGGER::DecodeObject($info['object']));
	echo "</pre>";
    }

    if ($info['result']) {
	echo "<h4>" . translate("Result: ") . "</h4>";
	if (preg_match("/(getimage|getlogo)/", $info['source'])) {
	    $data = pack("H*", $info['result']);
	    $image = new Imagick();
	    if ($image) {
	        $image->readImageBlob($data);
		$format = $image->getImageFormat();
		$geometry = $image->getImageGeometry();
		$size = $image->getImageSize();
		echo translate("Image Information: %s, %dx%d, %s", $format, $geometry['width'], $geometry['height'], dsPrintSize($size)) . "<br/>";
#		print_r($image->identifyImage());
	    }    
	    //PNG print_r($image->getImageFormat());
	    
	    echo "<img src=\"logimage.php?logfile=$logfile&logpos=$logpos\"/>";
	} else {
	    $data = pack("H*", $info['result']);
	    echo "<pre>";
	    echo htmlentities($data);
	    echo "</pre>";
	}
    }

    if ($info['exception']) {
	echo "<h4>" . translate("Backtrace: ") . "</h4>";
	echo "<pre>";
	print_r($ae->getTrace());
	echo "</pre>";
    }

//    print_r($info);
?>