JMSSerializerBundle.php 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. <?php
  2. /*
  3. * Copyright 2011 Johannes M. Schmitt <schmittjoh@gmail.com>
  4. *
  5. * Licensed under the Apache License, Version 2.0 (the "License");
  6. * you may not use this file except in compliance with the License.
  7. * You may obtain a copy of the License at
  8. *
  9. * http://www.apache.org/licenses/LICENSE-2.0
  10. *
  11. * Unless required by applicable law or agreed to in writing, software
  12. * distributed under the License is distributed on an "AS IS" BASIS,
  13. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14. * See the License for the specific language governing permissions and
  15. * limitations under the License.
  16. */
  17. namespace JMS\SerializerBundle;
  18. use Symfony\Component\DependencyInjection\Compiler\PassConfig;
  19. use JMS\SerializerBundle\DependencyInjection\Compiler\SetVisitorsPass;
  20. use JMS\SerializerBundle\DependencyInjection\Compiler\CustomHandlersPass;
  21. use JMS\SerializerBundle\DependencyInjection\Compiler\RegisterEventListenersAndSubscribersPass;
  22. use Symfony\Component\DependencyInjection\ContainerBuilder;
  23. use Symfony\Component\HttpKernel\Bundle\Bundle;
  24. use JMS\DiExtraBundle\DependencyInjection\Compiler\LazyServiceMapPass;
  25. use Symfony\Component\DependencyInjection\Definition;
  26. class JMSSerializerBundle extends Bundle
  27. {
  28. public function build(ContainerBuilder $builder)
  29. {
  30. $builder->addCompilerPass(new LazyServiceMapPass('jms_serializer.serialization_visitor', 'format',
  31. function(ContainerBuilder $container, Definition $def) {
  32. $container->getDefinition('jms_serializer.serializer')->replaceArgument(3, $def);
  33. }
  34. ));
  35. $builder->addCompilerPass(new LazyServiceMapPass('jms_serializer.deserialization_visitor', 'format',
  36. function(ContainerBuilder $container, Definition $def) {
  37. $container->getDefinition('jms_serializer.serializer')->replaceArgument(4, $def);
  38. }
  39. ));
  40. $builder->addCompilerPass(new RegisterEventListenersAndSubscribersPass(), PassConfig::TYPE_BEFORE_REMOVING);
  41. $builder->addCompilerPass(new CustomHandlersPass(), PassConfig::TYPE_BEFORE_REMOVING);
  42. }
  43. }