kekrozsak/vendor/symfony/symfony/src/Symfony/Component/HttpKernel
Polonkai Gergely 9d0d2ce524 Updated to Symfony 2.1 BETA3 2012-07-16 21:40:19 +02:00
..
Bundle Updated to Symfony 2.1 BETA3 2012-07-16 21:40:19 +02:00
CacheClearer Updated to Symfony 2.1 BETA3 2012-07-16 21:40:19 +02:00
CacheWarmer Updated to Symfony 2.1 BETA3 2012-07-16 21:40:19 +02:00
Config Initial commit with Symfony 2.1+Vendors 2012-07-01 09:52:20 +02:00
Controller Updated to Symfony 2.1 BETA3 2012-07-16 21:40:19 +02:00
DataCollector Updated to Symfony 2.1 BETA3 2012-07-16 21:40:19 +02:00
Debug Updated to Symfony 2.1 BETA3 2012-07-16 21:40:19 +02:00
DependencyInjection Updated to Symfony 2.1 BETA3 2012-07-16 21:40:19 +02:00
Event Initial commit with Symfony 2.1+Vendors 2012-07-01 09:52:20 +02:00
EventListener Updated to Symfony 2.1 BETA3 2012-07-16 21:40:19 +02:00
Exception Updated to Symfony 2.1 BETA3 2012-07-16 21:40:19 +02:00
HttpCache Updated to Symfony 2.1 BETA3 2012-07-16 21:40:19 +02:00
Log Updated to Symfony 2.1 BETA3 2012-07-16 21:40:19 +02:00
Profiler Updated to Symfony 2.1 BETA3 2012-07-16 21:40:19 +02:00
Tests Updated to Symfony 2.1 BETA3 2012-07-16 21:40:19 +02:00
.gitignore Updated to Symfony 2.1 BETA3 2012-07-16 21:40:19 +02:00
CHANGELOG.md Upgraded to Symfony 2.1-beta2 2012-07-15 14:56:31 +02:00
Client.php Initial commit with Symfony 2.1+Vendors 2012-07-01 09:52:20 +02:00
HttpKernel.php Updated to Symfony 2.1 BETA3 2012-07-16 21:40:19 +02:00
HttpKernelInterface.php Updated to Symfony 2.1 BETA3 2012-07-16 21:40:19 +02:00
Kernel.php Updated to Symfony 2.1 BETA3 2012-07-16 21:40:19 +02:00
KernelEvents.php Initial commit with Symfony 2.1+Vendors 2012-07-01 09:52:20 +02:00
KernelInterface.php Updated to Symfony 2.1 BETA3 2012-07-16 21:40:19 +02:00
LICENSE Initial commit with Symfony 2.1+Vendors 2012-07-01 09:52:20 +02:00
README.md Initial commit with Symfony 2.1+Vendors 2012-07-01 09:52:20 +02:00
TerminableInterface.php Updated to Symfony 2.1 BETA3 2012-07-16 21:40:19 +02:00
composer.json Initial commit with Symfony 2.1+Vendors 2012-07-01 09:52:20 +02:00
phpunit.xml.dist Initial commit with Symfony 2.1+Vendors 2012-07-01 09:52:20 +02:00

README.md

HttpKernel Component

HttpKernel provides the building blocks to create flexible and fast HTTP-based frameworks.

HttpKernelInterface is the core interface of the Symfony2 full-stack framework:

interface HttpKernelInterface
{
    /**
     * Handles a Request to convert it to a Response.
     *
     * @param  Request $request A Request instance
     *
     * @return Response A Response instance
     */
    function handle(Request $request, $type = self::MASTER_REQUEST, $catch = true);
}

It takes a Request as an input and should return a Response as an output. Using this interface makes your code compatible with all frameworks using the Symfony2 components. And this will give you many cool features for free.

Creating a framework based on the Symfony2 components is really easy. Here is a very simple, but fully-featured framework based on the Symfony2 components:

$routes = new RouteCollection();
$routes->add('hello', new Route('/hello', array('_controller' =>
    function (Request $request) {
        return new Response(sprintf("Hello %s", $request->get('name')));
    }
)));

$request = Request::createFromGlobals();

$context = new RequestContext();
$context->fromRequest($request);

$matcher = new UrlMatcher($routes, $context);

$dispatcher = new EventDispatcher();
$dispatcher->addSubscriber(new RouterListener($matcher));

$resolver = new ControllerResolver();

$kernel = new HttpKernel($dispatcher, $resolver);

$kernel->handle($request)->send();

This is all you need to create a flexible framework with the Symfony2 components.

Want to add an HTTP reverse proxy and benefit from HTTP caching and Edge Side Includes?

$kernel = new HttpKernel($dispatcher, $resolver);

$kernel = new HttpCache($kernel, new Store(__DIR__.'/cache'));

Want to functional test this small framework?

$client = new Client($kernel);
$crawler = $client->request('GET', '/hello/Fabien');

$this->assertEquals('Fabien', $crawler->filter('p > span')->text());

Want nice error pages instead of ugly PHP exceptions?

$dispatcher->addSubscriber(new ExceptionListener(function (Request $request) {
    $msg = 'Something went wrong! ('.$request->get('exception')->getMessage().')';

    return new Response($msg, 500);
}));

And that's why the simple looking HttpKernelInterface is so powerful. It gives you access to a lot of cool features, ready to be used out of the box, with no efforts.

Resources

You can run the unit tests with the following command:

phpunit

If you also want to run the unit tests that depend on other Symfony Components, install dev dependencies before running PHPUnit:

php composer.phar install --dev