コード例 #1
0
                            $out = "value0";
                        }
                        $str .= $cp["name"] . ";" . strftime("%d/%m/%Y", $time) . ";" . $v[$in] . ";" . $v[$out] . "\n";
                    }
                }
            }
        }
    }
    return $str;
}
try {
    if (count($argv) < 3) {
        echo "Erreur:\tArguments manquants\n" . "Usage:\tgetCSVDay.php dateDebut dateFin\n" . "\tdateDebut\tDate du début de la période au format 'YYYYMMDD'\n" . "\tdateFin\t\tDate de fin de la période au format 'YYYYMMDD'\n";
        exit(1);
    }
    include_once "BluePHP/BluePortail/BluePortailLang.inc";
    include_once "BluePHP/Utils/DateOps.inc";
    $bpl = new BluePortailLang(array());
    $refs = $bpl->getIPTable();
    $clientId = "CRTBretagne";
    $bpl->setClientId($clientId);
    include_once "BluePHP/BTopLocalServer/FlowCountingProcessing.inc";
    $period = array("start" => $argv[1], "end" => $argv[2]);
    $res = getTimeSlicesAsStrings($period["start"] . "000000", $period["end"] . "000000", array('second' => 0, 'minute' => 0, 'hour' => 0, 'day' => 1, 'month' => 0, 'year' => 0));
    echo "Porte ; Date ; Entrees ; Sorties\n";
    $cp = new FlowCountingProcessing();
    $cpList = $cp->getFlows();
    echo showCountingData($res, $cpList, $cp, 8);
} catch (Exception $e) {
    echo "Exception reçue : ", $e->getMessage(), "\n";
}
コード例 #2
0
            }
        }
    }
    $str .= sprintf("%'-52s\n%22s%5d%5d%5d%5d%5d%5d\n", "-", "Total = ", $total["value0"], $total["nbcumul0"], $total["nbexpected0"], $total["value1"], $total["nbcumul1"], $total["nbexpected1"]);
    return $str;
}
try {
    if (count($argv) < 6) {
        echo "Erreur:\tArguments manquants\n" . "Usage:\tVisualiseDonneesHeures.php ref dateDebut dateFin heureDebut heureFin\n" . "\tref\t\tIdentifiant du capteur voir ListeIdentifiantCapteur.php\n" . "\tdateDebut\tDate du début de la période au format 'YYYYMMDD'\n" . "\tdateFin\t\tDate de fin de la période au format 'YYYYMMDD'\n" . "\theureDebut\tHeure de début de la période au format HH\n" . "\theureFin\tHeure de fin de la période au format HH\n";
        exit(1);
    }
    include_once "BluePHP/BluePortail/BluePortailLang.inc";
    $bpl = new BluePortailLang(array());
    $ref = $argv[1];
    $period = array("start" => $argv[2], "end" => $argv[3], "hstart" => $argv[4], "hend" => $argv[5]);
    $capteurs = $bpl->getIPTable();
    $clientId = null;
    for ($i = 0; $clientId == null && $i < count($capteurs); ++$i) {
        if ($capteurs[$i]["bluecountId"] == $ref) {
            $clientId = $capteurs[$i]["clientId"];
        }
    }
    if (!$clientId) {
        throw new Exception("Identifiant capteur {$ref} non trouvé");
    }
    $bpl->setClientId($clientId);
    include_once "BluePHP/Utils/DateOps.inc";
    $res = getTimeSlicesAsStrings($period["start"] . "000000", $period["end"] . "000000", array('second' => 0, 'minute' => 0, 'hour' => 0, 'day' => 1, 'month' => 0, 'year' => 0));
    echo "Indicateur FlowCountingProcessing\n" . "---------------------------------\n";
    include_once "BluePHP/BTopLocalServer/FlowCountingProcessing.inc";
    $fcp = new FlowCountingProcessing();
コード例 #3
0
<?php

include_once "Config.inc";
try {
    include_once "BluePHP/BluePortail/BluePortailLang.inc";
    $bpl = new BluePortailLang(array());
    $capteurs = $bpl->getIPTable(array("extra" => "order by clientId"));
    echo sprintf("%22s%26s%16s\n", "Identifiant", "Nom", "Client");
    foreach ($capteurs as $v) {
        echo sprintf("%22s%26s%16s\n", $v["bluecountId"], $v["name"], $v["clientId"]);
    }
} catch (Exception $e) {
    echo "Exception reçue : ", $e->getMessage(), "\n";
}