2014-11-04 17:40:40 +00:00
|
|
|
<?php
|
|
|
|
|
/**
|
2014-11-19 19:58:40 +00:00
|
|
|
* Transaction profiling for contention
|
2014-11-04 17:40:40 +00:00
|
|
|
*
|
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
|
* (at your option) any later version.
|
|
|
|
|
*
|
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
|
*
|
|
|
|
|
* You should have received a copy of the GNU General Public License along
|
|
|
|
|
* with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
|
* http://www.gnu.org/copyleft/gpl.html
|
|
|
|
|
*
|
|
|
|
|
* @file
|
|
|
|
|
* @ingroup Profiler
|
|
|
|
|
*/
|
|
|
|
|
|
2017-01-26 17:42:38 +00:00
|
|
|
namespace Wikimedia\Rdbms;
|
|
|
|
|
|
2015-03-28 04:30:53 +00:00
|
|
|
use Psr\Log\LoggerInterface;
|
|
|
|
|
use Psr\Log\LoggerAwareInterface;
|
|
|
|
|
use Psr\Log\NullLogger;
|
2017-01-26 17:42:38 +00:00
|
|
|
use RuntimeException;
|
2015-04-26 18:26:49 +00:00
|
|
|
|
2014-11-04 17:40:40 +00:00
|
|
|
/**
|
|
|
|
|
* Helper class that detects high-contention DB queries via profiling calls
|
|
|
|
|
*
|
2016-09-26 22:40:07 +00:00
|
|
|
* This class is meant to work with an IDatabase object, which manages queries
|
2014-11-04 17:40:40 +00:00
|
|
|
*
|
|
|
|
|
* @since 1.24
|
|
|
|
|
*/
|
2015-03-28 04:30:53 +00:00
|
|
|
class TransactionProfiler implements LoggerAwareInterface {
|
2014-11-04 17:40:40 +00:00
|
|
|
/** @var float Seconds */
|
2014-11-05 19:03:20 +00:00
|
|
|
protected $dbLockThreshold = 3.0;
|
2014-11-19 19:58:40 +00:00
|
|
|
/** @var float Seconds */
|
2017-09-10 19:11:37 +00:00
|
|
|
protected $eventThreshold = 0.25;
|
2016-07-30 20:42:44 +00:00
|
|
|
/** @var bool */
|
|
|
|
|
protected $silenced = false;
|
2014-11-19 19:58:40 +00:00
|
|
|
|
|
|
|
|
/** @var array transaction ID => (write start time, list of DBs involved) */
|
2016-02-17 09:09:32 +00:00
|
|
|
protected $dbTrxHoldingLocks = [];
|
2014-11-19 19:58:40 +00:00
|
|
|
/** @var array transaction ID => list of (query name, start time, end time) */
|
2016-02-17 09:09:32 +00:00
|
|
|
protected $dbTrxMethodTimes = [];
|
2014-11-04 17:40:40 +00:00
|
|
|
|
2015-01-15 23:55:17 +00:00
|
|
|
/** @var array */
|
2016-02-17 09:09:32 +00:00
|
|
|
protected $hits = [
|
2015-01-15 23:55:17 +00:00
|
|
|
'writes' => 0,
|
|
|
|
|
'queries' => 0,
|
|
|
|
|
'conns' => 0,
|
|
|
|
|
'masterConns' => 0
|
2016-02-17 09:09:32 +00:00
|
|
|
];
|
2015-01-15 23:55:17 +00:00
|
|
|
/** @var array */
|
2016-02-17 09:09:32 +00:00
|
|
|
protected $expect = [
|
2015-04-26 18:26:49 +00:00
|
|
|
'writes' => INF,
|
|
|
|
|
'queries' => INF,
|
|
|
|
|
'conns' => INF,
|
|
|
|
|
'masterConns' => INF,
|
|
|
|
|
'maxAffected' => INF,
|
2018-07-02 11:19:23 +00:00
|
|
|
'readQueryRows' => INF,
|
2015-04-26 18:26:49 +00:00
|
|
|
'readQueryTime' => INF,
|
2015-05-08 00:12:09 +00:00
|
|
|
'writeQueryTime' => INF
|
2016-02-17 09:09:32 +00:00
|
|
|
];
|
2015-01-15 23:55:17 +00:00
|
|
|
/** @var array */
|
2016-02-17 09:09:32 +00:00
|
|
|
protected $expectBy = [];
|
2015-01-15 23:55:17 +00:00
|
|
|
|
2015-03-28 04:30:53 +00:00
|
|
|
/**
|
|
|
|
|
* @var LoggerInterface
|
|
|
|
|
*/
|
|
|
|
|
private $logger;
|
|
|
|
|
|
|
|
|
|
public function __construct() {
|
|
|
|
|
$this->setLogger( new NullLogger() );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function setLogger( LoggerInterface $logger ) {
|
|
|
|
|
$this->logger = $logger;
|
|
|
|
|
}
|
|
|
|
|
|
2016-07-30 20:42:44 +00:00
|
|
|
/**
|
2017-12-28 15:06:10 +00:00
|
|
|
* @param bool $value
|
2016-10-13 01:14:03 +00:00
|
|
|
* @return bool Old value
|
2016-07-30 20:42:44 +00:00
|
|
|
* @since 1.28
|
|
|
|
|
*/
|
|
|
|
|
public function setSilenced( $value ) {
|
2016-10-13 01:14:03 +00:00
|
|
|
$old = $this->silenced;
|
2016-07-30 20:42:44 +00:00
|
|
|
$this->silenced = $value;
|
2016-10-13 01:14:03 +00:00
|
|
|
|
|
|
|
|
return $old;
|
2016-07-30 20:42:44 +00:00
|
|
|
}
|
|
|
|
|
|
2015-01-15 23:55:17 +00:00
|
|
|
/**
|
|
|
|
|
* Set performance expectations
|
|
|
|
|
*
|
2015-04-26 18:26:49 +00:00
|
|
|
* With conflicting expectations, the most narrow ones will be used
|
2015-01-15 23:55:17 +00:00
|
|
|
*
|
|
|
|
|
* @param string $event (writes,queries,conns,mConns)
|
2017-08-20 11:20:59 +00:00
|
|
|
* @param int $value Maximum count of the event
|
2015-01-15 23:55:17 +00:00
|
|
|
* @param string $fname Caller
|
|
|
|
|
* @since 1.25
|
|
|
|
|
*/
|
|
|
|
|
public function setExpectation( $event, $value, $fname ) {
|
|
|
|
|
$this->expect[$event] = isset( $this->expect[$event] )
|
|
|
|
|
? min( $this->expect[$event], $value )
|
|
|
|
|
: $value;
|
|
|
|
|
if ( $this->expect[$event] == $value ) {
|
|
|
|
|
$this->expectBy[$event] = $fname;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2015-04-26 18:26:49 +00:00
|
|
|
/**
|
|
|
|
|
* Set multiple performance expectations
|
|
|
|
|
*
|
|
|
|
|
* With conflicting expectations, the most narrow ones will be used
|
|
|
|
|
*
|
|
|
|
|
* @param array $expects Map of (event => limit)
|
2017-08-11 15:46:31 +00:00
|
|
|
* @param string $fname
|
2015-04-26 18:26:49 +00:00
|
|
|
* @since 1.26
|
|
|
|
|
*/
|
|
|
|
|
public function setExpectations( array $expects, $fname ) {
|
|
|
|
|
foreach ( $expects as $event => $value ) {
|
|
|
|
|
$this->setExpectation( $event, $value, $fname );
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2015-01-15 23:55:17 +00:00
|
|
|
/**
|
|
|
|
|
* Reset performance expectations and hit counters
|
|
|
|
|
*
|
|
|
|
|
* @since 1.25
|
|
|
|
|
*/
|
|
|
|
|
public function resetExpectations() {
|
|
|
|
|
foreach ( $this->hits as &$val ) {
|
|
|
|
|
$val = 0;
|
|
|
|
|
}
|
|
|
|
|
unset( $val );
|
|
|
|
|
foreach ( $this->expect as &$val ) {
|
|
|
|
|
$val = INF;
|
|
|
|
|
}
|
|
|
|
|
unset( $val );
|
2016-02-17 09:09:32 +00:00
|
|
|
$this->expectBy = [];
|
2015-01-15 23:55:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Mark a DB as having been connected to with a new handle
|
|
|
|
|
*
|
|
|
|
|
* Note that there can be multiple connections to a single DB.
|
|
|
|
|
*
|
|
|
|
|
* @param string $server DB server
|
|
|
|
|
* @param string $db DB name
|
|
|
|
|
* @param bool $isMaster
|
|
|
|
|
*/
|
|
|
|
|
public function recordConnection( $server, $db, $isMaster ) {
|
|
|
|
|
// Report when too many connections happen...
|
2017-06-22 20:56:02 +00:00
|
|
|
if ( $this->hits['conns']++ >= $this->expect['conns'] ) {
|
|
|
|
|
$this->reportExpectationViolated(
|
|
|
|
|
'conns', "[connect to $server ($db)]", $this->hits['conns'] );
|
2015-01-15 23:55:17 +00:00
|
|
|
}
|
2017-06-22 20:56:02 +00:00
|
|
|
if ( $isMaster && $this->hits['masterConns']++ >= $this->expect['masterConns'] ) {
|
|
|
|
|
$this->reportExpectationViolated(
|
|
|
|
|
'masterConns', "[connect to $server ($db)]", $this->hits['masterConns'] );
|
2015-01-15 23:55:17 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2014-11-04 17:40:40 +00:00
|
|
|
/**
|
|
|
|
|
* Mark a DB as in a transaction with one or more writes pending
|
|
|
|
|
*
|
|
|
|
|
* Note that there can be multiple connections to a single DB.
|
|
|
|
|
*
|
|
|
|
|
* @param string $server DB server
|
|
|
|
|
* @param string $db DB name
|
|
|
|
|
* @param string $id ID string of transaction
|
|
|
|
|
*/
|
|
|
|
|
public function transactionWritingIn( $server, $db, $id ) {
|
|
|
|
|
$name = "{$server} ({$db}) (TRX#$id)";
|
2014-11-05 19:03:20 +00:00
|
|
|
if ( isset( $this->dbTrxHoldingLocks[$name] ) ) {
|
2018-01-31 22:33:28 +00:00
|
|
|
$this->logger->warning( "Nested transaction for '$name' - out of sync." );
|
2014-11-04 17:40:40 +00:00
|
|
|
}
|
2016-02-17 09:09:32 +00:00
|
|
|
$this->dbTrxHoldingLocks[$name] = [
|
2014-11-04 17:40:40 +00:00
|
|
|
'start' => microtime( true ),
|
2016-02-17 09:09:32 +00:00
|
|
|
'conns' => [], // all connections involved
|
|
|
|
|
];
|
|
|
|
|
$this->dbTrxMethodTimes[$name] = [];
|
2014-11-04 17:40:40 +00:00
|
|
|
|
2014-11-05 19:03:20 +00:00
|
|
|
foreach ( $this->dbTrxHoldingLocks as $name => &$info ) {
|
2014-11-04 17:40:40 +00:00
|
|
|
// Track all DBs in transactions for this transaction
|
|
|
|
|
$info['conns'][$name] = 1;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Register the name and time of a method for slow DB trx detection
|
|
|
|
|
*
|
2014-11-19 19:58:40 +00:00
|
|
|
* This assumes that all queries are synchronous (non-overlapping)
|
2014-11-04 17:40:40 +00:00
|
|
|
*
|
2015-01-15 20:53:27 +00:00
|
|
|
* @param string $query Function name or generalized SQL
|
2014-11-19 19:58:40 +00:00
|
|
|
* @param float $sTime Starting UNIX wall time
|
|
|
|
|
* @param bool $isWrite Whether this is a write query
|
2018-07-02 11:19:23 +00:00
|
|
|
* @param int $n Number of affected/read rows
|
2014-11-04 17:40:40 +00:00
|
|
|
*/
|
2015-01-15 20:53:27 +00:00
|
|
|
public function recordQueryCompletion( $query, $sTime, $isWrite = false, $n = 0 ) {
|
2014-11-19 19:58:40 +00:00
|
|
|
$eTime = microtime( true );
|
|
|
|
|
$elapsed = ( $eTime - $sTime );
|
|
|
|
|
|
2015-02-18 00:50:12 +00:00
|
|
|
if ( $isWrite && $n > $this->expect['maxAffected'] ) {
|
2018-01-31 22:33:28 +00:00
|
|
|
$this->logger->warning(
|
2016-09-14 12:18:57 +00:00
|
|
|
"Query affected $n row(s):\n" . $query . "\n" .
|
|
|
|
|
( new RuntimeException() )->getTraceAsString() );
|
2018-07-02 11:19:23 +00:00
|
|
|
} elseif ( !$isWrite && $n > $this->expect['readQueryRows'] ) {
|
|
|
|
|
$this->logger->warning(
|
|
|
|
|
"Query returned $n row(s):\n" . $query . "\n" .
|
|
|
|
|
( new RuntimeException() )->getTraceAsString() );
|
2015-01-15 20:53:27 +00:00
|
|
|
}
|
|
|
|
|
|
2015-01-15 23:55:17 +00:00
|
|
|
// Report when too many writes/queries happen...
|
2017-06-22 20:56:02 +00:00
|
|
|
if ( $this->hits['queries']++ >= $this->expect['queries'] ) {
|
|
|
|
|
$this->reportExpectationViolated( 'queries', $query, $this->hits['queries'] );
|
2015-01-15 23:55:17 +00:00
|
|
|
}
|
2017-06-22 20:56:02 +00:00
|
|
|
if ( $isWrite && $this->hits['writes']++ >= $this->expect['writes'] ) {
|
|
|
|
|
$this->reportExpectationViolated( 'writes', $query, $this->hits['writes'] );
|
2015-01-15 23:55:17 +00:00
|
|
|
}
|
2015-04-26 18:26:49 +00:00
|
|
|
// Report slow queries...
|
|
|
|
|
if ( !$isWrite && $elapsed > $this->expect['readQueryTime'] ) {
|
2015-10-22 06:30:23 +00:00
|
|
|
$this->reportExpectationViolated( 'readQueryTime', $query, $elapsed );
|
2015-04-26 18:26:49 +00:00
|
|
|
}
|
|
|
|
|
if ( $isWrite && $elapsed > $this->expect['writeQueryTime'] ) {
|
2015-10-22 06:30:23 +00:00
|
|
|
$this->reportExpectationViolated( 'writeQueryTime', $query, $elapsed );
|
2015-04-26 18:26:49 +00:00
|
|
|
}
|
2015-01-15 23:55:17 +00:00
|
|
|
|
2014-11-05 19:03:20 +00:00
|
|
|
if ( !$this->dbTrxHoldingLocks ) {
|
2014-11-04 17:40:40 +00:00
|
|
|
// Short-circuit
|
|
|
|
|
return;
|
2014-11-19 19:58:40 +00:00
|
|
|
} elseif ( !$isWrite && $elapsed < $this->eventThreshold ) {
|
|
|
|
|
// Not an important query nor slow enough
|
2014-11-04 17:40:40 +00:00
|
|
|
return;
|
|
|
|
|
}
|
2014-11-05 23:05:22 +00:00
|
|
|
|
2014-11-05 19:03:20 +00:00
|
|
|
foreach ( $this->dbTrxHoldingLocks as $name => $info ) {
|
2014-11-19 19:58:40 +00:00
|
|
|
$lastQuery = end( $this->dbTrxMethodTimes[$name] );
|
|
|
|
|
if ( $lastQuery ) {
|
|
|
|
|
// Additional query in the trx...
|
|
|
|
|
$lastEnd = $lastQuery[2];
|
|
|
|
|
if ( $sTime >= $lastEnd ) { // sanity check
|
|
|
|
|
if ( ( $sTime - $lastEnd ) > $this->eventThreshold ) {
|
|
|
|
|
// Add an entry representing the time spent doing non-queries
|
2016-02-17 09:09:32 +00:00
|
|
|
$this->dbTrxMethodTimes[$name][] = [ '...delay...', $lastEnd, $sTime ];
|
2014-11-19 19:58:40 +00:00
|
|
|
}
|
2016-02-17 09:09:32 +00:00
|
|
|
$this->dbTrxMethodTimes[$name][] = [ $query, $sTime, $eTime ];
|
2014-11-19 19:58:40 +00:00
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
// First query in the trx...
|
|
|
|
|
if ( $sTime >= $info['start'] ) { // sanity check
|
2016-02-17 09:09:32 +00:00
|
|
|
$this->dbTrxMethodTimes[$name][] = [ $query, $sTime, $eTime ];
|
2014-11-19 19:58:40 +00:00
|
|
|
}
|
2014-11-04 17:40:40 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Mark a DB as no longer in a transaction
|
|
|
|
|
*
|
|
|
|
|
* This will check if locks are possibly held for longer than
|
|
|
|
|
* needed and log any affected transactions to a special DB log.
|
|
|
|
|
* Note that there can be multiple connections to a single DB.
|
|
|
|
|
*
|
|
|
|
|
* @param string $server DB server
|
|
|
|
|
* @param string $db DB name
|
|
|
|
|
* @param string $id ID string of transaction
|
2015-05-08 00:12:09 +00:00
|
|
|
* @param float $writeTime Time spent in write queries
|
2017-08-20 11:20:59 +00:00
|
|
|
* @param int $affected Number of rows affected by writes
|
2014-11-04 17:40:40 +00:00
|
|
|
*/
|
2017-05-26 18:42:05 +00:00
|
|
|
public function transactionWritingOut( $server, $db, $id, $writeTime = 0.0, $affected = 0 ) {
|
2014-11-04 17:40:40 +00:00
|
|
|
$name = "{$server} ({$db}) (TRX#$id)";
|
2014-11-05 19:03:20 +00:00
|
|
|
if ( !isset( $this->dbTrxMethodTimes[$name] ) ) {
|
2018-01-31 22:33:28 +00:00
|
|
|
$this->logger->warning( "Detected no transaction for '$name' - out of sync." );
|
2014-11-04 17:40:40 +00:00
|
|
|
return;
|
|
|
|
|
}
|
2015-05-08 19:08:15 +00:00
|
|
|
|
|
|
|
|
$slow = false;
|
|
|
|
|
|
2015-05-08 00:12:09 +00:00
|
|
|
// Warn if too much time was spend writing...
|
|
|
|
|
if ( $writeTime > $this->expect['writeQueryTime'] ) {
|
2015-10-22 06:30:23 +00:00
|
|
|
$this->reportExpectationViolated(
|
|
|
|
|
'writeQueryTime',
|
|
|
|
|
"[transaction $id writes to {$server} ({$db})]",
|
|
|
|
|
$writeTime
|
|
|
|
|
);
|
2015-05-08 19:08:15 +00:00
|
|
|
$slow = true;
|
2015-05-08 00:12:09 +00:00
|
|
|
}
|
2017-05-26 18:42:05 +00:00
|
|
|
// Warn if too many rows were changed...
|
|
|
|
|
if ( $affected > $this->expect['maxAffected'] ) {
|
|
|
|
|
$this->reportExpectationViolated(
|
|
|
|
|
'maxAffected',
|
|
|
|
|
"[transaction $id writes to {$server} ({$db})]",
|
|
|
|
|
$affected
|
|
|
|
|
);
|
|
|
|
|
}
|
2014-11-19 19:58:40 +00:00
|
|
|
// Fill in the last non-query period...
|
|
|
|
|
$lastQuery = end( $this->dbTrxMethodTimes[$name] );
|
|
|
|
|
if ( $lastQuery ) {
|
|
|
|
|
$now = microtime( true );
|
|
|
|
|
$lastEnd = $lastQuery[2];
|
|
|
|
|
if ( ( $now - $lastEnd ) > $this->eventThreshold ) {
|
2016-02-17 09:09:32 +00:00
|
|
|
$this->dbTrxMethodTimes[$name][] = [ '...delay...', $lastEnd, $now ];
|
2014-11-19 19:58:40 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
// Check for any slow queries or non-query periods...
|
2014-11-05 19:03:20 +00:00
|
|
|
foreach ( $this->dbTrxMethodTimes[$name] as $info ) {
|
2014-11-19 19:58:40 +00:00
|
|
|
$elapsed = ( $info[2] - $info[1] );
|
|
|
|
|
if ( $elapsed >= $this->dbLockThreshold ) {
|
2014-11-04 17:40:40 +00:00
|
|
|
$slow = true;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if ( $slow ) {
|
2016-10-05 19:30:18 +00:00
|
|
|
$trace = '';
|
2014-11-05 19:03:20 +00:00
|
|
|
foreach ( $this->dbTrxMethodTimes[$name] as $i => $info ) {
|
2014-11-19 19:58:40 +00:00
|
|
|
list( $query, $sTime, $end ) = $info;
|
2016-10-05 19:30:18 +00:00
|
|
|
$trace .= sprintf( "%d\t%.6f\t%s\n", $i, ( $end - $sTime ), $query );
|
2014-11-04 17:40:40 +00:00
|
|
|
}
|
2018-01-31 22:33:28 +00:00
|
|
|
$this->logger->warning( "Sub-optimal transaction on DB(s) [{dbs}]: \n{trace}", [
|
2016-10-05 19:30:18 +00:00
|
|
|
'dbs' => implode( ', ', array_keys( $this->dbTrxHoldingLocks[$name]['conns'] ) ),
|
|
|
|
|
'trace' => $trace
|
|
|
|
|
] );
|
2014-11-04 17:40:40 +00:00
|
|
|
}
|
2014-11-05 19:03:20 +00:00
|
|
|
unset( $this->dbTrxHoldingLocks[$name] );
|
|
|
|
|
unset( $this->dbTrxMethodTimes[$name] );
|
2014-11-04 17:40:40 +00:00
|
|
|
}
|
2015-01-15 23:55:17 +00:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @param string $expect
|
|
|
|
|
* @param string $query
|
2017-06-22 21:08:05 +00:00
|
|
|
* @param string|float|int $actual
|
2015-01-15 23:55:17 +00:00
|
|
|
*/
|
2017-06-22 21:08:05 +00:00
|
|
|
protected function reportExpectationViolated( $expect, $query, $actual ) {
|
2016-07-30 20:42:44 +00:00
|
|
|
if ( $this->silenced ) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2018-01-31 22:33:28 +00:00
|
|
|
$this->logger->warning(
|
2017-06-22 21:08:05 +00:00
|
|
|
"Expectation ({measure} <= {max}) by {by} not met (actual: {actual}):\n{query}\n" .
|
|
|
|
|
( new RuntimeException() )->getTraceAsString(),
|
|
|
|
|
[
|
|
|
|
|
'measure' => $expect,
|
|
|
|
|
'max' => $this->expect[$expect],
|
|
|
|
|
'by' => $this->expectBy[$expect],
|
|
|
|
|
'actual' => $actual,
|
|
|
|
|
'query' => $query
|
|
|
|
|
]
|
2015-03-28 04:30:53 +00:00
|
|
|
);
|
2015-01-15 23:55:17 +00:00
|
|
|
}
|
2014-11-04 17:40:40 +00:00
|
|
|
}
|