]> git.lyx.org Git - lyx.git/blob - src/lyx_main.C
citation patch from Angus
[lyx.git] / src / lyx_main.C
1 /* This file is part of
2  * ====================================================== 
3  * 
4  *           LyX, The Document Processor
5  *       
6  *           Copyright 1995 Matthias Ettrich
7  *           Copyright 1995-2000 The LyX Team.
8  *
9  * ====================================================== */
10
11 #include <config.h>
12
13 #include <cstdlib>
14 #include <csignal>
15
16 #ifdef __GNUG__
17 #pragma implementation
18 #endif
19
20 #include "version.h"
21 #include "lyx_main.h"
22 #include "lyx_gui.h"
23 #include "LyXView.h"
24 #include "lyxfunc.h"
25 #include "lyx_gui_misc.h"
26 #include "lyxrc.h"
27 #include "support/path.h"
28 #include "support/filetools.h"
29 #include "bufferlist.h"
30 #include "debug.h"
31 #include "support/FileInfo.h"
32 #include "lastfiles.h"
33 #include "intl.h"
34 #include "lyxserver.h"
35 #include "layout.h"
36 #include "gettext.h"
37 #include "kbmap.h"
38 #ifdef NEW_MENUBAR
39 # include "MenuBackend.h"
40 #endif
41 #include "ToolbarDefaults.h"
42 #include "lyxlex.h"
43
44 using std::endl;
45
46 extern void LoadLyXFile(string const &);
47
48 string system_lyxdir;
49 string build_lyxdir;
50 string system_tempdir;
51 string user_lyxdir;     // Default $HOME/.lyx
52
53 // Should this be kept global? Asger says Yes.
54 DebugStream lyxerr;
55
56 LastFiles * lastfiles;
57
58 // This is the global bufferlist object
59 BufferList bufferlist;
60
61 LyXServer * lyxserver = 0;
62 // this should be static, but I need it in buffer.C
63 bool finished = false;  // flag, that we are quitting the program
64
65 // convenient to have it here.
66 kb_keymap * toplevel_keymap;
67
68
69 LyX::LyX(int * argc, char * argv[])
70 {
71         // Prevent crash with --help
72         lyxGUI = 0;
73         lastfiles = 0;
74
75         // Here we need to parse the command line. At least
76         // we need to parse for "-dbg" and "-help"
77         bool gui = easyParse(argc, argv);
78
79         // Global bindings (this must be done as early as possible.) (Lgb)
80         toplevel_keymap = new kb_keymap;
81         defaultKeyBindings(toplevel_keymap);
82         
83         // Make the GUI object, and let it take care of the
84         // command line arguments that concerns it.
85         lyxerr[Debug::INIT] << "Initializing LyXGUI..." << endl;
86         lyxGUI = new LyXGUI(this, argc, argv, gui);
87         lyxerr[Debug::INIT] << "Initializing LyXGUI...done" << endl;
88
89         // Now the GUI and LyX have taken care of their arguments, so
90         // the only thing left on the command line should be
91         // filenames. Let's check anyway.
92         for (int argi = 1; argi < *argc ; ++argi) {
93                 if (argv[argi][0] == '-') {
94                         lyxerr << _("Wrong command line option `")
95                                << argv[argi]
96                                << _("'. Exiting.") << endl;
97                         exit(0);
98                 }
99         }
100         
101         // Initialization of LyX (reads lyxrc and more)
102         lyxerr[Debug::INIT] << "Initializing LyX::init..." << endl;
103         init(argc, argv, gui);
104         lyxerr[Debug::INIT] << "Initializing LyX::init...done" << endl;
105
106         lyxGUI->init();
107
108         // Load the files specified in the command line.
109         if ((*argc) == 2) 
110                 lyxerr[Debug::INFO] << "Opening document..." << endl;
111         else if ((*argc) > 2)
112                 lyxerr[Debug::INFO] << "Opening documents..." << endl;
113
114         Buffer * last_loaded = 0;
115
116         for (int argi = (*argc) - 1; argi >= 1; --argi) {
117                 Buffer * loadb = bufferlist.loadLyXFile(argv[argi]);
118                 if (loadb != 0) {
119                         last_loaded = loadb;
120                 }
121         }
122
123         if (first_start) {
124                 string splash = i18nLibFileSearch("examples", "splash.lyx");
125                 lyxerr[Debug::INIT] << "Opening splash document "
126                                << splash << "..." << endl;
127                 Buffer * loadb = bufferlist.loadLyXFile(splash);
128                 if (loadb != 0) {
129                         last_loaded = loadb;
130                 }
131         }
132
133         if (last_loaded != 0) {
134                 lyxerr[Debug::INIT] << "Yes we loaded some files." << endl;
135                 if (lyxrc.use_gui)
136                         lyxGUI->regBuf(last_loaded);
137         }
138
139         // Execute batch commands if available
140         if (!batch_command.empty()) {
141                 lyxerr << "About to handle -x '" << batch_command << "'" << endl;
142
143                 // no buffer loaded, create one
144                 if (!last_loaded)
145                         last_loaded = bufferlist.newFile("tmpfile", string());
146
147                 // try to dispatch to last loaded buffer first
148                 bool dispatched = last_loaded->Dispatch(batch_command);
149
150                 // if this was successful, return. 
151                 // Maybe we could do something more clever than aborting...
152                 if (dispatched) {
153                         lyxerr << "We are done!" << endl;
154                         return;
155                 }
156
157                 // otherwise, let the GUI handle the batch command
158                 lyxGUI->regBuf(last_loaded);
159                 lyxGUI->getLyXView()->getLyXFunc()->Dispatch(batch_command);
160
161                 // fall through...
162         }
163         
164         // Let the ball begin...
165         lyxGUI->runTime();
166 }
167
168
169 // A destructor is always necessary  (asierra-970604)
170 LyX::~LyX()
171 {
172         delete lastfiles;
173         delete lyxGUI;
174 }
175
176
177 extern "C" void error_handler(int err_sig);
178
179 void LyX::init(int */*argc*/, char **argv, bool gui)
180 {
181         // Install the signal handlers
182         signal(SIGHUP, error_handler);
183         signal(SIGFPE, error_handler);
184         signal(SIGSEGV, error_handler);
185         signal(SIGINT, error_handler);
186         signal(SIGTERM, error_handler);
187
188         //
189         // Determine path of binary
190         //
191
192         string fullbinpath;
193         string binpath = subst(argv[0], '\\', '/');
194         string binname = OnlyFilename(argv[0]);
195         // Sorry for system specific code. (SMiyata)
196         if (suffixIs(binname, ".exe")) 
197                 binname.erase(binname.length()-4, string::npos);
198         
199         binpath = ExpandPath(binpath); // This expands ./ and ~/
200         
201         if (!AbsolutePath(binpath)) {
202                 string binsearchpath = GetEnvPath("PATH");
203                 // This will make "src/lyx" work always :-)
204                 binsearchpath += ";."; 
205                 binpath = FileOpenSearch(binsearchpath, argv[0]);
206         }
207
208         fullbinpath = binpath;
209         binpath = MakeAbsPath(OnlyPath(binpath));
210
211         // In case we are running in place and compiled with shared libraries
212         if (suffixIs(binpath, "/.libs/"))
213                 binpath.erase(binpath.length()-6, string::npos);
214
215         if (binpath.empty()) {
216                 lyxerr << _("Warning: could not determine path of binary.")
217                        << "\n"
218                        << _("If you have problems, try starting LyX with an absolute path.")
219                        << endl;
220         }
221         lyxerr[Debug::INIT] << "Path of binary: " << binpath << endl;
222
223         //
224         // Determine system directory.
225         //
226
227         // Directories are searched in this order:
228         // 1) -sysdir command line parameter
229         // 2) LYX_DIR_11x environment variable
230         // 3) Maybe <path of binary>/TOP_SRCDIR/lib
231         // 4) <path of binary>/../share/<name of binary>/
232         // 4a) repeat 4 after following the Symlink if <path of
233         //     binary> is a symbolic link.
234         // 5) hardcoded lyx_dir
235         // The directory is checked for the presence of the file
236         // "chkconfig.ltx", and if that is present, the directory
237         // is accepted as the system directory.
238         // If no chkconfig.ltx file is found, a warning is given,
239         // and the hardcoded lyx_dir is used.
240
241         // If we had a command line switch, system_lyxdir is already set
242         string searchpath;
243         if (!system_lyxdir.empty())
244                 searchpath= MakeAbsPath(system_lyxdir) + ';';
245
246         // LYX_DIR_11x environment variable
247         string lyxdir = GetEnvPath("LYX_DIR_11x");
248         
249         if (!lyxdir.empty()) {
250                 lyxerr[Debug::INIT] << "LYX_DIR_11x: " << lyxdir << endl;
251                 searchpath += lyxdir + ';';
252         }
253
254         // <path of binary>/TOP_SRCDIR/lib
255         build_lyxdir = MakeAbsPath("../lib", binpath);
256         if (!FileSearch(build_lyxdir, "lyxrc.defaults").empty()) {
257                 searchpath += MakeAbsPath(AddPath(TOP_SRCDIR, "lib"),
258                                           binpath) + ';';
259                 lyxerr[Debug::INIT] << "Checking whether LyX is run in "
260                         "place... yes" << endl;
261         } else {
262                 lyxerr[Debug::INIT]
263                         << "Checking whether LyX is run in place... no"
264                         << endl;
265                 build_lyxdir.erase();
266         }
267
268         bool FollowLink;
269         do {
270           // Path of binary/../share/name of binary/
271                 searchpath += NormalizePath(AddPath(binpath, "../share/") + 
272                       OnlyFilename(binname)) + ';';
273
274           // Follow Symlinks
275                 FileInfo file(fullbinpath, true);
276                 FollowLink = file.isLink();
277                 if (FollowLink) {
278                         string Link;
279                         if (LyXReadLink(fullbinpath, Link)) {
280                                 fullbinpath = Link;
281                                 binpath = MakeAbsPath(OnlyPath(fullbinpath));
282                         }
283                         else {
284                                 FollowLink = false;
285                         }
286                 }
287         } while (FollowLink);
288
289         // Hardcoded dir
290         searchpath += LYX_DIR;
291
292         // If debugging, show complete search path
293         lyxerr[Debug::INIT] << "System directory search path: "
294                             << searchpath << endl;
295
296         string const filename = "chkconfig.ltx";
297         string temp = FileOpenSearch(searchpath, filename, string());
298         system_lyxdir = OnlyPath(temp);
299
300         // Reduce "path/../path" stuff out of system directory
301         system_lyxdir = NormalizePath(system_lyxdir);
302
303         bool path_shown = false;
304
305         // Warn if environment variable is set, but unusable
306         if (!lyxdir.empty()) {
307                 if (system_lyxdir != NormalizePath(lyxdir)) {
308                         lyxerr <<_("LYX_DIR_11x environment variable no good.")
309                                << '\n'
310                                << _("System directory set to: ") 
311                                << system_lyxdir << endl;
312                         path_shown = true;
313                 }
314         }
315
316         // Warn the user if we couldn't find "chkconfig.ltx"
317         if (system_lyxdir == "./") {
318                 lyxerr <<_("LyX Warning! Couldn't determine system directory.")
319                        <<_("Try the '-sysdir' command line parameter or")
320                        <<_("set the environment variable LYX_DIR_11x to the "
321                            "LyX system directory")
322                        << _("containing the file `chkconfig.ltx'.") << endl;
323                 if (!path_shown)
324                         lyxerr << _("Using built-in default ") 
325                                << LYX_DIR << _(" but expect problems.")
326                                << endl;
327                 else
328                         lyxerr << _("Expect problems.") << endl;
329                 system_lyxdir = LYX_DIR;
330                 path_shown = true;
331         }
332
333         // Report the system directory if debugging is on
334         if (!path_shown)
335                 lyxerr[Debug::INIT] << "System directory: '"
336                                     << system_lyxdir << '\'' << endl; 
337
338         //
339         // Determine user lyx-dir
340         //
341         
342         // Directories are searched in this order:
343         // 1) -userdir command line parameter
344         // 2) LYX_USERDIR_11x environment variable
345         // 3) $HOME/.<name of binary>
346
347         // If we had a command line switch, user_lyxdir is already set
348         bool explicit_userdir = true;
349         if (user_lyxdir.empty()) {
350
351         // LYX_USERDIR_11x environment variable
352                 user_lyxdir = GetEnvPath("LYX_USERDIR_11x");
353
354         // default behaviour
355                 if (user_lyxdir.empty())
356                         user_lyxdir = AddPath(GetEnvPath("HOME"),
357                                                         string(".") + PACKAGE);
358                         explicit_userdir = false;
359         }
360
361         lyxerr[Debug::INIT] << "User LyX directory: '" 
362                             <<  user_lyxdir << '\'' << endl;
363
364         // Check that user LyX directory is ok.
365         queryUserLyXDir(explicit_userdir);
366
367         //
368         // Load the layouts first
369         //
370
371         lyxerr[Debug::INIT] << "Reading layouts..." << endl;
372         LyXSetStyle();
373
374         //
375         // Shine up lyxrc defaults
376         //
377
378         // Default template path: system_dir/templates
379         if (lyxrc.template_path.empty()){
380                 lyxrc.template_path = AddPath(system_lyxdir, "templates");
381         }
382    
383         // Default lastfiles file: $HOME/.lyx/lastfiles
384         if (lyxrc.lastfiles.empty()){
385                 lyxrc.lastfiles = AddName(user_lyxdir, "lastfiles");
386         }
387
388         // Disable gui when either lyxrc or easyparse says so
389         if (!gui)
390                 lyxrc.use_gui = false;
391  
392         // Calculate screen dpi as average of x-DPI and y-DPI:
393         if (lyxrc.use_gui) {
394                 lyxrc.dpi = getScreenDPI();
395                 lyxerr[Debug::INIT] << "DPI setting detected to be "
396                                                 << lyxrc.dpi + 0.5 << endl;
397         } else {
398                 lyxrc.dpi = 1; // I hope this is safe
399         }
400
401         //
402         // Read configuration files
403         //
404
405         ReadRcFile("lyxrc.defaults");
406 //      system_lyxrc = lyxrc;
407         // If there is a preferences file we read that instead
408         // of the old lyxrc file.
409         if (!ReadRcFile("preferences"))
410             ReadRcFile("lyxrc");
411
412         // Ensure that we have really read a bind file, so that LyX is
413         // usable.
414         if (!lyxrc.hasBindFile)
415                 lyxrc.ReadBindFile();
416
417         // Read menus
418         ReadUIFile(lyxrc.ui_file);
419
420         // Bind the X dead keys to the corresponding LyX functions if
421         // necessary. 
422         if (lyxrc.override_x_deadkeys)
423                 deadKeyBindings(toplevel_keymap);
424
425         if (lyxerr.debugging(Debug::LYXRC)) {
426                 lyxrc.print();
427         }
428
429         // Create temp directory        
430         system_tempdir = CreateLyXTmpDir(lyxrc.tempdir_path);
431         if (lyxerr.debugging(Debug::INIT)) {
432                 lyxerr << "LyX tmp dir: `" << system_tempdir << '\'' << endl;
433         }
434
435         // load the lastfiles mini-database
436         lyxerr[Debug::INIT] << "Reading lastfiles `"
437                             << lyxrc.lastfiles << "'..." << endl; 
438         lastfiles = new LastFiles(lyxrc.lastfiles, 
439                                   lyxrc.check_lastfiles,
440                                   lyxrc.num_lastfiles);
441
442         // start up the lyxserver. (is this a bit early?) (Lgb)
443         // 0.12 this will be way to early, we need the GUI to be initialized
444         // first, so move it for now.
445         // lyxserver = new LyXServer;
446 }
447
448 // These are the default bindings known to LyX
449 void LyX::defaultKeyBindings(kb_keymap  * kbmap)
450 {
451         kbmap->bind("Right", LFUN_RIGHT);
452         kbmap->bind("Left", LFUN_LEFT);
453         kbmap->bind("Up", LFUN_UP);
454         kbmap->bind("Down", LFUN_DOWN);
455         
456         kbmap->bind("Tab", LFUN_TAB);
457         
458         kbmap->bind("Home", LFUN_HOME);
459         kbmap->bind("End", LFUN_END);
460         kbmap->bind("Prior", LFUN_PRIOR);
461         kbmap->bind("Next", LFUN_NEXT);
462         
463         kbmap->bind("Return", LFUN_BREAKPARAGRAPH);
464         kbmap->bind("~C-~S-~M-nobreakspace", LFUN_PROTECTEDSPACE);
465         
466         kbmap->bind("Delete", LFUN_DELETE);
467         kbmap->bind("BackSpace", LFUN_BACKSPACE);
468         
469         // kbmap->bindings to enable the use of the numeric keypad
470         // e.g. Num Lock set
471         kbmap->bind("KP_0", LFUN_SELFINSERT);
472         kbmap->bind("KP_Decimal", LFUN_SELFINSERT);
473         kbmap->bind("KP_Enter", LFUN_SELFINSERT);
474         kbmap->bind("KP_1", LFUN_SELFINSERT);
475         kbmap->bind("KP_2", LFUN_SELFINSERT);
476         kbmap->bind("KP_3", LFUN_SELFINSERT);
477         kbmap->bind("KP_4", LFUN_SELFINSERT);
478         kbmap->bind("KP_5", LFUN_SELFINSERT);
479         kbmap->bind("KP_6", LFUN_SELFINSERT);
480         kbmap->bind("KP_Add", LFUN_SELFINSERT);
481         kbmap->bind("KP_7", LFUN_SELFINSERT);
482         kbmap->bind("KP_8", LFUN_SELFINSERT);
483         kbmap->bind("KP_9", LFUN_SELFINSERT);
484         kbmap->bind("KP_Divide", LFUN_SELFINSERT);
485         kbmap->bind("KP_Multiply", LFUN_SELFINSERT);
486         kbmap->bind("KP_Subtract", LFUN_SELFINSERT);
487         
488         /* Most self-insert keys are handled in the 'default:' section of
489          * WorkAreaKeyPress - so we don't have to define them all.
490          * However keys explicit decleared as self-insert are
491          * handled seperatly (LFUN_SELFINSERT.) Lgb. */
492         
493         kbmap->bind("C-Tab", LFUN_TABINSERT);  // ale970515
494         kbmap->bind("S-Tab", LFUN_SHIFT_TAB);  // jug20000522
495 }
496
497 // LyX can optionally take over the handling of deadkeys
498 void LyX::deadKeyBindings(kb_keymap * kbmap)
499 {
500         // bindKeyings for transparent handling of deadkeys
501         // The keysyms are gotten from XFree86 X11R6
502         kbmap->bind("~C-~S-~M-dead_acute", LFUN_ACUTE);
503         kbmap->bind("~C-~S-~M-dead_breve", LFUN_BREVE);
504         kbmap->bind("~C-~S-~M-dead_caron", LFUN_CARON);
505         kbmap->bind("~C-~S-~M-dead_cedilla", LFUN_CEDILLA);
506         kbmap->bind("~C-~S-~M-dead_abovering", LFUN_CIRCLE);
507         kbmap->bind("~C-~S-~M-dead_circumflex", LFUN_CIRCUMFLEX);
508         kbmap->bind("~C-~S-~M-dead_abovedot", LFUN_DOT);
509         kbmap->bind("~C-~S-~M-dead_grave", LFUN_GRAVE);
510         kbmap->bind("~C-~S-~M-dead_doubleacute", LFUN_HUNG_UMLAUT);
511         kbmap->bind("~C-~S-~M-dead_macron", LFUN_MACRON);
512         // nothing with this name
513         // kbmap->bind("~C-~S-~M-dead_special_caron", LFUN_SPECIAL_CARON);
514         kbmap->bind("~C-~S-~M-dead_tilde", LFUN_TILDE);
515         kbmap->bind("~C-~S-~M-dead_diaeresis", LFUN_UMLAUT);
516         // nothing with this name either...
517         //kbmap->bind("~C-~S-~M-dead_underbar", LFUN_UNDERBAR);
518         kbmap->bind("~C-~S-~M-dead_belowdot", LFUN_UNDERDOT);
519         kbmap->bind("~C-~S-~M-dead_tie", LFUN_TIE);
520         kbmap->bind("~C-~S-~M-dead_ogonek", LFUN_OGONEK);
521 }
522
523
524
525 // This one is not allowed to use anything on the main form, since that
526 // one does not exist yet. (Asger)
527 void LyX::queryUserLyXDir(bool explicit_userdir)
528 {
529         // Does user directory exist?
530         FileInfo fileInfo(user_lyxdir);
531         if (fileInfo.isOK() && fileInfo.isDir()) {
532                 first_start = false;
533                 return;
534         } else {
535                 first_start = true;
536         }
537         
538         // Nope
539         // Different wording if the user specifically requested a directory
540         if (!AskQuestion( explicit_userdir
541                          ? _("You have specified an invalid LyX directory.")
542                          : _("You don't have a personal LyX directory.") ,
543
544                          _("It is needed to keep your own configuration."),
545                          _("Should I try to set it up for you (recommended)?"))) {
546                 lyxerr << _("Running without personal LyX directory.") << endl;
547                 // No, let's use $HOME instead.
548                 user_lyxdir = GetEnvPath("HOME");
549                 return;
550         }
551
552         // Tell the user what is going on
553         lyxerr << _("LyX: Creating directory ") << user_lyxdir
554                << _(" and running configure...") << endl;
555
556         // Create directory structure
557         if (!createDirectory(user_lyxdir, 0755)) {
558                 // Failed, let's use $HOME instead.
559                 user_lyxdir = GetEnvPath("HOME");
560                 lyxerr << _("Failed. Will use ") << user_lyxdir
561                        << _(" instead.") << endl;
562                 return;
563         }
564
565         // Run configure in user lyx directory
566         Path p(user_lyxdir);
567         system(AddName(system_lyxdir, "configure").c_str());
568         lyxerr << "LyX: " << _("Done!") << endl;
569 }
570
571
572 // Read the rc file `name'
573 bool LyX::ReadRcFile(string const & name)
574 {
575         lyxerr[Debug::INIT] << "About to read " << name << "..." << endl;
576         
577         string lyxrc_path = LibFileSearch(string(), name);
578         if (!lyxrc_path.empty()){
579                 lyxerr[Debug::INIT] << "Found " << name
580                                     << " in " << lyxrc_path << endl;
581                 if (lyxrc.read(lyxrc_path) < 0) { 
582                         WriteAlert(_("LyX Warning!"), 
583                                    _("Error while reading ")+lyxrc_path+".",
584                                    _("Using built-in defaults."));
585                         return false;
586                 }
587                 return true;
588         } else
589                 lyxerr[Debug::INIT] << "Could not find " << name << endl;
590         return false;
591 }
592
593
594 // Read the ui file `name'
595 void LyX::ReadUIFile(string const & name)
596 {
597         enum Uitags {
598                 ui_menuset = 1,
599                 ui_toolbar,
600                 ui_last
601         };
602
603         struct keyword_item uitags[ui_last-1] = {
604                 { "menuset", ui_menuset },
605                 { "toolbar", ui_toolbar }
606         };
607
608         lyxerr[Debug::INIT] << "About to read " << name << "..." << endl;
609         
610         string ui_path = LibFileSearch("ui", name, "ui");
611
612         if (ui_path.empty()) {
613                 lyxerr[Debug::INIT] << "Could not find " << name << endl;
614                 return;
615         }
616         
617         lyxerr[Debug::INIT] << "Found " << name
618                             << " in " << ui_path << endl;
619         LyXLex lex(uitags, ui_last - 1);
620         lex.setFile(ui_path);
621         if (!lex.IsOK()) {
622                 lyxerr << "Unable to set LyXLeX for ui file: " << ui_path
623                        << endl;
624         }
625         
626         if (lyxerr.debugging(Debug::PARSER))
627                 lex.printTable(lyxerr);
628
629         while (lex.IsOK()) {
630                 switch(lex.lex()) {
631                 case ui_menuset: 
632 #ifdef NEW_MENUBAR
633                         menubackend.read(lex);
634                         break;
635 #else
636                         // Skip any menu definition and fall over to toolbar.
637                         // This is a hack, but it is supposed to go away...
638                         do {
639                                 lex.next();
640                                 if (!lex.IsOK()) return;
641                         }
642                         while (lex.lex() != ui_toolbar);
643 #endif
644
645                 case ui_toolbar:
646                         toolbardefaults.read(lex);
647                         break;
648
649                 default:
650                         lex.printError("LyX::ReadUFile: "
651                                        "Unknown menu tag: `$$Token'");
652                         break;
653                 }
654         }
655 }
656
657
658 // Set debugging level and report result to user
659 void setDebuggingLevel(string const & dbgLevel)
660 {
661         lyxerr << _("Setting debug level to ") <<  dbgLevel << endl;
662         lyxerr.level(Debug::value(dbgLevel));
663         Debug::showLevel(lyxerr, lyxerr.level());
664 }
665
666
667 // Give command line help
668 void commandLineHelp()
669 {
670         lyxerr << "LyX " LYX_VERSION << " of " LYX_RELEASE << endl;
671         lyxerr <<
672                 _("Usage: lyx [ command line switches ] [ name.lyx ... ]\n"
673                   "Command line switches (case sensitive):\n"
674                   "\t-help              summarize LyX usage\n"
675                   "\t-userdir dir       try to set user directory to dir\n"
676                   "\t-sysdir dir        try to set system directory to dir\n"
677                   "\t-geometry WxH+X+Y  set geometry of the main window\n"
678                   "\t-dbg feature[,feature]...\n"
679                   "                  select the features to debug.\n"
680                   "                  Type `lyx -dbg' to see the list of features\n"
681                   "Check the LyX man page for more options.") << endl;
682 }
683
684 bool LyX::easyParse(int * argc, char * argv[])
685 {
686         bool gui = true;
687         int removeargs = 0; // used when options are read
688         for(int i = 1; i < *argc; ++i) {
689                 string arg = argv[i];
690
691                 // Check for -dbg int
692                 if (arg == "-dbg") {
693                         if (i + 1 < *argc) {
694                                 setDebuggingLevel(argv[i + 1]);
695                                 removeargs = 2;
696                         } else {
697                                 lyxerr << _("List of supported debug flags:")
698                                        << endl;
699                                 Debug::showTags(lyxerr);
700                                 exit(0);
701                         }
702                 } 
703                 // Check for "-sysdir"
704                 else if (arg == "-sysdir") {
705                         if (i + 1 < *argc) {
706                                 system_lyxdir = argv[i + 1];
707                                 removeargs = 2;
708                         } else {
709                                 lyxerr << _("Missing directory for -sysdir switch!") 
710                                        << endl;
711                                 exit(0);
712                         }
713                 }
714                 // Check for "-userdir"
715                 else if (arg == "-userdir") {
716                         if (i + 1 < *argc) {
717                                 user_lyxdir = argv[i + 1];
718                                 removeargs = 2;
719                         } else {
720                                 lyxerr << _("Missing directory for -userdir switch!")
721                                        << endl;
722                                 exit(0);
723                         }
724                 }
725                 // Check for --help or -help
726                 else if (arg == "--help" || arg == "-help") {
727                         commandLineHelp();
728                         exit(0);
729                 } 
730                 // Check for "-nw": No XWindows as for emacs this should
731                 // give a LyX that could be used in a terminal window.
732                 //else if (arg == "-nw") {
733                 //      gui = false;
734                 //}
735
736                 // Check for "-x": Execute commands
737                 else if (arg == "-x" || arg == "--execute") {
738                         if (i + 1 < *argc) {
739                                 batch_command = string(argv[i + 1]);
740                                 removeargs = 2;
741                         }
742                         else
743                                 lyxerr << _("Missing command string after  -x switch!") << endl;
744
745                         // Argh. Setting gui to false segfaults..
746                         //gui = false;
747                 }
748
749                 else if (arg == "-e" || arg == "--export") {
750                         if (i + 1 < *argc) {
751                                 string type(argv[i+1]);
752                                 removeargs = 2;
753
754                                 if (type == "tex")
755                                         type = "latex";
756                                 else if (type == "ps")
757                                         type = "postscript";
758                                 else if (type == "text" || type == "txt")
759                                         type = "ascii";
760
761                                 if (type == "latex" || type == "postscript"
762                                     || type == "linuxdoc" || type == "docbook"
763                                     || type == "ascii" || type == "html") 
764                                         batch_command = "buffer-export " + type;
765                                 else
766                                         lyxerr << _("Unknown file type '")
767                                                << type << _("' after ")
768                                                << arg << _(" switch!") << endl;
769                         } else
770                                 lyxerr << _("Missing file type [eg latex, "
771                                             "ps...] after ")
772                                        << arg << _(" switch!") << endl;
773                 }
774                 else if (arg == "--import") {
775                         if (i + 1 < *argc) {
776                                 string type(argv[i+1]);
777                                 string file(argv[i+2]);
778                                 removeargs = 3;
779         
780                                 batch_command = "buffer-import " + type + " " + file;
781                                 lyxerr << "batch_command: "
782                                        << batch_command << endl;
783
784                         } else
785                                 lyxerr << _("Missing type [eg latex, "
786                                             "ps...] after ")
787                                        << arg << _(" switch!") << endl;
788                 }
789
790                 if (removeargs > 0) {
791                         // Now, remove used arguments by shifting
792                         // the following ones removeargs places down.
793                         (*argc) -= removeargs;
794                         for (int j = i; j < (*argc); ++j)
795                                 argv[j] = argv[j + removeargs];
796                         --i; // After shift, check this number again.
797                         removeargs = 0;
798                 }
799
800         }
801
802         return gui;
803 }
804
805
806 extern "C"
807 void error_handler(int err_sig)
808 {
809         switch (err_sig) {
810         case SIGHUP:
811                 lyxerr << "\nlyx: SIGHUP signal caught" << endl;
812                 break;
813         case SIGINT:
814                 // no comments
815                 break;
816         case SIGFPE:
817                 lyxerr << "\nlyx: SIGFPE signal caught" << endl;
818                 break;
819         case SIGSEGV:
820                 lyxerr << "\nlyx: SIGSEGV signal caught" << endl;
821                 lyxerr <<
822                         "Sorry, you have found a bug in LyX."
823                         " If possible, please read 'Known bugs'\n"
824                         "under the Help menu and then send us "
825                         "a full bug report. Thanks!" << endl;
826                 break;
827         case SIGTERM:
828                 // no comments
829                 break;
830         }
831    
832         // Deinstall the signal handlers
833         signal(SIGHUP, SIG_DFL);
834         signal(SIGINT, SIG_DFL);
835         signal(SIGFPE, SIG_DFL);
836         signal(SIGSEGV, SIG_DFL);
837         signal(SIGTERM, SIG_DFL);
838
839         bufferlist.emergencyWriteAll();
840
841         lyxerr << "Bye." << endl;
842         if(err_sig!= SIGHUP && 
843            (!GetEnv("LYXDEBUG").empty() || err_sig == SIGSEGV))
844                 lyx::abort();
845         exit(0);
846 }