]> git.lyx.org Git - lyx.git/blob - src/Converter.cpp
Do nothing if converting to the same type of Note
[lyx.git] / src / Converter.cpp
1 /**
2  * \file Converter.cpp
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * \author Dekel Tsur
7  *
8  * Full author contact details are available in file CREDITS.
9  */
10
11 #include <config.h>
12
13 #include "Converter.h"
14
15 #include "Buffer.h"
16 #include "buffer_funcs.h"
17 #include "BufferParams.h"
18 #include "ConverterCache.h"
19 #include "Encoding.h"
20 #include "ErrorList.h"
21 #include "Format.h"
22 #include "Language.h"
23 #include "LaTeX.h"
24 #include "Mover.h"
25
26 #include "frontends/alert.h"
27
28 #include "support/debug.h"
29 #include "support/FileNameList.h"
30 #include "support/filetools.h"
31 #include "support/gettext.h"
32 #include "support/lstrings.h"
33 #include "support/os.h"
34 #include "support/Package.h"
35 #include "support/PathChanger.h"
36 #include "support/Systemcall.h"
37
38 using namespace std;
39 using namespace lyx::support;
40
41 namespace lyx {
42
43 namespace Alert = lyx::frontend::Alert;
44
45
46 namespace {
47
48 string const token_from("$$i");
49 string const token_base("$$b");
50 string const token_to("$$o");
51 string const token_path("$$p");
52 string const token_orig_path("$$r");
53 string const token_orig_from("$$f");
54 string const token_encoding("$$e");
55 string const token_latex_encoding("$$E");
56
57
58 string const add_options(string const & command, string const & options)
59 {
60         string head;
61         string const tail = split(command, head, ' ');
62         return head + ' ' + options + ' ' + tail;
63 }
64
65
66 string const dvipdfm_options(BufferParams const & bp)
67 {
68         string result;
69
70         if (bp.papersize != PAPER_CUSTOM) {
71                 string const paper_size = bp.paperSizeName(BufferParams::DVIPDFM);
72                 if (!paper_size.empty())
73                         result = "-p "+ paper_size;
74
75                 if (bp.orientation == ORIENTATION_LANDSCAPE)
76                         result += " -l";
77         }
78
79         return result;
80 }
81
82
83 class ConverterEqual {
84 public:
85         ConverterEqual(string const & from, string const & to)
86                 : from_(from), to_(to) {}
87         bool operator()(Converter const & c) const {
88                 return c.from == from_ && c.to == to_;
89         }
90 private:
91         string const from_;
92         string const to_;
93 };
94
95 } // namespace anon
96
97
98 Converter::Converter(string const & f, string const & t,
99                      string const & c, string const & l)
100         : from(f), to(t), command(c), flags(l),
101           From(0), To(0), latex(false), xml(false),
102           need_aux(false), nice(false)
103 {}
104
105
106 void Converter::readFlags()
107 {
108         string flag_list(flags);
109         while (!flag_list.empty()) {
110                 string flag_name, flag_value;
111                 flag_list = split(flag_list, flag_value, ',');
112                 flag_value = split(flag_value, flag_name, '=');
113                 if (flag_name == "latex") {
114                         latex = true;
115                         latex_flavor = flag_value.empty() ?
116                                 "latex" : flag_value;
117                 } else if (flag_name == "xml")
118                         xml = true;
119                 else if (flag_name == "needaux")
120                         need_aux = true;
121                 else if (flag_name == "resultdir")
122                         result_dir = (flag_value.empty())
123                                 ? token_base : flag_value;
124                 else if (flag_name == "resultfile")
125                         result_file = flag_value;
126                 else if (flag_name == "parselog")
127                         parselog = flag_value;
128                 else if (flag_name == "nice")
129                         nice = true;
130         }
131         if (!result_dir.empty() && result_file.empty())
132                 result_file = "index." + formats.extension(to);
133         //if (!contains(command, token_from))
134         //      latex = true;
135 }
136
137
138 Converter const * Converters::getConverter(string const & from,
139                                             string const & to) const
140 {
141         ConverterList::const_iterator const cit =
142                 find_if(converterlist_.begin(), converterlist_.end(),
143                         ConverterEqual(from, to));
144         if (cit != converterlist_.end())
145                 return &(*cit);
146         else
147                 return 0;
148 }
149
150
151 int Converters::getNumber(string const & from, string const & to) const
152 {
153         ConverterList::const_iterator const cit =
154                 find_if(converterlist_.begin(), converterlist_.end(),
155                         ConverterEqual(from, to));
156         if (cit != converterlist_.end())
157                 return distance(converterlist_.begin(), cit);
158         else
159                 return -1;
160 }
161
162
163 void Converters::add(string const & from, string const & to,
164                      string const & command, string const & flags)
165 {
166         formats.add(from);
167         formats.add(to);
168         ConverterList::iterator it = find_if(converterlist_.begin(),
169                                              converterlist_.end(),
170                                              ConverterEqual(from , to));
171
172         Converter converter(from, to, command, flags);
173         if (it != converterlist_.end() && !flags.empty() && flags[0] == '*') {
174                 converter = *it;
175                 converter.command = command;
176                 converter.flags = flags;
177         }
178         converter.readFlags();
179
180         // The latex_command is used to update the .aux file when running
181         // a converter that uses it.
182         if (converter.latex) {
183                 if (latex_command_.empty() ||
184                     converter.latex_flavor == "latex")
185                         latex_command_ = subst(command, token_from, "");
186                 if (dvilualatex_command_.empty() ||
187                     converter.latex_flavor == "dvilualatex")
188                         dvilualatex_command_ = subst(command, token_from, "");
189                 if (lualatex_command_.empty() ||
190                     converter.latex_flavor == "lualatex")
191                         lualatex_command_ = subst(command, token_from, "");
192                 if (pdflatex_command_.empty() ||
193                     converter.latex_flavor == "pdflatex")
194                         pdflatex_command_ = subst(command, token_from, "");
195                 if (xelatex_command_.empty() ||
196                     converter.latex_flavor == "xelatex")
197                         xelatex_command_ = subst(command, token_from, "");
198         }
199
200         if (it == converterlist_.end()) {
201                 converterlist_.push_back(converter);
202         } else {
203                 converter.From = it->From;
204                 converter.To = it->To;
205                 *it = converter;
206         }
207 }
208
209
210 void Converters::erase(string const & from, string const & to)
211 {
212         ConverterList::iterator const it =
213                 find_if(converterlist_.begin(),
214                         converterlist_.end(),
215                         ConverterEqual(from, to));
216         if (it != converterlist_.end())
217                 converterlist_.erase(it);
218 }
219
220
221 // This method updates the pointers From and To in all the converters.
222 // The code is not very efficient, but it doesn't matter as the number
223 // of formats and converters is small.
224 // Furthermore, this method is called only on startup, or after
225 // adding/deleting a format in FormPreferences (the latter calls can be
226 // eliminated if the formats in the Formats class are stored using a map or
227 // a list (instead of a vector), but this will cause other problems).
228 void Converters::update(Formats const & formats)
229 {
230         ConverterList::iterator it = converterlist_.begin();
231         ConverterList::iterator end = converterlist_.end();
232         for (; it != end; ++it) {
233                 it->From = formats.getFormat(it->from);
234                 it->To = formats.getFormat(it->to);
235         }
236 }
237
238
239 // This method updates the pointers From and To in the last converter.
240 // It is called when adding a new converter in FormPreferences
241 void Converters::updateLast(Formats const & formats)
242 {
243         if (converterlist_.begin() != converterlist_.end()) {
244                 ConverterList::iterator it = converterlist_.end() - 1;
245                 it->From = formats.getFormat(it->from);
246                 it->To = formats.getFormat(it->to);
247         }
248 }
249
250
251 OutputParams::FLAVOR Converters::getFlavor(Graph::EdgePath const & path,
252                                            Buffer const * buffer)
253 {
254         for (Graph::EdgePath::const_iterator cit = path.begin();
255              cit != path.end(); ++cit) {
256                 Converter const & conv = converterlist_[*cit];
257                 if (conv.latex) {
258                         if (conv.latex_flavor == "latex")
259                                 return OutputParams::LATEX;
260                         if (conv.latex_flavor == "xelatex")
261                                 return OutputParams::XETEX;
262                         if (conv.latex_flavor == "lualatex")
263                                 return OutputParams::LUATEX;
264                         if (conv.latex_flavor == "dvilualatex")
265                                 return OutputParams::DVILUATEX;
266                         if (conv.latex_flavor == "pdflatex")
267                                 return OutputParams::PDFLATEX;
268                 }
269                 if (conv.xml)
270                         return OutputParams::XML;
271         }
272         return buffer ? buffer->params().getOutputFlavor()
273                       : OutputParams::LATEX;
274 }
275
276
277 bool Converters::convert(Buffer const * buffer,
278                          FileName const & from_file, FileName const & to_file,
279                          FileName const & orig_from,
280                          string const & from_format, string const & to_format,
281                          ErrorList & errorList, int conversionflags)
282 {
283         if (from_format == to_format)
284                 return move(from_format, from_file, to_file, false);
285
286         if ((conversionflags & try_cache) &&
287             ConverterCache::get().inCache(orig_from, to_format))
288                 return ConverterCache::get().copy(orig_from, to_format, to_file);
289
290         Graph::EdgePath edgepath = getPath(from_format, to_format);
291         if (edgepath.empty()) {
292                 if (conversionflags & try_default) {
293                         // if no special converter defined, then we take the
294                         // default one from ImageMagic.
295                         string const from_ext = from_format.empty() ?
296                                 getExtension(from_file.absFileName()) :
297                                 formats.extension(from_format);
298                         string const to_ext = formats.extension(to_format);
299                         string const command =
300                                 os::python() + ' ' +
301                                 quoteName(libFileSearch("scripts", "convertDefault.py").toFilesystemEncoding()) +
302                                 ' ' +
303                                 quoteName(from_ext + ':' + from_file.toFilesystemEncoding()) +
304                                 ' ' +
305                                 quoteName(to_ext + ':' + to_file.toFilesystemEncoding());
306                         LYXERR(Debug::FILES, "No converter defined! "
307                                    "I use convertDefault.py:\n\t" << command);
308                         Systemcall one;
309                         one.startscript(Systemcall::Wait, command, buffer ?
310                                         buffer->filePath() : string());
311                         if (to_file.isReadableFile()) {
312                                 if (conversionflags & try_cache)
313                                         ConverterCache::get().add(orig_from,
314                                                         to_format, to_file);
315                                 return true;
316                         }
317                 }
318
319                 // only warn once per session and per file type
320                 static std::map<string, string> warned;
321                 if (warned.find(from_format) != warned.end() && warned.find(from_format)->second == to_format) {
322                         return false;
323                 }
324                 warned.insert(make_pair(from_format, to_format));
325
326                 Alert::error(_("Cannot convert file"),
327                              bformat(_("No information for converting %1$s "
328                                                     "format files to %2$s.\n"
329                                                     "Define a converter in the preferences."),
330                                                         from_ascii(from_format), from_ascii(to_format)));
331                 return false;
332         }
333
334         // buffer is only invalid for importing, and then runparams is not
335         // used anyway.
336         OutputParams runparams(buffer ? &buffer->params().encoding() : 0);
337         runparams.flavor = getFlavor(edgepath, buffer);
338
339         if (buffer) {
340                 runparams.use_japanese = buffer->params().bufferFormat() == "platex";
341                 runparams.use_indices = buffer->params().use_indices;
342                 runparams.bibtex_command = (buffer->params().bibtex_command == "default") ?
343                         string() : buffer->params().bibtex_command;
344                 runparams.index_command = (buffer->params().index_command == "default") ?
345                         string() : buffer->params().index_command;
346         }
347
348         // Some converters (e.g. lilypond) can only output files to the
349         // current directory, so we need to change the current directory.
350         // This has the added benefit that all other files that may be
351         // generated by the converter are deleted when LyX closes and do not
352         // clutter the real working directory.
353         // FIXME: This does not work if path is an UNC path on windows
354         //        (bug 6127).
355         string const path(onlyPath(from_file.absFileName()));
356         // Prevent the compiler from optimizing away p
357         FileName pp(path);
358         PathChanger p(pp);
359
360         // empty the error list before any new conversion takes place.
361         errorList.clear();
362
363         bool run_latex = false;
364         string from_base = changeExtension(from_file.absFileName(), "");
365         string to_base = changeExtension(to_file.absFileName(), "");
366         FileName infile;
367         FileName outfile = from_file;
368         for (Graph::EdgePath::const_iterator cit = edgepath.begin();
369              cit != edgepath.end(); ++cit) {
370                 Converter const & conv = converterlist_[*cit];
371                 bool dummy = conv.To->dummy() && conv.to != "program";
372                 if (!dummy) {
373                         LYXERR(Debug::FILES, "Converting from  "
374                                << conv.from << " to " << conv.to);
375                 }
376                 infile = outfile;
377                 outfile = FileName(conv.result_file.empty()
378                         ? changeExtension(from_file.absFileName(), conv.To->extension())
379                         : addName(subst(conv.result_dir,
380                                         token_base, from_base),
381                                   subst(conv.result_file,
382                                         token_base, onlyFileName(from_base))));
383
384                 // if input and output files are equal, we use a
385                 // temporary file as intermediary (JMarc)
386                 FileName real_outfile;
387                 if (!conv.result_file.empty())
388                         real_outfile = FileName(changeExtension(from_file.absFileName(),
389                                 conv.To->extension()));
390                 if (outfile == infile) {
391                         real_outfile = infile;
392                         // when importing, a buffer does not necessarily exist
393                         if (buffer)
394                                 outfile = FileName(addName(buffer->temppath(), "tmpfile.out"));
395                         else
396                                 outfile = FileName(addName(package().temp_dir().absFileName(),
397                                                    "tmpfile.out"));
398                 }
399
400                 if (conv.latex) {
401                         run_latex = true;
402                         string command = conv.command;
403                         command = subst(command, token_from, "");
404                         command = subst(command, token_latex_encoding, buffer ?
405                                 buffer->params().encoding().latexName() : string());
406                         LYXERR(Debug::FILES, "Running " << command);
407                         if (!runLaTeX(*buffer, command, runparams, errorList))
408                                 return false;
409                 } else {
410                         if (conv.need_aux && !run_latex) {
411                                 string command;
412                                 switch (runparams.flavor) {
413                                 case OutputParams::DVILUATEX:
414                                         command = dvilualatex_command_;
415                                         break;
416                                 case OutputParams::LUATEX:
417                                         command = lualatex_command_;
418                                         break;
419                                 case OutputParams::PDFLATEX:
420                                         command = pdflatex_command_;
421                                         break;
422                                 case OutputParams::XETEX:
423                                         command = xelatex_command_;
424                                         break;
425                                 default:
426                                         command = latex_command_;
427                                         break;
428                                 }
429                                 if (!command.empty()) {
430                                         LYXERR(Debug::FILES, "Running "
431                                                 << command
432                                                 << " to update aux file");
433                                         if (!runLaTeX(*buffer, command,
434                                                       runparams, errorList))
435                                                 return false;
436                                 }
437                         }
438
439                         // FIXME UNICODE
440                         string const infile2 =
441                                 to_utf8(makeRelPath(from_utf8(infile.absFileName()), from_utf8(path)));
442                         string const outfile2 =
443                                 to_utf8(makeRelPath(from_utf8(outfile.absFileName()), from_utf8(path)));
444
445                         string command = conv.command;
446                         command = subst(command, token_from, quoteName(infile2));
447                         command = subst(command, token_base, quoteName(from_base));
448                         command = subst(command, token_to, quoteName(outfile2));
449                         command = subst(command, token_path, quoteName(onlyPath(infile.absFileName())));
450                         command = subst(command, token_orig_path, quoteName(onlyPath(orig_from.absFileName())));
451                         command = subst(command, token_orig_from, quoteName(onlyFileName(orig_from.absFileName())));
452                         command = subst(command, token_encoding, buffer ? buffer->params().encoding().iconvName() : string());
453
454                         if (!conv.parselog.empty())
455                                 command += " 2> " + quoteName(infile2 + ".out");
456
457                         if (conv.from == "dvi" && conv.to == "ps")
458                                 command = add_options(command,
459                                                       buffer->params().dvips_options());
460                         else if (conv.from == "dvi" && prefixIs(conv.to, "pdf"))
461                                 command = add_options(command,
462                                                       dvipdfm_options(buffer->params()));
463
464                         LYXERR(Debug::FILES, "Calling " << command);
465                         if (buffer)
466                                 buffer->message(_("Executing command: ")
467                                 + from_utf8(command));
468
469                         Systemcall one;
470                         int res;
471                         if (dummy) {
472                                 res = one.startscript(Systemcall::DontWait,
473                                         to_filesystem8bit(from_utf8(command)),
474                                         buffer ? buffer->filePath() : string());
475                                 // We're not waiting for the result, so we can't do anything
476                                 // else here.
477                         } else {
478                                 res = one.startscript(Systemcall::Wait,
479                                                 to_filesystem8bit(from_utf8(command)),
480                                                 buffer ? buffer->filePath()
481                                                        : string());
482                                 if (!real_outfile.empty()) {
483                                         Mover const & mover = getMover(conv.to);
484                                         if (!mover.rename(outfile, real_outfile))
485                                                 res = -1;
486                                         else
487                                                 LYXERR(Debug::FILES, "renaming file " << outfile
488                                                         << " to " << real_outfile);
489                                         // Finally, don't forget to tell any future
490                                         // converters to use the renamed file...
491                                         outfile = real_outfile;
492                                 }
493   
494                                 if (!conv.parselog.empty()) {
495                                         string const logfile =  infile2 + ".log";
496                                         string const command2 = conv.parselog +
497                                                 " < " + quoteName(infile2 + ".out") +
498                                                 " > " + quoteName(logfile);
499                                         one.startscript(Systemcall::Wait,
500                                                 to_filesystem8bit(from_utf8(command2)),
501                                                 buffer->filePath());
502                                         if (!scanLog(*buffer, command, makeAbsPath(logfile, path), errorList))
503                                                 return false;
504                                 }
505                         }
506
507                         if (res) {
508                                 if (conv.to == "program") {
509                                         Alert::error(_("Build errors"),
510                                                 _("There were errors during the build process."));
511                                 } else {
512 // FIXME: this should go out of here. For example, here we cannot say if
513 // it is a document (.lyx) or something else. Same goes for elsewhere.
514                                         Alert::error(_("Cannot convert file"),
515                                                 bformat(_("An error occurred while running:\n%1$s"),
516                                                 wrapParas(from_utf8(command))));
517                                 }
518                                 return false;
519                         }
520                 }
521         }
522
523         Converter const & conv = converterlist_[edgepath.back()];
524         if (conv.To->dummy())
525                 return true;
526
527         if (!conv.result_dir.empty()) {
528                 // The converter has put the file(s) in a directory.
529                 // In this case we ignore the given to_file.
530                 if (from_base != to_base) {
531                         string const from = subst(conv.result_dir,
532                                             token_base, from_base);
533                         string const to = subst(conv.result_dir,
534                                           token_base, to_base);
535                         Mover const & mover = getMover(conv.from);
536                         if (!mover.rename(FileName(from), FileName(to))) {
537                                 Alert::error(_("Cannot convert file"),
538                                         bformat(_("Could not move a temporary directory from %1$s to %2$s."),
539                                                 from_utf8(from), from_utf8(to)));
540                                 return false;
541                         }
542                 }
543                 return true;
544         } else {
545                 if (conversionflags & try_cache)
546                         ConverterCache::get().add(orig_from, to_format, outfile);
547                 return move(conv.to, outfile, to_file, conv.latex);
548         }
549 }
550
551
552 bool Converters::move(string const & fmt,
553                       FileName const & from, FileName const & to, bool copy)
554 {
555         if (from == to)
556                 return true;
557
558         bool no_errors = true;
559         string const path = onlyPath(from.absFileName());
560         string const base = onlyFileName(removeExtension(from.absFileName()));
561         string const to_base = removeExtension(to.absFileName());
562         string const to_extension = getExtension(to.absFileName());
563
564         support::FileNameList const files = FileName(path).dirList(getExtension(from.absFileName()));
565         for (support::FileNameList::const_iterator it = files.begin();
566              it != files.end(); ++it) {
567                 string const from2 = it->absFileName();
568                 string const file2 = onlyFileName(from2);
569                 if (prefixIs(file2, base)) {
570                         string const to2 = changeExtension(
571                                 to_base + file2.substr(base.length()),
572                                 to_extension);
573                         LYXERR(Debug::FILES, "moving " << from2 << " to " << to2);
574
575                         Mover const & mover = getMover(fmt);
576                         bool const moved = copy
577                                 ? mover.copy(*it, FileName(to2))
578                                 : mover.rename(*it, FileName(to2));
579                         if (!moved && no_errors) {
580                                 Alert::error(_("Cannot convert file"),
581                                         bformat(copy ?
582                                                 _("Could not copy a temporary file from %1$s to %2$s.") :
583                                                 _("Could not move a temporary file from %1$s to %2$s."),
584                                                 from_utf8(from2), from_utf8(to2)));
585                                 no_errors = false;
586                         }
587                 }
588         }
589         return no_errors;
590 }
591
592
593 bool Converters::formatIsUsed(string const & format)
594 {
595         ConverterList::const_iterator cit = converterlist_.begin();
596         ConverterList::const_iterator end = converterlist_.end();
597         for (; cit != end; ++cit) {
598                 if (cit->from == format || cit->to == format)
599                         return true;
600         }
601         return false;
602 }
603
604
605 bool Converters::scanLog(Buffer const & buffer, string const & /*command*/,
606                          FileName const & filename, ErrorList & errorList)
607 {
608         OutputParams runparams(0);
609         runparams.flavor = OutputParams::LATEX;
610         LaTeX latex("", runparams, filename);
611         TeXErrors terr;
612         int const result = latex.scanLogFile(terr);
613
614         if (result & LaTeX::ERRORS)
615                 buffer.bufferErrors(terr, errorList);
616
617         return true;
618 }
619
620
621 namespace {
622
623 class ShowMessage
624         : public boost::signals::trackable {
625 public:
626         ShowMessage(Buffer const & b) : buffer_(b) {}
627         void operator()(docstring const & msg) const { buffer_.message(msg); }
628 private:
629         Buffer const & buffer_;
630 };
631
632 }
633
634
635 bool Converters::runLaTeX(Buffer const & buffer, string const & command,
636                           OutputParams const & runparams, ErrorList & errorList)
637 {
638         buffer.setBusy(true);
639         buffer.message(_("Running LaTeX..."));
640
641         runparams.document_language = buffer.params().language->babel();
642
643         // do the LaTeX run(s)
644         string const name = buffer.latexName();
645         LaTeX latex(command, runparams, FileName(makeAbsPath(name)),
646                     buffer.filePath());
647         TeXErrors terr;
648         ShowMessage show(buffer);
649         latex.message.connect(show);
650         int const result = latex.run(terr);
651
652         if (result & LaTeX::ERRORS)
653                 buffer.bufferErrors(terr, errorList);
654
655         // check return value from latex.run().
656         if ((result & LaTeX::NO_LOGFILE) && !buffer.isClone()) {
657                 docstring const str =
658                         bformat(_("LaTeX did not run successfully. "
659                                                "Additionally, LyX could not locate "
660                                                "the LaTeX log %1$s."), from_utf8(name));
661                 Alert::error(_("LaTeX failed"), str);
662         } else if ((result & LaTeX::NO_OUTPUT) && !buffer.isClone()) {
663                 Alert::warning(_("Output is empty"),
664                                _("An empty output file was generated."));
665         }
666
667
668         buffer.setBusy(false);
669
670         int const ERROR_MASK =
671                         LaTeX::NO_LOGFILE |
672                         LaTeX::ERRORS |
673                         LaTeX::NO_OUTPUT;
674
675         return (result & ERROR_MASK) == 0;
676
677 }
678
679
680
681 void Converters::buildGraph()
682 {
683         // clear graph's data structures
684         G_.init(formats.size());
685         // each of the converters knows how to convert one format to another
686         // so, for each of them, we create an arrow on the graph, going from 
687         // the one to the other
688         ConverterList::iterator it = converterlist_.begin();
689         ConverterList::iterator const end = converterlist_.end();
690         for (; it != end ; ++it) {
691                 int const from = formats.getNumber(it->from);
692                 int const to   = formats.getNumber(it->to);
693                 G_.addEdge(from, to);
694         }
695 }
696
697
698 vector<Format const *> const
699 Converters::intToFormat(vector<int> const & input)
700 {
701         vector<Format const *> result(input.size());
702
703         vector<int>::const_iterator it = input.begin();
704         vector<int>::const_iterator const end = input.end();
705         vector<Format const *>::iterator rit = result.begin();
706         for ( ; it != end; ++it, ++rit) {
707                 *rit = &formats.get(*it);
708         }
709         return result;
710 }
711
712
713 vector<Format const *> const
714 Converters::getReachableTo(string const & target, bool const clear_visited)
715 {
716         vector<int> const & reachablesto =
717                 G_.getReachableTo(formats.getNumber(target), clear_visited);
718
719         return intToFormat(reachablesto);
720 }
721
722
723 vector<Format const *> const
724 Converters::getReachable(string const & from, bool const only_viewable,
725                          bool const clear_visited, set<string> const & excludes)
726 {
727         set<int> excluded_numbers;
728
729         set<string>::const_iterator sit = excludes.begin();
730         set<string>::const_iterator const end = excludes.end();
731         for (; sit != end; ++sit)
732                 excluded_numbers.insert(formats.getNumber(*sit));
733
734         vector<int> const & reachables =
735                 G_.getReachable(formats.getNumber(from),
736                                 only_viewable,
737                                 clear_visited,
738                                 excluded_numbers);
739
740         return intToFormat(reachables);
741 }
742
743
744 bool Converters::isReachable(string const & from, string const & to)
745 {
746         return G_.isReachable(formats.getNumber(from),
747                               formats.getNumber(to));
748 }
749
750
751 Graph::EdgePath Converters::getPath(string const & from, string const & to)
752 {
753         return G_.getPath(formats.getNumber(from),
754                           formats.getNumber(to));
755 }
756
757
758 vector<Format const *> Converters::importableFormats()
759 {
760         vector<string> l = loaders();
761         vector<Format const *> result = getReachableTo(l[0], true);
762         vector<string>::const_iterator it = l.begin() + 1;
763         vector<string>::const_iterator en = l.end();
764         for (; it != en; ++it) {
765                 vector<Format const *> r = getReachableTo(*it, false);
766                 result.insert(result.end(), r.begin(), r.end());
767         }
768         return result;
769 }
770
771
772 vector<Format const *> Converters::exportableFormats(bool only_viewable)
773 {
774         vector<string> s = savers();
775         vector<Format const *> result = getReachable(s[0], only_viewable, true);
776         vector<string>::const_iterator it = s.begin() + 1;
777         vector<string>::const_iterator en = s.end();
778         for (; it != en; ++it) {
779                 vector<Format const *> r =
780                         getReachable(*it, only_viewable, false);
781                 result.insert(result.end(), r.begin(), r.end());
782         }
783         return result;
784 }
785
786
787 vector<string> Converters::loaders() const
788 {
789         vector<string> v;
790         v.push_back("lyx");
791         v.push_back("text");
792         v.push_back("textparagraph");
793         return v;
794 }
795
796
797 vector<string> Converters::savers() const
798 {
799         vector<string> v;
800         v.push_back("docbook");
801         v.push_back("latex");
802         v.push_back("literate");
803         v.push_back("luatex");
804         v.push_back("dviluatex");
805         v.push_back("lyx");
806         v.push_back("xhtml");
807         v.push_back("pdflatex");
808         v.push_back("platex");
809         v.push_back("text");
810         v.push_back("xetex");
811         return v;
812 }
813
814
815 } // namespace lyx