summaryrefslogtreecommitdiffstats
path: root/usr/local/bin/3gstats.php
blob: 6ea69a2a37162ee6fec840d64af7e16a71238e66 (plain)
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
#!/usr/local/bin/php -f
<?php

if(empty($argv[1])) {
	echo "No modem device given \n";
	exit(0);
}

/* Huawei example */
$device = "/dev/{$argv[1]}";
$statfile = "/tmp/3gstats.{$argv[2]}";
$header = "#seconds,rssi,mode,upstream,downstream,sentbytes,receivedbyts,bwupstream,bwdownstream\n";

$i = 0;

$record = array();
$handle = fopen($device, "r");
if(! $handle) {
	echo "Can not open modem stats device\n";
	exit(1);
}
while(true) {
	$string = "";
	$string = fgets($handle, 256);

	$elements = array();
	$elements = split(":", $string);
	$elements[0] = trim($elements[0]);
	$elements[1] = trim($elements[1]);

	switch($elements[0]) {
		case "^RSSI":
			$record['rssi'] = $elements[1];
			break;
		case "^DSFLOWRPT":
			$items = array();
			$items = split(",", $elements[1]);
			$record['bwdownstream'] = 0;
			$record['bwdownstream'] = 0;
			$record['time'] = hexdec($items[0]);
			$record['upstream'] = hexdec($items[1]);
			$record['downstream'] = hexdec($items[2]);
			$record['sent'] = hexdec($items[3]);
			$record['received'] = hexdec($items[4]);
			$record['bwupstream'] = hexdec($items[5]);
			$record['bwdownstream'] = hexdec($items[6]);
			break;
	}

	if($i > 10) {
		$csv = $header . "{$record['time']},{$record['rssi']},{$record['mode']},{$record['upstream']},{$record['downstream']},{$record['sent']},{$record['received']},{$record['bwupstream']},{$record['bwdownstream']}\n";
		file_put_contents($statfile, $csv);
		$i = 0;
	}
	$i++;
}
fclose($handle);
?>
OpenPOWER on IntegriCloud