This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
symfony/src/Symfony/Component/HttpKernel
2012-02-12 14:51:17 +01:00
..
Bundle removed unused use statements 2011-10-08 07:09:31 +02:00
CacheClearer Coding standards and removing whitespace. 2011-12-24 15:50:47 +05:45
CacheWarmer merged 2.0 2011-12-13 16:12:53 +01:00
Config [Phpdoc] Cleaning/fixing 2011-04-23 15:18:47 +00:00
Controller [HttpKernel] fixed function support in ControllerResolver (closes #3331) 2012-02-12 00:34:53 +01:00
DataCollector [HttpKernel] fixed flashes in the request data collector 2012-02-12 14:51:17 +01:00
Debug merged branch vicb/profiler.terminate (PR #3223) 2012-02-12 13:12:18 +01:00
DependencyInjection removed unused use statements 2011-12-18 14:36:25 +01:00
Event [HttpKernel] added request and response as arguments to the TerminableInterface::terminate() method 2011-12-15 18:16:29 +01:00
EventListener [EventListener] Fix an issue with sub-requests 2012-02-12 10:44:50 +01:00
Exception [HttpKernel] added some unit tests for ExceptionHandler and 2012-01-22 11:19:40 +01:00
HttpCache merged 2.0 2012-02-04 08:03:45 +01:00
Log [DoctrineBridge] fixed some CS 2011-12-13 10:22:12 +01:00
Profiler merged branch pulzarraider/memcache_profiler_storage (PR #2766) 2012-02-12 13:26:06 +01:00
Client.php merged 2.0 2011-12-18 14:48:17 +01:00
composer.json Revert "merged 2.0" 2012-01-08 20:43:02 +01:00
HttpKernel.php [HttpKernel] added request and response as arguments to the TerminableInterface::terminate() method 2011-12-15 18:16:29 +01:00
HttpKernelInterface.php [HttpKernel] removed BC breaks, introduced new TerminableInterface 2011-12-06 10:41:41 -08:00
Kernel.php merged 2.0 2012-01-16 07:44:08 +01:00
KernelEvents.php [HttpKernel] Add Kernel::terminate() and HttpKernel::terminate() for post-response logic 2011-12-06 11:09:36 +01:00
KernelInterface.php changed the way we store the current ob level (refs #2617) 2011-11-11 23:35:49 +01:00
LICENSE added LICENSE files for the subtree repositories 2011-02-22 18:58:15 +01:00
README.md tweaked the README files 2011-12-18 14:22:28 +01:00
TerminableInterface.php [HttpKernel] added request and response as arguments to the TerminableInterface::terminate() method 2011-12-15 18:16:29 +01:00

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 gives 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

Unit tests:

https://github.com/symfony/symfony/tree/master/tests/Symfony/Tests/Component/HttpKernel