Esempio n. 1
0
 public function ensureLogExists()
 {
     $log = array("_id" => $this->runID, "type" => $this->getType());
     ParallelLogGenerating::ensureLogExists($log, $this);
     return $log;
 }
Esempio n. 2
0
 public static function getLines($run)
 {
     $log = array("_id" => $run['_id'], "type" => "raw");
     ParallelLogGenerating::ensureLogExists($log, new self($run['log']));
     return GzipUtils::getLines($log);
 }
Esempio n. 3
0
 public function ensureAnnotatedSummaryExists()
 {
     $log = array("_id" => $this->rawSummary['_id'], "type" => "annotatedsummary");
     ParallelLogGenerating::ensureLogExists($log, $this);
     return $log;
 }
Esempio n. 4
0
 public function ensureExcerptExists()
 {
     $log = array("_id" => $this->run['_id'], "type" => $this->lineFilter->getType());
     ParallelLogGenerating::ensureLogExists($log, $this);
     return $log;
 }
Esempio n. 5
0
 public function ensureLogExists()
 {
     $log = array("_id" => $this->run['_id'], "type" => 'leakanalysis');
     ParallelLogGenerating::ensureLogExists($log, $this);
     return $log;
 }