/* This file is part of Ingen. * Copyright 2008-2011 David Robillard * * Ingen is free software; you can redistribute it and/or modify it under the * terms of the GNU General Public License as published by the Free Software * Foundation; either version 2 of the License, or (at your option) any later * version. * * Ingen is distributed in the hope that it will be useful, but WITHOUT ANY * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS * FOR A PARTICULAR PURPOSE. See the GNU General Public License for details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ #ifndef INGEN_CLIENT_HTTPCLIENTRECEIVER_HPP #define INGEN_CLIENT_HTTPCLIENTRECEIVER_HPP #include #include #include #include "sord/sordmm.hpp" #include "raul/Deletable.hpp" #include "raul/SharedPtr.hpp" #include "raul/Thread.hpp" #include "ingen/ClientInterface.hpp" #include "ingen/serialisation/Parser.hpp" typedef struct _SoupSession SoupSession; typedef struct _SoupMessage SoupMessage; namespace Ingen { namespace Client { class HTTPClientReceiver : public boost::noncopyable, public Raul::Deletable { public: HTTPClientReceiver(Shared::World* world, const std::string& url, SharedPtr target); ~HTTPClientReceiver(); static void send(SoupMessage* msg); static void close_session(); std::string uri() const { return _url; } void start(bool dump); void stop(); private: static void message_callback(SoupSession* session, SoupMessage* msg, void* ptr); void update(const std::string& str); class Listener : public Raul::Thread { public: Listener(HTTPClientReceiver* receiver, const std::string& uri); ~Listener(); void _run(); private: std::string _uri; int _sock; HTTPClientReceiver* _receiver; }; friend class Listener; SharedPtr _listener; Glib::Mutex _mutex; SharedPtr _target; Shared::World* _world; const std::string _url; bool _quit_flag; }; } // namespace Client } // namespace Ingen #endif // INGEN_CLIENT_HTTPCLIENTRECEIVER_HPP