/* This file is part of Ingen. * Copyright (C) 2007-2009 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 */ #include #include #include #include #include #include #include #include #include "raul/Configuration.hpp" #include "raul/Path.hpp" #include "raul/SharedPtr.hpp" #include "raul/log.hpp" #include "serd/serd.h" #include "sord/sordmm.hpp" #include "ingen-config.h" #include "engine/Engine.hpp" #include "interface/EngineInterface.hpp" #include "module/World.hpp" #include "module/ingen_module.hpp" #include "serialisation/Parser.hpp" #include "shared/Configuration.hpp" #include "shared/runtime_paths.hpp" #ifdef WITH_BINDINGS #include "bindings/ingen_bindings.hpp" #endif using namespace std; using namespace Raul; using namespace Ingen; Ingen::Shared::World* world = NULL; void ingen_interrupt(int) { cout << "ingen: Interrupted" << endl; if (world->local_engine()) world->local_engine()->quit(); ingen_world_free(world); exit(EXIT_FAILURE); } void ingen_try(bool cond, const char* msg) { if (!cond) { cerr << "ingen: Error: " << msg << endl; ingen_world_free(world); exit(EXIT_FAILURE); } } int main(int argc, char** argv) { Shared::Configuration conf; // Parse command line options try { conf.parse(argc, argv); } catch (std::exception& e) { cout << "ingen: " << e.what() << endl; return EXIT_FAILURE; } // Verify option sanity if (argc <= 1) { conf.print_usage("ingen", cout); return EXIT_FAILURE; } else if (conf.option("help").get_bool()) { conf.print_usage("ingen", cout); return EXIT_SUCCESS; } // Set bundle path from executable location so resources can be found Shared::set_bundle_path_from_code((void*)&main); SharedPtr engine_interface; Glib::thread_init(); #if HAVE_SOUP g_type_init(); #endif Ingen::Shared::World* world = ingen_world_new(&conf, argc, argv); // Run engine if (conf.option("engine").get_bool()) { ingen_try(world->load("ingen_engine"), "Unable to load engine module"); ingen_try(world->local_engine(), "Unable to create engine"); engine_interface = world->engine(); // Not loading a GUI, load network engine interfaces if (!conf.option("gui").get_bool()) { #ifdef HAVE_LIBLO ingen_try(world->load("ingen_osc"), "Unable to load OSC module"); #endif #ifdef HAVE_SOUP ingen_try(world->load("ingen_http"), "Unable to load HTTP module"); #endif } } // Load client library (required for patch loading and/or GUI) if (conf.option("load").is_valid() || conf.option("gui").get_bool()) ingen_try(world->load("ingen_client"), "Unable to load client module"); // If we don't have a local engine interface (for GUI), use network if (!engine_interface) { const char* const uri = conf.option("connect").get_string(); ingen_try((engine_interface = world->interface(uri)), (string("Unable to create interface to `") + uri + "'").c_str()); } // Activate the engine, if we have one if (world->local_engine()) { ingen_try(world->load("ingen_jack"), "Unable to load jack module"); world->local_engine()->activate(); } world->set_engine(engine_interface); // Load a patch if (conf.option("load").is_valid() && engine_interface) { boost::optional data_path = Path("/"); boost::optional parent; boost::optional symbol; const Raul::Atom& path_option = conf.option("path"); if (path_option.is_valid()) { if (Path::is_valid(path_option.get_string())) { const Path p(path_option.get_string()); if (!p.is_root()) { parent = p.parent(); symbol = p.symbol(); } } else { cerr << "Invalid path given: '" << path_option << endl; } } ingen_try(world->load("ingen_serialisation"), "Unable to load serialisation module"); ingen_try(world->parser(), "Unable to create parser"); string uri = conf.option("load").get_string(); if (!serd_uri_string_has_scheme((const uint8_t*)uri.c_str())) { // Does not start with legal URI scheme, assume path uri = Glib::filename_to_uri( (Glib::path_is_absolute(uri)) ? uri : Glib::build_filename(Glib::get_current_dir(), uri)); } engine_interface->load_plugins(); if (conf.option("gui").get_bool()) engine_interface->get("ingen:plugins"); world->parser()->parse_document( world, engine_interface.get(), uri, data_path, parent, symbol); } // Load GUI if (conf.option("gui").get_bool()) ingen_try(world->load("ingen_gui"), "Unable to load GUI module"); // Run a script if (conf.option("run").is_valid()) { #ifdef WITH_BINDINGS ingen_try(world->load("ingen_bindings"), "Unable to load bindings module"); world->run("application/x-python", conf.option("run").get_string()); #else cerr << "This build of ingen does not support scripting." << endl; #endif // Listen to OSC and run main loop } else if (world->local_engine() && !conf.option("gui").get_bool()) { signal(SIGINT, ingen_interrupt); signal(SIGTERM, ingen_interrupt); world->local_engine()->main(); // Block here } // Shut down if (world->local_engine()) world->local_engine()->deactivate(); ingen_world_free(world); return 0; }