/*
  This file is part of Ingen.
  Copyright 2007-2015 David Robillard <http://drobilla.net/>

  Ingen is free software: you can redistribute it and/or modify it under the
  terms of the GNU Affero General Public License as published by the Free
  Software Foundation, either version 3 of the License, or 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 Affero General Public License for details.

  You should have received a copy of the GNU Affero General Public License
  along with Ingen.  If not, see <http://www.gnu.org/licenses/>.
*/

#include "NewSubgraphWindow.hpp"

#include "App.hpp"
#include "Window.hpp"

#include <ingen/Forge.hpp>
#include <ingen/Interface.hpp>
#include <ingen/Properties.hpp>
#include <ingen/Resource.hpp>
#include <ingen/URI.hpp>
#include <ingen/URIs.hpp>
#include <ingen/client/ClientStore.hpp>
#include <ingen/client/GraphModel.hpp>
#include <ingen/paths.hpp>
#include <raul/Path.hpp>
#include <raul/Symbol.hpp>

#include <glibmm/propertyproxy.h>
#include <glibmm/refptr.h>
#include <glibmm/ustring.h>
#include <gtkmm/adjustment.h>
#include <gtkmm/builder.h>
#include <gtkmm/button.h>
#include <gtkmm/entry.h>
#include <gtkmm/label.h>
#include <gtkmm/spinbutton.h>
#include <gtkmm/window.h>
#include <sigc++/functors/mem_fun.h>

#include <cstdint>
#include <map>
#include <string>
#include <utility>

namespace ingen::gui {

NewSubgraphWindow::NewSubgraphWindow(BaseObjectType*                   cobject,
                                     const Glib::RefPtr<Gtk::Builder>& xml)
	: Window(cobject)
{
	xml->get_widget("new_subgraph_name_entry", _name_entry);
	xml->get_widget("new_subgraph_message_label", _message_label);
	xml->get_widget("new_subgraph_polyphony_spinbutton", _poly_spinbutton);
	xml->get_widget("new_subgraph_ok_button", _ok_button);
	xml->get_widget("new_subgraph_cancel_button", _cancel_button);

	_name_entry->signal_changed().connect(sigc::mem_fun(this, &NewSubgraphWindow::name_changed));
	_ok_button->signal_clicked().connect(sigc::mem_fun(this, &NewSubgraphWindow::ok_clicked));
	_cancel_button->signal_clicked().connect(sigc::mem_fun(this, &NewSubgraphWindow::cancel_clicked));

	_ok_button->property_sensitive() = false;

	_poly_spinbutton->get_adjustment()->configure(1.0, 1.0, 128, 1.0, 10.0, 0);
}

void
NewSubgraphWindow::present(std::shared_ptr<const client::GraphModel> graph,
                           const Properties&                         data)
{
	set_graph(std::move(graph));
	_initial_data = data;
	Gtk::Window::present();
}

/** Sets the graph controller for this window and initializes everything.
 *
 * This function MUST be called before using the window in any way!
 */
void
NewSubgraphWindow::set_graph(std::shared_ptr<const client::GraphModel> graph)
{
	_graph = std::move(graph);
}

/** Called every time the user types into the name input box.
 * Used to display warning messages, and enable/disable the OK button.
 */
void
NewSubgraphWindow::name_changed()
{
	const std::string name = _name_entry->get_text();
	if (!raul::Symbol::is_valid(name)) {
		_message_label->set_text("Name contains invalid characters.");
		_ok_button->property_sensitive() = false;
	} else if (_app->store()->find(_graph->path().child(raul::Symbol(name)))
	           != _app->store()->end()) {
		_message_label->set_text("An object already exists with that name.");
		_ok_button->property_sensitive() = false;
	} else {
		_message_label->set_text("");
		_ok_button->property_sensitive() = true;
	}
}

void
NewSubgraphWindow::ok_clicked()
{
	const uint32_t   poly = _poly_spinbutton->get_value_as_int();
	const raul::Path path = _graph->path().child(
		raul::Symbol::symbolify(_name_entry->get_text()));

	// Create graph
	Properties props;
	props.emplace(_app->uris().rdf_type,        Property(_app->uris().ingen_Graph));
	props.emplace(_app->uris().ingen_polyphony, _app->forge().make(static_cast<int32_t>(poly)));
	props.emplace(_app->uris().ingen_enabled,   _app->forge().make(true));
	_app->interface()->put(
		path_to_uri(path), props, Resource::Graph::INTERNAL);

	// Set external (block perspective) properties
	props = _initial_data;
	props.emplace(_app->uris().rdf_type, Property(_app->uris().ingen_Graph));
	_app->interface()->put(
		path_to_uri(path), _initial_data, Resource::Graph::EXTERNAL);

	hide();
}

void
NewSubgraphWindow::cancel_clicked()
{
	hide();
}

} // namespace ingen::gui