diff --git a/TODO.txt b/TODO.txt index c43d0dd..1ea9604 100644 --- a/TODO.txt +++ b/TODO.txt @@ -1,2 +1,4 @@ ajax loading while running code -snipt.net or similar integration \ No newline at end of file +snipt.net or similar integration +unit testing framework implementation +php code coverage \ No newline at end of file diff --git a/css/style.css b/css/style.css index a2b5386..33b1ed5 100644 --- a/css/style.css +++ b/css/style.css @@ -86,7 +86,7 @@ h1 { } #code{ - width:85%; + width:84%; height:450px; -moz-box-shadow: 0 5px 10px #AAAAAA; -webkit-box-shadow: 0 5px 10px #AAAAAA; diff --git a/includes/classes/PE/timer.php b/includes/classes/PE/timer.php new file mode 100644 index 0000000..0cf0bfd --- /dev/null +++ b/includes/classes/PE/timer.php @@ -0,0 +1,48 @@ +start_time = $this->getmicrotime(); + } + + function stop() + { + $this->end_time = $this->getmicrotime(); + } + + function result() + { + if (is_null($this->start_time)) + { + exit('Timer: start method not called !'); + return false; + } + else if (is_null($this->end_time)) + { + exit('Timer: stop method not called !'); + return false; + } + + return round(($this->end_time - $this->start_time), 4); + } + + # an alias of result function + function time() + { + $this->result(); + } + + } + +?> \ No newline at end of file diff --git a/includes/classes/User/EnhanceTestFramework/EnhanceTestFramework.php b/includes/classes/User/EnhanceTestFramework/EnhanceTestFramework.php new file mode 100644 index 0000000..bf0ee50 --- /dev/null +++ b/includes/classes/User/EnhanceTestFramework/EnhanceTestFramework.php @@ -0,0 +1,1620 @@ +discoverTests($path, $isRecursive, $excludeRules); + } + + public static function runTests($output = TemplateType::Html) + { + self::setInstance(); + self::$Instance->runTests($output); + } + + public static function getCodeCoverageWrapper($className, $args = null) + { + self::setInstance(); + self::$Instance->registerForCodeCoverage($className); + return new CodeCoverageWrapper($className, $args); + } + + public static function log($className, $methodName) + { + self::setInstance(); + self::$Instance->log($className, $methodName); + } + + public static function getScenario($className, $args = null) + { + return new Scenario($className, $args, self::$Language); + } + + public static function setInstance() + { + if (self::$Instance === null) { + self::$Instance = new EnhanceTestFramework(self::$Language); + } + } +} + +// Public API +class TestFixture +{ + +} + +// Public API +class MockFactory +{ + public static function createMock($typeName) + { + return new Mock($typeName, true, Core::getLanguage()); + } +} + +// Public API +class StubFactory +{ + public static function createStub($typeName) + { + return new Mock($typeName, false, Core::getLanguage()); + } +} + +// Public API +class Expect +{ + const AnyValue = 'ENHANCE_ANY_VALUE_WILL_DO'; + + public static function method($methodName) + { + $expectation = new Expectation(Core::getLanguage()); + return $expectation->method($methodName); + } + + public static function getProperty($propertyName) + { + $expectation = new Expectation(Core::getLanguage()); + return $expectation->getProperty($propertyName); + } + + public static function setProperty($propertyName) + { + $expectation = new Expectation(Core::getLanguage()); + return $expectation->setProperty($propertyName); + } +} + +// Public API +class Assert +{ + /** @var Assertions $EnhanceAssertions */ + private static $EnhanceAssertions; + + private static function GetEnhanceAssertionsInstance() + { + if(self::$EnhanceAssertions === null) { + self::$EnhanceAssertions = new Assertions(Core::getLanguage()); + } + return self::$EnhanceAssertions; + } + + public static function areIdentical($expected, $actual) + { + self::GetEnhanceAssertionsInstance()->areIdentical($expected, $actual); + } + + public static function areNotIdentical($expected, $actual) + { + self::GetEnhanceAssertionsInstance()->areNotIdentical($expected, $actual); + } + + public static function isTrue($actual) + { + self::GetEnhanceAssertionsInstance()->isTrue($actual); + } + + public static function isFalse($actual) + { + self::GetEnhanceAssertionsInstance()->isFalse($actual); + } + + public static function isNull($actual) + { + self::GetEnhanceAssertionsInstance()->isNull($actual); + } + + public static function isNotNull($actual) + { + self::GetEnhanceAssertionsInstance()->isNotNull($actual); + } + + public static function isArray($actual) + { + self::GetEnhanceAssertionsInstance()->isArray($actual); + } + + public static function isNotArray($actual) + { + self::GetEnhanceAssertionsInstance()->isNotArray($actual); + } + + public static function isBool($actual) + { + self::GetEnhanceAssertionsInstance()->isBool($actual); + } + + public static function isNotBool($actual) + { + self::GetEnhanceAssertionsInstance()->isNotBool($actual); + } + + public static function isFloat($actual) + { + self::GetEnhanceAssertionsInstance()->isFloat($actual); + } + + public static function isNotFloat($actual) + { + self::GetEnhanceAssertionsInstance()->isNotFloat($actual); + } + + public static function isInt($actual) + { + self::GetEnhanceAssertionsInstance()->isInt($actual); + } + + public static function isNotInt($actual) + { + self::GetEnhanceAssertionsInstance()->isNotInt($actual); + } + + public static function isNumeric($actual) + { + self::GetEnhanceAssertionsInstance()->isNumeric($actual); + } + + public static function isNotNumeric($actual) + { + self::GetEnhanceAssertionsInstance()->isNotNumeric($actual); + } + + public static function isObject($actual) + { + self::GetEnhanceAssertionsInstance()->isObject($actual); + } + + public static function isNotObject($actual) + { + self::GetEnhanceAssertionsInstance()->isNotObject($actual); + } + + public static function isResource($actual) + { + self::GetEnhanceAssertionsInstance()->isResource($actual); + } + + public static function isNotResource($actual) + { + self::GetEnhanceAssertionsInstance()->isNotResource($actual); + } + + public static function isScalar($actual) + { + self::GetEnhanceAssertionsInstance()->isScalar($actual); + } + + public static function isNotScalar($actual) + { + self::GetEnhanceAssertionsInstance()->isNotScalar($actual); + } + + public static function isString($actual) + { + self::GetEnhanceAssertionsInstance()->isString($actual); + } + + public static function isNotString($actual) + { + self::GetEnhanceAssertionsInstance()->isNotString($actual); + } + + public static function contains($expected, $actual) + { + self::GetEnhanceAssertionsInstance()->contains($expected, $actual); + } + + public static function notContains($expected, $actual) + { + self::GetEnhanceAssertionsInstance()->notContains($expected, $actual); + } + + public static function fail() + { + self::GetEnhanceAssertionsInstance()->fail(); + } + + public static function inconclusive() + { + self::GetEnhanceAssertionsInstance()->inconclusive(); + } + + public static function isInstanceOfType($expected, $actual) + { + self::GetEnhanceAssertionsInstance()->isInstanceOfType($expected, $actual); + } + + public static function isNotInstanceOfType($expected, $actual) + { + self::GetEnhanceAssertionsInstance()->isNotInstanceOfType($expected, $actual); + } + + public static function throws($class, $methodName, $args = null) + { + self::GetEnhanceAssertionsInstance()->throws($class, $methodName, $args); + } +} + +// Internal Workings +// You don't need to call any of these bits directly - use the public API above, which will +// use the stuff below to carry out your tests! + +class TextFactory +{ + public static $Text; + + public static function getLanguageText($language) + { + if (self::$Text === null) { + $languageClass = 'Enhance\Text' . $language; + self::$Text = new $languageClass(); + } + return self::$Text; + } +} + +class TextEn +{ + public $FormatForTestRunTook = 'Test run took {0} seconds'; + public $FormatForExpectedButWas = 'Expected {0} but was {1}'; + public $FormatForExpectedNotButWas = 'Expected NOT {0} but was {1}'; + public $FormatForExpectedContainsButWas = 'Expected to contain {0} but was {1}'; + public $FormatForExpectedNotContainsButWas = 'Expected NOT to contain {0} but was {1}'; + public $EnhanceTestFramework = 'Enhance Test Framework'; + public $EnhanceTestFrameworkFull = 'Enhance PHP Unit Testing Framework'; + public $TestResults = 'Test Results'; + public $Test = 'Test'; + public $TestPassed = 'Test Passed'; + public $TestFailed = 'Test Failed'; + public $Passed = 'Passed'; + public $Failed = 'Failed'; + public $ExpectationFailed = 'Expectation failed'; + public $Expected = 'Expected'; + public $Called = 'Called'; + public $InconclusiveOrNotImplemented = 'Inconclusive or not implemented'; + public $Times = 'Times'; + public $MethodCoverage = 'Method Coverage'; + public $Copyright = 'Copyright'; + public $ExpectedExceptionNotThrown = 'Expected exception was not thrown'; + public $CannotCallVerifyOnStub = 'Cannot call VerifyExpectations on a stub'; + public $ReturnsOrThrowsNotBoth = 'You must only set a single return value (1 returns() or 1 throws())'; + public $ScenarioWithExpectMismatch = 'Scenario must be initialised with the same number of "with" and "expect" calls'; + public $LineFile = 'Line {0} in file {1}'; +} + +class TextDe +{ + public $FormatForTestRunTook = 'Fertig nach {0} Sekunden'; + public $FormatForExpectedButWas = 'Erwartet {0} aber war {1}'; + public $FormatForExpectedNotButWas = 'Erwartet nicht {0} aber war {1}'; + public $FormatForExpectedContainsButWas = 'Erwartet {0} zu enthalten, aber war {1}'; + public $FormatForExpectedNotContainsButWas = 'Erwartet {0} nicht zu enthalten, aber war {1}'; + public $EnhanceTestFramework = 'Enhance Test-Rahmen'; + public $EnhanceTestFrameworkFull = 'Maßeinheits-Prüfungs-Rahmen'; + public $TestResults = 'Testergebnisse'; + public $Test = 'Test'; + public $TestPassed = 'Test bestehen'; + public $TestFailed = 'Test durchfallen'; + public $Passed = 'Bestehen'; + public $Failed = 'Durchfallen'; + public $ExpectationFailed = 'Erwartung durchfallen'; + public $Expected = 'Erwartet'; + public $Called = 'Benannt'; + public $InconclusiveOrNotImplemented = 'Unbestimmt oder nicht durchgefuert'; + public $Times = 'Ereignisse'; + public $MethodCoverage = 'Methodenbehandlung'; + public $Copyright = 'Copyright'; + public $ExpectedExceptionNotThrown = 'Die Ausnahme wird nicht ausgeloest'; + public $CannotCallVerifyOnStub = 'Kann VerifyExpectations auf einem Stub nicht aufrufen'; + public $ReturnsOrThrowsNotBoth = 'Sie müssen einen einzelnen Return Value nur einstellen'; + public $ScenarioWithExpectMismatch = 'Szenarium muss mit der gleichen Zahl von "With" und "Expect" calls initialisiert werden'; + public $LineFile = 'Zeile {0} der Datei {1}'; +} + +class EnhanceTestFramework +{ + private $FileSystem; + private $Text; + private $Tests = array(); + private $Results = array(); + private $Errors = array(); + private $Duration; + private $MethodCalls = array(); + private $Language; + + public function __construct($language) + { + $this->Text = TextFactory::getLanguageText($language); + $this->FileSystem = new FileSystem(); + $this->Language = $language; + } + + public function discoverTests($path, $isRecursive, $excludeRules) + { + $directory = rtrim($path, '/'); + if (is_dir($directory)) { + $phpFiles = $this->FileSystem->getFilesFromDirectory($directory, $isRecursive, $excludeRules); + foreach ($phpFiles as $file) { + /** @noinspection PhpIncludeInspection */ + include_once($file); + } + } + } + + public function runTests($output) + { + $this->getTestFixturesByParent(); + $this->run(); + + if(PHP_SAPI === 'cli' && $output != TemplateType::Tap) { + $output = TemplateType::Cli; + } + + $OutputTemplate = TemplateFactory::createOutputTemplate($output, $this->Language); + echo $OutputTemplate->get( + $this->Errors, + $this->Results, + $this->Text, + $this->Duration, + $this->MethodCalls + ); + + if (count($this->Errors) > 0) { + exit(1); + } else { + exit(0); + } + } + + public function log($className, $methodName) + { + $index = $this->getMethodIndex($className, $methodName); + if (array_key_exists($index ,$this->MethodCalls)) { + $this->MethodCalls[$index] = $this->MethodCalls[$index] + 1; + } + } + + public function registerForCodeCoverage($className) + { + $classMethods = get_class_methods($className); + foreach($classMethods as $methodName) { + $index = $this->getMethodIndex($className, $methodName); + if (!array_key_exists($index ,$this->MethodCalls)) { + $this->MethodCalls[$index] = 0; + } + } + } + + private function getMethodIndex($className, $methodName) + { + return $className . '#' . $methodName; + } + + private function getTestFixturesByParent() + { + $classes = get_declared_classes(); + foreach($classes as $className) { + $this->AddClassIfTest($className); + } + } + + private function AddClassIfTest($className) + { + $parentClassName = get_parent_class($className); + if ($parentClassName === 'Enhance\TestFixture') { + $instance = new $className(); + $this->addFixture($instance); + } else { + $ancestorClassName = get_parent_class($parentClassName); + if ($ancestorClassName === 'Enhance\TestFixture') { + $instance = new $className(); + $this->addFixture($instance); + } + } + } + + private function addFixture($class) + { + $classMethods = get_class_methods($class); + foreach($classMethods as $method) { + if (strtolower($method) !== 'setup' && strtolower($method) !== 'teardown') { + $reflection = new \ReflectionMethod($class, $method); + if ($reflection->isPublic()) { + $this->addTest($class, $method); + } + } + } + } + + private function addTest($class, $method) + { + $testMethod = new Test($class, $method); + $this->Tests[] = $testMethod; + } + + private function run() + { + $start = time(); + foreach($this->Tests as /** @var Test $test */ $test) { + $result = $test->run(); + if ($result) { + $message = $test->getTestName() . ' - ' . $this->Text->Passed; + $this->Results[] = new TestMessage($message, $test, true); + } else { + $message = '['. str_replace('{0}', $test->getLine(), str_replace('{1}', $test->getFile(), $this->Text->LineFile)) . '] ' . + $test->getTestName() . ' - ' . + $this->Text->Failed . ' - ' . $test->getMessage(); + $this->Errors[] = new TestMessage($message, $test, false); + } + } + $this->Duration = time() - $start; + } +} + +class FileSystem +{ + public function getFilesFromDirectory($directory, $isRecursive, $excludeRules) + { + $files = array(); + if ($handle = opendir($directory)) { + while (false !== ($file = readdir($handle))) { + if ($file != '.' && $file != '..' && strpos($file, '.') !== 0) { + if ($this->isFolderExcluded($file, $excludeRules)){ + continue; + } + + if(is_dir($directory . '/' . $file)) { + if ($isRecursive) { + $dir2 = $directory . '/' . $file; + $files[] = $this->getFilesFromDirectory($dir2, $isRecursive, $excludeRules); + } + } else { + $files[] = $directory . '/' . $file; + } + } + } + closedir($handle); + } + return $this->flattenArray($files); + } + + private function isFolderExcluded($folder, $excludeRules) + { + $folder = substr($folder, strrpos($folder, '/')); + + foreach ($excludeRules as $excluded){ + if ($folder === $excluded){ + return true; + } + } + return false; + } + + public function flattenArray($array) + { + $merged = array(); + foreach($array as $a) { + if(is_array($a)) { + $merged = array_merge($merged, $this->flattenArray($a)); + } else { + $merged[] = $a; + } + } + return $merged; + } +} + +class TestMessage +{ + public $Message; + public $Test; + public $IsPass; + + public function __construct($message, $test, $isPass) + { + $this->Message = $message; + $this->Test = $test; + $this->IsPass = $isPass; + } +} + +class Test +{ + private $ClassName; + private $TestName; + private $TestMethod; + private $SetUpMethod; + private $TearDownMethod; + private $Message; + private $Line; + private $File; + + public function __construct($class, $method) + { + $className = get_class($class); + $this->ClassName = $className; + $this->TestMethod = array($className, $method); + $this->SetUpMethod = array($className, 'setUp'); + $this->TearDownMethod = array($className, 'tearDown'); + $this->TestName = $method; + } + + public function getTestName() + { + return $this->TestName; + } + + public function getClassName() + { + return $this->ClassName; + } + + public function getMessage() + { + return $this->Message; + } + + public function getLine() + { + return $this->Line; + } + + public function getFile() + { + return $this->File; + } + + public function run() + { + /** @var $testClass iTestable */ + $testClass = new $this->ClassName(); + + try { + if (is_callable($this->SetUpMethod)) { + $testClass->setUp(); + } + } catch (\Exception $e) { } + + try { + $testClass->{$this->TestName}(); + $result = true; + } catch (TestException $e) { + $this->Message = $e->getMessage(); + $this->Line = $e->getLine(); + $this->File = pathinfo($e->getFile(), PATHINFO_BASENAME); + $result = false; + } + + try { + if (is_callable($this->TearDownMethod)) { + $testClass->tearDown(); + } + } catch (\Exception $e) { } + + return $result; + } +} + +class CodeCoverageWrapper +{ + private $Instance; + private $ClassName; + + public function __construct($className, $args) + { + $this->ClassName = $className; + if ($args !== null) { + $rc = new \ReflectionClass($className); + $this->Instance = $rc->newInstanceArgs($args); + } else { + $this->Instance = new $className(); + } + Core::log($this->ClassName, $className); + Core::log($this->ClassName, '__construct'); + } + + public function __call($methodName, $args = null) + { + Core::log($this->ClassName, $methodName); + if ($args !== null) { + /** @noinspection PhpParamsInspection */ + return call_user_func_array(array($this->Instance, $methodName), $args); + } else { + return $this->Instance->{$methodName}(); + } + } + + public function __get($propertyName) + { + return $this->Instance->{$propertyName}; + } + + public function __set($propertyName, $value) + { + $this->Instance->{$propertyName} = $value; + } +} + +class Mock +{ + private $IsMock; + private $Text; + private $ClassName; + private $Expectations = array(); + + public function __construct($className, $isMock, $language) + { + $this->IsMock = $isMock; + $this->ClassName = $className; + $this->Text = TextFactory::getLanguageText($language); + } + + public function addExpectation($expectation) + { + $this->Expectations[] = $expectation; + } + + public function verifyExpectations() + { + if (!$this->IsMock) { + throw new \Exception( + $this->ClassName . ': ' . $this->Text->CannotCallVerifyOnStub + ); + } + + foreach ($this->Expectations as /** @var Expectation $expectation */ $expectation) { + if (!$expectation->verify()) { + $Arguments = ''; + if (isset($expectation->MethodArguments)) { + foreach($expectation->MethodArguments as $argument) { + if (isset($Arguments[0])) { + $Arguments .= ', '; + } + $Arguments .= $argument; + } + } + + throw new \Exception( + $this->Text->ExpectationFailed . ' ' . + $this->ClassName . '->' . $expectation->MethodName . '(' . $Arguments . ') ' . + $this->Text->Expected . ' #' . $expectation->ExpectedCalls . ' ' . + $this->Text->Called . ' #' . $expectation->ActualCalls, 0); + } + } + } + + public function __call($methodName, $args) + { + return $this->getReturnValue('method', $methodName, $args); + } + + public function __get($propertyName) + { + return $this->getReturnValue('getProperty', $propertyName, array()); + } + + public function __set($propertyName, $value) + { + $this->getReturnValue('setProperty', $propertyName, array($value)); + } + + private function getReturnValue($type, $methodName, $args) + { + $Expectation = $this->getMatchingExpectation($type, $methodName, $args); + $Expected = true; + if ($Expectation === null) { + $Expected = false; + } + + if ($Expected) { + ++$Expectation->ActualCalls; + if ($Expectation->ReturnException) { + throw new \Exception($Expectation->ReturnValue); + } + return $Expectation->ReturnValue; + } + + if ($this->IsMock) { + throw new \Exception( + $this->Text->ExpectationFailed . ' ' . + $this->ClassName . '->' . $methodName . '(' . $args . ') ' . + $this->Text->Expected . ' #0 ' . + $this->Text->Called . ' #1', 0); + } + return null; + } + + private function getMatchingExpectation($type, $methodName, $arguments) + { + foreach ($this->Expectations as $expectation) { + if ($expectation->Type === $type) { + if ($expectation->MethodName === $methodName) { + $isMatch = true; + if ($expectation->ExpectArguments) { + $isMatch = $this->argumentsMatch( + $expectation->MethodArguments, + $arguments + ); + } + if ($isMatch) { + return $expectation; + } + } + } + } + return null; + } + + private function argumentsMatch($arguments1, $arguments2) + { + $Count1 = count($arguments1); + $Count2 = count($arguments2); + $isMatch = true; + if ($Count1 === $Count2) { + for ($i = 0; $i < $Count1; ++$i) { + if ($arguments1[$i] === Expect::AnyValue + || $arguments2[$i] === Expect::AnyValue) { + // No need to match + } else { + if ($arguments1[$i] !== $arguments2[$i]) { + $isMatch = false; + } + } + } + } else { + $isMatch = false; + } + return $isMatch; + } +} + +class Scenario +{ + private $Text; + private $Class; + private $FunctionName; + private $Inputs = array(); + private $Expectations = array(); + + public function __construct($class, $functionName, $language) + { + $this->Class = $class; + $this->FunctionName = $functionName; + $this->Text = TextFactory::getLanguageText($language); + } + + public function with() + { + $this->Inputs[] = func_get_args(); + return $this; + } + + public function expect() + { + $this->Expectations[] = func_get_args(); + return $this; + } + + public function verifyExpectations() + { + if (count($this->Inputs) !== count($this->Expectations)) { + throw new \Exception($this->Text->ScenarioWithExpectMismatch); + } + + $exceptionText = ''; + + while(count($this->Inputs) > 0) { + $input = array_shift($this->Inputs); + $expected = array_shift($this->Expectations); + $expected = $expected[0]; + + $actual = call_user_func_array(array($this->Class, $this->FunctionName), $input); + + if (is_float($expected)) { + if ((string)$expected !== (string)$actual) { + $exceptionText .= str_replace('{0}', $expected, str_replace('{1}', $actual, $this->Text->FormatForExpectedButWas)); + } + } elseif ($expected != $actual) { + $exceptionText .= str_replace('{0}', $expected, str_replace('{1}', $actual, $this->Text->FormatForExpectedButWas)); + } + } + + if ($exceptionText !== ''){ + throw new \Exception($exceptionText, 0); + } + } +} + +class Expectation +{ + public $MethodName; + public $MethodArguments; + public $ReturnValue; + public $ReturnException; + public $ExpectedCalls; + public $ActualCalls; + public $ExpectArguments; + public $ExpectTimes; + public $Type; + public $Text; + + public function __construct($language) + { + $this->ExpectedCalls = -1; + $this->ActualCalls = 0; + $this->ExpectArguments = false; + $this->ExpectTimes = false; + $this->ReturnException = false; + $this->ReturnValue = null; + $textFactory = new TextFactory(); + $this->Text = $textFactory->getLanguageText($language); + } + + public function method($methodName) + { + $this->Type = 'method'; + $this->MethodName = $methodName; + return $this; + } + + public function getProperty($propertyName) + { + $this->Type = 'getProperty'; + $this->MethodName = $propertyName; + return $this; + } + + public function setProperty($propertyName) + { + $this->Type = 'setProperty'; + $this->MethodName = $propertyName; + return $this; + } + + public function with() + { + $this->ExpectArguments = true; + $this->MethodArguments = func_get_args(); + return $this; + } + + public function returns($returnValue) + { + if ($this->ReturnValue !== null) { + throw new \Exception($this->Text->ReturnsOrThrowsNotBoth); + } + $this->ReturnValue = $returnValue; + return $this; + } + + public function throws($errorMessage) + { + if ($this->ReturnValue !== null) { + throw new \Exception($this->Text->ReturnsOrThrowsNotBoth); + } + $this->ReturnValue = $errorMessage; + $this->ReturnException = true; + return $this; + } + + public function times($expectedCalls) + { + $this->ExpectTimes = true; + $this->ExpectedCalls = $expectedCalls; + return $this; + } + + public function verify() + { + $ExpectationMet = true; + if ($this->ExpectTimes) { + if ($this->ExpectedCalls !== $this->ActualCalls) { + $ExpectationMet = false; + } + } + return $ExpectationMet; + } +} + +class Assertions +{ + private $Text; + + public function __construct($language) + { + $this->Text = TextFactory::getLanguageText($language); + } + + public function areIdentical($expected, $actual) + { + if (is_float($expected)) { + if ((string)$expected !== (string)$actual) { + throw new TestException(str_replace('{0}', $this->getDescription($expected), str_replace('{1}', $this->getDescription($actual), $this->Text->FormatForExpectedButWas)), 0); + } + } elseif ($expected !== $actual) { + throw new TestException(str_replace('{0}', $this->getDescription($expected), str_replace('{1}', $this->getDescription($actual), $this->Text->FormatForExpectedButWas)), 0); + } + } + + public function areNotIdentical($expected, $actual) + { + if (is_float($expected)) { + if ((string)$expected === (string)$actual) { + throw new TestException(str_replace('{0}', $this->getDescription($expected), str_replace('{1}', $this->getDescription($actual), $this->Text->FormatForExpectedNotButWas)), 0); + } + } elseif ($expected === $actual) { + throw new TestException(str_replace('{0}', $this->getDescription($expected), str_replace('{1}', $this->getDescription($actual), $this->Text->FormatForExpectedNotButWas)), 0); + } + } + + public function isTrue($actual) + { + if ($actual !== true) { + throw new TestException(str_replace('{0}', 'true', str_replace('{1}', $this->getDescription($actual), $this->Text->FormatForExpectedButWas)), 0); + } + } + + public function isFalse($actual) + { + if ($actual !== false) { + throw new TestException(str_replace('{0}', 'false', str_replace('{1}', $this->getDescription($actual), $this->Text->FormatForExpectedButWas)), 0); + } + } + + public function contains($expected, $actual) + { + $result = strpos($actual, $expected); + if ($result === false) { + throw new TestException(str_replace('{0}', $this->getDescription($expected), str_replace('{1}', $this->getDescription($actual), $this->Text->FormatForExpectedContainsButWas)), 0); + } + } + + public function notContains($expected, $actual) + { + $result = strpos($actual, $expected); + if ($result !== false) { + throw new TestException(str_replace('{0}', $this->getDescription($expected), str_replace('{1}', $this->getDescription($actual), $this->Text->FormatForExpectedNotContainsButWas)), 0); + } + } + + public function isNull($actual) + { + if ($actual !== null) { + throw new TestException(str_replace('{0}', 'null', str_replace('{1}', $this->getDescription($actual), $this->Text->FormatForExpectedButWas)), 0); + } + } + + public function isNotNull($actual) + { + if ($actual === null) { + throw new TestException(str_replace('{0}', 'null', str_replace('{1}', $this->getDescription($actual), $this->Text->FormatForExpectedNotButWas)), 0); + } + } + + public function isArray($actual) + { + if (!is_array($actual)) { + throw new TestException(str_replace('{0}', 'null', str_replace('{1}', $this->getDescription($actual), $this->Text->FormatForExpectedButWas)), 0); + } + } + + public function isNotArray($actual) + { + if (is_array($actual)) { + throw new TestException(str_replace('{0}', 'null', str_replace('{1}', $this->getDescription($actual), $this->Text->FormatForExpectedNotButWas)), 0); + } + } + + public function isBool($actual) + { + if (!is_bool($actual)) { + throw new TestException(str_replace('{0}', 'null', str_replace('{1}', $this->getDescription($actual), $this->Text->FormatForExpectedButWas)), 0); + } + } + + public function isNotBool($actual) + { + if (is_bool($actual)) { + throw new TestException(str_replace('{0}', 'null', str_replace('{1}', $this->getDescription($actual), $this->Text->FormatForExpectedNotButWas)), 0); + } + } + + public function isFloat($actual) + { + if (!is_float($actual)) { + throw new TestException(str_replace('{0}', 'null', str_replace('{1}', $this->getDescription($actual), $this->Text->FormatForExpectedButWas)), 0); + } + } + + public function isNotFloat($actual) + { + if (is_float($actual)) { + throw new TestException(str_replace('{0}', 'null', str_replace('{1}', $this->getDescription($actual), $this->Text->FormatForExpectedNotButWas)), 0); + } + } + + public function isInt($actual) + { + if (!is_int($actual)) { + throw new TestException(str_replace('{0}', 'null', str_replace('{1}', $this->getDescription($actual), $this->Text->FormatForExpectedButWas)), 0); + } + } + + public function isNotInt($actual) + { + if (is_int($actual)) { + throw new TestException(str_replace('{0}', 'null', str_replace('{1}', $this->getDescription($actual), $this->Text->FormatForExpectedNotButWas)), 0); + } + } + + public function isNumeric($actual) + { + if (!is_numeric($actual)) { + throw new TestException(str_replace('{0}', 'null', str_replace('{1}', $this->getDescription($actual), $this->Text->FormatForExpectedButWas)), 0); + } + } + + public function isNotNumeric($actual) + { + if (is_numeric($actual)) { + throw new TestException(str_replace('{0}', 'null', str_replace('{1}', $this->getDescription($actual), $this->Text->FormatForExpectedNotButWas)), 0); + } + } + + public function isObject($actual) + { + if (!is_object($actual)) { + throw new TestException(str_replace('{0}', 'null', str_replace('{1}', $this->getDescription($actual), $this->Text->FormatForExpectedButWas)), 0); + } + } + + public function isNotObject($actual) + { + if (is_object($actual)) { + throw new TestException(str_replace('{0}', 'null', str_replace('{1}', $this->getDescription($actual), $this->Text->FormatForExpectedNotButWas)), 0); + } + } + + public function isResource($actual) + { + if (!is_resource($actual)) { + throw new TestException(str_replace('{0}', 'null', str_replace('{1}', $this->getDescription($actual), $this->Text->FormatForExpectedButWas)), 0); + } + } + + public function isNotResource($actual) + { + if (is_resource($actual)) { + throw new TestException(str_replace('{0}', 'null', str_replace('{1}', $this->getDescription($actual), $this->Text->FormatForExpectedNotButWas)), 0); + } + } + + public function isScalar($actual) + { + if (!is_scalar($actual)) { + throw new TestException(str_replace('{0}', 'null', str_replace('{1}', $this->getDescription($actual), $this->Text->FormatForExpectedButWas)), 0); + } + } + + public function isNotScalar($actual) + { + if (is_scalar($actual)) { + throw new TestException(str_replace('{0}', 'null', str_replace('{1}', $this->getDescription($actual), $this->Text->FormatForExpectedNotButWas)), 0); + } + } + + public function isString($actual) + { + if (!is_string($actual)) { + throw new TestException(str_replace('{0}', 'null', str_replace('{1}', $this->getDescription($actual), $this->Text->FormatForExpectedButWas)), 0); + } + } + + public function isNotString($actual) + { + if (is_string($actual)) { + throw new TestException(str_replace('{0}', 'null', str_replace('{1}', $this->getDescription($actual), $this->Text->FormatForExpectedNotButWas)), 0); + } + } + + public function fail() + { + throw new TestException($this->Text->Failed, 0); + } + + public function inconclusive() + { + throw new TestException($this->Text->InconclusiveOrNotImplemented, 0); + } + + public function isInstanceOfType($expected, $actual) + { + $actualType = get_class($actual); + if ($expected !== $actualType) { + throw new TestException(str_replace('{0}', $expected, str_replace('{1}', $actualType, $this->Text->FormatForExpectedButWas)), 0); + }; + } + + public function isNotInstanceOfType($expected, $actual) + { + $actualType = get_class($actual); + if ($expected === $actualType) { + throw new TestException(str_replace('{0}', $expected, str_replace('{1}', $actualType, $this->Text->FormatForExpectedNotButWas)), 0); + }; + } + + public function throws($class, $methodName, $args = null) + { + $exception = false; + + try { + if ($args !== null) { + /** @noinspection PhpParamsInspection */ + call_user_func_array(array($class, $methodName), $args); + } else { + $class->{$methodName}(); + } + } catch (\Exception $e) { + $exception = true; + } + + if (!$exception) { + throw new TestException($this->Text->ExpectedExceptionNotThrown, 0); + } + } + + private function getDescription($mixed) + { + if (is_object($mixed)){ + return get_class($mixed); + } else if (is_bool($mixed)){ + return $mixed ? 'true' : 'false'; + } else { + return (string) $mixed; + } + } +} + +class TestException extends \Exception +{ + public function __construct($message = null, $code = 0, Exception $previous = null) + { + parent::__construct($message, $code, $previous); + + $trace = $this->getTrace(); + + $this->line = $trace[1]['line']; + $this->file = $trace[1]['file']; + } +} + +interface iOutputTemplate +{ + public function getTemplateType(); + public function get($errors, $results, $text, $duration, $methodCalls); +} + +interface iTestable +{ + public function setUp(); + public function tearDown(); +} + +class HtmlTemplate implements iOutputTemplate +{ + private $Text; + + public function __construct($language) + { + $this->Text = TextFactory::getLanguageText($language); + } + + public function getTemplateType() + { + return TemplateType::Html; + } + + public function get($errors, $results, $text, $duration, $methodCalls) + { + $message = ''; + $failCount = count($errors); + $passCount = count($results); + $methodCallCount = count($methodCalls); + + $currentClass = ''; + if ($failCount > 0) { + $message .= '

' . $text->Test . ' ' . $text->Failed . '

'; + + $message .= '
  • '; + } + $message .= '' . $testClassName . '
  • '; + } else { + $message .= '

    ' . $text->TestPassed . '

    '; + } + + $currentClass = ''; + if ($passCount > 0) { + $message .= '
  • '; + } + $message .= '' . $testClassName . '
  • '; + } + + $message .= '

    ' . $text->MethodCoverage . '

    '; + if ($methodCallCount > 0) { + $message .= ''; + } + + $message .= '

    ' . str_replace('{0}', $duration, $text->FormatForTestRunTook) . '

    '; + + return $this->getTemplateWithMessage($message); + } + + private function getTemplateWithMessage($content) + { + return str_replace('{0}', $content, ' + + + + ' . $this->Text->TestResults . ' + + + + + + +
    +

    ' . $this->Text->EnhanceTestFramework . '

    +
    + +
    + {0} +
    + + + + '); + } +} + +class XmlTemplate implements iOutputTemplate +{ + private $Text; + private $Tab = " "; + private $CR = "\n"; + + public function __construct($language) + { + $this->Text = TextFactory::getLanguageText($language); + } + + public function getTemplateType() + { + return TemplateType::Xml; + } + + public function get($errors, $results, $text, $duration, $methodCalls) + { + $message = ''; + $failCount = count($errors); + + $message .= '' . $this->CR; + if ($failCount > 0) { + $message .= $this->getNode(1, 'result', $text->TestFailed); + } else { + $message .= $this->getNode(1, 'result', $text->TestPassed); + } + + $message .= $this->Tab . '' . $this->CR . + $this->getBadResults($errors) . + $this->getGoodResults($results) . + $this->Tab . '' . $this->CR . + $this->Tab . '' . $this->CR . + $this->getCodeCoverage($methodCalls) . + $this->Tab . '' . $this->CR; + + $message .= $this->getNode(1, 'testRunDuration', $duration) . + '' . $this->CR; + + return $this->getTemplateWithMessage($message); + } + + public function getBadResults($errors) + { + $message = ''; + foreach ($errors as $error) { + $message .= $this->getNode(2, 'fail', $error->Message); + } + return $message; + } + + public function getGoodResults($results) + { + $message = ''; + foreach ($results as $result) { + $message .= $this->getNode(2, 'pass', $result->Message); + } + return $message; + } + + public function getCodeCoverage($methodCalls) + { + $message = ''; + foreach ($methodCalls as $key => $value) { + $message .= $this->buildCodeCoverageMessage($key, $value); + } + return $message; + } + + private function buildCodeCoverageMessage($key, $value) + { + return $this->Tab . $this->Tab . '' . $this->CR . + $this->getNode(3, 'name', str_replace('#', '->', $key)) . + $this->getNode(3, 'timesCalled', $value) . + $this->Tab . $this->Tab . '' . $this->CR; + } + + private function getNode($tabs, $nodeName, $nodeValue) + { + $node = ''; + for ($i = 0; $i < $tabs; ++$i){ + $node .= $this->Tab; + } + $node .= '<' . $nodeName . '>' . $nodeValue . '' . $this->CR; + + return $node; + } + + private function getTemplateWithMessage($content) + { + return str_replace('{0}', $content, '' . "\n" . + '{0}'); + } +} + +class CliTemplate implements iOutputTemplate +{ + private $Text; + private $CR = "\n"; + + public function __construct($language) + { + $this->Text = TextFactory::getLanguageText($language); + } + + public function getTemplateType() + { + return TemplateType::Cli; + } + + public function get($errors, $results, $text, $duration, $methodCalls) + { + $failCount = count($errors); + + $resultMessage = $text->TestPassed . $this->CR; + if ($failCount > 0) { + $resultMessage = $text->TestFailed . $this->CR; + } + + $message = $this->CR . + $resultMessage . + $this->CR . + $this->getBadResults($errors) . + $this->getGoodResults($results) . + $this->CR . + $this->getMethodCoverage($methodCalls) . + $this->CR . + $resultMessage . + str_replace('{0}', $duration, $text->FormatForTestRunTook) . $this->CR; + + return $message; + } + + public function getBadResults($errors) + { + $message = ''; + foreach ($errors as $error) { + $message .= $error->Message . $this->CR; + } + return $message; + } + + public function getGoodResults($results) + { + $message = ''; + foreach ($results as $result) { + $message .= $result->Message . $this->CR; + } + return $message; + } + + public function getMethodCoverage($methodCalls) + { + $message = ''; + foreach ($methodCalls as $key => $value) { + $message .= str_replace('#', '->', $key) . ':' . $value . $this->CR; + } + return $message; + } +} + +class TapTemplate implements iOutputTemplate +{ + private $Text; + private $CR = "\n"; + + public function __construct($language) + { + $this->Text = TextFactory::getLanguageText($language); + } + + public function getTemplateType() + { + return TemplateType::Cli; + } + + public function get($errors, $results, $text, $duration, $methodCalls) + { + $failCount = count($errors); + $passCount = count($results); + $total = $failCount + $passCount; + $count = 0; + + $message = '1..' . $total . $this->CR; + + foreach ($errors as $error) { + ++$count; + $message .= 'not ok ' . $count . ' ' . $error->Message . $this->CR; + } + + foreach ($results as $result) { + ++$count; + $message .= 'ok ' . $count . ' ' . $result->Message . $this->CR; + } + + return $message; + } + +} + +class TemplateFactory +{ + public static function createOutputTemplate($type, $language) + { + switch ($type) { + case TemplateType::Xml: + return new XmlTemplate($language); + break; + case TemplateType::Html: + return new HtmlTemplate($language); + break; + case TemplateType::Cli: + return new CliTemplate($language); + break; + case TemplateType::Tap: + return new TapTemplate($language); + break; + } + + return new HtmlTemplate($language); + } +} + +class TemplateType +{ + const Xml = 0; + const Html = 1; + const Cli = 2; + const Tap = 3; +} + +class Language +{ + const English = 'En'; + const Deutsch = 'De'; +} + +class Localisation +{ + public $Language = Language::English; +} +?> \ No newline at end of file diff --git a/includes/classes/User/PHPBugLost.0.3/AUTHOR b/includes/classes/User/PHPBugLost.0.3/AUTHOR new file mode 100644 index 0000000..07205c9 --- /dev/null +++ b/includes/classes/User/PHPBugLost.0.3/AUTHOR @@ -0,0 +1,29 @@ +Thanks To: + * Ryan Campbell from particletree.com for his Php Quick Profiler, + the first inspiration for PHP Bug Lost. + + * Sergey Ilinsky from ilinsky.com for his fantastic XMLHttpRequest.js library. + Used in Ajax panel. + + * vonloesch.de for his javascript table filter function + + * Profile idea from PHP Class Profile + + +Thanks also to this projects + * xn.Debug + * PHP_Debug + * FirePHP + + +Thirt Party Bookmarklets + * MRI (Test CSS Selector) from westciv.com + * XRay from westciv.com + * Dom Inspector from slayeroffice.com + * Favelet Suite from slayeroffice.com + * View Selected Source, View all JS, View al vars/functions, + View all CSS, View Classes and Check Img Alt from squarefree.com + + +PHP Bug Lost by Jordifreek (at gmail.com). +PHP Bug Lost is Open Source. Original idea from Php Quick Profiler. \ No newline at end of file diff --git a/includes/classes/User/PHPBugLost.0.3/CHANGELOG b/includes/classes/User/PHPBugLost.0.3/CHANGELOG new file mode 100644 index 0000000..91ac1d8 --- /dev/null +++ b/includes/classes/User/PHPBugLost.0.3/CHANGELOG @@ -0,0 +1,41 @@ +PHP Bug Lost Changelog + + +* 29 January 0.3 Beta 1 + Add. _bl_debug_on and _bl_monitor_on + Add. Profile Panel + Add. _bl_allow_ip for restrict access + Fix. Can't serialize some objects + Del. is_dir, is_file and is_executable on bl_var_type() + 23 January 0.2 Beta 2 + Add. Keyboard Shortcuts + Add. Delete _SESSION and _COOKIE vars + Add. Save console state + Add. New UI Rediseing + Add. Bookmarklets and JS/CSS files + Minor Fixes + + +* 09 January 0.2 Beta 1 + Add. Filter Input for search + Add. Backtrace php errors + Add. Add functions to panel vars + Add. PHP Panel + Add. UI Rediseign + Add. Highlight (top/right corner alert) when errors + Add. Initial memory usage + Fix. Panel special vars when log an object + Fix. Jss/CSS Redesigned, compatibility with IE8+ + Fix. Ajax panel sometimes don't show send params + Add. _bl_html_viewer + Del. _bl_start_mode + + +* 01 September 0.1 Beta 2 + Add. Monitoring options + Add. _bl_start_mode + Add. _bl_css_file and _bl_js_file + Add. _bl_delete_long_vars + Minor fixes + +* 11 Agoust 2011 First Version 0.1 Beta \ No newline at end of file diff --git a/includes/classes/User/PHPBugLost.0.3/LICENCE b/includes/classes/User/PHPBugLost.0.3/LICENCE new file mode 100644 index 0000000..3d90694 --- /dev/null +++ b/includes/classes/User/PHPBugLost.0.3/LICENCE @@ -0,0 +1,674 @@ + GNU GENERAL PUBLIC LICENSE + Version 3, 29 June 2007 + + Copyright (C) 2007 Free Software Foundation, Inc. + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The GNU General Public License is a free, copyleft license for +software and other kinds of works. + + The licenses for most software and other practical works are designed +to take away your freedom to share and change the works. By contrast, +the GNU General Public License is intended to guarantee your freedom to +share and change all versions of a program--to make sure it remains free +software for all its users. We, the Free Software Foundation, use the +GNU General Public License for most of our software; it applies also to +any other work released this way by its authors. You can apply it to +your programs, too. + + When we speak of free software, we are referring to freedom, not +price. Our General Public Licenses are designed to make sure that you +have the freedom to distribute copies of free software (and charge for +them if you wish), that you receive source code or can get it if you +want it, that you can change the software or use pieces of it in new +free programs, and that you know you can do these things. + + To protect your rights, we need to prevent others from denying you +these rights or asking you to surrender the rights. Therefore, you have +certain responsibilities if you distribute copies of the software, or if +you modify it: responsibilities to respect the freedom of others. + + For example, if you distribute copies of such a program, whether +gratis or for a fee, you must pass on to the recipients the same +freedoms that you received. You must make sure that they, too, receive +or can get the source code. And you must show them these terms so they +know their rights. + + Developers that use the GNU GPL protect your rights with two steps: +(1) assert copyright on the software, and (2) offer you this License +giving you legal permission to copy, distribute and/or modify it. + + For the developers' and authors' protection, the GPL clearly explains +that there is no warranty for this free software. For both users' and +authors' sake, the GPL requires that modified versions be marked as +changed, so that their problems will not be attributed erroneously to +authors of previous versions. + + Some devices are designed to deny users access to install or run +modified versions of the software inside them, although the manufacturer +can do so. This is fundamentally incompatible with the aim of +protecting users' freedom to change the software. The systematic +pattern of such abuse occurs in the area of products for individuals to +use, which is precisely where it is most unacceptable. Therefore, we +have designed this version of the GPL to prohibit the practice for those +products. If such problems arise substantially in other domains, we +stand ready to extend this provision to those domains in future versions +of the GPL, as needed to protect the freedom of users. + + Finally, every program is threatened constantly by software patents. +States should not allow patents to restrict development and use of +software on general-purpose computers, but in those that do, we wish to +avoid the special danger that patents applied to a free program could +make it effectively proprietary. To prevent this, the GPL assures that +patents cannot be used to render the program non-free. + + The precise terms and conditions for copying, distribution and +modification follow. + + TERMS AND CONDITIONS + + 0. Definitions. + + "This License" refers to version 3 of the GNU General Public License. + + "Copyright" also means copyright-like laws that apply to other kinds of +works, such as semiconductor masks. + + "The Program" refers to any copyrightable work licensed under this +License. Each licensee is addressed as "you". "Licensees" and +"recipients" may be individuals or organizations. + + To "modify" a work means to copy from or adapt all or part of the work +in a fashion requiring copyright permission, other than the making of an +exact copy. The resulting work is called a "modified version" of the +earlier work or a work "based on" the earlier work. + + A "covered work" means either the unmodified Program or a work based +on the Program. + + To "propagate" a work means to do anything with it that, without +permission, would make you directly or secondarily liable for +infringement under applicable copyright law, except executing it on a +computer or modifying a private copy. Propagation includes copying, +distribution (with or without modification), making available to the +public, and in some countries other activities as well. + + To "convey" a work means any kind of propagation that enables other +parties to make or receive copies. Mere interaction with a user through +a computer network, with no transfer of a copy, is not conveying. + + An interactive user interface displays "Appropriate Legal Notices" +to the extent that it includes a convenient and prominently visible +feature that (1) displays an appropriate copyright notice, and (2) +tells the user that there is no warranty for the work (except to the +extent that warranties are provided), that licensees may convey the +work under this License, and how to view a copy of this License. If +the interface presents a list of user commands or options, such as a +menu, a prominent item in the list meets this criterion. + + 1. Source Code. + + The "source code" for a work means the preferred form of the work +for making modifications to it. "Object code" means any non-source +form of a work. + + A "Standard Interface" means an interface that either is an official +standard defined by a recognized standards body, or, in the case of +interfaces specified for a particular programming language, one that +is widely used among developers working in that language. + + The "System Libraries" of an executable work include anything, other +than the work as a whole, that (a) is included in the normal form of +packaging a Major Component, but which is not part of that Major +Component, and (b) serves only to enable use of the work with that +Major Component, or to implement a Standard Interface for which an +implementation is available to the public in source code form. A +"Major Component", in this context, means a major essential component +(kernel, window system, and so on) of the specific operating system +(if any) on which the executable work runs, or a compiler used to +produce the work, or an object code interpreter used to run it. + + The "Corresponding Source" for a work in object code form means all +the source code needed to generate, install, and (for an executable +work) run the object code and to modify the work, including scripts to +control those activities. However, it does not include the work's +System Libraries, or general-purpose tools or generally available free +programs which are used unmodified in performing those activities but +which are not part of the work. For example, Corresponding Source +includes interface definition files associated with source files for +the work, and the source code for shared libraries and dynamically +linked subprograms that the work is specifically designed to require, +such as by intimate data communication or control flow between those +subprograms and other parts of the work. + + The Corresponding Source need not include anything that users +can regenerate automatically from other parts of the Corresponding +Source. + + The Corresponding Source for a work in source code form is that +same work. + + 2. Basic Permissions. + + All rights granted under this License are granted for the term of +copyright on the Program, and are irrevocable provided the stated +conditions are met. This License explicitly affirms your unlimited +permission to run the unmodified Program. The output from running a +covered work is covered by this License only if the output, given its +content, constitutes a covered work. This License acknowledges your +rights of fair use or other equivalent, as provided by copyright law. + + You may make, run and propagate covered works that you do not +convey, without conditions so long as your license otherwise remains +in force. You may convey covered works to others for the sole purpose +of having them make modifications exclusively for you, or provide you +with facilities for running those works, provided that you comply with +the terms of this License in conveying all material for which you do +not control copyright. Those thus making or running the covered works +for you must do so exclusively on your behalf, under your direction +and control, on terms that prohibit them from making any copies of +your copyrighted material outside their relationship with you. + + Conveying under any other circumstances is permitted solely under +the conditions stated below. Sublicensing is not allowed; section 10 +makes it unnecessary. + + 3. Protecting Users' Legal Rights From Anti-Circumvention Law. + + No covered work shall be deemed part of an effective technological +measure under any applicable law fulfilling obligations under article +11 of the WIPO copyright treaty adopted on 20 December 1996, or +similar laws prohibiting or restricting circumvention of such +measures. + + When you convey a covered work, you waive any legal power to forbid +circumvention of technological measures to the extent such circumvention +is effected by exercising rights under this License with respect to +the covered work, and you disclaim any intention to limit operation or +modification of the work as a means of enforcing, against the work's +users, your or third parties' legal rights to forbid circumvention of +technological measures. + + 4. Conveying Verbatim Copies. + + You may convey verbatim copies of the Program's source code as you +receive it, in any medium, provided that you conspicuously and +appropriately publish on each copy an appropriate copyright notice; +keep intact all notices stating that this License and any +non-permissive terms added in accord with section 7 apply to the code; +keep intact all notices of the absence of any warranty; and give all +recipients a copy of this License along with the Program. + + You may charge any price or no price for each copy that you convey, +and you may offer support or warranty protection for a fee. + + 5. Conveying Modified Source Versions. + + You may convey a work based on the Program, or the modifications to +produce it from the Program, in the form of source code under the +terms of section 4, provided that you also meet all of these conditions: + + a) The work must carry prominent notices stating that you modified + it, and giving a relevant date. + + b) The work must carry prominent notices stating that it is + released under this License and any conditions added under section + 7. This requirement modifies the requirement in section 4 to + "keep intact all notices". + + c) You must license the entire work, as a whole, under this + License to anyone who comes into possession of a copy. This + License will therefore apply, along with any applicable section 7 + additional terms, to the whole of the work, and all its parts, + regardless of how they are packaged. This License gives no + permission to license the work in any other way, but it does not + invalidate such permission if you have separately received it. + + d) If the work has interactive user interfaces, each must display + Appropriate Legal Notices; however, if the Program has interactive + interfaces that do not display Appropriate Legal Notices, your + work need not make them do so. + + A compilation of a covered work with other separate and independent +works, which are not by their nature extensions of the covered work, +and which are not combined with it such as to form a larger program, +in or on a volume of a storage or distribution medium, is called an +"aggregate" if the compilation and its resulting copyright are not +used to limit the access or legal rights of the compilation's users +beyond what the individual works permit. Inclusion of a covered work +in an aggregate does not cause this License to apply to the other +parts of the aggregate. + + 6. Conveying Non-Source Forms. + + You may convey a covered work in object code form under the terms +of sections 4 and 5, provided that you also convey the +machine-readable Corresponding Source under the terms of this License, +in one of these ways: + + a) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by the + Corresponding Source fixed on a durable physical medium + customarily used for software interchange. + + b) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by a + written offer, valid for at least three years and valid for as + long as you offer spare parts or customer support for that product + model, to give anyone who possesses the object code either (1) a + copy of the Corresponding Source for all the software in the + product that is covered by this License, on a durable physical + medium customarily used for software interchange, for a price no + more than your reasonable cost of physically performing this + conveying of source, or (2) access to copy the + Corresponding Source from a network server at no charge. + + c) Convey individual copies of the object code with a copy of the + written offer to provide the Corresponding Source. This + alternative is allowed only occasionally and noncommercially, and + only if you received the object code with such an offer, in accord + with subsection 6b. + + d) Convey the object code by offering access from a designated + place (gratis or for a charge), and offer equivalent access to the + Corresponding Source in the same way through the same place at no + further charge. You need not require recipients to copy the + Corresponding Source along with the object code. If the place to + copy the object code is a network server, the Corresponding Source + may be on a different server (operated by you or a third party) + that supports equivalent copying facilities, provided you maintain + clear directions next to the object code saying where to find the + Corresponding Source. Regardless of what server hosts the + Corresponding Source, you remain obligated to ensure that it is + available for as long as needed to satisfy these requirements. + + e) Convey the object code using peer-to-peer transmission, provided + you inform other peers where the object code and Corresponding + Source of the work are being offered to the general public at no + charge under subsection 6d. + + A separable portion of the object code, whose source code is excluded +from the Corresponding Source as a System Library, need not be +included in conveying the object code work. + + A "User Product" is either (1) a "consumer product", which means any +tangible personal property which is normally used for personal, family, +or household purposes, or (2) anything designed or sold for incorporation +into a dwelling. In determining whether a product is a consumer product, +doubtful cases shall be resolved in favor of coverage. For a particular +product received by a particular user, "normally used" refers to a +typical or common use of that class of product, regardless of the status +of the particular user or of the way in which the particular user +actually uses, or expects or is expected to use, the product. A product +is a consumer product regardless of whether the product has substantial +commercial, industrial or non-consumer uses, unless such uses represent +the only significant mode of use of the product. + + "Installation Information" for a User Product means any methods, +procedures, authorization keys, or other information required to install +and execute modified versions of a covered work in that User Product from +a modified version of its Corresponding Source. The information must +suffice to ensure that the continued functioning of the modified object +code is in no case prevented or interfered with solely because +modification has been made. + + If you convey an object code work under this section in, or with, or +specifically for use in, a User Product, and the conveying occurs as +part of a transaction in which the right of possession and use of the +User Product is transferred to the recipient in perpetuity or for a +fixed term (regardless of how the transaction is characterized), the +Corresponding Source conveyed under this section must be accompanied +by the Installation Information. But this requirement does not apply +if neither you nor any third party retains the ability to install +modified object code on the User Product (for example, the work has +been installed in ROM). + + The requirement to provide Installation Information does not include a +requirement to continue to provide support service, warranty, or updates +for a work that has been modified or installed by the recipient, or for +the User Product in which it has been modified or installed. Access to a +network may be denied when the modification itself materially and +adversely affects the operation of the network or violates the rules and +protocols for communication across the network. + + Corresponding Source conveyed, and Installation Information provided, +in accord with this section must be in a format that is publicly +documented (and with an implementation available to the public in +source code form), and must require no special password or key for +unpacking, reading or copying. + + 7. Additional Terms. + + "Additional permissions" are terms that supplement the terms of this +License by making exceptions from one or more of its conditions. +Additional permissions that are applicable to the entire Program shall +be treated as though they were included in this License, to the extent +that they are valid under applicable law. If additional permissions +apply only to part of the Program, that part may be used separately +under those permissions, but the entire Program remains governed by +this License without regard to the additional permissions. + + When you convey a copy of a covered work, you may at your option +remove any additional permissions from that copy, or from any part of +it. (Additional permissions may be written to require their own +removal in certain cases when you modify the work.) You may place +additional permissions on material, added by you to a covered work, +for which you have or can give appropriate copyright permission. + + Notwithstanding any other provision of this License, for material you +add to a covered work, you may (if authorized by the copyright holders of +that material) supplement the terms of this License with terms: + + a) Disclaiming warranty or limiting liability differently from the + terms of sections 15 and 16 of this License; or + + b) Requiring preservation of specified reasonable legal notices or + author attributions in that material or in the Appropriate Legal + Notices displayed by works containing it; or + + c) Prohibiting misrepresentation of the origin of that material, or + requiring that modified versions of such material be marked in + reasonable ways as different from the original version; or + + d) Limiting the use for publicity purposes of names of licensors or + authors of the material; or + + e) Declining to grant rights under trademark law for use of some + trade names, trademarks, or service marks; or + + f) Requiring indemnification of licensors and authors of that + material by anyone who conveys the material (or modified versions of + it) with contractual assumptions of liability to the recipient, for + any liability that these contractual assumptions directly impose on + those licensors and authors. + + All other non-permissive additional terms are considered "further +restrictions" within the meaning of section 10. If the Program as you +received it, or any part of it, contains a notice stating that it is +governed by this License along with a term that is a further +restriction, you may remove that term. If a license document contains +a further restriction but permits relicensing or conveying under this +License, you may add to a covered work material governed by the terms +of that license document, provided that the further restriction does +not survive such relicensing or conveying. + + If you add terms to a covered work in accord with this section, you +must place, in the relevant source files, a statement of the +additional terms that apply to those files, or a notice indicating +where to find the applicable terms. + + Additional terms, permissive or non-permissive, may be stated in the +form of a separately written license, or stated as exceptions; +the above requirements apply either way. + + 8. Termination. + + You may not propagate or modify a covered work except as expressly +provided under this License. Any attempt otherwise to propagate or +modify it is void, and will automatically terminate your rights under +this License (including any patent licenses granted under the third +paragraph of section 11). + + However, if you cease all violation of this License, then your +license from a particular copyright holder is reinstated (a) +provisionally, unless and until the copyright holder explicitly and +finally terminates your license, and (b) permanently, if the copyright +holder fails to notify you of the violation by some reasonable means +prior to 60 days after the cessation. + + Moreover, your license from a particular copyright holder is +reinstated permanently if the copyright holder notifies you of the +violation by some reasonable means, this is the first time you have +received notice of violation of this License (for any work) from that +copyright holder, and you cure the violation prior to 30 days after +your receipt of the notice. + + Termination of your rights under this section does not terminate the +licenses of parties who have received copies or rights from you under +this License. If your rights have been terminated and not permanently +reinstated, you do not qualify to receive new licenses for the same +material under section 10. + + 9. Acceptance Not Required for Having Copies. + + You are not required to accept this License in order to receive or +run a copy of the Program. Ancillary propagation of a covered work +occurring solely as a consequence of using peer-to-peer transmission +to receive a copy likewise does not require acceptance. However, +nothing other than this License grants you permission to propagate or +modify any covered work. These actions infringe copyright if you do +not accept this License. Therefore, by modifying or propagating a +covered work, you indicate your acceptance of this License to do so. + + 10. Automatic Licensing of Downstream Recipients. + + Each time you convey a covered work, the recipient automatically +receives a license from the original licensors, to run, modify and +propagate that work, subject to this License. You are not responsible +for enforcing compliance by third parties with this License. + + An "entity transaction" is a transaction transferring control of an +organization, or substantially all assets of one, or subdividing an +organization, or merging organizations. If propagation of a covered +work results from an entity transaction, each party to that +transaction who receives a copy of the work also receives whatever +licenses to the work the party's predecessor in interest had or could +give under the previous paragraph, plus a right to possession of the +Corresponding Source of the work from the predecessor in interest, if +the predecessor has it or can get it with reasonable efforts. + + You may not impose any further restrictions on the exercise of the +rights granted or affirmed under this License. For example, you may +not impose a license fee, royalty, or other charge for exercise of +rights granted under this License, and you may not initiate litigation +(including a cross-claim or counterclaim in a lawsuit) alleging that +any patent claim is infringed by making, using, selling, offering for +sale, or importing the Program or any portion of it. + + 11. Patents. + + A "contributor" is a copyright holder who authorizes use under this +License of the Program or a work on which the Program is based. The +work thus licensed is called the contributor's "contributor version". + + A contributor's "essential patent claims" are all patent claims +owned or controlled by the contributor, whether already acquired or +hereafter acquired, that would be infringed by some manner, permitted +by this License, of making, using, or selling its contributor version, +but do not include claims that would be infringed only as a +consequence of further modification of the contributor version. For +purposes of this definition, "control" includes the right to grant +patent sublicenses in a manner consistent with the requirements of +this License. + + Each contributor grants you a non-exclusive, worldwide, royalty-free +patent license under the contributor's essential patent claims, to +make, use, sell, offer for sale, import and otherwise run, modify and +propagate the contents of its contributor version. + + In the following three paragraphs, a "patent license" is any express +agreement or commitment, however denominated, not to enforce a patent +(such as an express permission to practice a patent or covenant not to +sue for patent infringement). To "grant" such a patent license to a +party means to make such an agreement or commitment not to enforce a +patent against the party. + + If you convey a covered work, knowingly relying on a patent license, +and the Corresponding Source of the work is not available for anyone +to copy, free of charge and under the terms of this License, through a +publicly available network server or other readily accessible means, +then you must either (1) cause the Corresponding Source to be so +available, or (2) arrange to deprive yourself of the benefit of the +patent license for this particular work, or (3) arrange, in a manner +consistent with the requirements of this License, to extend the patent +license to downstream recipients. "Knowingly relying" means you have +actual knowledge that, but for the patent license, your conveying the +covered work in a country, or your recipient's use of the covered work +in a country, would infringe one or more identifiable patents in that +country that you have reason to believe are valid. + + If, pursuant to or in connection with a single transaction or +arrangement, you convey, or propagate by procuring conveyance of, a +covered work, and grant a patent license to some of the parties +receiving the covered work authorizing them to use, propagate, modify +or convey a specific copy of the covered work, then the patent license +you grant is automatically extended to all recipients of the covered +work and works based on it. + + A patent license is "discriminatory" if it does not include within +the scope of its coverage, prohibits the exercise of, or is +conditioned on the non-exercise of one or more of the rights that are +specifically granted under this License. You may not convey a covered +work if you are a party to an arrangement with a third party that is +in the business of distributing software, under which you make payment +to the third party based on the extent of your activity of conveying +the work, and under which the third party grants, to any of the +parties who would receive the covered work from you, a discriminatory +patent license (a) in connection with copies of the covered work +conveyed by you (or copies made from those copies), or (b) primarily +for and in connection with specific products or compilations that +contain the covered work, unless you entered into that arrangement, +or that patent license was granted, prior to 28 March 2007. + + Nothing in this License shall be construed as excluding or limiting +any implied license or other defenses to infringement that may +otherwise be available to you under applicable patent law. + + 12. No Surrender of Others' Freedom. + + If conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot convey a +covered work so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you may +not convey it at all. For example, if you agree to terms that obligate you +to collect a royalty for further conveying from those to whom you convey +the Program, the only way you could satisfy both those terms and this +License would be to refrain entirely from conveying the Program. + + 13. Use with the GNU Affero General Public License. + + Notwithstanding any other provision of this License, you have +permission to link or combine any covered work with a work licensed +under version 3 of the GNU Affero General Public License into a single +combined work, and to convey the resulting work. The terms of this +License will continue to apply to the part which is the covered work, +but the special requirements of the GNU Affero General Public License, +section 13, concerning interaction through a network will apply to the +combination as such. + + 14. Revised Versions of this License. + + The Free Software Foundation may publish revised and/or new versions of +the GNU General Public License from time to time. Such new versions will +be similar in spirit to the present version, but may differ in detail to +address new problems or concerns. + + Each version is given a distinguishing version number. If the +Program specifies that a certain numbered version of the GNU General +Public License "or any later version" applies to it, you have the +option of following the terms and conditions either of that numbered +version or of any later version published by the Free Software +Foundation. If the Program does not specify a version number of the +GNU General Public License, you may choose any version ever published +by the Free Software Foundation. + + If the Program specifies that a proxy can decide which future +versions of the GNU General Public License can be used, that proxy's +public statement of acceptance of a version permanently authorizes you +to choose that version for the Program. + + Later license versions may give you additional or different +permissions. However, no additional obligations are imposed on any +author or copyright holder as a result of your choosing to follow a +later version. + + 15. Disclaimer of Warranty. + + THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY +APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT +HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY +OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, +THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM +IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF +ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + + 16. Limitation of Liability. + + IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS +THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY +GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE +USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF +DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD +PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), +EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF +SUCH DAMAGES. + + 17. Interpretation of Sections 15 and 16. + + If the disclaimer of warranty and limitation of liability provided +above cannot be given local legal effect according to their terms, +reviewing courts shall apply local law that most closely approximates +an absolute waiver of all civil liability in connection with the +Program, unless a warranty or assumption of liability accompanies a +copy of the Program in return for a fee. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Programs + + If you develop a new program, and you want it to be of the greatest +possible use to the public, the best way to achieve this is to make it +free software which everyone can redistribute and change under these terms. + + To do so, attach the following notices to the program. It is safest +to attach them to the start of each source file to most effectively +state the exclusion of warranty; and each file should have at least +the "copyright" line and a pointer to where the full notice is found. + + + Copyright (C) + + 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 3 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, see . + +Also add information on how to contact you by electronic and paper mail. + + If the program does terminal interaction, make it output a short +notice like this when it starts in an interactive mode: + + Copyright (C) + This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. + This is free software, and you are welcome to redistribute it + under certain conditions; type `show c' for details. + +The hypothetical commands `show w' and `show c' should show the appropriate +parts of the General Public License. Of course, your program's commands +might be different; for a GUI interface, you would use an "about box". + + You should also get your employer (if you work as a programmer) or school, +if any, to sign a "copyright disclaimer" for the program, if necessary. +For more information on this, and how to apply and follow the GNU GPL, see +. + + The GNU General Public License does not permit incorporating your program +into proprietary programs. If your program is a subroutine library, you +may consider it more useful to permit linking proprietary applications with +the library. If this is what you want to do, use the GNU Lesser General +Public License instead of this License. But first, please read +. \ No newline at end of file diff --git a/includes/classes/User/PHPBugLost.0.3/phpBugLost.0.3.php b/includes/classes/User/PHPBugLost.0.3/phpBugLost.0.3.php new file mode 100644 index 0000000..297f83c --- /dev/null +++ b/includes/classes/User/PHPBugLost.0.3/phpBugLost.0.3.php @@ -0,0 +1,2669 @@ +\n" + document.documentElement.innerHTML + "\n")); } else { nd.title="Partial Source of: " + location.href; ndb.appendChild(makePre(getSelSource())); }; void 0', + "'"); // this require a single quote + + bl_add_bookmark('js', 'View all JS', + "javascript:s=document.getElementsByTagName('SCRIPT'); d=window.open().document; /*140681*/d.open();d.close(); b=d.body; function trim(s){return s.replace(/^\s*\n/, '').replace(/\s*$/, ''); }; function add(h){b.appendChild(h);} function makeTag(t){return d.createElement(t);} function makeText(tag,text){t=makeTag(tag);t.appendChild(d.createTextNode(text)); return t;} add(makeText('style', 'iframe{width:100%;height:18em;border:1px solid;')); add(makeText('h3', d.title='Scripts in ' + location.href)); for(i=0; i/g,"&gt;");s=s.replace(/td{vertical-align:top; white-space:pre; } table,td,th { border: 1px solid #ccc; } div.er { color:red }"); for (i in window) { if (!(i in x) ) { v=window[i]; d.write(""); } } d.write("
    VariableTypeValue as string
    " + hE(i) + "" + hE(typeof(window[i])) + ""); if (v===null) d.write("null"); else if (v===undefined) d.write("undefined"); else try{st=v.toString(); if (st.length)d.write(hE(v.toString())); else d.write("%C2%A0")}catch(er){d.write("
    "+hE(er.toString())+"
    ")}; d.write("
    "); d.close(); })();', + "'"); // this require a single quote + + bl_add_bookmark('css', 'Reload CSS', + 'javascript:function bl_reloadCSS(){var%20qs=\'?\'+new%20Date().getTime(),l,i=0;while(l=document.getElementsByTagName(\'link\')[i++]){if(l.rel&&\'stylesheet\'==l.rel.toLowerCase()){if(!l._h)l._h=l.href;l.href=l._h+qs}}}; bl_reloadCSS();'); + + bl_add_bookmark('css', 'MRI (Test CSS Selectors)', + 'javascript:function%20loadScript(scriptURL)%20{%20var%20scriptElem%20=%20document.createElement(\'SCRIPT\');%20scriptElem.setAttribute(\'language\',%20\'JavaScript\');%20scriptElem.setAttribute(\'src\',%20scriptURL);%20document.body.appendChild(scriptElem);}loadScript(\'http://westciv.com/mri/theMRI.js\');'); + + bl_add_bookmark('css', 'View all CSS', + "javascript:s=document.getElementsByTagName('STYLE'); ex=document.getElementsByTagName('LINK'); d=window.open().document; /*set base href*/d.open();d.close(); b=d.body; function trim(s){return s.replace(/^\s*\n/, '').replace(/\s*$/, ''); }; function iff(a,b,c){return b?a+b+c:'';}function add(h){b.appendChild(h);} function makeTag(t){return d.createElement(t);} function makeText(tag,text){t=makeTag(tag);t.appendChild(d.createTextNode(text)); return t;} add(makeText('style', 'iframe{width:100%;height:18em;border:1px solid;')); add(makeText('h3', d.title='Style sheets in ' + location.href)); for(i=0; i#TagclassName";for(i=0;e=document.getElementsByTagName("*")[i];++i)if(c=e.className){k=e.tagName+"."+c;a[k]=a[k]?a[k]+1:1;}for(k in a)b.push([k,a[k]]);b.sort();for(i in b) s+=""+b[i][1]+""+b[i][0].split(".").join("")+"";s+="";d=open().document;d.write(s);d.close();})()', + "'"); // this require a single quote + + bl_add_bookmark('other', 'Show hidden inputs', + 'javascript:var i, bl_hidden = document.getElementsByTagName(\'input\');for (i=0; iERROR FROM PHP BUG LOST: Sorry for this error! + but you need to change your secret key + otherwise it is not secret! Open you PHP Bug List file ' . _bl_filename . ', + search for _bl_secret_key constant and change with any word, number or + alphanumeric string.'); +} + + +/** + * bl_get_time() + * + * @access private + * @param mixed $time_start for calculate tiem between two times + * @return int|double The Time + */ +function bl_get_time($time_start = null) { + $time = explode(' ', microtime()); + $time = $time[1] + $time[0]; + if ($time_start) + $time = $time - $time_start; + return $time; +} +define('_bl_time_start', bl_get_time()); + +// default shortcuts tags, html markup for top menu +if (_bl_keyboard_shortcuts == true) { + define('_bl_key_logs', '1'); + define('_bl_key_sql', '2'); + define('_bl_key_vars', '3'); + define('_bl_key_profile', '4'); + define('_bl_key_time', '5'); + define('_bl_key_memory', '6'); + define('_bl_key_ajax', '7'); + define('_bl_key_php', '8'); + define('_bl_key_jscss', ' (j)'); + define('_bl_key_opacity', ' (o)'); + define('_bl_key_info', ' (i)'); +} else { + define('_bl_key_logs', ''); + define('_bl_key_sql', ''); + define('_bl_key_vars', ''); + define('_bl_key_time', ''); + define('_bl_key_memory', ''); + define('_bl_key_ajax', ''); + define('_bl_key_php', ''); + define('_bl_key_jscss', ''); + define('_bl_key_opacity', ''); + define('_bl_key_info', ''); +} + +// global vars, internal usage +class _bl { + public static $count_msg = 0; + public static $count_querys = 0; + public static $count_vars = 0; + public static $vars = array(); // + public static $errors = false; // used for highlight error alert + public static $msgs = array(); // log messages + public static $msgs_time = array(); // log tiems + public static $msg_sql = array(); // log querys + public static $profile = array(); // log profile messages + public static $time_start = _bl_time_start; + public static $panel_state = 'close'; // default panel state + public static $panel_active = array( + "msg" => "bl_debug_panel_active", // default panel active + "sql" => "", + "vars" => "", + "time" => "", + "memory" => "", + "ajax" => "", + "php" => ""); + public static $max_var_size = array("var" => "", "size" => 0); + public static $max_file_size = array("var" => "", "size" => 0); + public static $bookmarklets = array( + 'css' => array(), + 'js' => array(), + 'other' => array()); + + private static $initialized = false; + private static function initialize() { + if (self::$initialized) + return; + self::$initialized = true; + } +} + +if (_bl_save_state == true) { + // remember panel state + if (isset($_COOKIE['panel_size_bl'])) { + _bl::$panel_state = $_COOKIE['panel_size_bl']; + } + // remember panel active + if (isset($_COOKIE['__bl_panel_active'])) { + if (isset(_bl::$panel_active[$_COOKIE['__bl_panel_active']])) { + _bl::$panel_active['msg'] = ''; + _bl::$panel_active[$_COOKIE['__bl_panel_active']] = 'bl_debug_panel_active'; + } + } +} + +/** + * bl_send_mail() + * + * Send "monitor" emails to admin + * + * @access private + */ +function bl_send_mail($msg, $title, $data) { + $headers = 'MIME-Version: 1.0' . "\r\n"; + $headers .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n"; + $headers .= 'To: <' . _bl_admin_mail . '>' . "\r\n"; + //$headers .= 'From: Put any thing here ' . "\r\n"; + + $data_th = ''; + $data_td = ''; + foreach ($data as $k => $v) { + $data_th .= '' . + ucfirst($k) . ''; + $data_td .= '' . $v . ''; + } + + $msg = $msg . ' + + + ' . $data_th . ' + + + ' . $data_td . ' + +
    '; + + mail(_bl_admin_mail, _bl_sort_site_description . ' ' . $title, $msg, $headers); +} + +/** + * bl_format_time() + * + * Format Time, 4 decimals + * + * @access private + * @param mixed $time Time to format + * @return string Formated time + */ +function bl_format_time($time) { + return round($time, 4) . 's'; +} + +/** + * bl_msg() + * Add a message to the list (array _bl::$msgs) + * + * @access private + * @param mixed $msg Text of the message + * @param string $type Tipe of message: info, error, warn or user (default) + * @return void + */ +function bl_msg($msg, $file, $line, $type = 'user') { + $format_msg = $msg; + + if (_bl_create_times) { + bl_time('Log missage '.substr($msg, 0, 30)).'...'; + } + + $c = count(_bl::$msgs); + _bl::$msgs[$c]['msg'] = $format_msg; + _bl::$msgs[$c]['line'] = $line; + _bl::$msgs[$c]['file'] = $file; + _bl::$msgs[$c]['time'] = bl_format_time(bl_get_time(_bl::$time_start)); + _bl::$msgs[$c]['type'] = $type; +} + +/** + * bl_get_msg() + * List of messages (_bl::$msgs) in a HTML table. + * + * @access private + */ +function bl_get_msg() { + + $result = ' + + + + + + + + + + + '; + + $x = count(_bl::$msgs); + for ($i = 0; $i < $x; $i++) { + + if (_bl::$msgs[$i]['type'] == 'error') { + _bl::$errors = true; + } + + $result .= ' + + + + + + + '; + + _bl::$count_msg++; + + } + + $result .= ' + +
    MessageFileLineTime
    ' . _bl::$msgs[$i]['msg'] . '' . _bl::$msgs[$i]['file'] . '' . _bl::$msgs[$i]['line'] . '' . _bl::$msgs[$i]['time'] . '
    '; + + return $result; +} + +/** + * bl_error() + * + * Save new error to the message list + * + * @access public + * @param string $msg Message to send + */ +function bl_error($msg) { + $debug = debug_backtrace(); + bl_msg($msg, $debug[0]['file'], $debug[0]['line'], 'error'); +} + +/** + * bl_warn() + * + * Save new warning to the message list + * + * @access public + * @param string $msg Message to send + */ +function bl_warn($msg) { + $debug = debug_backtrace(); + bl_msg($msg, $debug[0]['file'], $debug[0]['line'], 'warn'); +} + +/** + * bl_info() + * + * Save new info to the message list + * + * @access public + * @param string $msg Message to send + */ +function bl_info($msg) { + $debug = debug_backtrace(); + bl_msg($msg, $debug[0]['file'], $debug[0]['line'], 'info'); +} + +/** + * bl_var() + * + * Log new variable + * Get the name of the var thanks to: + * http://www.php.net/manual/en/language.variables.php#49997 + * + * + * @access public + * @param mixed $var The var to log + */ +function bl_var(&$var, $var_name = null) { + if ($var_name == null) { + $vals = $GLOBALS; + $old = $var; + $var = $new = 'UNIQUE' . rand() . 'VARIABLE'; + $vname = false; + + foreach ($vals as $key => $val) { + if ($val === $new) + $vname = $key; + } + + $var = $old; + } else { + $vname = $var_name; + } + + $c = count(_bl::$vars); + + // using bl_var with an object class always get + // the same state of the object. + // Here we register the object with different states + if (is_object($var)) { + _bl::$vars['object_' . $vname . '|' . $c] = get_object_vars($var); + } else { + _bl::$vars[$vname . '|' . $c] = $var; + } +} + +/** + * bl_time() + * + * Save new mark of time + * + * @access public + * @param string $label Name for the mark + * @param string $start Start reference. + * @return void() + */ +function bl_time($label = null, $start = null) { + if ($start == null) { + $start = _bl::$time_start; + } + + $c = count(_bl::$msgs_time); + if ($label == null) { + $label = 'Time mark ' . $c; + } + _bl::$msgs_time[$c]['label'] = $label; + _bl::$msgs_time[$c]['time'] = bl_format_time(bl_get_time($start)); + +} + +/** + * bl_log() + * + * Log a simple text. You can use html code. + * + * @access public + * @param string $msg Message to log + */ +function bl_log($msg) { + $debug = debug_backtrace(); + bl_msg($msg, $debug[0]['file'], $debug[0]['line'], 'user'); +} + +/** + * bl_error_handler() + * + * Tipical function for error_handler + * + * @return void + */ +function bl_error_handler($errno, $errstr, $errfile, $errline, $errcontext) { + + $type = ($errno == E_NOTICE) ? 'warn' : 'error'; + + $trace = array_reverse(debug_backtrace()); + array_pop($trace); + + $msg = $errstr; + if (is_array($trace) and count($trace)) { + $msg .= ' + + + + + + + + + '; + foreach ($trace as $item) { + if (basename($item['file']) != _bl_filename) { + $msg .= ' + ' . '' . '' . '' . + ''; + $errfile = $item['file']; + $errline = $item['line']; + } + } + + $msg .= '
    FileLineFunction
    ' . (isset($item['file']) ? $item['file'] : + '') . '' . (isset($item['line']) ? $item['line'] : + '') . '' . $item['function'] . '()' . '
    '; + } + + bl_msg($msg, $errfile, $errline, $type); +} + +/** + * bl_query() + * + * Execute a mysql query and send the data to de log + * + * @access public + * @param string $query The query to run + * @param resource $con Optinally, connection to mysql + * @return resource MySQL resource + */ +function bl_query($query, $con = null) { + + if (_bl_create_times) { + bl_time('Start Query '.substr($query, 0, 30)).'...'; + } + + $debug = debug_backtrace(); + + $t_start = $t_end = $error = ''; + + // make query and get time + // WTF! DRY!! + if ($con) { + $t_start = bl_get_time(); + $sql = mysql_query($query, $con); + $t_stop = bl_get_time($t_start); + } else { + $t_start = bl_get_time(); + $sql = mysql_query($query); + $t_stop = bl_get_time($t_start); + } + $time = $t_stop; + + // check for errros + if (!$sql) { + if (mysql_error()) { + $error = mysql_error(); + } else { + $error = 'Can\'t complete de query. Unknown Error'; // we need this??... may be... + } + } + + $q = trim(strtolower($query)); + $insert_id = $results = '0'; + if (substr($q, 0, 6) == 'insert') { // if is insert get the last id + $insert_id = mysql_insert_id(); + } else + if (substr($q, 0, 6) == 'select') { // if is select get num rows + + // explain query? + $explain_info = ''; + if (_bl_explain_sql and !$error) { + $sql_explain = mysql_query("EXPLAIN " . $query); + $explain = mysql_fetch_assoc($sql_explain); + + $explain_info = ' +

    + EXPLAIN ->Table: ' . $explain['table'] . + ' | + Type: ' . $explain['type'] . + ' | + Possible Keys: ' . $explain['possible_keys'] . + ' | + Key: ' . $explain['key'] . + ' | + Key len: ' . $explain['key_len'] . + ' | + Ref: ' . $explain['ref'] . + ' | + Extra: ' . $explain['Extra'] . ' +

    '; + + $results = $explain['rows']; + } else { + $results = mysql_num_rows($sql); + } + + } + + // add to the querys array + _bl::$count_querys++; + $c = _bl::$count_querys; // :) + _bl::$msg_sql[$c]['query'] = $query; + _bl::$msg_sql[$c]['time'] = $time; + _bl::$msg_sql[$c]['insert'] = $insert_id; + _bl::$msg_sql[$c]['result'] = $results; + _bl::$msg_sql[$c]['explain'] = $explain_info; + _bl::$msg_sql[$c]['error'] = (!empty($error)) ? '' . $error . + '' : ''; + _bl::$msg_sql[$c]['file'] = $debug[0]['file']; + _bl::$msg_sql[$c]['line'] = $debug[0]['line']; + + return $sql; // return resource +} + +/** + * bl_convert() + * + * Convert size in bytes + * + * @access private + * @param mixed $size Size to messure + * @return mixed Size converted + */ +function bl_convert($size) { + if ($size > 0 and is_numeric($size)) { + $unit = array( + 'b', + 'kb', + 'mb', + 'gb', + 'tb', + 'pb'); + return @round($size / pow(1024, ($i = floor(log($size, 1024)))), 2) . + ' ' . $unit[$i] . ''; + } + return '0'; +} + +/** + * bl_get_type() + * + * Because gettype() not is the way? + * + * @access private + * @param mixed $var The var + * @return string Type of var + */ +function bl_get_type($var) { + if (is_array($var)) { + return 'Array'; + } elseif (is_object($var)) { + return 'Object'; + } elseif (is_resource($var)) { + return 'Resource'; + } elseif (is_bool($var)) { + return 'Bool'; + } elseif (is_float($var)) { + return 'Float'; + } elseif (is_double($var)) { + return 'Double'; + } elseif (is_executable($var)) { + return 'Executable'; + } elseif (is_int($var)) { + return 'Int'; + } elseif (is_numeric($var)) { + return 'Numeric'; + } elseif (is_real($var)) { + return 'Real'; + } else { + // para todo lo demas... + return 'String'; + } +} + +/** + * bl_high_array() + * + * Add some colors to the arrays on the vars panel + * TODO: may be the regex need some fix. + * + * @access private + * @param array $array An array + * @return string Highlighted print_r array + */ +function bl_high_array($array) { + $array = preg_replace('/\[(.*?)\]/', '[$1]', print_r($array, true)); + $array = preg_replace('/\[/', '[', $array); + $array = preg_replace('/\]/', ']', $array); + $array = preg_replace('/=>/', '=>', $array); + return $array; +} + +/** + * bl_high_sql() + * + * Highlighter class - highlights SQL with preg and some compromises + * + * @access private + * @author dzver + * @copyright GNU v 3.0 + * @param string $sql SQL query + * @return string Highlighted sql query + */ +function bl_high_sql($sql) { + + $colors = array( + 'chars' => 'grey', + 'keywords' => 'blue', + 'joins' => 'gray', + 'functions' => 'violet', + 'constants' => 'red'); + $words = array( + 'keywords' => array( + 'SELECT', + 'UPDATE', + 'INSERT', + 'DELETE', + 'REPLACE', + 'INTO', + 'CREATE', + 'ALTER', + 'TABLE', + 'DROP', + 'TRUNCATE', + 'FROM', + 'ADD', + 'CHANGE', + 'COLUMN', + 'KEY', + 'WHERE', + 'ON', + 'CASE', + 'WHEN', + 'THEN', + 'END', + 'ELSE', + 'AS', + 'USING', + 'USE', + 'INDEX', + 'CONSTRAINT', + 'REFERENCES', + 'DUPLICATE', + 'LIMIT', + 'OFFSET', + 'SET', + 'SHOW', + 'STATUS', + 'BETWEEN', + 'AND', + 'IS', + 'NOT', + 'OR', + 'XOR', + 'INTERVAL', + 'TOP', + 'GROUPBY', + 'ORDERBY', + 'DESC', + 'ASC', + 'COLLATE', + 'NAMES', + 'UTF8', + 'DISTINCT', + 'DATABASE', + 'CALC_FOUND_ROWS', + 'SQL_NO_CACHE', + 'MATCH', + 'AGAINST', + 'LIKE', + 'REGEXP', + 'RLIKE', + 'PRIMARY', + 'AUTO_INCREMENT', + 'DEFAULT', + 'IDENTITY', + 'VALUES', + 'PROCEDURE', + 'FUNCTION', + 'TRAN', + 'TRANSACTION', + 'COMMIT', + 'ROLLBACK', + 'SAVEPOINT', + 'TRIGGER', + 'CASCADE', + 'DECLARE', + 'CURSOR', + 'FOR', + 'DEALLOCATE'), + 'joins' => array( + 'JOIN', + 'INNER', + 'OUTER', + 'FULL', + 'NATURAL', + 'LEFT', + 'RIGHT'), + 'chars' => '/([\\.,\\(\\)<>:=`]+)/i', + 'functions' => array( + 'MIN', + 'MAX', + 'SUM', + 'COUNT', + 'AVG', + 'CAST', + 'COALESCE', + 'CHAR_LENGTH', + 'LENGTH', + 'SUBSTRING', + 'DAY', + 'MONTH', + 'YEAR', + 'DATE_FORMAT', + 'CRC32', + 'CURDATE', + 'SYSDATE', + 'NOW', + 'GETDATE', + 'FROM_UNIXTIME', + 'FROM_DAYS', + 'TO_DAYS', + 'HOUR', + 'IFNULL', + 'ISNULL', + 'NVL', + 'NVL2', + 'INET_ATON', + 'INET_NTOA', + 'INSTR', + 'FOUND_ROWS', + 'LAST_INSERT_ID', + 'LCASE', + 'LOWER', + 'UCASE', + 'UPPER', + 'LPAD', + 'RPAD', + 'RTRIM', + 'LTRIM', + 'MD5', + 'MINUTE', + 'ROUND', + 'SECOND', + 'SHA1', + 'STDDEV', + 'STR_TO_DATE', + 'WEEK'), + 'constants' => '/(\'[^\']*\'|[0-9]+)/i'); + + $sql = str_replace('\\\'', '\\'', $sql); + foreach ($colors as $key => $color) { + if (in_array($key, array('constants', 'chars'))) { + $regexp = $words[$key]; + } else { + $regexp = '/\\b(' . join("|", $words[$key]) . ')\\b/i'; + } + $sql = preg_replace($regexp, '$1", + $sql); + } + + return $sql; +} + +/** + * bl_get_querys() + * Used for generate de HTML table of sql querys + * + * Developer Info: Using {@link mysql_q()} function we create an array whith info for each query. + * This array is a global array and is called _bl::$msg_sql. + * on bl_debug() function we call to this function ({@link bl_get_querys()}) using this global array. + * Then we iterate _bl::$msg_sql for get all the sql messages created {@link mysql_q()} + * Other functions {@link _bl_get_times}, {@link _bl_get_msg}, {@link _bl_get_memory}... + * are similar to this + * + * @access private + * @param array $bl_msg_sql The global array for SQL querys info + * @return string An HTML table whith each query info + */ +function bl_get_querys($bl_msg_sql) { + $result = ''; + + // be sure $bl_msg_sql not is empty + if (is_array($bl_msg_sql) and count($bl_msg_sql)) { + + // HTML table header + $result = ' + + + + + + + + + + + + + '; + + // add rows to the table + foreach ($bl_msg_sql as $k => $v) { + + $explain = ($v['explain']) ? $v['explain'] : ''; + $result .= ' + + + + + + + + + '; + } + + // Close HTML table + $result .= ' + +
    QueryTimeInsert IDNum ResultsErrorFileLine
    ' . bl_high_sql($v['query']) . $explain . '' . bl_format_time($v['time']) . '' . $v['insert'] . '' . $v['result'] . '' . $v['error'] . '' . str_replace($_SERVER['DOCUMENT_ROOT'], '', $v['file']) . '' . $v['line'] . '
    '; + } + + return $result; +} + +/** + * bl_get_vars() + * Used for generate de HTML table of vars (error, info, warn and log) + * + * @access private + * @param mixed $array Array of vars (generally with get_defined_vars()) + * @param mixed $array_name Name or type the array: user, special, post, get, session... etc. + * @return void + */ +function bl_get_vars($array, $array_name) { + $result = ''; + $count = $results = 0; + + if (count($array)) { + + $extra_cols = ''; + if ((_bl_delete_vars == true) and ($array_name == '_SESSION' or $array_name == + '_COOKIE')) { + $extra_cols = ' + '; + } + + $result = ' + + + + + + + + ' . $extra_cols . ' + + + '; + + $count = 0; + foreach ($array as $k => $v) { + + // $k the name of the var + // $v the value + + if (substr($k, 0, 7) == 'object_') { + $k = str_replace('object_', '', $k); + } + + // if is special var, the name has a simbol | + // this simbol is for diferentiate more than once the same var + // we need the second part, after | + $explode = explode('|', $k); + $k = $explode[0]; + + $error = false; + $count++; + + if (substr($k, 0, 3) == 'bl_' or substr($k, 0, 4) == '_bl_') { + $error = true; + } else { + + // Some versions of php use this type of vars (long name) and too the sort name. + // Check if delete the long name for prevent duplicated vars. + if (_bl_delete_long_vars) { + $delete_vars = array( + '_ENV', + 'HTTP_ENV_VARS', + 'HTTP_POST_VARS', + 'HTTP_GET_VARS', + 'HTTP_COOKIE_VARS', + 'HTTP_SERVER_VARS', + 'HTTP_POST_FILES', + '_REQUEST', + 'HTTP_SESSION_VARS'); + if (in_array($k, $delete_vars)) { + $error = true; + } + } + } + + if (!$error) { + + if ($array_name == '_USER') { + _bl::$count_vars++; + } + + $var_type = bl_get_type($v); + $toggle = $html_button = ''; + if ($var_type == 'Array') { + + $var_type_name = ($var_type == 'Array') ? 'Array' : 'Object'; + + $valor = ' + ' . $var_type_name . '(... + '; + + } elseif ($var_type == 'Object') { + + // methods + $valor = ' + Methods + '; + + $valor .= ' + Object(... + '; + + } elseif ($var_type == 'Bool') { + if ($v) { + $valor = 'True'; + } else { + $valor = 'False'; + } + + } elseif ($var_type == 'Int' or is_numeric($v)) { + $valor = '' . $v . ''; + + } elseif ($var_type == 'Float') { + $valor = '' . $v . ''; + + } else { + + $valor = $v; + + if ($var_type == 'String') { + $valor = htmlspecialchars($v); + $valor_html = ''; + + if (_bl_html_viewer == true) { + $valor_html = $v; + if ($valor_html != strip_tags($valor_html)) { + $html_button = '[html]'; + $valor_html = ' + '; + + $var_type = 'String|HTML'; + + } else { + $valor_html = ''; + } + } + + if (strlen($valor) > 200) { + $valor = '
    ' . substr($valor, 0, + 200) . ' [...]
    + + ' . $valor_html; + $toggle = '
    [...]'; + } + + } + + } + + // Add content to empty vars for better render on html table + if (empty($valor)) { + $valor = ' '; + } + + // get var size (memory) + if ($var_type == 'Object') { + $var_size = 0; + if (_bl_serialize_objects == true) { + $var_size = strlen(serialize($v)); + } + + }else { + $var_size = strlen(serialize($v)); + } + + $prefix = '$'; + if ($array_name == '_CONSTANTS') + $prefix = ''; + $results++; + + $tr_id = 'bl_var' . $array_name . '_' . $count . ''; + + $extra_cols = ''; + if ((_bl_delete_vars == true) and ($array_name == '_SESSION' or $array_name == + '_COOKIE')) { + // bl_del_var(var_name, url, type, key) + $extra_cols = ' + '; + } + + $result .= ' + + + + + + ' . $extra_cols . ' + '; + + if ($var_size > _bl::$max_var_size['size']) { + _bl::$max_var_size['var'] = $k; + _bl::$max_var_size['size'] = $var_size; + } + + $count++; + } + } + $result .= ' + +
    VarValueTypeSize
    + delete +
    $' . $k . $toggle . $html_button . '' . $valor . '' . $var_type . '' . bl_convert($var_size) . '
    '; + + } + + if ($results == 0) { + $result = '

    Array ' . $array_name . + ' is empty

    '; + } + + return $result; +} + +function bl_get_comments($reflection) { + $result = ''; + $comments = $reflection->getDocComment(); + if (empty($comments)) { + $result = 'No phpDocs'; + } else { + $comments = htmlspecialchars($comments); + $result = '' . str_replace("\n", '
    ', $comments) . + '
    '; + } + return $result; +} + +function bl_get_functions() { + + $functions = get_defined_functions(); + $functions = $functions['user']; + + if (count($functions)) { + $table = ' + + + + + + + + + + '; + $tr = ''; + + foreach ($functions as $k => $function) { + if (substr($function, 0, 3) == 'bl_') { + unset($functions[$k]); + } else { + $reflection = new ReflectionFunction($function); + $num_required_params = $reflection->getNumberOfRequiredParameters(); + $params = $reflection->getParameters(); + $function_params = ''; + $count = 1; + + foreach ($params as $param) { + if ($count > $num_required_params) { + $function_params .= '[$' . $param->name . '], '; + } else { + $function_params .= '$' . $param->name . ', '; + } + $count++; + } + + $comments = $reflection->getDocComment(); + if (empty($comments)) { + $comments = 'No phpDocs'; + } + + $tr .= ' + + + + + '; + + } + } + + $table .= $tr . '
    FunctionFileLineComments
    ' . $function . ' ( ' . rtrim($function_params, + ', ') . ' )' . $reflection->getFileName() . '' . $reflection->getStartLine() . '' . bl_get_comments($reflection) . '
    '; + + $functions = $table; + } else { + $functions = '

    There aren\'t user functions

    '; + } + + return $functions; +} + +function bl_get_class_methods($reflection, $count) { + $result = ''; + $methods = $reflection->getMethods(); + if (count($methods)) { + foreach ($methods as $k => $method) { + $method_params_text = ''; + $method_params = $reflection->getMethod($method->name)->getParameters(); + + $access = ''; + if ($reflection->getMethod($method->name)->isPublic()) { + $access = 'public '; + } + if ($reflection->getMethod($method->name)->isPrivate()) { + $access = 'private '; + } + if ($reflection->getMethod($method->name)->isProtected()) { + $access = 'protected '; + } + if ($reflection->getMethod($method->name)->isStatic()) { + $access = 'static '; + } + + foreach ($method_params as $param) { + $method_params_text .= '$' . $param->name . ', '; + } + $result .= '' . $access . + '' . $method->name . '(' . + rtrim($method_params_text, ', ') . '); '; + } + } + + if (empty($result)) { + $result = 'nothing'; + } else { + $result = rtrim($result, ' - '); + } + + return $result; +} + +function bl_get_class_properties($reflection, $count) { + $result = ''; + $properties = $reflection->getProperties(); + if (count($properties)) { + foreach ($properties as $prop) { + + $access = ''; + if ($reflection->getProperty($prop->name)->isPublic()) { + $access = 'public '; + } + if ($reflection->getProperty($prop->name)->isPrivate()) { + $access = 'private '; + } + if ($reflection->getProperty($prop->name)->isProtected()) { + $access = 'protected '; + } + if ($reflection->getProperty($prop->name)->isStatic()) { + $access = 'static '; + } + + $result .= '' . $access . + '' . $prop->name . '; '; + } + } + + if (empty($result)) { + $result = 'nothing'; + } else { + $result = rtrim($result, ' - '); + } + + return $result; +} + +function bl_get_classes() { + + $classes = get_declared_classes(); + + $result = array("user" => "", "internal" => ""); + + $table = ' + + + + + + + + + + '; + $utr = $itr = ''; + + $count = '0'; + if (count($classes)) { + foreach ($classes as $class) { + + if (substr($class, 0, 3) != 'bl_' and substr($class, 0, 3) != '_bl') { + $reflection = new ReflectionClass($class); + $methods = $properties = ''; + + if ($reflection->isInternal()) { + + $methods = bl_get_class_methods($reflection, $count); + $properties = bl_get_class_properties($reflection, $count); + $itr .= ' + + + + + + + '; + + } else { + + $comments = bl_get_comments($reflection); + $comments_expand = 'no phpDocs'; + if ($comments != 'No phpDocs') { + $comments_expand = 'expand for comments'; + } else { + $comments_expand = 'no phpDocs'; + } + + $methods = bl_get_class_methods($reflection, $count); + $properties = bl_get_class_properties($reflection, $count); + $utr .= ' + + + + + + + '; + } + + $count++; + } + } + + } + + $result['user'] = str_replace('{mode}', 'uclasses', $table) . $utr . + '
    ClassMethodsPropertiesFile + Comments
    ' . $class . '
    + expand
    ' . $methods . '' . $properties . ' - +
    +
    ' . $class . '
    + expand
    ' . $methods . '' . $properties . '' . $reflection->getFileName() . ' +
    ' . + $comments_expand . '
    + +
    '; + $result['internal'] = str_replace('{mode}', 'iclasses', $table) . $itr . + ''; + + return $result; + +} + +function bl_get_usage() { + + if (PHP_OS == 'Linux') { + $usage = getrusage(); + + $tr = ''; + + if (isset($usage['ru_oublock'])) { + $tr .= ' + + ru_oublock + block output operations + ' . $usage['ru_oublock'] . ' + '; + } + + if (isset($usage['ru_inblock'])) { + $tr .= ' + + ru_inblock + block input operations + ' . $usage['ru_inblock'] . ' + '; + } + + if (isset($usage['ru_msgsnd'])) { + $tr .= ' + + ru_msgsnd + messages sent + ' . $usage['ru_msgsnd'] . ' + '; + } + + if (isset($usage['ru_msgrcv'])) { + $tr .= ' + + ru_msgrcv + messages received + ' . $usage['ru_msgrcv'] . ' + '; + } + + if (isset($usage['ru_maxrss'])) { + $tr .= ' + + ru_maxrss + maximum resident set size + ' . $usage['ru_maxrss'] . ' + '; + } + + if (isset($usage['ru_ixrss'])) { + $tr .= ' + + ru_ixrss + integral shared memory size + ' . $usage['ru_ixrss'] . ' + '; + } + + if (isset($usage['ru_idrss'])) { + $tr .= ' + + ru_idrss + integral unshared data size + ' . $usage['ru_idrss'] . ' + '; + } + + if (isset($usage['ru_minflt'])) { + $tr .= ' + + ru_minflt + page reclaims + ' . $usage['ru_minflt'] . ' + '; + } + + if (isset($usage['ru_majflt'])) { + $tr .= ' + + ru_majflt + page faults + ' . $usage['ru_majflt'] . ' + '; + } + + if (isset($usage['ru_nsignals'])) { + $tr .= ' + + ru_nsignals + signals received + ' . $usage['ru_nsignals'] . ' + '; + } + + if (isset($usage['ru_nvcsw'])) { + $tr .= ' + + ru_nvcsw + voluntary context switches + ' . $usage['ru_nvcsw'] . ' + '; + } + + if (isset($usage['ru_nivcsw'])) { + $tr .= ' + + ru_nivcsw + involuntary context switches + ' . $usage['ru_nivcsw'] . ' + '; + } + + if (isset($usage['ru_nswap'])) { + $tr .= ' + + ru_nswap + swaps + ' . $usage['ru_nswap'] . ' + '; + } + + if (isset($usage['ru_utime.tv_usec'])) { + $tr .= ' + + ru_utime.tv_usec + user time used (microseconds) + ' . $usage['ru_utime.tv_usec'] . ' + '; + } + + if (isset($usage['ru_utime.tv_sec'])) { + $tr .= ' + + ru_utime.tv_sec + user time used (seconds) + ' . $usage['ru_utime.tv_sec'] . ' + '; + } + + if (isset($usage['ru_stime.tv_usec'])) { + $tr .= ' + + ru_stime.tv_usec + system time used (microseconds) + ' . $usage['ru_stime.tv_usec'] . ' + '; + } + + if (isset($usage['ru_stime.tv_sec'])) { + $tr .= ' + + ru_stime.tv_sec + system time used (seconds) + ' . $usage['ru_stime.tv_sec'] . ' + '; + } + + $result = ' + + ' . $tr . ' +
    '; + } else { + $result = '

    Only for Linux systems. You are using ' . + PHP_OS . '

    '; + } + + return $result; +} + +/** + * bl_included_files() + * + * get php included files and generate a table + * + * @access private + * @return HTML table with included files + */ +function bl_included_files() { + $result = ''; + + $files = get_included_files(); + asort($files); + if (is_array($files) and count($files)) { + + $result = ' + + + + + + + '; + foreach ($files as $file) { + + $filesize = filesize($file); + + if ($filesize > _bl::$max_file_size['size']) { + _bl::$max_file_size['size'] = $filesize; + $separate_path = explode(DIRECTORY_SEPARATOR, $file); // separate... + _bl::$max_file_size['file'] = end($separate_path); // and get only the name of the file + } + + if ($filesize > 0) { + $filesize = bl_convert($filesize); + } + + $result .= ' + + + + '; + + } + $result .= ' + +
    FileSize
    ' . str_ireplace($_SERVER['DOCUMENT_ROOT'], '', $file) . + '' . $filesize . '
    '; + } + + return $result; + +} + +/** + * bl_get_times() + * + * Get html table from time marks + * + * @access private + * @return HTML table with time marks + */ +function bl_get_times($times) { + $result = ''; + + if (is_array($times) and count($times)) { + + $result = ' + + + + + + + '; + foreach ($times as $time) { + + $result .= ' + + + + '; + } + $result .= ' + +
    LabelValue
    ' . $time['label'] . '' . $time['time'] . '
    '; + } + + return $result; + +} + +/** + * bl_media(); + * + * Get css y js tags + * + * @access private + * @param string $source List of files separated by comma + * @param string $type Type of files (css|js) + * @return string HTML code ( or '; + } + } + + return $result; +} + +/** + * bl_css() + * + * Get css. Use internal css or external if _bl_css_file has a file list + * + * @access private + * @return string The HTML code ("; + + // WTF Parse error... expecting T_PAAMAYIM_NEKUDOTAYIM + $x = _bl_css_file; + if (!empty($x)) { + $result = bl_media(_bl_css_file, 'css'); + } + + return $result; + +} + +/** + * bl_js() + * + * Like (@link bl_css()) + * + * @access private + * @return string HTML code (