]> git.lyx.org Git - lyx.git/blob - src/tex2lyx/tex2lyx.cpp
Fix bug #8422.
[lyx.git] / src / tex2lyx / tex2lyx.cpp
1 /**
2  * \file tex2lyx.cpp
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * \author André Pönitz
7  *
8  * Full author contact details are available in file CREDITS.
9  */
10
11 // {[(
12
13 #include <config.h>
14 #include <version.h>
15
16 #include "tex2lyx.h"
17
18 #include "Context.h"
19 #include "Encoding.h"
20 #include "Layout.h"
21 #include "LayoutFile.h"
22 #include "LayoutModuleList.h"
23 #include "ModuleList.h"
24 #include "Preamble.h"
25 #include "TextClass.h"
26
27 #include "support/convert.h"
28 #include "support/debug.h"
29 #include "support/ExceptionMessage.h"
30 #include "support/filetools.h"
31 #include "support/lassert.h"
32 #include "support/lstrings.h"
33 #include "support/Messages.h"
34 #include "support/os.h"
35 #include "support/Package.h"
36 #include "support/Systemcall.h"
37
38 #include <cstdlib>
39 #include <algorithm>
40 #include <iostream>
41 #include <string>
42 #include <sstream>
43 #include <vector>
44 #include <map>
45
46 using namespace std;
47 using namespace lyx::support;
48 using namespace lyx::support::os;
49
50 namespace lyx {
51
52 namespace frontend {
53 namespace Alert {
54         void warning(docstring const & title, docstring const & message,
55                                  bool const &)
56         {
57                 LYXERR0(title);
58                 LYXERR0(message);
59         }
60 }
61 }
62
63
64 // Dummy texrow support
65 void TexRow::newline()
66 {}
67
68
69 void TexRow::newlines(int)
70 {}
71
72
73 // Dummy LyXRC support
74 class LyXRC {
75 public:
76         string icon_set;
77 } lyxrc;
78
79
80 // Dummy translation support
81 Messages messages_;
82 Messages const & getMessages(std::string const &)
83 {
84         return messages_;
85 }
86
87
88 Messages const & getGuiMessages()
89 {
90         return messages_;
91 }
92
93
94 // Keep the linker happy on Windows
95 void lyx_exit(int)
96 {}
97
98
99 string const trimSpaceAndEol(string const & a)
100 {
101         return trim(a, " \t\n\r");
102 }
103
104
105 void split(string const & s, vector<string> & result, char delim)
106 {
107         //cerr << "split 1: '" << s << "'\n";
108         istringstream is(s);
109         string t;
110         while (getline(is, t, delim))
111                 result.push_back(t);
112         //cerr << "split 2\n";
113 }
114
115
116 string join(vector<string> const & input, char const * delim)
117 {
118         ostringstream os;
119         for (size_t i = 0; i != input.size(); ++i) {
120                 if (i)
121                         os << delim;
122                 os << input[i];
123         }
124         return os.str();
125 }
126
127
128 char const * const * is_known(string const & str, char const * const * what)
129 {
130         for ( ; *what; ++what)
131                 if (str == *what)
132                         return what;
133         return 0;
134 }
135
136
137
138 // current stack of nested environments
139 vector<string> active_environments;
140
141
142 string active_environment()
143 {
144         return active_environments.empty() ? string() : active_environments.back();
145 }
146
147
148 TeX2LyXDocClass textclass;
149 CommandMap known_commands;
150 CommandMap known_environments;
151 CommandMap known_math_environments;
152 FullCommandMap possible_textclass_commands;
153 FullEnvironmentMap possible_textclass_environments;
154 FullCommandMap possible_textclass_theorems;
155 int const LYX_FORMAT = LYX_FORMAT_TEX2LYX;
156
157 /// used modules
158 LayoutModuleList used_modules;
159 vector<string> preloaded_modules;
160
161
162 void convertArgs(string const & o1, bool o2, vector<ArgumentType> & arguments)
163 {
164         // We have to handle the following cases:
165         // definition                      o1    o2    invocation result
166         // \newcommand{\foo}{bar}          ""    false \foo       bar
167         // \newcommand{\foo}[1]{bar #1}    "[1]" false \foo{x}    bar x
168         // \newcommand{\foo}[1][]{bar #1}  "[1]" true  \foo       bar
169         // \newcommand{\foo}[1][]{bar #1}  "[1]" true  \foo[x]    bar x
170         // \newcommand{\foo}[1][x]{bar #1} "[1]" true  \foo[x]    bar x
171         unsigned int nargs = 0;
172         string const opt1 = rtrim(ltrim(o1, "["), "]");
173         if (isStrUnsignedInt(opt1)) {
174                 // The command has arguments
175                 nargs = convert<unsigned int>(opt1);
176                 if (nargs > 0 && o2) {
177                         // The first argument is optional
178                         arguments.push_back(optional);
179                         --nargs;
180                 }
181         }
182         for (unsigned int i = 0; i < nargs; ++i)
183                 arguments.push_back(required);
184 }
185
186
187 void add_known_command(string const & command, string const & o1,
188                        bool o2, docstring const & definition)
189 {
190         vector<ArgumentType> arguments;
191         convertArgs(o1, o2, arguments);
192         known_commands[command] = arguments;
193         if (!definition.empty())
194                 possible_textclass_commands[command] =
195                         FullCommand(arguments, definition);
196 }
197
198
199 void add_known_environment(string const & environment, string const & o1,
200                            bool o2, docstring const & beg, docstring const &end)
201 {
202         vector<ArgumentType> arguments;
203         convertArgs(o1, o2, arguments);
204         known_environments[environment] = arguments;
205         if (!beg.empty() || ! end.empty())
206                 possible_textclass_environments[environment] =
207                         FullEnvironment(arguments, beg, end);
208 }
209
210
211 void add_known_theorem(string const & theorem, string const & o1,
212                        bool o2, docstring const & definition)
213 {
214         vector<ArgumentType> arguments;
215         convertArgs(o1, o2, arguments);
216         if (!definition.empty())
217                 possible_textclass_theorems[theorem] =
218                         FullCommand(arguments, definition);
219 }
220
221
222 Layout const * findLayoutWithoutModule(TextClass const & textclass,
223                                        string const & name, bool command)
224 {
225         DocumentClass::const_iterator it = textclass.begin();
226         DocumentClass::const_iterator en = textclass.end();
227         for (; it != en; ++it) {
228                 if (it->latexname() == name &&
229                     ((command && it->isCommand()) || (!command && it->isEnvironment())))
230                         return &*it;
231         }
232         return 0;
233 }
234
235
236 InsetLayout const * findInsetLayoutWithoutModule(TextClass const & textclass,
237                                                  string const & name, bool command)
238 {
239         DocumentClass::InsetLayouts::const_iterator it = textclass.insetLayouts().begin();
240         DocumentClass::InsetLayouts::const_iterator en = textclass.insetLayouts().end();
241         for (; it != en; ++it) {
242                 if (it->second.latexname() == name &&
243                     ((command && it->second.latextype() == InsetLayout::COMMAND) ||
244                      (!command && it->second.latextype() == InsetLayout::ENVIRONMENT)))
245                         return &(it->second);
246         }
247         return 0;
248 }
249
250
251 namespace {
252
253 typedef map<string, DocumentClassPtr> ModuleMap;
254 ModuleMap modules;
255
256
257 bool addModule(string const module, LayoutFile const & baseClass, LayoutModuleList & m, vector<string> & visited)
258 {
259         // avoid endless loop for circular dependency
260         vector<string>::const_iterator const vb = visited.begin();
261         vector<string>::const_iterator const ve = visited.end();
262         if (find(vb, ve, module) != ve) {
263                 cerr << "Circular dependency detected for module " << module << '\n';
264                 return false;
265         }
266         LyXModule const * const lm = theModuleList[module];
267         if (!lm) {
268                 cerr << "Could not find module " << module << " in module list.\n";
269                 return false;
270         }
271         bool foundone = false;
272         LayoutModuleList::const_iterator const exclmodstart = baseClass.excludedModules().begin();
273         LayoutModuleList::const_iterator const exclmodend = baseClass.excludedModules().end();
274         LayoutModuleList::const_iterator const provmodstart = baseClass.providedModules().begin();
275         LayoutModuleList::const_iterator const provmodend = baseClass.providedModules().end();
276         vector<string> const reqs = lm->getRequiredModules();
277         if (reqs.empty())
278                 foundone = true;
279         else {
280                 LayoutModuleList::const_iterator mit = m.begin();
281                 LayoutModuleList::const_iterator men = m.end();
282                 vector<string>::const_iterator rit = reqs.begin();
283                 vector<string>::const_iterator ren = reqs.end();
284                 for (; rit != ren; ++rit) {
285                         if (find(mit, men, *rit) != men) {
286                                 foundone = true;
287                                 break;
288                         }
289                         if (find(provmodstart, provmodend, *rit) != provmodend) {
290                                 foundone = true;
291                                 break;
292                         }
293                 }
294                 if (!foundone) {
295                         visited.push_back(module);
296                         for (rit = reqs.begin(); rit != ren; ++rit) {
297                                 if (find(exclmodstart, exclmodend, *rit) == exclmodend) {
298                                         if (addModule(*rit, baseClass, m, visited)) {
299                                                 foundone = true;
300                                                 break;
301                                         }
302                                 }
303                         }
304                         visited.pop_back();
305                 }
306         }
307         if (!foundone) {
308                 cerr << "Could not add required modules for " << module << ".\n";
309                 return false;
310         }
311         if (!m.moduleCanBeAdded(module, &baseClass))
312                 return false;
313         m.push_back(module);
314         return true;
315 }
316
317
318 void initModules()
319 {
320         // Create list of dummy document classes if not already done.
321         // This is needed since a module cannot be read on its own, only as
322         // part of a document class.
323         LayoutFile const & baseClass = LayoutFileList::get()[textclass.name()];
324         static bool init = true;
325         if (init) {
326                 baseClass.load();
327                 LyXModuleList::const_iterator const end = theModuleList.end();
328                 LyXModuleList::const_iterator it = theModuleList.begin();
329                 for (; it != end; ++it) {
330                         string const module = it->getID();
331                         LayoutModuleList m;
332                         vector<string> v;
333                         if (!addModule(module, baseClass, m, v))
334                                 continue;
335                         modules[module] = getDocumentClass(baseClass, m);
336                 }
337                 init = false;
338         }
339 }
340
341
342 bool addModule(string const & module)
343 {
344         initModules();
345         LayoutFile const & baseClass = LayoutFileList::get()[textclass.name()];
346         if (!used_modules.moduleCanBeAdded(module, &baseClass))
347                 return false;
348         FileName layout_file = libFileSearch("layouts", module, "module");
349         if (textclass.read(layout_file, TextClass::MODULE)) {
350                 used_modules.push_back(module);
351                 // speed up further searches:
352                 // the module does not need to be checked anymore.
353                 ModuleMap::iterator const it = modules.find(module);
354                 if (it != modules.end())
355                         modules.erase(it);
356                 return true;
357         }
358         return false;
359 }
360
361 }
362
363
364 bool checkModule(string const & name, bool command)
365 {
366         // Cache to avoid slowdown by repated searches
367         static set<string> failed[2];
368
369         // Only add the module if the command was actually defined in the LyX preamble
370         bool theorem = false;
371         if (command) {
372                 if (possible_textclass_commands.find('\\' + name) == possible_textclass_commands.end())
373                         return false;
374         } else {
375                 if (possible_textclass_environments.find(name) == possible_textclass_environments.end()) {
376                         if (possible_textclass_theorems.find(name) != possible_textclass_theorems.end())
377                                 theorem = true;
378                         else
379                                 return false;
380                 }
381         }
382         if (failed[command].find(name) != failed[command].end())
383                 return false;
384
385         initModules();
386         LayoutFile const & baseClass = LayoutFileList::get()[textclass.name()];
387
388         // Try to find a module that defines the command.
389         // Only add it if the definition can be found in the preamble of the
390         // style that corresponds to the command. This is a heuristic and
391         // different from the way how we parse the builtin commands of the
392         // text class (in that case we only compare the name), but it is
393         // needed since it is not unlikely that two different modules define a
394         // command with the same name.
395         ModuleMap::iterator const end = modules.end();
396         for (ModuleMap::iterator it = modules.begin(); it != end; ++it) {
397                 string const module = it->first;
398                 if (used_modules.moduleConflicts(module, &baseClass))
399                         continue;
400                 if (findLayoutWithoutModule(textclass, name, command))
401                         continue;
402                 if (findInsetLayoutWithoutModule(textclass, name, command))
403                         continue;
404                 DocumentClassConstPtr c = it->second;
405                 Layout const * layout = findLayoutWithoutModule(*c, name, command);
406                 InsetLayout const * insetlayout = layout ? 0 :
407                         findInsetLayoutWithoutModule(*c, name, command);
408                 docstring preamble;
409                 if (layout)
410                         preamble = layout->preamble();
411                 else if (insetlayout)
412                         preamble = insetlayout->preamble();
413                 if (preamble.empty())
414                         continue;
415                 bool add = false;
416                 if (command) {
417                         FullCommand const & cmd =
418                                 possible_textclass_commands['\\' + name];
419                         if (preamble.find(cmd.def) != docstring::npos)
420                                 add = true;
421                 } else if (theorem) {
422                         FullCommand const & thm =
423                                 possible_textclass_theorems[name];
424                         if (preamble.find(thm.def) != docstring::npos)
425                                 add = true;
426                 } else {
427                         FullEnvironment const & env =
428                                 possible_textclass_environments[name];
429                         if (preamble.find(env.beg) != docstring::npos &&
430                             preamble.find(env.end) != docstring::npos)
431                                 add = true;
432                 }
433                 if (add) {
434                         FileName layout_file = libFileSearch("layouts", module, "module");
435                         if (textclass.read(layout_file, TextClass::MODULE)) {
436                                 used_modules.push_back(module);
437                                 // speed up further searches:
438                                 // the module does not need to be checked anymore.
439                                 modules.erase(it);
440                                 return true;
441                         }
442                 }
443         }
444         failed[command].insert(name);
445         return false;
446 }
447
448
449 bool isProvided(string const & name)
450 {
451         // This works only for features that are named like the LaTeX packages
452         return textclass.provides(name) || preamble.isPackageUsed(name);
453 }
454
455
456 bool noweb_mode = false;
457 bool pdflatex = false;
458 bool xetex = false;
459 bool is_nonCJKJapanese = false;
460 bool roundtrip = false;
461
462
463 namespace {
464
465
466 /*!
467  * Read one command definition from the syntax file
468  */
469 void read_command(Parser & p, string command, CommandMap & commands)
470 {
471         if (p.next_token().asInput() == "*") {
472                 p.get_token();
473                 command += '*';
474         }
475         vector<ArgumentType> arguments;
476         while (p.next_token().cat() == catBegin ||
477                p.next_token().asInput() == "[") {
478                 if (p.next_token().cat() == catBegin) {
479                         string const arg = p.getArg('{', '}');
480                         if (arg == "translate")
481                                 arguments.push_back(required);
482                         else if (arg == "group")
483                                 arguments.push_back(req_group);
484                         else if (arg == "item")
485                                 arguments.push_back(item);
486                         else if (arg == "displaymath")
487                                 arguments.push_back(displaymath);
488                         else
489                                 arguments.push_back(verbatim);
490                 } else {
491                         string const arg = p.getArg('[', ']');
492                         if (arg == "group")
493                                 arguments.push_back(opt_group);
494                         else
495                                 arguments.push_back(optional);
496                 }
497         }
498         commands[command] = arguments;
499 }
500
501
502 /*!
503  * Read a class of environments from the syntax file
504  */
505 void read_environment(Parser & p, string const & begin,
506                       CommandMap & environments)
507 {
508         string environment;
509         while (p.good()) {
510                 Token const & t = p.get_token();
511                 if (t.cat() == catLetter)
512                         environment += t.asInput();
513                 else if (!environment.empty()) {
514                         p.putback();
515                         read_command(p, environment, environments);
516                         environment.erase();
517                 }
518                 if (t.cat() == catEscape && t.asInput() == "\\end") {
519                         string const end = p.getArg('{', '}');
520                         if (end == begin)
521                                 return;
522                 }
523         }
524 }
525
526
527 /*!
528  * Read a list of TeX commands from a reLyX compatible syntax file.
529  * Since this list is used after all commands that have a LyX counterpart
530  * are handled, it does not matter that the "syntax.default" file
531  * has almost all of them listed. For the same reason the reLyX-specific
532  * reLyXre environment is ignored.
533  */
534 void read_syntaxfile(FileName const & file_name)
535 {
536         ifdocstream is(file_name.toFilesystemEncoding().c_str());
537         if (!is.good()) {
538                 cerr << "Could not open syntax file \"" << file_name
539                      << "\" for reading." << endl;
540                 exit(2);
541         }
542         // We can use our TeX parser, since the syntax of the layout file is
543         // modeled after TeX.
544         // Unknown tokens are just silently ignored, this helps us to skip some
545         // reLyX specific things.
546         Parser p(is);
547         while (p.good()) {
548                 Token const & t = p.get_token();
549                 if (t.cat() == catEscape) {
550                         string const command = t.asInput();
551                         if (command == "\\begin") {
552                                 string const name = p.getArg('{', '}');
553                                 if (name == "environments" || name == "reLyXre")
554                                         // We understand "reLyXre", but it is
555                                         // not as powerful as "environments".
556                                         read_environment(p, name,
557                                                 known_environments);
558                                 else if (name == "mathenvironments")
559                                         read_environment(p, name,
560                                                 known_math_environments);
561                         } else {
562                                 read_command(p, command, known_commands);
563                         }
564                 }
565         }
566 }
567
568
569 string documentclass;
570 string default_encoding;
571 string syntaxfile;
572 bool copy_files = false;
573 bool overwrite_files = false;
574 bool skip_children = false;
575 int error_code = 0;
576
577 /// return the number of arguments consumed
578 typedef int (*cmd_helper)(string const &, string const &);
579
580
581 int parse_help(string const &, string const &)
582 {
583         cerr << "Usage: tex2lyx [options] infile.tex [outfile.lyx]\n"
584                 "Options:\n"
585                 "\t-c textclass       Declare the textclass.\n"
586                 "\t-m mod1[,mod2...]  Load the given modules.\n"
587                 "\t-copyfiles         Copy all included files to the directory of outfile.lyx.\n"
588                 "\t-e encoding        Set the default encoding (latex name).\n"
589                 "\t-f                 Force overwrite of .lyx files.\n"
590                 "\t-help              Print this message and quit.\n"
591                 "\t-n                 translate literate programming (noweb, sweave,... ) file.\n"
592                 "\t-skipchildren      Do not translate included child documents.\n"
593                 "\t-roundtrip         re-export created .lyx file infile.lyx.lyx to infile.lyx.tex.\n"
594                 "\t-s syntaxfile      read additional syntax file.\n"
595                 "\t-sysdir SYSDIR     Set system directory to SYSDIR.\n"
596                 "\t                   Default: " << package().system_support() << "\n"
597                 "\t-userdir USERDIR   Set user directory to USERDIR.\n"
598                 "\t                   Default: " << package().user_support() << "\n"
599                 "\t-version           Summarize version and build info.\n"
600                 "Paths:\n"
601                 "\tThe program searches for the files \"encodings\", \"lyxmodules.lst\",\n"
602                 "\t\"textclass.lst\", \"syntax.default\", and \"unicodesymbols\", first in\n"
603                 "\t\"USERDIR\", then in \"SYSDIR\". The subdirectories \"USERDIR/layouts\"\n"
604                 "\tand \"SYSDIR/layouts\" are searched for layout and module files.\n"
605                 "Check the tex2lyx man page for more details."
606              << endl;
607         exit(error_code);
608 }
609
610
611 int parse_version(string const &, string const &)
612 {
613         lyxerr << "tex2lyx " << lyx_version
614                << " (" << lyx_release_date << ")" << endl;
615         lyxerr << "Built on " << __DATE__ << ", " << __TIME__ << endl;
616
617         lyxerr << lyx_version_info << endl;
618         exit(error_code);
619 }
620
621
622 void error_message(string const & message)
623 {
624         cerr << "tex2lyx: " << message << "\n\n";
625         error_code = 1;
626         parse_help(string(), string());
627 }
628
629
630 int parse_class(string const & arg, string const &)
631 {
632         if (arg.empty())
633                 error_message("Missing textclass string after -c switch");
634         documentclass = arg;
635         return 1;
636 }
637
638
639 int parse_module(string const & arg, string const &)
640 {
641         if (arg.empty())
642                 error_message("Missing modules string after -m switch");
643         split(arg, preloaded_modules, ',');
644         return 1;
645 }
646
647
648 int parse_encoding(string const & arg, string const &)
649 {
650         if (arg.empty())
651                 error_message("Missing encoding string after -e switch");
652         default_encoding = arg;
653         return 1;
654 }
655
656
657 int parse_syntaxfile(string const & arg, string const &)
658 {
659         if (arg.empty())
660                 error_message("Missing syntaxfile string after -s switch");
661         syntaxfile = internal_path(arg);
662         return 1;
663 }
664
665
666 // Filled with the command line arguments "foo" of "-sysdir foo" or
667 // "-userdir foo".
668 string cl_system_support;
669 string cl_user_support;
670
671
672 int parse_sysdir(string const & arg, string const &)
673 {
674         if (arg.empty())
675                 error_message("Missing directory for -sysdir switch");
676         cl_system_support = internal_path(arg);
677         return 1;
678 }
679
680
681 int parse_userdir(string const & arg, string const &)
682 {
683         if (arg.empty())
684                 error_message("Missing directory for -userdir switch");
685         cl_user_support = internal_path(arg);
686         return 1;
687 }
688
689
690 int parse_force(string const &, string const &)
691 {
692         overwrite_files = true;
693         return 0;
694 }
695
696
697 int parse_noweb(string const &, string const &)
698 {
699         noweb_mode = true;
700         return 0;
701 }
702
703
704 int parse_skipchildren(string const &, string const &)
705 {
706         skip_children = true;
707         return 0;
708 }
709
710
711 int parse_roundtrip(string const &, string const &)
712 {
713         roundtrip = true;
714         return 0;
715 }
716
717
718 int parse_copyfiles(string const &, string const &)
719 {
720         copy_files = true;
721         return 0;
722 }
723
724
725 void easyParse(int & argc, char * argv[])
726 {
727         map<string, cmd_helper> cmdmap;
728
729         cmdmap["-h"] = parse_help;
730         cmdmap["-help"] = parse_help;
731         cmdmap["--help"] = parse_help;
732         cmdmap["-v"] = parse_version;
733         cmdmap["-version"] = parse_version;
734         cmdmap["--version"] = parse_version;
735         cmdmap["-c"] = parse_class;
736         cmdmap["-m"] = parse_module;
737         cmdmap["-e"] = parse_encoding;
738         cmdmap["-f"] = parse_force;
739         cmdmap["-s"] = parse_syntaxfile;
740         cmdmap["-n"] = parse_noweb;
741         cmdmap["-skipchildren"] = parse_skipchildren;
742         cmdmap["-sysdir"] = parse_sysdir;
743         cmdmap["-userdir"] = parse_userdir;
744         cmdmap["-roundtrip"] = parse_roundtrip;
745         cmdmap["-copyfiles"] = parse_copyfiles;
746
747         for (int i = 1; i < argc; ++i) {
748                 map<string, cmd_helper>::const_iterator it
749                         = cmdmap.find(argv[i]);
750
751                 // don't complain if not found - may be parsed later
752                 if (it == cmdmap.end()) {
753                         if (argv[i][0] == '-')
754                                 error_message(string("Unknown option `") + argv[i] + "'.");
755                         else
756                                 continue;
757                 }
758
759                 string arg = (i + 1 < argc) ? os::utf8_argv(i + 1) : string();
760                 string arg2 = (i + 2 < argc) ? os::utf8_argv(i + 2) : string();
761
762                 int const remove = 1 + it->second(arg, arg2);
763
764                 // Now, remove used arguments by shifting
765                 // the following ones remove places down.
766                 os::remove_internal_args(i, remove);
767                 argc -= remove;
768                 for (int j = i; j < argc; ++j)
769                         argv[j] = argv[j + remove];
770                 --i;
771         }
772 }
773
774
775 // path of the first parsed file
776 string masterFilePathLyX;
777 string masterFilePathTeX;
778 // path of the currently parsed file
779 string parentFilePathTeX;
780
781 } // anonymous namespace
782
783
784 string getMasterFilePath(bool input)
785 {
786         return input ? masterFilePathTeX : masterFilePathLyX;
787 }
788
789 string getParentFilePath(bool input)
790 {
791         if (input)
792                 return parentFilePathTeX;
793         string const rel = to_utf8(makeRelPath(from_utf8(masterFilePathTeX),
794                                                from_utf8(parentFilePathTeX)));
795         if (rel.substr(0, 3) == "../") {
796                 // The parent is not below the master - keep the path
797                 return parentFilePathTeX;
798         }
799         return makeAbsPath(rel, masterFilePathLyX).absFileName();
800 }
801
802
803 bool copyFiles()
804 {
805         return copy_files;
806 }
807
808
809 bool overwriteFiles()
810 {
811         return overwrite_files;
812 }
813
814
815 bool skipChildren()
816 {
817         return skip_children;
818 }
819
820
821 namespace {
822
823 /*!
824  *  Reads tex input from \a is and writes lyx output to \a os.
825  *  Uses some common settings for the preamble, so this should only
826  *  be used more than once for included documents.
827  *  Caution: Overwrites the existing preamble settings if the new document
828  *  contains a preamble.
829  *  You must ensure that \p parentFilePathTeX is properly set before calling
830  *  this function!
831  */
832 bool tex2lyx(idocstream & is, ostream & os, string encoding)
833 {
834         // Set a sensible default encoding.
835         // This is used until an encoding command is found.
836         // For child documents use the encoding of the master, else latin1,
837         // since latin1 does not cause an iconv error if the actual encoding
838         // is different (bug 7509).
839         if (encoding.empty()) {
840                 if (preamble.inputencoding() == "auto")
841                         encoding = "latin1";
842                 else
843                         encoding = preamble.inputencoding();
844         }
845
846         Parser p(is);
847         p.setEncoding(encoding);
848         //p.dump();
849
850         preamble.parse(p, documentclass, textclass);
851         list<string> removed_modules;
852         LayoutFile const & baseClass = LayoutFileList::get()[textclass.name()];
853         if (!used_modules.adaptToBaseClass(&baseClass, removed_modules)) {
854                 cerr << "Could not load default modules for text class." << endl;
855                 return false;
856         }
857
858         // Load preloaded modules.
859         // This needs to be done after the preamble is parsed, since the text
860         // class may not be known before. It neds to be done before parsing
861         // body, since otherwise the commands/environments provided by the
862         // modules would be parsed as ERT.
863         for (size_t i = 0; i < preloaded_modules.size(); ++i) {
864                 if (!addModule(preloaded_modules[i])) {
865                         cerr << "Error: Could not load module \""
866                              << preloaded_modules[i] << "\"." << endl;
867                         return false;
868                 }
869         }
870         // Ensure that the modules are not loaded again for included files
871         preloaded_modules.clear();
872
873         active_environments.push_back("document");
874         Context context(true, textclass);
875         stringstream ss;
876         // store the document language in the context to be able to handle the
877         // commands like \foreignlanguage and \textenglish etc.
878         context.font.language = preamble.defaultLanguage();
879         // parse the main text
880         parse_text(p, ss, FLAG_END, true, context);
881         if (Context::empty)
882                 // Empty document body. LyX needs at least one paragraph.
883                 context.check_layout(ss);
884         context.check_end_layout(ss);
885         ss << "\n\\end_body\n\\end_document\n";
886         active_environments.pop_back();
887
888         // We know the used modules only after parsing the full text
889         if (!used_modules.empty()) {
890                 LayoutModuleList::const_iterator const end = used_modules.end();
891                 LayoutModuleList::const_iterator it = used_modules.begin();
892                 for (; it != end; ++it)
893                         preamble.addModule(*it);
894         }
895         if (!preamble.writeLyXHeader(os, !active_environments.empty())) {
896                 cerr << "Could not write LyX file header." << endl;
897                 return false;
898         }
899
900         ss.seekg(0);
901         os << ss.str();
902 #ifdef TEST_PARSER
903         p.reset();
904         ofdocstream parsertest("parsertest.tex");
905         while (p.good())
906                 parsertest << p.get_token().asInput();
907         // <origfile> and parsertest.tex should now have identical content
908 #endif
909         return true;
910 }
911
912
913 /// convert TeX from \p infilename to LyX and write it to \p os
914 bool tex2lyx(FileName const & infilename, ostream & os, string const & encoding)
915 {
916         ifdocstream is;
917         // forbid buffering on this stream
918         is.rdbuf()->pubsetbuf(0,0);
919         is.open(infilename.toFilesystemEncoding().c_str());
920         if (!is.good()) {
921                 cerr << "Could not open input file \"" << infilename
922                      << "\" for reading." << endl;
923                 return false;
924         }
925         string const oldParentFilePath = parentFilePathTeX;
926         parentFilePathTeX = onlyPath(infilename.absFileName());
927         bool retval = tex2lyx(is, os, encoding);
928         parentFilePathTeX = oldParentFilePath;
929         return retval;
930 }
931
932 } // anonymous namespace
933
934
935 bool tex2lyx(string const & infilename, FileName const & outfilename,
936              string const & encoding)
937 {
938         if (outfilename.isReadableFile()) {
939                 if (overwrite_files) {
940                         cerr << "Overwriting existing file "
941                              << outfilename << endl;
942                 } else {
943                         cerr << "Not overwriting existing file "
944                              << outfilename << endl;
945                         return false;
946                 }
947         } else {
948                 cerr << "Creating file " << outfilename << endl;
949         }
950         ofstream os(outfilename.toFilesystemEncoding().c_str());
951         if (!os.good()) {
952                 cerr << "Could not open output file \"" << outfilename
953                      << "\" for writing." << endl;
954                 return false;
955         }
956 #ifdef FILEDEBUG
957         cerr << "Input file: " << infilename << "\n";
958         cerr << "Output file: " << outfilename << "\n";
959 #endif
960         return tex2lyx(FileName(infilename), os, encoding);
961 }
962
963
964 bool tex2tex(string const & infilename, FileName const & outfilename,
965              string const & encoding)
966 {
967         if (!tex2lyx(infilename, outfilename, encoding))
968                 return false;
969         string command = quoteName(package().lyx_binary().toFilesystemEncoding());
970         if (overwrite_files)
971                 command += " -f main";
972         else
973                 command += " -f none";
974         if (pdflatex)
975                 command += " -e pdflatex ";
976         else if (xetex)
977                 command += " -e xetex ";
978         else
979                 command += " -e latex ";
980         command += quoteName(outfilename.toFilesystemEncoding());
981         Systemcall one;
982         if (one.startscript(Systemcall::Wait, command) == 0)
983                 return true;
984         cerr << "Error: Running '" << command << "' failed." << endl;
985         return false;
986 }
987
988 } // namespace lyx
989
990
991 int main(int argc, char * argv[])
992 {
993         using namespace lyx;
994
995         //setlocale(LC_CTYPE, "");
996
997         lyxerr.setStream(cerr);
998
999         os::init(argc, argv);
1000
1001         try {
1002                 init_package(internal_path(os::utf8_argv(0)), string(), string());
1003         } catch (ExceptionMessage const & message) {
1004                 cerr << to_utf8(message.title_) << ":\n"
1005                      << to_utf8(message.details_) << endl;
1006                 if (message.type_ == ErrorException)
1007                         return EXIT_FAILURE;
1008         }
1009
1010         easyParse(argc, argv);
1011
1012         if (argc <= 1)
1013                 error_message("Not enough arguments.");
1014
1015         try {
1016                 init_package(internal_path(os::utf8_argv(0)),
1017                              cl_system_support, cl_user_support);
1018         } catch (ExceptionMessage const & message) {
1019                 cerr << to_utf8(message.title_) << ":\n"
1020                      << to_utf8(message.details_) << endl;
1021                 if (message.type_ == ErrorException)
1022                         return EXIT_FAILURE;
1023         }
1024
1025         // Now every known option is parsed. Look for input and output
1026         // file name (the latter is optional).
1027         string infilename = internal_path(os::utf8_argv(1));
1028         infilename = makeAbsPath(infilename).absFileName();
1029
1030         string outfilename;
1031         if (argc > 2) {
1032                 outfilename = internal_path(os::utf8_argv(2));
1033                 if (outfilename != "-")
1034                         outfilename = makeAbsPath(outfilename).absFileName();
1035                 if (roundtrip) {
1036                         if (outfilename == "-") {
1037                                 cerr << "Error: Writing to standard output is "
1038                                         "not supported in roundtrip mode."
1039                                      << endl;
1040                                 return EXIT_FAILURE;
1041                         }
1042                         string texfilename = changeExtension(outfilename, ".tex");
1043                         if (equivalent(FileName(infilename), FileName(texfilename))) {
1044                                 cerr << "Error: The input file `" << infilename
1045                                      << "´ would be overwritten by the TeX file exported from `"
1046                                      << outfilename << "´ in roundtrip mode." << endl;
1047                                 return EXIT_FAILURE;
1048                         }
1049                 }
1050         } else if (roundtrip) {
1051                 // avoid overwriting the input file
1052                 outfilename = changeExtension(infilename, ".lyx.lyx");
1053         } else
1054                 outfilename = changeExtension(infilename, ".lyx");
1055
1056         // Read the syntax tables
1057         FileName const system_syntaxfile = libFileSearch("", "syntax.default");
1058         if (system_syntaxfile.empty()) {
1059                 cerr << "Error: Could not find syntax file \"syntax.default\"." << endl;
1060                 return EXIT_FAILURE;
1061         }
1062         read_syntaxfile(system_syntaxfile);
1063         if (!syntaxfile.empty())
1064                 read_syntaxfile(makeAbsPath(syntaxfile));
1065
1066         // Read the encodings table.
1067         FileName const symbols_path = libFileSearch(string(), "unicodesymbols");
1068         if (symbols_path.empty()) {
1069                 cerr << "Error: Could not find file \"unicodesymbols\"."
1070                      << endl;
1071                 return EXIT_FAILURE;
1072         }
1073         FileName const enc_path = libFileSearch(string(), "encodings");
1074         if (enc_path.empty()) {
1075                 cerr << "Error: Could not find file \"encodings\"."
1076                      << endl;
1077                 return EXIT_FAILURE;
1078         }
1079         encodings.read(enc_path, symbols_path);
1080         if (!default_encoding.empty() && !encodings.fromLaTeXName(default_encoding))
1081                 error_message("Unknown LaTeX encoding `" + default_encoding + "'");
1082
1083         // Load the layouts
1084         LayoutFileList::get().read();
1085         //...and the modules
1086         theModuleList.read();
1087
1088         // The real work now.
1089         masterFilePathTeX = onlyPath(infilename);
1090         parentFilePathTeX = masterFilePathTeX;
1091         if (outfilename == "-") {
1092                 // assume same directory as input file
1093                 masterFilePathLyX = masterFilePathTeX;
1094                 if (tex2lyx(FileName(infilename), cout, default_encoding))
1095                         return EXIT_SUCCESS;
1096         } else {
1097                 masterFilePathLyX = onlyPath(outfilename);
1098                 if (copy_files) {
1099                         FileName const path(masterFilePathLyX);
1100                         if (!path.isDirectory()) {
1101                                 if (!path.createPath()) {
1102                                         cerr << "Warning: Could not create directory for file `"
1103                                              << masterFilePathLyX << "´." << endl;
1104                                         return EXIT_FAILURE;
1105                                 }
1106                         }
1107                 }
1108                 if (roundtrip) {
1109                         if (tex2tex(infilename, FileName(outfilename), default_encoding))
1110                                 return EXIT_SUCCESS;
1111                 } else {
1112                         if (tex2lyx(infilename, FileName(outfilename), default_encoding))
1113                                 return EXIT_SUCCESS;
1114                 }
1115         }
1116         return EXIT_FAILURE;
1117 }
1118
1119 // }])