2014-10-03 03:35:07 +04:00
|
|
|
<?php
|
|
|
|
/**
|
2016-07-21 18:07:57 +03:00
|
|
|
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
|
|
|
*
|
2017-11-06 17:56:42 +03:00
|
|
|
* @author Lukas Reschke <lukas@statuscode.ch>
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Morris Jobke <hey@morrisjobke.de>
|
2017-11-06 17:56:42 +03:00
|
|
|
* @author Piotr Mrówczyński <mrow4a@yahoo.com>
|
2016-07-21 19:13:36 +03:00
|
|
|
* @author Robin Appelman <robin@icewind.nl>
|
2015-03-26 13:44:34 +03:00
|
|
|
*
|
|
|
|
* @license AGPL-3.0
|
|
|
|
*
|
|
|
|
* This code is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License, version 3,
|
|
|
|
* as published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* 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 Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License, version 3,
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>
|
|
|
|
*
|
2014-10-03 03:35:07 +04:00
|
|
|
*/
|
2015-02-26 13:37:37 +03:00
|
|
|
|
2014-10-03 22:39:09 +04:00
|
|
|
namespace OCP\Diagnostics;
|
2014-10-03 03:35:07 +04:00
|
|
|
|
|
|
|
use Doctrine\DBAL\Logging\SQLLogger;
|
|
|
|
|
2015-04-16 18:00:08 +03:00
|
|
|
/**
|
|
|
|
* Interface IQueryLogger
|
|
|
|
*
|
|
|
|
* @package OCP\Diagnostics
|
|
|
|
* @since 8.0.0
|
|
|
|
*/
|
2014-10-03 03:35:07 +04:00
|
|
|
interface IQueryLogger extends SQLLogger {
|
|
|
|
/**
|
2017-04-20 12:31:00 +03:00
|
|
|
* Mark the start of a query providing query SQL statement, its parameters and types.
|
|
|
|
* This method should be called as close to the DB as possible and after
|
|
|
|
* query is finished finalized with stopQuery() method.
|
|
|
|
*
|
2014-10-03 03:35:07 +04:00
|
|
|
* @param string $sql
|
2017-07-19 20:44:10 +03:00
|
|
|
* @param array|null $params
|
|
|
|
* @param array|null $types
|
2015-04-16 18:00:08 +03:00
|
|
|
* @since 8.0.0
|
2014-10-03 03:35:07 +04:00
|
|
|
*/
|
|
|
|
public function startQuery($sql, array $params = null, array $types = null);
|
|
|
|
|
2015-04-16 18:00:08 +03:00
|
|
|
/**
|
2017-04-20 12:31:00 +03:00
|
|
|
* Mark the end of the current active query. Ending query should store \OCP\Diagnostics\IQuery to
|
|
|
|
* be returned with getQueries() method.
|
|
|
|
*
|
2015-04-16 18:00:08 +03:00
|
|
|
* @return mixed
|
|
|
|
* @since 8.0.0
|
|
|
|
*/
|
2014-10-03 03:35:07 +04:00
|
|
|
public function stopQuery();
|
|
|
|
|
|
|
|
/**
|
2017-04-20 12:31:00 +03:00
|
|
|
* This method should return all \OCP\Diagnostics\IQuery objects stored using
|
|
|
|
* startQuery()/stopQuery() methods.
|
|
|
|
*
|
2014-10-03 22:39:09 +04:00
|
|
|
* @return \OCP\Diagnostics\IQuery[]
|
2015-04-16 18:00:08 +03:00
|
|
|
* @since 8.0.0
|
2014-10-03 03:35:07 +04:00
|
|
|
*/
|
|
|
|
public function getQueries();
|
2017-04-20 12:31:00 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Activate the module for the duration of the request. Deactivated module
|
|
|
|
* does not create and store \OCP\Diagnostics\IQuery objects.
|
|
|
|
* Only activated module should create and store objects to be
|
|
|
|
* returned with getQueries() call.
|
|
|
|
*
|
|
|
|
* @since 12.0.0
|
|
|
|
*/
|
|
|
|
public function activate();
|
2014-10-03 03:35:07 +04:00
|
|
|
}
|