You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
82 lines
2.0 KiB
PHP
82 lines
2.0 KiB
PHP
<?php
|
|
/**
|
|
* Copyright (C) Alibaba Cloud Computing
|
|
* All rights reserved
|
|
*/
|
|
|
|
require_once realpath(dirname(__FILE__) . '/Response.php');
|
|
require_once realpath(dirname(__FILE__) . '/QueriedLog.php');
|
|
|
|
/**
|
|
* The response of the GetLog API from log service.
|
|
*
|
|
* @author log service dev
|
|
*/
|
|
class Aliyun_Log_Models_GetLogsResponse extends Aliyun_Log_Models_Response {
|
|
|
|
/**
|
|
* @var integer log number
|
|
*/
|
|
private $count;
|
|
|
|
/**
|
|
* @var string logs query status(Complete or InComplete)
|
|
*/
|
|
private $progress;
|
|
|
|
/**
|
|
* @var array Aliyun_Log_Models_QueriedLog array, all log data
|
|
*/
|
|
private $logs;
|
|
|
|
/**
|
|
* Aliyun_Log_Models_GetLogsResponse constructor
|
|
*
|
|
* @param array $resp
|
|
* GetLogs HTTP response body
|
|
* @param array $header
|
|
* GetLogs HTTP response header
|
|
*/
|
|
public function __construct($resp, $header) {
|
|
parent::__construct ( $header );
|
|
$this->count = $header['x-log-count'];
|
|
$this->progress = $header ['x-log-progress'];
|
|
$this->logs = array ();
|
|
foreach ( $resp as $data ) {
|
|
$contents = $data;
|
|
$time = $data ['__time__'];
|
|
$source = $data ['__source__'];
|
|
unset ( $contents ['__time__'] );
|
|
unset ( $contents ['__source__'] );
|
|
$this->logs [] = new Aliyun_Log_Models_QueriedLog ( $time, $source, $contents );
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Get log number from the response
|
|
*
|
|
* @return integer log number
|
|
*/
|
|
public function getCount() {
|
|
return $this->count;
|
|
}
|
|
|
|
/**
|
|
* Check if the get logs query is completed
|
|
*
|
|
* @return bool true if this logs query is completed
|
|
*/
|
|
public function isCompleted() {
|
|
return $this->progress == 'Complete';
|
|
}
|
|
|
|
/**
|
|
* Get all logs from the response
|
|
*
|
|
* @return array Aliyun_Log_Models_QueriedLog array, all log data
|
|
*/
|
|
public function getLogs() {
|
|
return $this->logs;
|
|
}
|
|
}
|