31

我正在尝试在 Symfony2 中实现 websockets,

我发现这个http://socketo.me/看起来不错。

我从 Symfony 中试用它,它可以工作,这只是一个使用 telnet 的简单调用。但我不知道如何将它集成到 Symfony 中。

我想我必须创建一个服务,但我真的不知道哪种服务以及如何从客户端调用它

谢谢你的帮助。

4

1 回答 1

35

首先,您应该创建一个服务。如果您想注入您的实体管理器和其他依赖项,请在此处进行。

在 src/MyApp/MyBundle/Resources/config/services.yml 中:

services:
    chat:
        class: MyApp\MyBundle\Chat
        arguments: 
            - @doctrine.orm.default_entity_manager

在 src/MyApp/MyBundle/Chat.php 中:

class Chat implements MessageComponentInterface {
    /**
     * @var \Doctrine\ORM\EntityManager
     */
    protected $em;
    /**
     * Constructor
     *
     * @param \Doctrine\ORM\EntityManager $em
     */
    public function __construct($em)
    {
        $this->em = $em;
    }
    // onOpen, onMessage, onClose, onError ...

接下来,制作一个控制台命令来运行服务器。

在 src/MyApp/MyBundle/Command/ServerCommand.php

use Symfony\Bundle\FrameworkBundle\Command\ContainerAwareCommand;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Output\OutputInterface;
use Ratchet\Server\IoServer;

class ServerCommand extends ContainerAwareCommand
{
    protected function configure()
    {
        $this
            ->setName('chat:server')
            ->setDescription('Start the Chat server');
    }

    protected function execute(InputInterface $input, OutputInterface $output)
    {
        $chat = $this->getContainer()->get('chat');
        $server = IoServer::factory($chat, 8080);
        $server->run();
    }
}

现在您有了一个带有依赖注入的 Chat 类,您可以将服务器作为控制台命令运行。希望这可以帮助!

于 2013-07-08T20:49:09.877 回答