blob: da95caf3ce5bbf15e1bb1c43dd655f47f9800d0b [file] [log] [blame]
<?php
/**
* File containing the ezcDebugTimerStruct.
*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*
* @package Debug
* @version //autogentag//
* @copyright Copyright (C) 2005-2010 eZ Systems AS. All rights reserved.
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License, Version 2.0
* @access private
*/
/**
* The ezcDebugTimerStruct structure keeps track of the timing data.
*
* @package Debug
* @version //autogentag//
* @access private
*/
class ezcDebugTimerStruct extends ezcBaseStruct
{
/**
* The name of the timer.
*
* The name has two purposes:
* - The (unique) identifier of the running timer.
* - The description of the timer in the timer summary.
*
* @var string
*/
public $name;
/**
* The source of the timer.
*
* @var string
*/
public $source;
/**
* The group of the timer.
*
* @var string
*/
public $group;
/**
* An array that contains the switchTimer structures.
*
* @var array(ezcDebugSwitchTimerStruct)
*/
public $switchTime;
/**
* The start time in miliseconds.
*
* @var float
*/
public $startTime;
/**
* The stop time in miliseconds.
*
* @var float
*/
public $stopTime;
/**
* The time that elapsed between the startTimer and the stopTimer.
*
* @var float
*/
public $elapsedTime;
/**
* The number of the timer that started.
*
* @var int
*/
public $startNumber;
/**
* The number of the timer that stopped.
*
* @var int
*/
public $stopNumber;
/**
* Constructs a new ezcDebugSwitchTimerStruct
*
* @param string $name
* @param string $source
* @param string $group
* @param int $switchTime
* @param int $startTime
* @param int $stopTime
* @param int $elapsedTime
* @param int $startNumber
* @param int $stopNumber
*/
public function __construct( $name = null, $source = null, $group = null, $switchTime = null, $startTime = null, $stopTime = null, $elapsedTime = null, $startNumber = null, $stopNumber = null )
{
$this->name = $name;
$this->source = $source;
$this->group = $group;
$this->switchTime = $switchTime;
$this->startTime = $startTime;
$this->stopTime = $stopTime;
$this->elapsedTime = $elapsedTime;
$this->startNumber = $startNumber;
$this->stopNumber = $stopNumber;
}
/**
* Returns a new instance of this class with the data specified by $array.
*
* $array contains all the data members of this class in the form:
* array('member_name'=>value).
*
* __set_state makes this class exportable with var_export.
* var_export() generates code, that calls this method when it
* is parsed with PHP.
*
* @param array(string=>mixed) $array
* @return ezcDebugSwitchTimerStruct
*/
static public function __set_state( array $array )
{
return new ezcDebugTimerStruct(
$array['name'], $array['source'], $array['group'], $array['switchTime'], $array['startTime'],
$array['stopTime'], $array['elapsedTime'], $array['startNumber'], $array['stopNumber']
);
}
}
?>