/* This file is part of Ingen.
 * Copyright (C) 2008-2009 David Robillard <http://drobilla.net>
 *
 * 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 <cstdlib>
#include <boost/utility.hpp>
#include <glibmm/thread.h>
#include "redlandmm/World.hpp"
#include "raul/Deletable.hpp"
#include "raul/SharedPtr.hpp"
#include "raul/Thread.hpp"
#include "interface/ClientInterface.hpp"
#include "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<Shared::ClientInterface> 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> _listener;

	Glib::Mutex _mutex;
	SharedPtr<Shared::ClientInterface> _target;

	Shared::World*    _world;
	const std::string _url;
	bool              _quit_flag;
};


} // namespace Client
} // namespace Ingen

#endif // INGEN_CLIENT_HTTPCLIENTRECEIVER_HPP