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 if(filename=="standard")
140 if(find(modules_to_load.begin(),modules_to_load.end(),"trgt_bmp")==modules_to_load.end())
141 modules_to_load.push_back("trgt_bmp");
142 if(find(modules_to_load.begin(),modules_to_load.end(),"trgt_gif")==modules_to_load.end())
143 modules_to_load.push_back("trgt_gif");
144 if(find(modules_to_load.begin(),modules_to_load.end(),"trgt_dv")==modules_to_load.end())
145 modules_to_load.push_back("trgt_dv");
146 if(find(modules_to_load.begin(),modules_to_load.end(),"mod_ffmpeg")==modules_to_load.end())
147 modules_to_load.push_back("mod_ffmpeg");
148 if(find(modules_to_load.begin(),modules_to_load.end(),"mod_imagemagick")==modules_to_load.end())
149 modules_to_load.push_back("mod_imagemagick");
150 if(find(modules_to_load.begin(),modules_to_load.end(),"lyr_std")==modules_to_load.end())
151 modules_to_load.push_back("lyr_std");
152 if(find(modules_to_load.begin(),modules_to_load.end(),"lyr_freetype")==modules_to_load.end())
153 modules_to_load.push_back("lyr_freetype");
155 if(find(modules_to_load.begin(),modules_to_load.end(),"trgt_png")==modules_to_load.end())
156 modules_to_load.push_back("trgt_png");
159 if(find(modules_to_load.begin(),modules_to_load.end(),"mod_openexr")==modules_to_load.end())
160 modules_to_load.push_back("mod_openexr");
166 std::ifstream file(filename.c_str());
169 // warning("Cannot open "+filename);
175 getline(file,modulename);
176 if(!modulename.empty() && find(modules_to_load.begin(),modules_to_load.end(),modulename)==modules_to_load.end())
177 modules_to_load.push_back(modulename);
184 synfig::Main::Main(const synfig::String& basepath,ProgressCallback *cb):
185 ref_count_(synfig_ref_count_)
187 if(ref_count_.count())
190 synfig_ref_count_.reset();
191 ref_count_=synfig_ref_count_;
193 // Add initialization after this point
196 bindtextdomain("synfig", LOCALEDIR);
199 String prefix=basepath+"/..";
202 std::set_terminate(__gnu_cxx::__verbose_terminate_handler);
205 #if defined(HAVE_SIGNAL_H) && defined(SIGPIPE)
206 signal(SIGPIPE, broken_pipe_signal);
209 //_config_search_path=new vector"string.h"();
211 // Init the subsystems
212 if(cb)cb->amount_complete(0, 100);
213 if(cb)cb->task(_("Starting Subsystem \"Modules\""));
214 if(!Module::subsys_init(prefix))
215 throw std::runtime_error(_("Unable to initialize subsystem \"Module\""));
217 if(cb)cb->task(_("Starting Subsystem \"Layers\""));
218 if(!Layer::subsys_init())
220 Module::subsys_stop();
221 throw std::runtime_error(_("Unable to initialize subsystem \"Layers\""));
224 if(cb)cb->task(_("Starting Subsystem \"Targets\""));
225 if(!Target::subsys_init())
227 Layer::subsys_stop();
228 Module::subsys_stop();
229 throw std::runtime_error(_("Unable to initialize subsystem \"Targets\""));
232 if(cb)cb->task(_("Starting Subsystem \"Importers\""));
233 if(!Importer::subsys_init())
235 Target::subsys_stop();
236 Layer::subsys_stop();
237 Module::subsys_stop();
238 throw std::runtime_error(_("Unable to initialize subsystem \"Importers\""));
241 if(cb)cb->task(_("Starting Subsystem \"ValueNodes\""));
242 if(!ValueNode::subsys_init())
244 Importer::subsys_stop();
245 Target::subsys_stop();
246 Layer::subsys_stop();
247 Module::subsys_stop();
248 throw std::runtime_error(_("Unable to initialize subsystem \"ValueNodes\""));
251 // Load up the list importer
252 Importer::book()[String("lst")]=ListImporter::create;
254 // Load up the modules
255 std::list<String> modules_to_load;
256 std::vector<String> locations;
258 if(!getenv("SYNFIG_MODULE_LIST"))
260 locations.push_back("standard");
261 locations.push_back("./"MODULE_LIST_FILENAME); //1
262 locations.push_back("../etc/"MODULE_LIST_FILENAME); //1
263 locations.push_back("~/.synfig/"MODULE_LIST_FILENAME); //2
264 locations.push_back(prefix+"/etc/"+MODULE_LIST_FILENAME); //3
265 locations.push_back("/usr/local/etc/"MODULE_LIST_FILENAME);
267 locations.push_back(SYSCONFDIR"/"MODULE_LIST_FILENAME);
270 locations.push_back("/Library/Frameworks/synfig.framework/Resources/"MODULE_LIST_FILENAME);
271 locations.push_back("/Library/Synfig/"MODULE_LIST_FILENAME);
272 locations.push_back("~/Library/Synfig/"MODULE_LIST_FILENAME);
275 locations.push_back("C:\\Program Files\\Synfig\\etc\\"MODULE_LIST_FILENAME);
280 locations.push_back(getenv("SYNFIG_MODULE_LIST"));
283 const char *locations[]=
286 "./"MODULE_LIST_FILENAME, //1
287 "../etc/"MODULE_LIST_FILENAME, //1
288 "~/.synfig/"MODULE_LIST_FILENAME, //2
289 "/usr/local/lib/synfig/modules/"MODULE_LIST_FILENAME, //3
290 "/usr/local/etc/"MODULE_LIST_FILENAME,
292 SYSCONFDIR"/"MODULE_LIST_FILENAME,
295 "/Library/Frameworks/synfig.framework/Resources/"MODULE_LIST_FILENAME,
296 "/Library/SYNFIG/"MODULE_LIST_FILENAME,
297 "~/Library/SYNFIG/"MODULE_LIST_FILENAME,
300 "C:\\Program Files\\SYNFIG\\etc\\"MODULE_LIST_FILENAME,
305 for(i=0;i<locations.size();i++)
306 if(retrieve_modules_to_load(locations[i],modules_to_load))
307 if(cb)cb->task(strprintf(_("Loading modules from %s"),locations[i].c_str()));
309 std::list<String>::iterator iter;
311 for(i=0,iter=modules_to_load.begin();iter!=modules_to_load.end();++iter,i++)
313 Module::Register(*iter,cb);
314 if(cb)cb->amount_complete((i+1)*100,modules_to_load.size()*100);
319 if(cb)cb->amount_complete(100, 100);
320 if(cb)cb->task(_("DONE"));
323 synfig::Main::~Main()
326 if(!synfig_ref_count_.unique())
328 synfig_ref_count_.detach();
330 // Add deinitialization after this point
332 if(get_open_canvas_map().size())
334 synfig::warning("Canvases still open!");
335 std::map<synfig::String, etl::loose_handle<Canvas> >::iterator iter;
336 for(iter=get_open_canvas_map().begin();iter!=get_open_canvas_map().end();++iter)
338 synfig::warning("%s: count()=%d",iter->first.c_str(), iter->second.count());
342 // synfig::info("ValueNode::subsys_stop()");
343 ValueNode::subsys_stop();
344 // synfig::info("Importer::subsys_stop()");
345 Importer::subsys_stop();
346 // synfig::info("Target::subsys_stop()");
347 Target::subsys_stop();
348 // synfig::info("Layer::subsys_stop()");
349 Layer::subsys_stop();
350 /*! \todo For some reason, uncommenting the next line will cause things to crash.
351 This needs to be looked into at some point. */
352 // synfig::info("Module::subsys_stop()");
353 // Module::subsys_stop();
354 // synfig::info("Exiting");
356 #if defined(HAVE_SIGNAL_H) && defined(SIGPIPE)
357 signal(SIGPIPE, SIG_DFL);
364 const int buflen = 50;
370 strftime(b, buflen, " [%X] ", lt);
375 synfig::error(const char *format,...)
378 va_start(args,format);
379 error(vstrprintf(format,args));
383 synfig::error(const String &str)
385 static Mutex mutex; Mutex::Lock lock(mutex);
386 cerr<<"synfig("<<getpid()<<")"<<current_time()<<_("error")<<": "+str<<endl;
390 synfig::warning(const char *format,...)
393 va_start(args,format);
394 warning(vstrprintf(format,args));
398 synfig::warning(const String &str)
400 static Mutex mutex; Mutex::Lock lock(mutex);
401 cerr<<"synfig("<<getpid()<<")"<<current_time()<<_("warning")<<": "+str<<endl;
405 synfig::info(const char *format,...)
408 va_start(args,format);
409 info(vstrprintf(format,args));
413 synfig::info(const String &str)
415 static Mutex mutex; Mutex::Lock lock(mutex);
416 cerr<<"synfig("<<getpid()<<")"<<current_time()<<_("info")<<": "+str<<endl;