8
0
Bifurcation 0

Comparer les révisions

...

18 Révisions
1.0.0 ... 1.1.0

Auteur SHA1 Message Date
Daniel Seifert 3daecc030a remove unused files 2019-09-21 13:21:11 +02:00
Daniel Seifert 5b9328fd73 Merge branch 'dev_impovedFormat' 2019-09-21 13:13:59 +02:00
Daniel Seifert d21a3f892d allow newlines in cli output, add FirePHP handler to browser console log 2019-09-20 22:30:27 +02:00
Daniel Seifert bd16bf36cd adjust documentation 2019-09-20 16:05:36 +02:00
Daniel Seifert 7705abd09e autogenerate log position informations,
does not need log positions parameters anymore when called
2019-09-20 10:40:01 +02:00
Daniel Seifert 90c055d1cb prevent own method log traces 2019-09-20 10:37:44 +02:00
Daniel Seifert 6079ae7cf6 add fallback in case of not set headline 2019-09-19 20:04:25 +02:00
Daniel Seifert d8c60ce2c2 change namespace 2019-09-19 19:52:54 +02:00
Daniel Seifert ceee2ca96c change composer.json in dev branch 2019-09-19 17:13:13 +02:00
Daniel Seifert e9310cda53 change composer.json in master branch 2019-09-19 17:11:07 +02:00
Daniel Seifert 156429f7ea add headline and information about calling script, add logger getter 2019-09-19 16:03:06 +02:00
Tobias Matthaiou 35270ae271 Version 1.0.0 2019-08-21 08:20:36 +02:00
Tobias Matthaiou 8f633a1ed8 Update README.md 2019-08-21 08:15:58 +02:00
Tobias Matthaiou fe46283d43 Log output now in color on the shell console 2019-08-21 08:08:09 +02:00
Tobias Matthaiou a8eeb4d4e4 Update README.md 2019-08-21 00:43:33 +02:00
Tobias Matthaiou cb35b27522 Documentaion written more detailed 2019-08-21 00:36:20 +02:00
Tobias Matthaiou 1d627808d0 Initial commit 2019-08-20 23:35:53 +02:00
Tobias Matthaiou 06b33cd4d5 Initial commit 2019-08-20 23:33:18 +02:00
12 fichiers modifiés avec 119 ajouts et 39 suppressions

Voir le fichier

@ -6,8 +6,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased] ## [Unreleased]
## [1.1.0] - 2019-09-20
### Added
- add log message
- add position specifications of the calling source code
## [1.0.0] - 2019-07-21 ## [1.0.0] - 2019-07-21
available in tumtum/oxid-sql-logger package only
### Added ### Added
- Global function `StartSQLLog` and `StopSQLLog` - Global function `StartSQLLog` and `StopSQLLog`

Voir le fichier

@ -5,19 +5,19 @@ Returns all SQL queries into console of a Browser.
## Install ## Install
`composer require --dev tumtum/oxid-sql-logger` `composer require --dev d3/oxid-sql-logger`
## Usage ## Usage
Just set the function `StartSQLLog()` somewhere and from that point on all SQLs will be logged. Just set the function `D3StartSQLLog()` somewhere and from that point on all SQLs will be logged.
```php ```php
\StartSQLLog(); \D3StartSQLLog('specific log message');
$db = \OxidEsales\Eshop\Core\DatabaseProvider::getDb(\OxidEsales\Eshop\Core\DatabaseProvider::FETCH_MODE_ASSOC); $db = \OxidEsales\Eshop\Core\DatabaseProvider::getDb(\OxidEsales\Eshop\Core\DatabaseProvider::FETCH_MODE_ASSOC);
$list = $db->getAll('SELECT * FROM oxarticles WHERE oxprice < ? LIMIT 100', [49.99]); $list = $db->getAll('SELECT * FROM oxarticles WHERE oxprice < ? LIMIT 100', [49.99]);
\StopSQLLog(); \D3StopSQLLog();
``` ```
## Screenshots ## Screenshots
@ -25,9 +25,8 @@ $list = $db->getAll('SELECT * FROM oxarticles WHERE oxprice < ? LIMIT 100', [49.
Browser: Browser:
![Example all sqls](https://raw.githubusercontent.com/TumTum/oxid-sql-logger/master/img/screenshot-a.jpg) ![Example all sqls](https://raw.githubusercontent.com/TumTum/oxid-sql-logger/master/img/screenshot-a.jpg)
![Example only one range](https://raw.githubusercontent.com/TumTum/oxid-sql-logger/master/img/screenshot-b.png)
CLI: CLI:
![Example CLI](https://raw.githubusercontent.com/TumTum/oxid-sql-logger/master/img/screenshot-cli.png) ![Example CLI](https://raw.githubusercontent.com/TumTum/oxid-sql-logger/master/img/screenshot-cli.jpg)

Voir le fichier

@ -1,5 +1,5 @@
{ {
"name": "tumtum/oxid-sql-logger", "name": "d3/oxid-sql-logger",
"description": "Returns all SQL queries in the browser.", "description": "Returns all SQL queries in the browser.",
"type": "library", "type": "library",
"require": { "require": {
@ -8,7 +8,7 @@
"license": "GPL-3.0", "license": "GPL-3.0",
"autoload": { "autoload": {
"psr-4": { "psr-4": {
"tm\\oxid\\sql\\logger\\": "./src" "D3\\OxidSqlLogger\\": "./src"
}, },
"files": [ "files": [
"./src/functions.php" "./src/functions.php"
@ -18,6 +18,11 @@
{ {
"name": "Tobias Matthaiou", "name": "Tobias Matthaiou",
"email": "developer@tobimat.eu" "email": "developer@tobimat.eu"
},
{
"name": "D3 Data Development (Inh. Thomas Dartsch)",
"email": "info@shopmodule.com",
"homepage": "http://www.d3data.de"
} }
] ]
} }

Voir le fichier

@ -2,9 +2,18 @@
require __DIR__ . '/../../../../source/bootstrap.php'; require __DIR__ . '/../../../../source/bootstrap.php';
\StartSQLLog(); \D3StartSQLLog('Query for 100 items cheaper than 49,99');
$db = \OxidEsales\Eshop\Core\DatabaseProvider::getDb(\OxidEsales\Eshop\Core\DatabaseProvider::FETCH_MODE_ASSOC);
$list = $db->getAll('SELECT * '.PHP_EOL.'FROM oxarticles WHERE oxprice < ? LIMIT 100', [49.99]);
\D3StopSQLLog();
// or
\D3StartSQLLog();
$db = \OxidEsales\Eshop\Core\DatabaseProvider::getDb(\OxidEsales\Eshop\Core\DatabaseProvider::FETCH_MODE_ASSOC); $db = \OxidEsales\Eshop\Core\DatabaseProvider::getDb(\OxidEsales\Eshop\Core\DatabaseProvider::FETCH_MODE_ASSOC);
$list = $db->getAll('SELECT * FROM oxarticles WHERE oxprice < ? LIMIT 100', [49.99]); $list = $db->getAll('SELECT * FROM oxarticles WHERE oxprice < ? LIMIT 100', [49.99]);
\StopSQLLog(); \D3StopSQLLog();

Fichier binaire non affiché.

Avant

Largeur:  |  Hauteur:  |  Taille: 824 KiB

Après

Largeur:  |  Hauteur:  |  Taille: 166 KiB

Fichier binaire non affiché.

Avant

Largeur:  |  Hauteur:  |  Taille: 754 KiB

BIN
img/screenshot-cli.jpg Fichier normal

Fichier binaire non affiché.

Après

Largeur:  |  Hauteur:  |  Taille: 55 KiB

Fichier binaire non affiché.

Avant

Largeur:  |  Hauteur:  |  Taille: 50 KiB

Voir le fichier

@ -1,17 +1,17 @@
<?php <?php
/** /**
* Autor: Tobias Matthaiou <developer@tobimat.eu> * @author Tobias Matthaiou <developer@tobimat.eu>
* Date: 2019-08-21 * @author D3 Data Development - Daniel Seifert <support@shopmodule.com>
* Time: 07:50
*/ */
namespace tm\oxid\sql\logger;
namespace D3\OxidSqlLogger;
use Monolog; use Monolog;
use Symfony\Component\Console\Formatter\OutputFormatterStyle; use Symfony\Component\Console\Formatter\OutputFormatterStyle;
/** /**
* Class Factory * Class Factory
* @package tm\oxid\sql\logger
*/ */
class LoggerFactory class LoggerFactory
{ {
@ -34,6 +34,7 @@ class LoggerFactory
$handlers[] = $this->getStreamHandler(); $handlers[] = $this->getStreamHandler();
} else { } else {
$handlers[] = $this->getBrowserConsoleHandler(); $handlers[] = $this->getBrowserConsoleHandler();
$handlers[] = $this->getFirePHPHandler();
} }
return $handlers; return $handlers;
} }
@ -53,7 +54,14 @@ class LoggerFactory
$ttl_color = "$channel $level_name: $message {$newline} $context {$newline} %extra%" . PHP_EOL; $ttl_color = "$channel $level_name: $message {$newline} $context {$newline} %extra%" . PHP_EOL;
$streamHandler->setFormatter(new Monolog\Formatter\LineFormatter($ttl_color)); $streamHandler->setFormatter(
new Monolog\Formatter\LineFormatter(
$ttl_color,
null,
true,
true
)
);
return $streamHandler; return $streamHandler;
} }
@ -66,13 +74,21 @@ class LoggerFactory
return new Monolog\Handler\BrowserConsoleHandler(); return new Monolog\Handler\BrowserConsoleHandler();
} }
/**
* @return Monolog\Handler\FirePHPHandler
*/
private function getFirePHPHandler()
{
return new Monolog\Handler\FirePHPHandler();
}
/** /**
* @return array * @return array
*/ */
private function getProcessors() private function getProcessors()
{ {
return [ return [
new Monolog\Processor\IntrospectionProcessor(Monolog\Logger::DEBUG, ['tm\\oxid\\sql\\logger', 'Doctrine\\DBAL\\Connection', 'OxidEsales\\EshopCommunity\\Core\\Database\\Adapter\\Doctrine\\Database']), new Monolog\Processor\IntrospectionProcessor(Monolog\Logger::DEBUG, ['D3\\OxidSqlLogger', 'Doctrine\\DBAL\\Connection', 'OxidEsales\\EshopCommunity\\Core\\Database\\Adapter\\Doctrine\\Database']),
new Monolog\Processor\PsrLogMessageProcessor(), new Monolog\Processor\PsrLogMessageProcessor(),
]; ];
} }

Voir le fichier

@ -1,27 +1,46 @@
<?php <?php
/** /**
* Autor: Tobias Matthaiou <developer@tobimat.eu> * @author Tobias Matthaiou <developer@tobimat.eu>
* Date: 2019-08-20 * @author D3 Data Development - Daniel Seifert <support@shopmodule.com>
* Time: 21:56
*/ */
namespace tm\oxid\sql\logger; namespace D3\OxidSqlLogger;
use Doctrine\DBAL\Configuration; use Doctrine\DBAL\Configuration;
/** /**
* Class OxidEsalesDatabase * Class OxidEsalesDatabase
* Is a depenction injection Helper Class * Is a depenction injection Helper Class
*
* @package tm\oxid\sql\logger
*/ */
class OxidEsalesDatabase extends \OxidEsales\Eshop\Core\Database\Adapter\Doctrine\Database class OxidEsalesDatabase extends \OxidEsales\Eshop\Core\Database\Adapter\Doctrine\Database
{ {
public static function enableLogger() public static function enableLogger($message = null)
{
$trace = debug_backtrace((PHP_VERSION_ID < 50306) ? 2 : DEBUG_BACKTRACE_IGNORE_ARGS);
$database = \OxidEsales\Eshop\Core\DatabaseProvider::getDb(\OxidEsales\Eshop\Core\DatabaseProvider::FETCH_MODE_ASSOC);
$dbalConfig = $database->getConnection()->getConfiguration();
$dbalConfig->setSQLLogger(
new OxidSQLLogger(
isset($trace[1]['file']) ? $trace[1]['file'] : null,
isset($trace[1]['line']) ? $trace[1]['line'] : null,
isset($trace[2]['class']) ? $trace[2]['class'] : null,
isset($trace[2]['function']) ? $trace[2]['function'] : null,
$message
)
);
}
/**
* @return OxidSQLLogger
* @throws \OxidEsales\Eshop\Core\Exception\DatabaseConnectionException
*/
public static function getLogger()
{ {
$database = \OxidEsales\Eshop\Core\DatabaseProvider::getDb(\OxidEsales\Eshop\Core\DatabaseProvider::FETCH_MODE_ASSOC); $database = \OxidEsales\Eshop\Core\DatabaseProvider::getDb(\OxidEsales\Eshop\Core\DatabaseProvider::FETCH_MODE_ASSOC);
$dbalConfig = $database->getConnection()->getConfiguration(); $dbalConfig = $database->getConnection()->getConfiguration();
$dbalConfig->setSQLLogger(new OxidSQLLogger()); return $dbalConfig->getSQLLogger();
} }
public static function disableLogger() public static function disableLogger()

Voir le fichier

@ -1,29 +1,40 @@
<?php <?php
/** /**
* Autor: Tobias Matthaiou <developer@tobimat.eu> * @author Tobias Matthaiou <developer@tobimat.eu>
* Date: 2019-08-20 * @author D3 Data Development - Daniel Seifert <support@shopmodule.com>
* Time: 21:33
*/ */
namespace tm\oxid\sql\logger; namespace D3\OxidSqlLogger;
use Doctrine\DBAL\Logging\SQLLogger; use Doctrine\DBAL\Logging\SQLLogger;
use Monolog; use Monolog;
/** /**
* Class OxidSQLLogger * Class OxidSQLLogger
* @package tm\oxid\sql\logger
*/ */
class OxidSQLLogger implements SQLLogger class OxidSQLLogger implements SQLLogger
{ {
public $message;
public $logStartingFile;
public $logStartingLine;
public $logStartingClass;
public $logStartingFunction;
/** /**
* @inheritDoc * @inheritDoc
*/ */
public function __construct() public function __construct($file, $line, $class, $function, $message = null)
{ {
if (!Monolog\Registry::hasLogger('sql')) { if (!Monolog\Registry::hasLogger('sql')) {
Monolog\Registry::addLogger((new LoggerFactory())->create('sql')); Monolog\Registry::addLogger((new LoggerFactory())->create('sql'));
} }
$this->message = $message;
$this->logStartingFile = $file;
$this->logStartingLine = $line;
$this->logStartingClass = $class;
$this->logStartingFunction = $function;
} }
/** /**
@ -31,7 +42,19 @@ class OxidSQLLogger implements SQLLogger
*/ */
public function startQuery($sql, array $params = null, array $types = null) public function startQuery($sql, array $params = null, array $types = null)
{ {
Monolog\Registry::sql()->addDebug($sql, ['params' => $params, 'types' => $types]); Monolog\Registry::sql()->addDebug(
$this->message ? $this->message : $sql,
[
'query' => $sql,
'params' => $params,
'types' => $types,
'logStartingFile' => $this->logStartingFile,
'logStartingLine' => $this->logStartingLine,
'logStartingClass' => $this->logStartingClass,
'logStartingFunction' => $this->logStartingFunction,
]
);
} }
/** /**

Voir le fichier

@ -1,14 +1,14 @@
<?php <?php
/** /**
* Autor: Tobias Matthaiou <developer@tobimat.eu> * @author Tobias Matthaiou <developer@tobimat.eu>
* Date: 2019-08-20 * @author D3 Data Development - Daniel Seifert <support@shopmodule.com>
* Time: 23:11
*/ */
function StartSQLLog() { function D3StartSQLLog($message = null) {
\tm\oxid\sql\logger\OxidEsalesDatabase::enableLogger(); \D3\OxidSqlLogger\OxidEsalesDatabase::enableLogger($message);
} }
function StopSQLLog() { function D3StopSQLLog() {
\tm\oxid\sql\logger\OxidEsalesDatabase::disableLogger(); \D3\OxidSqlLogger\OxidEsalesDatabase::disableLogger();
} }