/* This file is part of Ingen.
 * Copyright 2007-2011 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_GUI_APP_HPP
#define INGEN_GUI_APP_HPP

#include <cassert>
#include <string>
#include <map>
#include <utility>

#include <gtkmm.h>
#include <libgnomecanvasmm.h>

#include "raul/SharedPtr.hpp"
#include "raul/Deletable.hpp"

#include "shared/World.hpp"

namespace Ingen {
	class ClientInterface;
	class ServerInterface;
	class Port;
	namespace Shared {
		class World;
	}
	namespace Client {
		class ClientStore;
		class PatchModel;
		class PluginModel;
		class PortModel;
		class SigClientInterface;
	}
	namespace Serialisation {
		class Serialiser;
	}
}

namespace Ingen {

namespace GUI {

class MessagesWindow;
class PatchCanvas;
class PatchTreeView;
class PatchTreeWindow;
class ConnectWindow;
class Configuration;
class ThreadedLoader;
class WindowFactory;
class Port;

/** Ingen Gtk Application.
 * \ingroup GUI
 */
class App
{
public:
	~App();

	void error_message(const std::string& msg);

	void attach(SharedPtr<Client::SigClientInterface> client);

	void detach();

	void register_callbacks();
	bool gtk_main_iteration();

	void show_about();
	bool quit(Gtk::Window& dialog_parent);

	void port_activity(Port* port);
	void activity_port_destroyed(Port* port);
	bool can_control(const Client::PortModel* port) const;

	bool signal() const { return _enable_signal; }
	bool disable_signals()  { bool old = _enable_signal; _enable_signal = false; return old; }
	void enable_signals(bool b) { _enable_signal = b; }

	uint32_t sample_rate() const;

	ConnectWindow*   connect_window()  const { return _connect_window; }
	MessagesWindow*  messages_dialog() const { return _messages_window; }
	PatchTreeWindow* patch_tree()      const { return _patch_tree_window; }
	Configuration*   configuration()   const { return _configuration; }
	WindowFactory*   window_factory()  const { return _window_factory; }

	Glib::RefPtr<Gdk::Pixbuf> icon_from_path(const std::string& path, int size);

	SharedPtr<Ingen::ServerInterface>     engine() const { return _world->engine(); }
	SharedPtr<Client::SigClientInterface> client() const { return _client; }
	SharedPtr<Client::ClientStore>        store()  const { return _store; }
	SharedPtr<ThreadedLoader>             loader() const { return _loader; }

	SharedPtr<Serialisation::Serialiser> serialiser();

	static inline App& instance() { assert(_instance); return *_instance; }

	static void init(Ingen::Shared::World* world);
	static void run();

	inline Ingen::Shared::World*     world() const { return _world; }
	inline Ingen::Shared::LV2URIMap& uris()  const { return *_world->uris(); }

protected:

	/** This is needed for the icon map. */
	template <typename A, typename B>
	struct LexicalCompare {
		bool operator()(const std::pair<A, B>& p1, const std::pair<A, B>& p2) {
			return (p1.first < p2.first) ||
				((p1.first == p2.first) && (p1.second < p2.second));
		}
	};

	typedef std::map< std::pair<std::string, int>,
	                  Gdk::Pixbuf*,
	                  LexicalCompare<std::string, int> > Icons;
	Icons _icons;

	App(Ingen::Shared::World* world);

	bool animate();
	void error_response(int32_t id, const std::string& str);

	void property_change(const Raul::URI&  subject,
	                     const Raul::URI&  key,
	                     const Raul::Atom& value);

	static void* icon_destroyed(void* data);

	static Gtk::Main* _main;
	static App*       _instance;

	SharedPtr<Client::SigClientInterface> _client;
	SharedPtr<Client::ClientStore>        _store;
	SharedPtr<ThreadedLoader>             _loader;

	Configuration*    _configuration;

	ConnectWindow*    _connect_window;
	MessagesWindow*   _messages_window;
	PatchTreeWindow*  _patch_tree_window;
	Gtk::AboutDialog* _about_dialog;
	WindowFactory*    _window_factory;

	Ingen::Shared::World* _world;

	uint32_t _sample_rate;

	typedef std::map<Port*, bool> ActivityPorts;
	ActivityPorts _activity_ports;

	bool _enable_signal;
};

} // namespace GUI
} // namespace Ingen

#endif // INGEN_GUI_APP_HPP