Skip to content

Commit

Permalink
Add autoloader.
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastianbergmann committed Jan 27, 2011
1 parent f8e5d0c commit f6afbe4
Show file tree
Hide file tree
Showing 5 changed files with 167 additions and 3 deletions.
75 changes: 75 additions & 0 deletions PHP/Timer/Autoload.php
@@ -0,0 +1,75 @@
<?php
/**
* PHP_Timer
*
* Copyright (c) 2010-2011, Sebastian Bergmann <sb@sebastian-bergmann.de>.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
*
* * Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in
* the documentation and/or other materials provided with the
* distribution.
*
* * Neither the name of Sebastian Bergmann nor the names of his
* contributors may be used to endorse or promote products derived
* from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
* COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*
* @package PHP
* @subpackage Timer
* @author Sebastian Bergmann <sb@sebastian-bergmann.de>
* @copyright 2010-2011 Sebastian Bergmann <sb@sebastian-bergmann.de>
* @license http://www.opensource.org/licenses/bsd-license.php BSD License
* @link http://github.com/sebastianbergmann/php-timer
* @since File available since Release 1.1.0
*/

function php_timer_autoload($class = NULL) {
static $classes = NULL;
static $path = NULL;

if ($classes === NULL) {
$classes = array(
'php_timer' => '/Timer.php'
);

$path = dirname(dirname(__FILE__));
}

if ($class === NULL) {
$result = array();

foreach ($classes as $file) {
$result[] = $path . $file;
}

return $result;
}

$cn = strtolower($class);

if (isset($classes[$cn])) {
require $path . $classes[$cn];
}
}

spl_autoload_register('php_timer_autoload');
75 changes: 75 additions & 0 deletions PHP/Timer/Autoload.php.in
@@ -0,0 +1,75 @@
<?php
/**
* PHP_Timer
*
* Copyright (c) 2010-2011, Sebastian Bergmann <sb@sebastian-bergmann.de>.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
*
* * Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in
* the documentation and/or other materials provided with the
* distribution.
*
* * Neither the name of Sebastian Bergmann nor the names of his
* contributors may be used to endorse or promote products derived
* from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
* COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*
* @package PHP
* @subpackage Timer
* @author Sebastian Bergmann <sb@sebastian-bergmann.de>
* @copyright 2010-2011 Sebastian Bergmann <sb@sebastian-bergmann.de>
* @license http://www.opensource.org/licenses/bsd-license.php BSD License
* @link http://github.com/sebastianbergmann/php-timer
* @since File available since Release 1.1.0
*/

function php_timer_autoload($class = NULL) {
static $classes = NULL;
static $path = NULL;

if ($classes === NULL) {
$classes = array(
___CLASSLIST___
);

$path = dirname(dirname(__FILE__));
}

if ($class === NULL) {
$result = array();

foreach ($classes as $file) {
$result[] = $path . $file;
}

return $result;
}

$cn = strtolower($class);

if (isset($classes[$cn])) {
require $path . $classes[$cn];
}
}

spl_autoload_register('php_timer_autoload');
6 changes: 6 additions & 0 deletions build.xml
Expand Up @@ -11,6 +11,12 @@
<mkdir dir="${basedir}/build/pdepend"/>
</target>

<target name="phpab">
<exec executable="phpab">
<arg line='-o PHP/Timer/Autoload.php -c -t PHP/Timer/Autoload.php.in --indent " " PHP' />
</exec>
</target>

<!-- Run unit tests and generate junit.xml and clover.xml -->
<target name="phpunit">
<exec executable="phpunit" failonerror="true"/>
Expand Down
11 changes: 8 additions & 3 deletions package.xml
Expand Up @@ -17,10 +17,10 @@
<email>sb@sebastian-bergmann.de</email>
<active>yes</active>
</lead>
<date>2010-05-08</date>
<date>2011-MM-DD</date>
<version>
<release>1.0.0</release>
<api>1.0.0</api>
<release>1.1.0</release>
<api>1.1.0</api>
</version>
<stability>
<release>stable</release>
Expand All @@ -31,6 +31,11 @@
<contents>
<dir name="/">
<dir name="PHP">
<dir name="Timer">
<file baseinstalldir="/" name="Autoload.php" role="php">
<tasks:replace from="@package_version@" to="version" type="package-info" />
</file>
</dir>
<file baseinstalldir="/" name="Timer.php" role="php">
<tasks:replace from="@package_version@" to="version" type="package-info" />
</file>
Expand Down
3 changes: 3 additions & 0 deletions phpunit.xml.dist
Expand Up @@ -18,6 +18,9 @@
<filter>
<whitelist addUncoveredFilesFromWhitelist="true">
<directory suffix=".php">PHP</directory>
<exclude>
<file>PHP/Timer/Autoload.php</file>
</exclude>
</whitelist>
</filter>
</phpunit>

0 comments on commit f6afbe4

Please sign in to comment.