1 /* === S Y N F I G ========================================================= */
2 /*! \file synfig/main.cpp
8 ** Copyright (c) 2002-2005 Robert B. Quattlebaum Jr., Adrian Bentley
9 ** Copyright (c) 2007, 2008 Chris Moore
11 ** This package is free software; you can redistribute it and/or
12 ** modify it under the terms of the GNU General Public License as
13 ** published by the Free Software Foundation; either version 2 of
14 ** the License, or (at your option) any later version.
16 ** This package is distributed in the hope that it will be useful,
17 ** but WITHOUT ANY WARRANTY; without even the implied warranty of
18 ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19 ** General Public License for more details.
22 /* ========================================================================= */
24 /* === H E A D E R S ======================================================= */
26 //#define SYNFIG_NO_ANGLE
43 #include <ETL/stringf>
44 #include "listimporter.h"
49 #include "valuenode.h"
52 #include "loadcanvas.h"
66 using namespace synfig;
68 /* === M A C R O S ========================================================= */
70 #define MODULE_LIST_FILENAME "synfig_modules.cfg"
72 /* === S T A T I C S ======================================================= */
74 static etl::reference_counter synfig_ref_count_(0);
76 /* === P R O C E D U R E S ================================================= */
78 /* === M E T H O D S ======================================================= */
91 synfig::get_build_date()
97 synfig::check_version_(int version,int vec_size, int color_size,int canvas_size,int layer_size)
101 if(version!=SYNFIG_LIBRARY_VERSION)
103 synfig::error(_("API Version mismatch (LIB:%d, PROG:%d)"),SYNFIG_LIBRARY_VERSION,version);
106 if(vec_size!=sizeof(Vector))
108 synfig::error(_("Size of Vector mismatch (app:%d, lib:%d)"),vec_size,sizeof(Vector));
111 if(color_size!=sizeof(Color))
113 synfig::error(_("Size of Color mismatch (app:%d, lib:%d)"),color_size,sizeof(Color));
116 if(canvas_size!=sizeof(Canvas))
118 synfig::error(_("Size of Canvas mismatch (app:%d, lib:%d)"),canvas_size,sizeof(Canvas));
121 if(layer_size!=sizeof(Layer))
123 synfig::error(_("Size of Layer mismatch (app:%d, lib:%d)"),layer_size,sizeof(Layer));
130 static void broken_pipe_signal (int /*sig*/) {
131 synfig::warning("Broken Pipe...");
134 bool retrieve_modules_to_load(String filename,std::list<String> &modules_to_load)
136 std::ifstream file(filename.c_str());
140 // warning("Cannot open "+filename);
147 getline(file,modulename);
148 if(!modulename.empty() && find(modules_to_load.begin(),modules_to_load.end(),modulename)==modules_to_load.end())
149 modules_to_load.push_back(modulename);
155 synfig::Main::Main(const synfig::String& basepath,ProgressCallback *cb):
156 ref_count_(synfig_ref_count_)
158 if(ref_count_.count())
161 synfig_ref_count_.reset();
162 ref_count_=synfig_ref_count_;
164 // Add initialization after this point
167 bindtextdomain("synfig", LOCALEDIR);
168 bind_textdomain_codeset("synfig", "UTF-8");
171 String prefix=basepath+"/..";
174 std::set_terminate(__gnu_cxx::__verbose_terminate_handler);
177 #if defined(HAVE_SIGNAL_H) && defined(SIGPIPE)
178 signal(SIGPIPE, broken_pipe_signal);
181 //_config_search_path=new vector"string.h"();
183 // Init the subsystems
184 if(cb)cb->amount_complete(0, 100);
185 if(cb)cb->task(_("Starting Subsystem \"Modules\""));
186 if(!Module::subsys_init(prefix))
187 throw std::runtime_error(_("Unable to initialize subsystem \"Module\""));
189 if(cb)cb->task(_("Starting Subsystem \"Layers\""));
190 if(!Layer::subsys_init())
192 Module::subsys_stop();
193 throw std::runtime_error(_("Unable to initialize subsystem \"Layers\""));
196 if(cb)cb->task(_("Starting Subsystem \"Targets\""));
197 if(!Target::subsys_init())
199 Layer::subsys_stop();
200 Module::subsys_stop();
201 throw std::runtime_error(_("Unable to initialize subsystem \"Targets\""));
204 if(cb)cb->task(_("Starting Subsystem \"Importers\""));
205 if(!Importer::subsys_init())
207 Target::subsys_stop();
208 Layer::subsys_stop();
209 Module::subsys_stop();
210 throw std::runtime_error(_("Unable to initialize subsystem \"Importers\""));
213 if(cb)cb->task(_("Starting Subsystem \"ValueNodes\""));
214 if(!ValueNode::subsys_init())
216 Importer::subsys_stop();
217 Target::subsys_stop();
218 Layer::subsys_stop();
219 Module::subsys_stop();
220 throw std::runtime_error(_("Unable to initialize subsystem \"ValueNodes\""));
223 // Load up the list importer
224 Importer::book()[String("lst")]=ListImporter::create;
226 // Load up the modules
227 std::list<String> modules_to_load;
228 std::vector<String> locations;
230 if(getenv("SYNFIG_MODULE_LIST"))
231 locations.push_back(getenv("SYNFIG_MODULE_LIST"));
234 locations.push_back("./"MODULE_LIST_FILENAME);
235 locations.push_back("../etc/"MODULE_LIST_FILENAME);
237 locations.push_back(strprintf("%s/.synfig/%s", getenv("HOME"), MODULE_LIST_FILENAME));
239 locations.push_back(SYSCONFDIR"/"MODULE_LIST_FILENAME);
241 locations.push_back(prefix+"/etc/"+MODULE_LIST_FILENAME);
242 locations.push_back("/usr/local/etc/"MODULE_LIST_FILENAME);
244 locations.push_back("/Library/Frameworks/synfig.framework/Resources/"MODULE_LIST_FILENAME);
245 locations.push_back("/Library/Synfig/"MODULE_LIST_FILENAME);
247 locations.push_back(strprintf("%s/Library/Synfig/%s", getenv("HOME"), MODULE_LIST_FILENAME));
250 locations.push_back("C:\\Program Files\\Synfig\\etc\\"MODULE_LIST_FILENAME);
254 for(i=0;i<locations.size();i++)
255 if(retrieve_modules_to_load(locations[i],modules_to_load))
257 synfig::info(_("Loading modules from %s"), locations[i].c_str());
258 if(cb)cb->task(strprintf(_("Loading modules from %s"),locations[i].c_str()));
262 if (i == locations.size())
264 Importer::subsys_stop();
265 Target::subsys_stop();
266 Layer::subsys_stop();
267 Module::subsys_stop();
268 throw std::runtime_error(strprintf(_("Unable to open module list file '%s'"), MODULE_LIST_FILENAME));
271 std::list<String>::iterator iter;
273 Module::register_default_modules(cb);
275 for(i=0,iter=modules_to_load.begin();iter!=modules_to_load.end();++iter,i++)
277 Module::Register(*iter,cb);
278 if(cb)cb->amount_complete((i+1)*100,modules_to_load.size()*100);
281 if(cb)cb->amount_complete(100, 100);
282 if(cb)cb->task(_("DONE"));
285 synfig::Main::~Main()
288 if(!synfig_ref_count_.unique())
290 synfig_ref_count_.detach();
292 // Add deinitialization after this point
294 if(get_open_canvas_map().size())
296 synfig::warning("Canvases still open!");
297 std::map<synfig::String, etl::loose_handle<Canvas> >::iterator iter;
298 for(iter=get_open_canvas_map().begin();iter!=get_open_canvas_map().end();++iter)
300 synfig::warning("%s: count()=%d",iter->first.c_str(), iter->second.count());
304 // synfig::info("ValueNode::subsys_stop()");
305 ValueNode::subsys_stop();
306 // synfig::info("Importer::subsys_stop()");
307 Importer::subsys_stop();
308 // synfig::info("Target::subsys_stop()");
309 Target::subsys_stop();
310 // synfig::info("Layer::subsys_stop()");
311 Layer::subsys_stop();
312 /*! \todo For some reason, uncommenting the next line will cause things to crash.
313 This needs to be looked into at some point. */
314 // synfig::info("Module::subsys_stop()");
315 // Module::subsys_stop();
316 // synfig::info("Exiting");
318 #if defined(HAVE_SIGNAL_H) && defined(SIGPIPE)
319 signal(SIGPIPE, SIG_DFL);
326 const int buflen = 50;
332 strftime(b, buflen, " [%X] ", lt);
337 synfig::error(const char *format,...)
340 va_start(args,format);
341 error(vstrprintf(format,args));
345 synfig::error(const String &str)
347 static Mutex mutex; Mutex::Lock lock(mutex);
348 cerr<<"synfig("<<getpid()<<")"<<current_time()<<_("error")<<": "+str<<endl;
352 synfig::warning(const char *format,...)
355 va_start(args,format);
356 warning(vstrprintf(format,args));
360 synfig::warning(const String &str)
362 static Mutex mutex; Mutex::Lock lock(mutex);
363 cerr<<"synfig("<<getpid()<<")"<<current_time()<<_("warning")<<": "+str<<endl;
367 synfig::info(const char *format,...)
370 va_start(args,format);
371 info(vstrprintf(format,args));
375 synfig::info(const String &str)
377 static Mutex mutex; Mutex::Lock lock(mutex);
378 cerr<<"synfig("<<getpid()<<")"<<current_time()<<_("info")<<": "+str<<endl;