]> git.lyx.org Git - lyx.git/blob - src/Format.cpp
ff7fb3461366aee11199f6991093eb198435ee55
[lyx.git] / src / Format.cpp
1 /**
2  * \file Format.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 "Format.h"
14 #include "Buffer.h"
15 #include "BufferParams.h"
16 #include "LyXRC.h"
17 #include "ServerSocket.h"
18
19 #include "frontends/alert.h" //to be removed?
20
21 #include "support/debug.h"
22 #include "support/filetools.h"
23 #include "support/gettext.h"
24 #include "support/lstrings.h"
25 #include "support/os.h"
26 #include "support/PathChanger.h"
27 #include "support/Systemcall.h"
28 #include "support/textutils.h"
29 #include "support/Translator.h"
30
31 #include <algorithm>
32 #include <map>
33 #include <ctime>
34
35 // FIXME: Q_WS_MACX is not available, it's in Qt
36 #ifdef USE_MACOSX_PACKAGING
37 #include "support/linkback/LinkBackProxy.h"
38 #endif
39
40 #ifdef HAVE_MAGIC_H
41 #include <magic.h>
42 #endif
43
44 using namespace std;
45 using namespace lyx::support;
46
47 namespace lyx {
48
49 namespace Alert = frontend::Alert;
50 namespace os = support::os;
51
52 namespace {
53
54 string const token_from_format("$$i");
55 string const token_path_format("$$p");
56 string const token_socket_format("$$a");
57
58
59 class FormatNamesEqual : public unary_function<Format, bool> {
60 public:
61         FormatNamesEqual(string const & name)
62                 : name_(name)
63         {}
64         bool operator()(Format const & f) const
65         {
66                 return f.name() == name_;
67         }
68 private:
69         string name_;
70 };
71
72
73 class FormatExtensionsEqual : public unary_function<Format, bool> {
74 public:
75         FormatExtensionsEqual(string const & extension)
76                 : extension_(extension)
77         {}
78         bool operator()(Format const & f) const
79         {
80                 return f.hasExtension(extension_);
81         }
82 private:
83         string extension_;
84 };
85
86
87 class FormatMimeEqual : public unary_function<Format, bool> {
88 public:
89         FormatMimeEqual(string const & mime)
90                 : mime_(mime)
91         {}
92         bool operator()(Format const & f) const
93         {
94                 // The test for empty mime strings is needed since we allow
95                 // formats with empty mime types.
96                 return f.mime() == mime_ && !mime_.empty();
97         }
98 private:
99         string mime_;
100 };
101
102
103 } //namespace anon
104
105 bool Format::formatSorter(Format const * lhs, Format const * rhs)
106 {
107         return compare_locale(_(lhs->prettyname()), _(rhs->prettyname())) < 0;
108 }
109
110 bool operator<(Format const & a, Format const & b)
111 {
112         return compare_locale(_(a.prettyname()), _(b.prettyname())) < 0;
113 }
114
115
116 Format::Format(string const & n, string const & e, string const & p,
117                string const & s, string const & v, string const & ed,
118                string const & m, int flags)
119         : name_(n), prettyname_(p), shortcut_(s), viewer_(v),
120           editor_(ed), mime_(m), flags_(flags)
121 {
122         extension_list_ = getVectorFromString(e, ",");
123         LYXERR(Debug::GRAPHICS, "New Format: n=" << n << ", flags=" << flags);
124 }
125
126
127 bool Format::dummy() const
128 {
129         return extension().empty();
130 }
131
132
133 string const Format::extensions() const
134 {
135         return getStringFromVector(extension_list_, ", ");
136 }
137
138
139 bool Format::hasExtension(string const & e) const
140 {
141         return (find(extension_list_.begin(), extension_list_.end(), e)
142                 != extension_list_.end());
143 }
144
145
146 bool Format::isChildFormat() const
147 {
148         if (name_.empty())
149                 return false;
150         return isDigitASCII(name_[name_.length() - 1]);
151 }
152
153
154 string const Format::parentFormat() const
155 {
156         return name_.substr(0, name_.length() - 1);
157 }
158
159
160 void Format::setExtensions(string const & e)
161 {
162         extension_list_ = getVectorFromString(e, ",");
163 }
164
165
166 // This method should return a reference, and throw an exception
167 // if the format named name cannot be found (Lgb)
168 Format const * Formats::getFormat(string const & name) const
169 {
170         FormatList::const_iterator cit =
171                 find_if(formatlist.begin(), formatlist.end(),
172                         FormatNamesEqual(name));
173         if (cit != formatlist.end())
174                 return &(*cit);
175         else
176                 return 0;
177 }
178
179
180 namespace {
181
182 /** Guess the file format name (as in Format::name()) from contents.
183  *  Normally you don't want to use this directly, but rather
184  *  Formats::getFormatFromFile().
185  */
186 string guessFormatFromContents(FileName const & fn)
187 {
188         // the different filetypes and what they contain in one of the first lines
189         // (dots are any characters).           (Herbert 20020131)
190         // AGR  Grace...
191         // BMP  BM...
192         // EPS  %!PS-Adobe-3.0 EPSF...
193         // FIG  #FIG...
194         // FITS ...BITPIX...
195         // GIF  GIF...
196         // JPG  \377\330...     (0xFFD8)
197         // PDF  %PDF-...
198         // PNG  .PNG...
199         // PBM  P1... or P4     (B/W)
200         // PGM  P2... or P5     (Grayscale)
201         // PPM  P3... or P6     (color)
202         // PS   %!PS-Adobe-2.0 or 1.0,  no "EPSF"!
203         // SGI  \001\332...     (decimal 474)
204         // TGIF %TGIF...
205         // TIFF II... or MM...
206         // XBM  ..._bits[]...
207         // XPM  /* XPM */    sometimes missing (f.ex. tgif-export)
208         //      ...static char *...
209         // XWD  \000\000\000\151        (0x00006900) decimal 105
210         //
211         // GZIP \037\213        http://www.ietf.org/rfc/rfc1952.txt
212         // ZIP  PK...                   http://www.halyava.ru/document/ind_arch.htm
213         // Z    \037\235                UNIX compress
214
215         // paranoia check
216         if (fn.empty() || !fn.isReadableFile())
217                 return string();
218
219         ifstream ifs(fn.toFilesystemEncoding().c_str());
220         if (!ifs)
221                 // Couldn't open file...
222                 return string();
223
224         // gnuzip
225         static string const gzipStamp = "\037\213";
226
227         // PKZIP
228         static string const zipStamp = "PK";
229
230         // ZIP containers (koffice, openoffice.org etc).
231         static string const nonzipStamp = "\008\0\0\0mimetypeapplication/";
232
233         // compress
234         static string const compressStamp = "\037\235";
235
236         // DOS binary EPS according to Adobe TN-5002
237         static string const binEPSStamp = "\xC5\xD0\xD3\xC6";
238
239
240         // Maximum strings to read
241         int const max_count = 50;
242         int count = 0;
243
244         // Maximum number of binary chars allowed for latex detection
245         int const max_bin = 5;
246
247         string str;
248         string format;
249         bool firstLine = true;
250         bool backslash = false;
251         bool maybelatex = false;
252         int binchars = 0;
253         int dollars = 0;
254         while ((count++ < max_count) && format.empty() && binchars <= max_bin) {
255                 if (ifs.eof())
256                         break;
257
258                 getline(ifs, str);
259                 string const stamp = str.substr(0, 2);
260                 if (firstLine && str.size() >= 2) {
261                         // at first we check for a zipped file, because this
262                         // information is saved in the first bytes of the file!
263                         // also some graphic formats which save the information
264                         // in the first line, too.
265                         if (prefixIs(str, gzipStamp)) {
266                                 format =  "gzip";
267
268                         } else if (stamp == zipStamp &&
269                                    !contains(str, nonzipStamp)) {
270                                 format =  "zip";
271
272                         } else if (stamp == compressStamp) {
273                                 format =  "compress";
274
275                         // the graphics part
276                         } else if (stamp == "BM") {
277                                 format =  "bmp";
278
279                         } else if (stamp == "\377\330") {
280                                 format =  "jpg";
281
282                         } else if (stamp == "\001\332") {
283                                 format =  "sgi";
284                         } else if (prefixIs(str, binEPSStamp)) {
285                                 format =  "eps";
286
287                         // PBM family
288                         // Don't need to use str.at(0), str.at(1) because
289                         // we already know that str.size() >= 2
290                         } else if (str[0] == 'P') {
291                                 switch (str[1]) {
292                                 case '1':
293                                 case '4':
294                                         format =  "pbm";
295                                     break;
296                                 case '2':
297                                 case '5':
298                                         format =  "pgm";
299                                     break;
300                                 case '3':
301                                 case '6':
302                                         format =  "ppm";
303                                 }
304                                 break;
305
306                         } else if ((stamp == "II") || (stamp == "MM")) {
307                                 format =  "tiff";
308
309                         } else if (prefixIs(str,"%TGIF")) {
310                                 format =  "tgif";
311
312                         } else if (prefixIs(str,"#FIG")) {
313                                 format =  "fig";
314
315                         } else if (prefixIs(str,"GIF")) {
316                                 format =  "gif";
317
318                         } else if (str.size() > 3) {
319                                 int const c = ((str[0] << 24) & (str[1] << 16) &
320                                                (str[2] << 8)  & str[3]);
321                                 if (c == 105) {
322                                         format =  "xwd";
323                                 }
324                         }
325
326                         firstLine = false;
327                 }
328
329                 if (!format.empty())
330                     break;
331                 else if (contains(str,"EPSF"))
332                         // dummy, if we have wrong file description like
333                         // %!PS-Adobe-2.0EPSF"
334                         format = "eps";
335
336                 else if (contains(str, "Grace"))
337                         format = "agr";
338
339                 else if (contains(str, "%PDF"))
340                         // autodetect pdf format for graphics inclusion
341                         format = "pdf6";
342
343                 else if (contains(str, "PNG"))
344                         format = "png";
345
346                 else if (contains(str, "%!PS-Adobe")) {
347                         // eps or ps
348                         ifs >> str;
349                         if (contains(str,"EPSF"))
350                                 format = "eps";
351                         else
352                             format = "ps";
353                 }
354
355                 else if (contains(str, "_bits[]"))
356                         format = "xbm";
357
358                 else if (contains(str, "XPM") || contains(str, "static char *"))
359                         format = "xpm";
360
361                 else if (contains(str, "BITPIX"))
362                         format = "fits";
363
364                 else if (contains(str, "\\documentclass") ||
365                          contains(str, "\\chapter") ||
366                          contains(str, "\\section") ||
367                          contains(str, "\\begin") ||
368                          contains(str, "\\end") ||
369                          contains(str, "$$") ||
370                          contains(str, "\\[") ||
371                          contains(str, "\\]"))
372                         maybelatex = true;
373                 else {
374                         if (contains(str, '\\'))
375                                 backslash = true;
376                         dollars += count_char(str, '$');
377                         if (backslash && dollars > 1)
378                                 // inline equation
379                                 maybelatex = true;
380                 }
381
382                 binchars += count_bin_chars(str);
383         }
384
385         if (format.empty() && binchars <= max_bin && maybelatex)
386                 format = "latex";
387
388         if (format.empty()) {
389                 if (ifs.eof())
390                         LYXERR(Debug::GRAPHICS, "filetools(getFormatFromContents)\n"
391                                "\tFile type not recognised before EOF!");
392         } else {
393                 LYXERR(Debug::GRAPHICS, "Recognised Fileformat: " << format);
394                 return format;
395         }
396
397         LYXERR(Debug::GRAPHICS, "filetools(getFormatFromContents)\n"
398                 << "\tCouldn't find a known format!");
399         return string();
400 }
401
402 }
403
404
405 string Formats::getFormatFromFile(FileName const & filename) const
406 {
407         if (filename.empty())
408                 return string();
409
410         string psformat;
411 #ifdef HAVE_MAGIC_H
412         if (filename.exists()) {
413                 magic_t magic_cookie = magic_open(MAGIC_MIME);
414                 if (magic_cookie) {
415                         string format;
416                         if (magic_load(magic_cookie, NULL) != 0) {
417                                 LYXERR(Debug::GRAPHICS, "Formats::getFormatFromFile\n"
418                                         << "\tCouldn't load magic database - "
419                                         << magic_error(magic_cookie));
420                         } else {
421                                 char const * result = magic_file(magic_cookie,
422                                         filename.toFilesystemEncoding().c_str());
423                                 string mime;
424                                 if (result)
425                                         mime = token(result, ';', 0);
426                                 else {
427                                         LYXERR(Debug::GRAPHICS, "Formats::getFormatFromFile\n"
428                                                 << "\tCouldn't query magic database - "
429                                                 << magic_error(magic_cookie));
430                                 }
431                                 // our own detection is better for binary files (can be anything)
432                                 // and different plain text formats
433                                 if (!mime.empty() && mime != "application/octet-stream" &&
434                                     mime != "text/plain") {
435                                         Formats::const_iterator cit =
436                                                 find_if(formatlist.begin(), formatlist.end(),
437                                                         FormatMimeEqual(mime));
438                                         if (cit != formats.end()) {
439                                                 LYXERR(Debug::GRAPHICS, "\tgot format from MIME type: "
440                                                         << mime << " -> " << cit->name());
441                                                 // See special eps/ps handling below
442                                                 if (mime == "application/postscript")
443                                                         psformat = cit->name();
444                                                 else
445                                                         format = cit->name();
446                                         }
447                                 }
448                         }
449                         magic_close(magic_cookie);
450                         if (!format.empty())
451                                 return format;
452                 }
453         }
454 #endif
455
456         // libmagic does not distinguish eps and ps.
457         // Therefore we need to use our own detection here, but only if it
458         // recognizes either ps or eps. Otherwise the libmagic guess will
459         // be better (bug 9146).
460         string const format = guessFormatFromContents(filename);
461         if (!psformat.empty()) {
462                 if (isPostScriptFileFormat(format))
463                         return format;
464                 else
465                         return psformat;
466         }
467
468         string const ext = getExtension(filename.absFileName());
469         if (isZippedFileFormat(format) && !ext.empty()) {
470                 string const & fmt_name = formats.getFormatFromExtension(ext);
471                 if (!fmt_name.empty()) {
472                         Format const * p_format = formats.getFormat(fmt_name);
473                         if (p_format && p_format->zippedNative())
474                                 return p_format->name();
475                 }
476         }
477         if (!format.empty())
478                 return format;
479
480         // try to find a format from the file extension.
481         return getFormatFromExtension(ext);
482 }
483
484
485 string Formats::getFormatFromExtension(string const & ext) const
486 {
487         if (!ext.empty()) {
488                 // this is ambigous if two formats have the same extension,
489                 // but better than nothing
490                 Formats::const_iterator cit =
491                         find_if(formatlist.begin(), formatlist.end(),
492                                 FormatExtensionsEqual(ext));
493                 if (cit != formats.end()) {
494                         LYXERR(Debug::GRAPHICS, "\twill guess format from file extension: "
495                                 << ext << " -> " << cit->name());
496                         return cit->name();
497                 }
498         }
499         return string();
500 }
501
502
503 /// Used to store last timestamp of file and whether it is (was) zipped
504 struct ZippedInfo {
505         bool zipped;
506         std::time_t timestamp;
507         ZippedInfo(bool zipped, std::time_t timestamp)
508         : zipped(zipped), timestamp(timestamp) { }
509 };
510
511
512 // FIXME THREAD
513 /// Mapping absolute pathnames of files to their ZippedInfo metadata.
514 static std::map<std::string, ZippedInfo> zipped_;
515
516
517 bool Formats::isZippedFile(support::FileName const & filename) const {
518         string const & fname = filename.absFileName();
519         time_t timestamp = filename.lastModified();
520         map<string, ZippedInfo>::iterator it = zipped_.find(fname);
521         if (it != zipped_.end() && it->second.timestamp == timestamp)
522                 return it->second.zipped;
523         string const & format = getFormatFromFile(filename);
524         bool zipped = (format == "gzip" || format == "zip");
525         zipped_.insert(make_pair(fname, ZippedInfo(zipped, timestamp)));
526         return zipped;
527 }
528
529
530 bool Formats::isZippedFileFormat(string const & format)
531 {
532         return contains("gzip zip compress", format) && !format.empty();
533 }
534
535
536 bool Formats::isPostScriptFileFormat(string const & format)
537 {
538         return format == "ps" || format == "eps";
539 }
540
541 static string fixCommand(string const & cmd, string const & ext,
542                   os::auto_open_mode mode)
543 {
544         // configure.py says we do not want a viewer/editor
545         if (cmd.empty())
546                 return cmd;
547
548         // Does the OS manage this format?
549         if (os::canAutoOpenFile(ext, mode))
550                 return "auto";
551
552         // if configure.py found nothing, clear the command
553         if (token(cmd, ' ', 0) == "auto")
554                 return string();
555
556         // use the command found by configure.py
557         return cmd;
558 }
559
560
561 void Formats::setAutoOpen()
562 {
563         FormatList::iterator fit = formatlist.begin();
564         FormatList::iterator const fend = formatlist.end();
565         for ( ; fit != fend ; ++fit) {
566                 fit->setViewer(fixCommand(fit->viewer(), fit->extension(), os::VIEW));
567                 fit->setEditor(fixCommand(fit->editor(), fit->extension(), os::EDIT));
568         }
569 }
570
571
572 int Formats::getNumber(string const & name) const
573 {
574         FormatList::const_iterator cit =
575                 find_if(formatlist.begin(), formatlist.end(),
576                         FormatNamesEqual(name));
577         if (cit != formatlist.end())
578                 return distance(formatlist.begin(), cit);
579         else
580                 return -1;
581 }
582
583
584 void Formats::add(string const & name)
585 {
586         if (!getFormat(name))
587                 add(name, name, name, string(), string(), string(),
588                     string(), Format::document);
589 }
590
591
592 void Formats::add(string const & name, string const & extensions,
593                   string const & prettyname, string const & shortcut,
594                   string const & viewer, string const & editor,
595                   string const & mime, int flags)
596 {
597         FormatList::iterator it =
598                 find_if(formatlist.begin(), formatlist.end(),
599                         FormatNamesEqual(name));
600         if (it == formatlist.end())
601                 formatlist.push_back(Format(name, extensions, prettyname,
602                                             shortcut, viewer, editor, mime, flags));
603         else
604                 *it = Format(name, extensions, prettyname, shortcut, viewer,
605                              editor, mime, flags);
606 }
607
608
609 void Formats::erase(string const & name)
610 {
611         FormatList::iterator it =
612                 find_if(formatlist.begin(), formatlist.end(),
613                         FormatNamesEqual(name));
614         if (it != formatlist.end())
615                 formatlist.erase(it);
616 }
617
618
619 void Formats::sort()
620 {
621         std::sort(formatlist.begin(), formatlist.end());
622 }
623
624
625 void Formats::setViewer(string const & name, string const & command)
626 {
627         add(name);
628         FormatList::iterator it =
629                 find_if(formatlist.begin(), formatlist.end(),
630                         FormatNamesEqual(name));
631         if (it != formatlist.end())
632                 it->setViewer(command);
633 }
634
635
636 void Formats::setEditor(string const & name, string const & command)
637 {
638         add(name);
639         FormatList::iterator it =
640                 find_if(formatlist.begin(), formatlist.end(),
641                         FormatNamesEqual(name));
642         if (it != formatlist.end())
643                 it->setEditor(command);
644 }
645
646
647 bool Formats::view(Buffer const & buffer, FileName const & filename,
648                    string const & format_name) const
649 {
650         if (filename.empty() || !filename.exists()) {
651                 Alert::error(_("Cannot view file"),
652                         bformat(_("File does not exist: %1$s"),
653                                 from_utf8(filename.absFileName())));
654                 return false;
655         }
656
657         Format const * format = getFormat(format_name);
658         if (format && format->viewer().empty() &&
659             format->isChildFormat())
660                 format = getFormat(format->parentFormat());
661         if (!format || format->viewer().empty()) {
662 // FIXME: I believe this is the wrong place to show alerts, it should be done
663 // by the caller (this should be "utility" code)
664                 Alert::error(_("Cannot view file"),
665                         bformat(_("No information for viewing %1$s"),
666                                 prettyName(format_name)));
667                 return false;
668         }
669         // viewer is 'auto'
670         if (format->viewer() == "auto") {
671                 if (os::autoOpenFile(filename.absFileName(), os::VIEW, buffer.filePath()))
672                         return true;
673                 else {
674                         Alert::error(_("Cannot view file"),
675                                 bformat(_("Auto-view file %1$s failed"),
676                                         from_utf8(filename.absFileName())));
677                         return false;
678                 }
679         }
680
681         string command = format->viewer();
682
683         if (format_name == "dvi" &&
684             !lyxrc.view_dvi_paper_option.empty()) {
685                 string paper_size = buffer.params().paperSizeName(BufferParams::XDVI);
686                 if (!paper_size.empty()) {
687                         command += ' ' + lyxrc.view_dvi_paper_option;
688                         command += ' ' + paper_size;
689                         if (buffer.params().orientation == ORIENTATION_LANDSCAPE &&
690                             buffer.params().papersize != PAPER_CUSTOM)
691                                 command += 'r';
692                 }
693         }
694
695         if (!contains(command, token_from_format))
696                 command += ' ' + token_from_format;
697
698         command = subst(command, token_from_format, quoteName(onlyFileName(filename.toFilesystemEncoding())));
699         command = subst(command, token_path_format, quoteName(onlyPath(filename.toFilesystemEncoding())));
700         command = subst(command, token_socket_format, quoteName(theServerSocket().address()));
701         LYXERR(Debug::FILES, "Executing command: " << command);
702         // FIXME UNICODE utf8 can be wrong for files
703         buffer.message(_("Executing command: ") + from_utf8(command));
704
705         PathChanger p(filename.onlyPath());
706         Systemcall one;
707         one.startscript(Systemcall::DontWait, command, buffer.filePath());
708
709         // we can't report any sort of error, since we aren't waiting
710         return true;
711 }
712
713
714 bool Formats::edit(Buffer const & buffer, FileName const & filename,
715                          string const & format_name) const
716 {
717         if (filename.empty() || !filename.exists()) {
718                 Alert::error(_("Cannot edit file"),
719                         bformat(_("File does not exist: %1$s"),
720                                 from_utf8(filename.absFileName())));
721                 return false;
722         }
723
724         // LinkBack files look like PDF, but have the .linkback extension
725         string const ext = getExtension(filename.absFileName());
726         if (format_name == "pdf6" && ext == "linkback") {
727 #ifdef USE_MACOSX_PACKAGING
728                 return editLinkBackFile(filename.absFileName().c_str());
729 #else
730                 Alert::error(_("Cannot edit file"),
731                              _("LinkBack files can only be edited on Apple Mac OSX."));
732                 return false;
733 #endif // USE_MACOSX_PACKAGING
734         }
735
736         Format const * format = getFormat(format_name);
737         if (format && format->editor().empty() &&
738             format->isChildFormat())
739                 format = getFormat(format->parentFormat());
740         if (!format || format->editor().empty()) {
741 // FIXME: I believe this is the wrong place to show alerts, it should
742 // be done by the caller (this should be "utility" code)
743                 Alert::error(_("Cannot edit file"),
744                         bformat(_("No information for editing %1$s"),
745                                 prettyName(format_name)));
746                 return false;
747         }
748
749         // editor is 'auto'
750         if (format->editor() == "auto") {
751                 if (os::autoOpenFile(filename.absFileName(), os::EDIT, buffer.filePath()))
752                         return true;
753                 else {
754                         Alert::error(_("Cannot edit file"),
755                                 bformat(_("Auto-edit file %1$s failed"),
756                                         from_utf8(filename.absFileName())));
757                         return false;
758                 }
759         }
760
761         string command = format->editor();
762
763         if (!contains(command, token_from_format))
764                 command += ' ' + token_from_format;
765
766         command = subst(command, token_from_format, quoteName(filename.toFilesystemEncoding()));
767         command = subst(command, token_path_format, quoteName(onlyPath(filename.toFilesystemEncoding())));
768         command = subst(command, token_socket_format, quoteName(theServerSocket().address()));
769         LYXERR(Debug::FILES, "Executing command: " << command);
770         // FIXME UNICODE utf8 can be wrong for files
771         buffer.message(_("Executing command: ") + from_utf8(command));
772
773         Systemcall one;
774         one.startscript(Systemcall::DontWait, command, buffer.filePath());
775
776         // we can't report any sort of error, since we aren't waiting
777         return true;
778 }
779
780
781 docstring const Formats::prettyName(string const & name) const
782 {
783         Format const * format = getFormat(name);
784         if (format)
785                 return from_utf8(format->prettyname());
786         else
787                 return from_utf8(name);
788 }
789
790
791 string const Formats::extension(string const & name) const
792 {
793         Format const * format = getFormat(name);
794         if (format)
795                 return format->extension();
796         else
797                 return name;
798 }
799
800
801 string const Formats::extensions(string const & name) const
802 {
803         Format const * format = getFormat(name);
804         if (format)
805                 return format->extensions();
806         else
807                 return name;
808 }
809
810
811 namespace {
812
813 typedef Translator<OutputParams::FLAVOR, string> FlavorTranslator;
814
815
816 FlavorTranslator initFlavorTranslator()
817 {
818         FlavorTranslator f(OutputParams::LATEX, "latex");
819         f.addPair(OutputParams::DVILUATEX, "dviluatex");
820         f.addPair(OutputParams::LUATEX, "luatex");
821         f.addPair(OutputParams::PDFLATEX, "pdflatex");
822         f.addPair(OutputParams::XETEX, "xetex");
823         f.addPair(OutputParams::XML, "docbook-xml");
824         f.addPair(OutputParams::HTML, "xhtml");
825         f.addPair(OutputParams::TEXT, "text");
826         return f;
827 }
828
829
830 FlavorTranslator const & flavorTranslator()
831 {
832         static FlavorTranslator const translator = initFlavorTranslator();
833         return translator;
834 }
835
836 }
837
838
839 std::string flavor2format(OutputParams::FLAVOR flavor)
840 {
841         return flavorTranslator().find(flavor);
842 }
843
844
845 /* Not currently needed, but I'll leave the code in case it is.
846 OutputParams::FLAVOR format2flavor(std::string fmt)
847 {
848         return flavorTranslator().find(fmt);
849 } */
850
851 Formats formats;
852
853 Formats system_formats;
854
855
856 } // namespace lyx