]> git.lyx.org Git - lyx.git/blob - src/Buffer.cpp
* Move Buffer specific LFUNs to Buffer::dispatch() and Buffer::getStatus().
[lyx.git] / src / Buffer.cpp
1 /**
2  * \file Buffer.cpp
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * \author Lars Gullik Bjønnes
7  * \author Stefan Schimanski
8  *
9  * Full author contact details are available in file CREDITS.
10  */
11
12 #include <config.h>
13
14 #include "Buffer.h"
15
16 #include "Author.h"
17 #include "LayoutFile.h"
18 #include "BiblioInfo.h"
19 #include "BranchList.h"
20 #include "buffer_funcs.h"
21 #include "BufferList.h"
22 #include "BufferParams.h"
23 #include "Bullet.h"
24 #include "Chktex.h"
25 #include "Converter.h"
26 #include "Counters.h"
27 #include "DispatchResult.h"
28 #include "DocIterator.h"
29 #include "Encoding.h"
30 #include "ErrorList.h"
31 #include "Exporter.h"
32 #include "Format.h"
33 #include "FuncRequest.h"
34 #include "FuncStatus.h"
35 #include "IndicesList.h"
36 #include "InsetIterator.h"
37 #include "InsetList.h"
38 #include "Language.h"
39 #include "LaTeXFeatures.h"
40 #include "LaTeX.h"
41 #include "Layout.h"
42 #include "Lexer.h"
43 #include "LyXAction.h"
44 #include "LyX.h"
45 #include "LyXRC.h"
46 #include "LyXVC.h"
47 #include "output_docbook.h"
48 #include "output.h"
49 #include "output_latex.h"
50 #include "output_xhtml.h"
51 #include "output_plaintext.h"
52 #include "Paragraph.h"
53 #include "ParagraphParameters.h"
54 #include "ParIterator.h"
55 #include "PDFOptions.h"
56 #include "SpellChecker.h"
57 #include "sgml.h"
58 #include "TexRow.h"
59 #include "TexStream.h"
60 #include "Text.h"
61 #include "TextClass.h"
62 #include "TocBackend.h"
63 #include "Undo.h"
64 #include "VCBackend.h"
65 #include "version.h"
66 #include "WordLangTuple.h"
67 #include "WordList.h"
68
69 #include "insets/InsetBibitem.h"
70 #include "insets/InsetBibtex.h"
71 #include "insets/InsetBranch.h"
72 #include "insets/InsetInclude.h"
73 #include "insets/InsetText.h"
74
75 #include "mathed/MacroTable.h"
76 #include "mathed/MathMacroTemplate.h"
77 #include "mathed/MathSupport.h"
78
79 #include "frontends/alert.h"
80 #include "frontends/Delegates.h"
81 #include "frontends/WorkAreaManager.h"
82
83 #include "graphics/Previews.h"
84
85 #include "support/lassert.h"
86 #include "support/convert.h"
87 #include "support/debug.h"
88 #include "support/docstring_list.h"
89 #include "support/ExceptionMessage.h"
90 #include "support/FileName.h"
91 #include "support/FileNameList.h"
92 #include "support/filetools.h"
93 #include "support/ForkedCalls.h"
94 #include "support/gettext.h"
95 #include "support/gzstream.h"
96 #include "support/lstrings.h"
97 #include "support/lyxalgo.h"
98 #include "support/os.h"
99 #include "support/Package.h"
100 #include "support/Path.h"
101 #include "support/Systemcall.h"
102 #include "support/textutils.h"
103 #include "support/types.h"
104
105 #include <boost/bind.hpp>
106 #include <boost/shared_ptr.hpp>
107
108 #include <algorithm>
109 #include <fstream>
110 #include <iomanip>
111 #include <map>
112 #include <set>
113 #include <sstream>
114 #include <stack>
115 #include <vector>
116
117 using namespace std;
118 using namespace lyx::support;
119
120 namespace lyx {
121
122 namespace Alert = frontend::Alert;
123 namespace os = support::os;
124
125 namespace {
126
127 // Do not remove the comment below, so we get merge conflict in
128 // independent branches. Instead add your own.
129 int const LYX_FORMAT = 370; // uwestoehr: option to suppress default date
130
131 typedef map<string, bool> DepClean;
132 typedef map<docstring, pair<InsetLabel const *, Buffer::References> > RefCache;
133
134 void showPrintError(string const & name)
135 {
136         docstring str = bformat(_("Could not print the document %1$s.\n"
137                                             "Check that your printer is set up correctly."),
138                              makeDisplayPath(name, 50));
139         Alert::error(_("Print document failed"), str);
140 }
141
142 } // namespace anon
143
144 class BufferSet : public std::set<Buffer const *> {};
145
146 class Buffer::Impl
147 {
148 public:
149         Impl(Buffer & parent, FileName const & file, bool readonly);
150
151         ~Impl()
152         {
153                 if (wa_) {
154                         wa_->closeAll();
155                         delete wa_;
156                 }
157                 delete inset;
158         }
159
160         BufferParams params;
161         LyXVC lyxvc;
162         FileName temppath;
163         mutable TexRow texrow;
164
165         /// need to regenerate .tex?
166         DepClean dep_clean;
167
168         /// is save needed?
169         mutable bool lyx_clean;
170
171         /// is autosave needed?
172         mutable bool bak_clean;
173
174         /// is this a unnamed file (New...)?
175         bool unnamed;
176
177         /// buffer is r/o
178         bool read_only;
179
180         /// name of the file the buffer is associated with.
181         FileName filename;
182
183         /** Set to true only when the file is fully loaded.
184          *  Used to prevent the premature generation of previews
185          *  and by the citation inset.
186          */
187         bool file_fully_loaded;
188
189         ///
190         mutable TocBackend toc_backend;
191
192         /// macro tables
193         typedef pair<DocIterator, MacroData> ScopeMacro;
194         typedef map<DocIterator, ScopeMacro> PositionScopeMacroMap;
195         typedef map<docstring, PositionScopeMacroMap> NamePositionScopeMacroMap;
196         /// map from the macro name to the position map,
197         /// which maps the macro definition position to the scope and the MacroData.
198         NamePositionScopeMacroMap macros;
199         bool macro_lock;
200
201         /// positions of child buffers in the buffer
202         typedef map<Buffer const * const, DocIterator> BufferPositionMap;
203         typedef pair<DocIterator, Buffer const *> ScopeBuffer;
204         typedef map<DocIterator, ScopeBuffer> PositionScopeBufferMap;
205         /// position of children buffers in this buffer
206         BufferPositionMap children_positions;
207         /// map from children inclusion positions to their scope and their buffer
208         PositionScopeBufferMap position_to_children;
209
210         /// Container for all sort of Buffer dependant errors.
211         map<string, ErrorList> errorLists;
212
213         /// timestamp and checksum used to test if the file has been externally
214         /// modified. (Used to properly enable 'File->Revert to saved', bug 4114).
215         time_t timestamp_;
216         unsigned long checksum_;
217
218         ///
219         frontend::WorkAreaManager * wa_;
220
221         ///
222         Undo undo_;
223
224         /// A cache for the bibfiles (including bibfiles of loaded child
225         /// documents), needed for appropriate update of natbib labels.
226         mutable support::FileNameList bibfilesCache_;
227
228         // FIXME The caching mechanism could be improved. At present, we have a
229         // cache for each Buffer, that caches all the bibliography info for that
230         // Buffer. A more efficient solution would be to have a global cache per
231         // file, and then to construct the Buffer's bibinfo from that.
232         /// A cache for bibliography info
233         mutable BiblioInfo bibinfo_;
234         /// whether the bibinfo cache is valid
235         bool bibinfoCacheValid_;
236         /// Cache of timestamps of .bib files
237         map<FileName, time_t> bibfileStatus_;
238
239         mutable RefCache ref_cache_;
240
241         /// our Text that should be wrapped in an InsetText
242         InsetText * inset;
243
244         /// This is here to force the test to be done whenever parent_buffer
245         /// is accessed.
246         Buffer const * parent() const { 
247                 // if parent_buffer is not loaded, then it has been unloaded,
248                 // which means that parent_buffer is an invalid pointer. So we
249                 // set it to null in that case.
250                 if (!theBufferList().isLoaded(parent_buffer))
251                         parent_buffer = 0;
252                 return parent_buffer; 
253         }
254         ///
255         void setParent(Buffer const * pb) { parent_buffer = pb; }
256 private:
257         /// So we can force access via the accessors.
258         mutable Buffer const * parent_buffer;
259 };
260
261
262 /// Creates the per buffer temporary directory
263 static FileName createBufferTmpDir()
264 {
265         static int count;
266         // We are in our own directory.  Why bother to mangle name?
267         // In fact I wrote this code to circumvent a problematic behaviour
268         // (bug?) of EMX mkstemp().
269         FileName tmpfl(package().temp_dir().absFilename() + "/lyx_tmpbuf" +
270                 convert<string>(count++));
271
272         if (!tmpfl.createDirectory(0777)) {
273                 throw ExceptionMessage(WarningException, _("Disk Error: "), bformat(
274                         _("LyX could not create the temporary directory '%1$s' (Disk is full maybe?)"),
275                         from_utf8(tmpfl.absFilename())));
276         }
277         return tmpfl;
278 }
279
280
281 Buffer::Impl::Impl(Buffer & parent, FileName const & file, bool readonly_)
282         : lyx_clean(true), bak_clean(true), unnamed(false),
283           read_only(readonly_), filename(file), file_fully_loaded(false),
284           toc_backend(&parent), macro_lock(false), timestamp_(0),
285           checksum_(0), wa_(0), undo_(parent), bibinfoCacheValid_(false),
286           parent_buffer(0)
287 {
288         temppath = createBufferTmpDir();
289         lyxvc.setBuffer(&parent);
290         if (use_gui)
291                 wa_ = new frontend::WorkAreaManager;
292 }
293
294
295 Buffer::Buffer(string const & file, bool readonly)
296         : d(new Impl(*this, FileName(file), readonly)), gui_(0)
297 {
298         LYXERR(Debug::INFO, "Buffer::Buffer()");
299
300         d->inset = new InsetText(*this);
301         d->inset->setAutoBreakRows(true);
302         d->inset->getText(0)->setMacrocontextPosition(par_iterator_begin());
303 }
304
305
306 Buffer::~Buffer()
307 {
308         LYXERR(Debug::INFO, "Buffer::~Buffer()");
309         // here the buffer should take care that it is
310         // saved properly, before it goes into the void.
311
312         // GuiView already destroyed
313         gui_ = 0;
314
315         if (isInternal()) {
316                 // No need to do additional cleanups for internal buffer.
317                 delete d;
318                 return;
319         }
320
321         // loop over children
322         Impl::BufferPositionMap::iterator it = d->children_positions.begin();
323         Impl::BufferPositionMap::iterator end = d->children_positions.end();
324         for (; it != end; ++it) {
325                 Buffer * child = const_cast<Buffer *>(it->first);
326                 // The child buffer might have been closed already.
327                 if (theBufferList().isLoaded(child))
328                         theBufferList().releaseChild(this, child);
329         }
330
331         if (!isClean()) {
332                 docstring msg = _("LyX attempted to close a document that had unsaved changes!\n");
333                 msg += emergencyWrite();
334                 frontend::Alert::warning(_("Attempting to close changed document!"), msg);
335         }
336                 
337         // clear references to children in macro tables
338         d->children_positions.clear();
339         d->position_to_children.clear();
340
341         if (!d->temppath.destroyDirectory()) {
342                 Alert::warning(_("Could not remove temporary directory"),
343                         bformat(_("Could not remove the temporary directory %1$s"),
344                         from_utf8(d->temppath.absFilename())));
345         }
346
347         // Remove any previewed LaTeX snippets associated with this buffer.
348         thePreviews().removeLoader(*this);
349
350         delete d;
351 }
352
353
354 void Buffer::changed() const
355 {
356         if (d->wa_)
357                 d->wa_->redrawAll();
358 }
359
360
361 frontend::WorkAreaManager & Buffer::workAreaManager() const
362 {
363         LASSERT(d->wa_, /**/);
364         return *d->wa_;
365 }
366
367
368 Text & Buffer::text() const
369 {
370         return d->inset->text();
371 }
372
373
374 Inset & Buffer::inset() const
375 {
376         return *d->inset;
377 }
378
379
380 BufferParams & Buffer::params()
381 {
382         return d->params;
383 }
384
385
386 BufferParams const & Buffer::params() const
387 {
388         return d->params;
389 }
390
391
392 ParagraphList & Buffer::paragraphs()
393 {
394         return text().paragraphs();
395 }
396
397
398 ParagraphList const & Buffer::paragraphs() const
399 {
400         return text().paragraphs();
401 }
402
403
404 LyXVC & Buffer::lyxvc()
405 {
406         return d->lyxvc;
407 }
408
409
410 LyXVC const & Buffer::lyxvc() const
411 {
412         return d->lyxvc;
413 }
414
415
416 string const Buffer::temppath() const
417 {
418         return d->temppath.absFilename();
419 }
420
421
422 TexRow & Buffer::texrow()
423 {
424         return d->texrow;
425 }
426
427
428 TexRow const & Buffer::texrow() const
429 {
430         return d->texrow;
431 }
432
433
434 TocBackend & Buffer::tocBackend() const
435 {
436         return d->toc_backend;
437 }
438
439
440 Undo & Buffer::undo()
441 {
442         return d->undo_;
443 }
444
445
446 string Buffer::latexName(bool const no_path) const
447 {
448         FileName latex_name =
449                 makeLatexName(exportFileName());
450         return no_path ? latex_name.onlyFileName()
451                 : latex_name.absFilename();
452 }
453
454
455 FileName Buffer::exportFileName() const
456 {
457         docstring const branch_suffix =
458                 params().branchlist().getFilenameSuffix();
459         if (branch_suffix.empty())
460                 return fileName();
461
462         string const name = fileName().onlyFileNameWithoutExt()
463                 + to_utf8(branch_suffix);
464         FileName res(fileName().onlyPath().absFilename() + "/" + name);
465         res.changeExtension(fileName().extension());
466
467         return res;
468 }
469
470
471 string Buffer::logName(LogType * type) const
472 {
473         string const filename = latexName(false);
474
475         if (filename.empty()) {
476                 if (type)
477                         *type = latexlog;
478                 return string();
479         }
480
481         string const path = temppath();
482
483         FileName const fname(addName(temppath(),
484                                      onlyFilename(changeExtension(filename,
485                                                                   ".log"))));
486
487         // FIXME: how do we know this is the name of the build log?
488         FileName const bname(
489                 addName(path, onlyFilename(
490                         changeExtension(filename,
491                                         formats.extension(bufferFormat()) + ".out"))));
492
493         // Also consider the master buffer log file
494         FileName masterfname = fname;
495         LogType mtype;
496         if (masterBuffer() != this) {
497                 string const mlogfile = masterBuffer()->logName(&mtype);
498                 masterfname = FileName(mlogfile);
499         }
500
501         // If no Latex log or Build log is newer, show Build log
502         if (bname.exists() &&
503             ((!fname.exists() && !masterfname.exists())
504              || (fname.lastModified() < bname.lastModified()
505                  && masterfname.lastModified() < bname.lastModified()))) {
506                 LYXERR(Debug::FILES, "Log name calculated as: " << bname);
507                 if (type)
508                         *type = buildlog;
509                 return bname.absFilename();
510         // If we have a newer master file log or only a master log, show this
511         } else if (fname != masterfname
512                    && (!fname.exists() && (masterfname.exists()
513                    || fname.lastModified() < masterfname.lastModified()))) {
514                 LYXERR(Debug::FILES, "Log name calculated as: " << masterfname);
515                 if (type)
516                         *type = mtype;
517                 return masterfname.absFilename();
518         }
519         LYXERR(Debug::FILES, "Log name calculated as: " << fname);
520         if (type)
521                         *type = latexlog;
522         return fname.absFilename();
523 }
524
525
526 void Buffer::setReadonly(bool const flag)
527 {
528         if (d->read_only != flag) {
529                 d->read_only = flag;
530                 setReadOnly(flag);
531         }
532 }
533
534
535 void Buffer::setFileName(string const & newfile)
536 {
537         d->filename = makeAbsPath(newfile);
538         setReadonly(d->filename.isReadOnly());
539         updateTitles();
540 }
541
542
543 int Buffer::readHeader(Lexer & lex)
544 {
545         int unknown_tokens = 0;
546         int line = -1;
547         int begin_header_line = -1;
548
549         // Initialize parameters that may be/go lacking in header:
550         params().branchlist().clear();
551         params().preamble.erase();
552         params().options.erase();
553         params().master.erase();
554         params().float_placement.erase();
555         params().paperwidth.erase();
556         params().paperheight.erase();
557         params().leftmargin.erase();
558         params().rightmargin.erase();
559         params().topmargin.erase();
560         params().bottommargin.erase();
561         params().headheight.erase();
562         params().headsep.erase();
563         params().footskip.erase();
564         params().columnsep.erase();
565         params().fontsCJK.erase();
566         params().listings_params.clear();
567         params().clearLayoutModules();
568         params().clearRemovedModules();
569         params().pdfoptions().clear();
570         params().indiceslist().clear();
571         params().backgroundcolor = lyx::rgbFromHexName("#ffffff");
572
573         for (int i = 0; i < 4; ++i) {
574                 params().user_defined_bullet(i) = ITEMIZE_DEFAULTS[i];
575                 params().temp_bullet(i) = ITEMIZE_DEFAULTS[i];
576         }
577
578         ErrorList & errorList = d->errorLists["Parse"];
579
580         while (lex.isOK()) {
581                 string token;
582                 lex >> token;
583
584                 if (token.empty())
585                         continue;
586
587                 if (token == "\\end_header")
588                         break;
589
590                 ++line;
591                 if (token == "\\begin_header") {
592                         begin_header_line = line;
593                         continue;
594                 }
595
596                 LYXERR(Debug::PARSER, "Handling document header token: `"
597                                       << token << '\'');
598
599                 string unknown = params().readToken(lex, token, d->filename.onlyPath());
600                 if (!unknown.empty()) {
601                         if (unknown[0] != '\\' && token == "\\textclass") {
602                                 Alert::warning(_("Unknown document class"),
603                        bformat(_("Using the default document class, because the "
604                                               "class %1$s is unknown."), from_utf8(unknown)));
605                         } else {
606                                 ++unknown_tokens;
607                                 docstring const s = bformat(_("Unknown token: "
608                                                                         "%1$s %2$s\n"),
609                                                          from_utf8(token),
610                                                          lex.getDocString());
611                                 errorList.push_back(ErrorItem(_("Document header error"),
612                                         s, -1, 0, 0));
613                         }
614                 }
615         }
616         if (begin_header_line) {
617                 docstring const s = _("\\begin_header is missing");
618                 errorList.push_back(ErrorItem(_("Document header error"),
619                         s, -1, 0, 0));
620         }
621
622         params().makeDocumentClass();
623
624         return unknown_tokens;
625 }
626
627
628 // Uwe C. Schroeder
629 // changed to be public and have one parameter
630 // Returns true if "\end_document" is not read (Asger)
631 bool Buffer::readDocument(Lexer & lex)
632 {
633         ErrorList & errorList = d->errorLists["Parse"];
634         errorList.clear();
635
636         if (!lex.checkFor("\\begin_document")) {
637                 docstring const s = _("\\begin_document is missing");
638                 errorList.push_back(ErrorItem(_("Document header error"),
639                         s, -1, 0, 0));
640         }
641
642         // we are reading in a brand new document
643         LASSERT(paragraphs().empty(), /**/);
644
645         readHeader(lex);
646
647         if (params().outputChanges) {
648                 bool dvipost    = LaTeXFeatures::isAvailable("dvipost");
649                 bool xcolorulem = LaTeXFeatures::isAvailable("ulem") &&
650                                   LaTeXFeatures::isAvailable("xcolor");
651
652                 if (!dvipost && !xcolorulem) {
653                         Alert::warning(_("Changes not shown in LaTeX output"),
654                                        _("Changes will not be highlighted in LaTeX output, "
655                                          "because neither dvipost nor xcolor/ulem are installed.\n"
656                                          "Please install these packages or redefine "
657                                          "\\lyxadded and \\lyxdeleted in the LaTeX preamble."));
658                 } else if (!xcolorulem) {
659                         Alert::warning(_("Changes not shown in LaTeX output"),
660                                        _("Changes will not be highlighted in LaTeX output "
661                                          "when using pdflatex, because xcolor and ulem are not installed.\n"
662                                          "Please install both packages or redefine "
663                                          "\\lyxadded and \\lyxdeleted in the LaTeX preamble."));
664                 }
665         }
666
667         if (!params().master.empty()) {
668                 FileName const master_file = makeAbsPath(params().master,
669                            onlyPath(absFileName()));
670                 if (isLyXFilename(master_file.absFilename())) {
671                         Buffer * master = 
672                                 checkAndLoadLyXFile(master_file, true);
673                         if (master) {
674                                 // necessary e.g. after a reload
675                                 // to re-register the child (bug 5873)
676                                 // FIXME: clean up updateMacros (here, only
677                                 // child registering is needed).
678                                 master->updateMacros();
679                                 // set master as master buffer, but only
680                                 // if we are a real child
681                                 if (master->isChild(this))
682                                         setParent(master);
683                                 // if the master is not fully loaded
684                                 // it is probably just loading this
685                                 // child. No warning needed then.
686                                 else if (master->isFullyLoaded())
687                                         LYXERR0("The master '"
688                                                 << params().master
689                                                 << "' assigned to this document ("
690                                                 << absFileName()
691                                                 << ") does not include "
692                                                 "this document. Ignoring the master assignment.");
693                         }
694                 }
695         }
696         
697         // assure we have a default index
698         params().indiceslist().addDefault(B_("Index"));
699
700         // read main text
701         bool const res = text().read(lex, errorList, d->inset);
702
703         updateMacros();
704         updateMacroInstances();
705         return res;
706 }
707
708
709 bool Buffer::readString(string const & s)
710 {
711         params().compressed = false;
712
713         // remove dummy empty par
714         paragraphs().clear();
715         Lexer lex;
716         istringstream is(s);
717         lex.setStream(is);
718         FileName const name = FileName::tempName("Buffer_readString");
719         switch (readFile(lex, name, true)) {
720         case failure:
721                 return false;
722         case wrongversion: {
723                 // We need to call lyx2lyx, so write the input to a file
724                 ofstream os(name.toFilesystemEncoding().c_str());
725                 os << s;
726                 os.close();
727                 return readFile(name);
728         }
729         case success:
730                 break;
731         }
732
733         return true;
734 }
735
736
737 bool Buffer::readFile(FileName const & filename)
738 {
739         FileName fname(filename);
740
741         params().compressed = fname.isZippedFile();
742
743         // remove dummy empty par
744         paragraphs().clear();
745         Lexer lex;
746         lex.setFile(fname);
747         if (readFile(lex, fname) != success)
748                 return false;
749
750         return true;
751 }
752
753
754 bool Buffer::isFullyLoaded() const
755 {
756         return d->file_fully_loaded;
757 }
758
759
760 void Buffer::setFullyLoaded(bool value)
761 {
762         d->file_fully_loaded = value;
763 }
764
765
766 Buffer::ReadStatus Buffer::readFile(Lexer & lex, FileName const & filename,
767                 bool fromstring)
768 {
769         LASSERT(!filename.empty(), /**/);
770
771         // the first (non-comment) token _must_ be...
772         if (!lex.checkFor("\\lyxformat")) {
773                 Alert::error(_("Document format failure"),
774                              bformat(_("%1$s is not a readable LyX document."),
775                                        from_utf8(filename.absFilename())));
776                 return failure;
777         }
778
779         string tmp_format;
780         lex >> tmp_format;
781         //lyxerr << "LyX Format: `" << tmp_format << '\'' << endl;
782         // if present remove ".," from string.
783         size_t dot = tmp_format.find_first_of(".,");
784         //lyxerr << "           dot found at " << dot << endl;
785         if (dot != string::npos)
786                         tmp_format.erase(dot, 1);
787         int const file_format = convert<int>(tmp_format);
788         //lyxerr << "format: " << file_format << endl;
789
790         // save timestamp and checksum of the original disk file, making sure
791         // to not overwrite them with those of the file created in the tempdir
792         // when it has to be converted to the current format.
793         if (!d->checksum_) {
794                 // Save the timestamp and checksum of disk file. If filename is an
795                 // emergency file, save the timestamp and checksum of the original lyx file
796                 // because isExternallyModified will check for this file. (BUG4193)
797                 string diskfile = filename.absFilename();
798                 if (suffixIs(diskfile, ".emergency"))
799                         diskfile = diskfile.substr(0, diskfile.size() - 10);
800                 saveCheckSum(FileName(diskfile));
801         }
802
803         if (file_format != LYX_FORMAT) {
804
805                 if (fromstring)
806                         // lyx2lyx would fail
807                         return wrongversion;
808
809                 FileName const tmpfile = FileName::tempName("Buffer_readFile");
810                 if (tmpfile.empty()) {
811                         Alert::error(_("Conversion failed"),
812                                      bformat(_("%1$s is from a different"
813                                               " version of LyX, but a temporary"
814                                               " file for converting it could"
815                                               " not be created."),
816                                               from_utf8(filename.absFilename())));
817                         return failure;
818                 }
819                 FileName const lyx2lyx = libFileSearch("lyx2lyx", "lyx2lyx");
820                 if (lyx2lyx.empty()) {
821                         Alert::error(_("Conversion script not found"),
822                                      bformat(_("%1$s is from a different"
823                                                " version of LyX, but the"
824                                                " conversion script lyx2lyx"
825                                                " could not be found."),
826                                                from_utf8(filename.absFilename())));
827                         return failure;
828                 }
829                 ostringstream command;
830                 command << os::python()
831                         << ' ' << quoteName(lyx2lyx.toFilesystemEncoding())
832                         << " -t " << convert<string>(LYX_FORMAT)
833                         << " -o " << quoteName(tmpfile.toFilesystemEncoding())
834                         << ' ' << quoteName(filename.toFilesystemEncoding());
835                 string const command_str = command.str();
836
837                 LYXERR(Debug::INFO, "Running '" << command_str << '\'');
838
839                 cmd_ret const ret = runCommand(command_str);
840                 if (ret.first != 0) {
841                         Alert::error(_("Conversion script failed"),
842                                      bformat(_("%1$s is from a different version"
843                                               " of LyX, but the lyx2lyx script"
844                                               " failed to convert it."),
845                                               from_utf8(filename.absFilename())));
846                         return failure;
847                 } else {
848                         bool const ret = readFile(tmpfile);
849                         // Do stuff with tmpfile name and buffer name here.
850                         return ret ? success : failure;
851                 }
852
853         }
854
855         if (readDocument(lex)) {
856                 Alert::error(_("Document format failure"),
857                              bformat(_("%1$s ended unexpectedly, which means"
858                                                     " that it is probably corrupted."),
859                                        from_utf8(filename.absFilename())));
860         }
861
862         d->file_fully_loaded = true;
863         return success;
864 }
865
866
867 // Should probably be moved to somewhere else: BufferView? LyXView?
868 bool Buffer::save() const
869 {
870         // We don't need autosaves in the immediate future. (Asger)
871         resetAutosaveTimers();
872
873         string const encodedFilename = d->filename.toFilesystemEncoding();
874
875         FileName backupName;
876         bool madeBackup = false;
877
878         // make a backup if the file already exists
879         if (lyxrc.make_backup && fileName().exists()) {
880                 backupName = FileName(absFileName() + '~');
881                 if (!lyxrc.backupdir_path.empty()) {
882                         string const mangledName =
883                                 subst(subst(backupName.absFilename(), '/', '!'), ':', '!');
884                         backupName = FileName(addName(lyxrc.backupdir_path,
885                                                       mangledName));
886                 }
887                 if (fileName().copyTo(backupName)) {
888                         madeBackup = true;
889                 } else {
890                         Alert::error(_("Backup failure"),
891                                      bformat(_("Cannot create backup file %1$s.\n"
892                                                "Please check whether the directory exists and is writeable."),
893                                              from_utf8(backupName.absFilename())));
894                         //LYXERR(Debug::DEBUG, "Fs error: " << fe.what());
895                 }
896         }
897
898         // ask if the disk file has been externally modified (use checksum method)
899         if (fileName().exists() && isExternallyModified(checksum_method)) {
900                 docstring const file = makeDisplayPath(absFileName(), 20);
901                 docstring text = bformat(_("Document %1$s has been externally modified. Are you sure "
902                                                              "you want to overwrite this file?"), file);
903                 int const ret = Alert::prompt(_("Overwrite modified file?"),
904                         text, 1, 1, _("&Overwrite"), _("&Cancel"));
905                 if (ret == 1)
906                         return false;
907         }
908
909         if (writeFile(d->filename)) {
910                 markClean();
911                 return true;
912         } else {
913                 // Saving failed, so backup is not backup
914                 if (madeBackup)
915                         backupName.moveTo(d->filename);
916                 return false;
917         }
918 }
919
920
921 bool Buffer::writeFile(FileName const & fname) const
922 {
923         if (d->read_only && fname == d->filename)
924                 return false;
925
926         bool retval = false;
927
928         docstring const str = bformat(_("Saving document %1$s..."),
929                 makeDisplayPath(fname.absFilename()));
930         message(str);
931
932         if (params().compressed) {
933                 gz::ogzstream ofs(fname.toFilesystemEncoding().c_str(), ios::out|ios::trunc);
934                 retval = ofs && write(ofs);
935         } else {
936                 ofstream ofs(fname.toFilesystemEncoding().c_str(), ios::out|ios::trunc);
937                 retval = ofs && write(ofs);
938         }
939
940         if (!retval) {
941                 message(str + _(" could not write file!"));
942                 return false;
943         }
944
945         removeAutosaveFile();
946
947         saveCheckSum(d->filename);
948         message(str + _(" done."));
949
950         return true;
951 }
952
953
954 docstring Buffer::emergencyWrite()
955 {
956         // No need to save if the buffer has not changed.
957         if (isClean())
958                 return docstring();
959
960         string const doc = isUnnamed() ? onlyFilename(absFileName()) : absFileName();
961
962         docstring user_message = bformat(
963                 _("LyX: Attempting to save document %1$s\n"), from_utf8(doc));
964
965         // We try to save three places:
966         // 1) Same place as document. Unless it is an unnamed doc.
967         if (!isUnnamed()) {
968                 string s = absFileName();
969                 s += ".emergency";
970                 LYXERR0("  " << s);
971                 if (writeFile(FileName(s))) {
972                         markClean();
973                         user_message += bformat(_("  Saved to %1$s. Phew.\n"), from_utf8(s));
974                         return user_message;
975                 } else {
976                         user_message += _("  Save failed! Trying again...\n");
977                 }
978         }
979
980         // 2) In HOME directory.
981         string s = addName(package().home_dir().absFilename(), absFileName());
982         s += ".emergency";
983         lyxerr << ' ' << s << endl;
984         if (writeFile(FileName(s))) {
985                 markClean();
986                 user_message += bformat(_("  Saved to %1$s. Phew.\n"), from_utf8(s));
987                 return user_message;
988         }
989
990         user_message += _("  Save failed! Trying yet again...\n");
991
992         // 3) In "/tmp" directory.
993         // MakeAbsPath to prepend the current
994         // drive letter on OS/2
995         s = addName(package().temp_dir().absFilename(), absFileName());
996         s += ".emergency";
997         lyxerr << ' ' << s << endl;
998         if (writeFile(FileName(s))) {
999                 markClean();
1000                 user_message += bformat(_("  Saved to %1$s. Phew.\n"), from_utf8(s));
1001                 return user_message;
1002         }
1003
1004         user_message += _("  Save failed! Bummer. Document is lost.");
1005         // Don't try again.
1006         markClean();
1007         return user_message;
1008 }
1009
1010
1011 bool Buffer::write(ostream & ofs) const
1012 {
1013 #ifdef HAVE_LOCALE
1014         // Use the standard "C" locale for file output.
1015         ofs.imbue(locale::classic());
1016 #endif
1017
1018         // The top of the file should not be written by params().
1019
1020         // write out a comment in the top of the file
1021         ofs << "#LyX " << lyx_version
1022             << " created this file. For more info see http://www.lyx.org/\n"
1023             << "\\lyxformat " << LYX_FORMAT << "\n"
1024             << "\\begin_document\n";
1025
1026         /// For each author, set 'used' to true if there is a change
1027         /// by this author in the document; otherwise set it to 'false'.
1028         AuthorList::Authors::const_iterator a_it = params().authors().begin();
1029         AuthorList::Authors::const_iterator a_end = params().authors().end();
1030         for (; a_it != a_end; ++a_it)
1031                 a_it->setUsed(false);
1032
1033         ParIterator const end = const_cast<Buffer *>(this)->par_iterator_end();
1034         ParIterator it = const_cast<Buffer *>(this)->par_iterator_begin();
1035         for ( ; it != end; ++it)
1036                 it->checkAuthors(params().authors());
1037
1038         // now write out the buffer parameters.
1039         ofs << "\\begin_header\n";
1040         params().writeFile(ofs);
1041         ofs << "\\end_header\n";
1042
1043         // write the text
1044         ofs << "\n\\begin_body\n";
1045         text().write(ofs);
1046         ofs << "\n\\end_body\n";
1047
1048         // Write marker that shows file is complete
1049         ofs << "\\end_document" << endl;
1050
1051         // Shouldn't really be needed....
1052         //ofs.close();
1053
1054         // how to check if close went ok?
1055         // Following is an attempt... (BE 20001011)
1056
1057         // good() returns false if any error occured, including some
1058         //        formatting error.
1059         // bad()  returns true if something bad happened in the buffer,
1060         //        which should include file system full errors.
1061
1062         bool status = true;
1063         if (!ofs) {
1064                 status = false;
1065                 lyxerr << "File was not closed properly." << endl;
1066         }
1067
1068         return status;
1069 }
1070
1071
1072 bool Buffer::makeLaTeXFile(FileName const & fname,
1073                            string const & original_path,
1074                            OutputParams const & runparams_in,
1075                            bool output_preamble, bool output_body) const
1076 {
1077         OutputParams runparams = runparams_in;
1078         if (params().useXetex)
1079                 runparams.flavor = OutputParams::XETEX;
1080
1081         string const encoding = runparams.encoding->iconvName();
1082         LYXERR(Debug::LATEX, "makeLaTeXFile encoding: " << encoding << "...");
1083
1084         ofdocstream ofs;
1085         try { ofs.reset(encoding); }
1086         catch (iconv_codecvt_facet_exception & e) {
1087                 lyxerr << "Caught iconv exception: " << e.what() << endl;
1088                 Alert::error(_("Iconv software exception Detected"), bformat(_("Please "
1089                         "verify that the support software for your encoding (%1$s) is "
1090                         "properly installed"), from_ascii(encoding)));
1091                 return false;
1092         }
1093         if (!openFileWrite(ofs, fname))
1094                 return false;
1095
1096         //TexStream ts(ofs.rdbuf(), &texrow());
1097         ErrorList & errorList = d->errorLists["Export"];
1098         errorList.clear();
1099         bool failed_export = false;
1100         try {
1101                 d->texrow.reset();
1102                 writeLaTeXSource(ofs, original_path,
1103                       runparams, output_preamble, output_body);
1104         }
1105         catch (EncodingException & e) {
1106                 odocstringstream ods;
1107                 ods.put(e.failed_char);
1108                 ostringstream oss;
1109                 oss << "0x" << hex << e.failed_char << dec;
1110                 docstring msg = bformat(_("Could not find LaTeX command for character '%1$s'"
1111                                           " (code point %2$s)"),
1112                                           ods.str(), from_utf8(oss.str()));
1113                 errorList.push_back(ErrorItem(msg, _("Some characters of your document are probably not "
1114                                 "representable in the chosen encoding.\n"
1115                                 "Changing the document encoding to utf8 could help."),
1116                                 e.par_id, e.pos, e.pos + 1));
1117                 failed_export = true;
1118         }
1119         catch (iconv_codecvt_facet_exception & e) {
1120                 errorList.push_back(ErrorItem(_("iconv conversion failed"),
1121                         _(e.what()), -1, 0, 0));
1122                 failed_export = true;
1123         }
1124         catch (exception const & e) {
1125                 errorList.push_back(ErrorItem(_("conversion failed"),
1126                         _(e.what()), -1, 0, 0));
1127                 failed_export = true;
1128         }
1129         catch (...) {
1130                 lyxerr << "Caught some really weird exception..." << endl;
1131                 lyx_exit(1);
1132         }
1133
1134         ofs.close();
1135         if (ofs.fail()) {
1136                 failed_export = true;
1137                 lyxerr << "File '" << fname << "' was not closed properly." << endl;
1138         }
1139
1140         errors("Export");
1141         return !failed_export;
1142 }
1143
1144
1145 void Buffer::writeLaTeXSource(odocstream & os,
1146                            string const & original_path,
1147                            OutputParams const & runparams_in,
1148                            bool const output_preamble, bool const output_body) const
1149 {
1150         // The child documents, if any, shall be already loaded at this point.
1151
1152         OutputParams runparams = runparams_in;
1153
1154         // Classify the unicode characters appearing in math insets
1155         Encodings::initUnicodeMath(*this);
1156
1157         // validate the buffer.
1158         LYXERR(Debug::LATEX, "  Validating buffer...");
1159         LaTeXFeatures features(*this, params(), runparams);
1160         validate(features);
1161         LYXERR(Debug::LATEX, "  Buffer validation done.");
1162
1163         // The starting paragraph of the coming rows is the
1164         // first paragraph of the document. (Asger)
1165         if (output_preamble && runparams.nice) {
1166                 os << "%% LyX " << lyx_version << " created this file.  "
1167                         "For more info, see http://www.lyx.org/.\n"
1168                         "%% Do not edit unless you really know what "
1169                         "you are doing.\n";
1170                 d->texrow.newline();
1171                 d->texrow.newline();
1172         }
1173         LYXERR(Debug::INFO, "lyx document header finished");
1174
1175         // Don't move this behind the parent_buffer=0 code below,
1176         // because then the macros will not get the right "redefinition"
1177         // flag as they don't see the parent macros which are output before.
1178         updateMacros();
1179
1180         // fold macros if possible, still with parent buffer as the
1181         // macros will be put in the prefix anyway.
1182         updateMacroInstances();
1183
1184         // There are a few differences between nice LaTeX and usual files:
1185         // usual is \batchmode and has a
1186         // special input@path to allow the including of figures
1187         // with either \input or \includegraphics (what figinsets do).
1188         // input@path is set when the actual parameter
1189         // original_path is set. This is done for usual tex-file, but not
1190         // for nice-latex-file. (Matthias 250696)
1191         // Note that input@path is only needed for something the user does
1192         // in the preamble, included .tex files or ERT, files included by
1193         // LyX work without it.
1194         if (output_preamble) {
1195                 if (!runparams.nice) {
1196                         // code for usual, NOT nice-latex-file
1197                         os << "\\batchmode\n"; // changed
1198                         // from \nonstopmode
1199                         d->texrow.newline();
1200                 }
1201                 if (!original_path.empty()) {
1202                         // FIXME UNICODE
1203                         // We don't know the encoding of inputpath
1204                         docstring const inputpath = from_utf8(latex_path(original_path));
1205                         os << "\\makeatletter\n"
1206                            << "\\def\\input@path{{"
1207                            << inputpath << "/}}\n"
1208                            << "\\makeatother\n";
1209                         d->texrow.newline();
1210                         d->texrow.newline();
1211                         d->texrow.newline();
1212                 }
1213
1214                 // get parent macros (if this buffer has a parent) which will be
1215                 // written at the document begin further down.
1216                 MacroSet parentMacros;
1217                 listParentMacros(parentMacros, features);
1218
1219                 // Write the preamble
1220                 runparams.use_babel = params().writeLaTeX(os, features, d->texrow);
1221
1222                 runparams.use_japanese = features.isRequired("japanese");
1223
1224                 if (!output_body)
1225                         return;
1226
1227                 // make the body.
1228                 os << "\\begin{document}\n";
1229                 d->texrow.newline();
1230
1231                 // output the parent macros
1232                 MacroSet::iterator it = parentMacros.begin();
1233                 MacroSet::iterator end = parentMacros.end();
1234                 for (; it != end; ++it)
1235                         (*it)->write(os, true);
1236         } // output_preamble
1237
1238         d->texrow.start(paragraphs().begin()->id(), 0);
1239
1240         LYXERR(Debug::INFO, "preamble finished, now the body.");
1241
1242         // if we are doing a real file with body, even if this is the
1243         // child of some other buffer, let's cut the link here.
1244         // This happens for example if only a child document is printed.
1245         Buffer const * save_parent = 0;
1246         if (output_preamble) {
1247                 save_parent = d->parent();
1248                 d->setParent(0);
1249         }
1250
1251         // the real stuff
1252         latexParagraphs(*this, text(), os, d->texrow, runparams);
1253
1254         // Restore the parenthood if needed
1255         if (output_preamble)
1256                 d->setParent(save_parent);
1257
1258         // add this just in case after all the paragraphs
1259         os << endl;
1260         d->texrow.newline();
1261
1262         if (output_preamble) {
1263                 os << "\\end{document}\n";
1264                 d->texrow.newline();
1265                 LYXERR(Debug::LATEX, "makeLaTeXFile...done");
1266         } else {
1267                 LYXERR(Debug::LATEX, "LaTeXFile for inclusion made.");
1268         }
1269         runparams_in.encoding = runparams.encoding;
1270
1271         // Just to be sure. (Asger)
1272         d->texrow.newline();
1273
1274         LYXERR(Debug::INFO, "Finished making LaTeX file.");
1275         LYXERR(Debug::INFO, "Row count was " << d->texrow.rows() - 1 << '.');
1276 }
1277
1278
1279 bool Buffer::isLatex() const
1280 {
1281         return params().documentClass().outputType() == LATEX;
1282 }
1283
1284
1285 bool Buffer::isLiterate() const
1286 {
1287         return params().documentClass().outputType() == LITERATE;
1288 }
1289
1290
1291 bool Buffer::isDocBook() const
1292 {
1293         return params().documentClass().outputType() == DOCBOOK;
1294 }
1295
1296
1297 void Buffer::makeDocBookFile(FileName const & fname,
1298                               OutputParams const & runparams,
1299                               bool const body_only) const
1300 {
1301         LYXERR(Debug::LATEX, "makeDocBookFile...");
1302
1303         ofdocstream ofs;
1304         if (!openFileWrite(ofs, fname))
1305                 return;
1306
1307         writeDocBookSource(ofs, fname.absFilename(), runparams, body_only);
1308
1309         ofs.close();
1310         if (ofs.fail())
1311                 lyxerr << "File '" << fname << "' was not closed properly." << endl;
1312 }
1313
1314
1315 void Buffer::writeDocBookSource(odocstream & os, string const & fname,
1316                              OutputParams const & runparams,
1317                              bool const only_body) const
1318 {
1319         LaTeXFeatures features(*this, params(), runparams);
1320         validate(features);
1321
1322         d->texrow.reset();
1323
1324         DocumentClass const & tclass = params().documentClass();
1325         string const top_element = tclass.latexname();
1326
1327         if (!only_body) {
1328                 if (runparams.flavor == OutputParams::XML)
1329                         os << "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n";
1330
1331                 // FIXME UNICODE
1332                 os << "<!DOCTYPE " << from_ascii(top_element) << ' ';
1333
1334                 // FIXME UNICODE
1335                 if (! tclass.class_header().empty())
1336                         os << from_ascii(tclass.class_header());
1337                 else if (runparams.flavor == OutputParams::XML)
1338                         os << "PUBLIC \"-//OASIS//DTD DocBook XML//EN\" "
1339                             << "\"http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd\"";
1340                 else
1341                         os << " PUBLIC \"-//OASIS//DTD DocBook V4.2//EN\"";
1342
1343                 docstring preamble = from_utf8(params().preamble);
1344                 if (runparams.flavor != OutputParams::XML ) {
1345                         preamble += "<!ENTITY % output.print.png \"IGNORE\">\n";
1346                         preamble += "<!ENTITY % output.print.pdf \"IGNORE\">\n";
1347                         preamble += "<!ENTITY % output.print.eps \"IGNORE\">\n";
1348                         preamble += "<!ENTITY % output.print.bmp \"IGNORE\">\n";
1349                 }
1350
1351                 string const name = runparams.nice
1352                         ? changeExtension(absFileName(), ".sgml") : fname;
1353                 preamble += features.getIncludedFiles(name);
1354                 preamble += features.getLyXSGMLEntities();
1355
1356                 if (!preamble.empty()) {
1357                         os << "\n [ " << preamble << " ]";
1358                 }
1359                 os << ">\n\n";
1360         }
1361
1362         string top = top_element;
1363         top += " lang=\"";
1364         if (runparams.flavor == OutputParams::XML)
1365                 top += params().language->code();
1366         else
1367                 top += params().language->code().substr(0, 2);
1368         top += '"';
1369
1370         if (!params().options.empty()) {
1371                 top += ' ';
1372                 top += params().options;
1373         }
1374
1375         os << "<!-- " << ((runparams.flavor == OutputParams::XML)? "XML" : "SGML")
1376             << " file was created by LyX " << lyx_version
1377             << "\n  See http://www.lyx.org/ for more information -->\n";
1378
1379         params().documentClass().counters().reset();
1380
1381         updateMacros();
1382
1383         sgml::openTag(os, top);
1384         os << '\n';
1385         docbookParagraphs(text(), *this, os, runparams);
1386         sgml::closeTag(os, top_element);
1387 }
1388
1389
1390 void Buffer::makeLyXHTMLFile(FileName const & fname,
1391                               OutputParams const & runparams,
1392                               bool const body_only) const
1393 {
1394         LYXERR(Debug::LATEX, "makeLYXHTMLFile...");
1395
1396         ofdocstream ofs;
1397         if (!openFileWrite(ofs, fname))
1398                 return;
1399
1400         writeLyXHTMLSource(ofs, runparams, body_only);
1401
1402         ofs.close();
1403         if (ofs.fail())
1404                 lyxerr << "File '" << fname << "' was not closed properly." << endl;
1405 }
1406
1407
1408 void Buffer::writeLyXHTMLSource(odocstream & os,
1409                              OutputParams const & runparams,
1410                              bool const only_body) const
1411 {
1412         LaTeXFeatures features(*this, params(), runparams);
1413         validate(features);
1414
1415         d->texrow.reset();
1416
1417         if (!only_body) {
1418                 os << "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\"" <<
1419                         " \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\n";
1420                 // FIXME Language should be set properly.
1421                 os << "<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\n";
1422                 // FIXME Header
1423                 os << "<head>\n";
1424                 // FIXME Presumably need to set this right
1425                 os << "<meta http-equiv=\"Content-type\" content=\"text/html;charset=UTF-8\" />\n";
1426                 // FIXME Get this during validation? What about other meta-data?
1427                 os << "<title>TBA</title>\n";
1428
1429                 os << features.getTClassHTMLPreamble();
1430
1431                 os << '\n';
1432
1433                 docstring const styleinfo = features.getTClassHTMLStyles();
1434                 if (!styleinfo.empty()) {
1435                         os << "<style type='text/css'>\n";
1436                         os << styleinfo;
1437                         os << "</style>\n";
1438                 }
1439                 os << "</head>\n<body>\n";
1440         }
1441
1442         params().documentClass().counters().reset();
1443         xhtmlParagraphs(text(), *this, os, runparams);
1444         if (!only_body)
1445                 os << "</body>\n</html>\n";
1446 }
1447
1448
1449 // chktex should be run with these flags disabled: 3, 22, 25, 30, 38(?)
1450 // Other flags: -wall -v0 -x
1451 int Buffer::runChktex()
1452 {
1453         setBusy(true);
1454
1455         // get LaTeX-Filename
1456         FileName const path(temppath());
1457         string const name = addName(path.absFilename(), latexName());
1458         string const org_path = filePath();
1459
1460         PathChanger p(path); // path to LaTeX file
1461         message(_("Running chktex..."));
1462
1463         // Generate the LaTeX file if neccessary
1464         OutputParams runparams(&params().encoding());
1465         runparams.flavor = OutputParams::LATEX;
1466         runparams.nice = false;
1467         makeLaTeXFile(FileName(name), org_path, runparams);
1468
1469         TeXErrors terr;
1470         Chktex chktex(lyxrc.chktex_command, onlyFilename(name), filePath());
1471         int const res = chktex.run(terr); // run chktex
1472
1473         if (res == -1) {
1474                 Alert::error(_("chktex failure"),
1475                              _("Could not run chktex successfully."));
1476         } else if (res > 0) {
1477                 ErrorList & errlist = d->errorLists["ChkTeX"];
1478                 errlist.clear();
1479                 bufferErrors(terr, errlist);
1480         }
1481
1482         setBusy(false);
1483
1484         errors("ChkTeX");
1485
1486         return res;
1487 }
1488
1489
1490 void Buffer::validate(LaTeXFeatures & features) const
1491 {
1492         params().validate(features);
1493
1494         updateMacros();
1495
1496         for_each(paragraphs().begin(), paragraphs().end(),
1497                  boost::bind(&Paragraph::validate, _1, boost::ref(features)));
1498
1499         if (lyxerr.debugging(Debug::LATEX)) {
1500                 features.showStruct();
1501         }
1502 }
1503
1504
1505 void Buffer::getLabelList(vector<docstring> & list) const
1506 {
1507         // If this is a child document, use the parent's list instead.
1508         Buffer const * const pbuf = d->parent();
1509         if (pbuf) {
1510                 pbuf->getLabelList(list);
1511                 return;
1512         }
1513
1514         list.clear();
1515         Toc & toc = d->toc_backend.toc("label");
1516         TocIterator toc_it = toc.begin();
1517         TocIterator end = toc.end();
1518         for (; toc_it != end; ++toc_it) {
1519                 if (toc_it->depth() == 0)
1520                         list.push_back(toc_it->str());
1521         }
1522 }
1523
1524
1525 void Buffer::updateBibfilesCache(UpdateScope scope) const
1526 {
1527         // If this is a child document, use the parent's cache instead.
1528         Buffer const * const pbuf = d->parent();
1529         if (pbuf && scope != UpdateChildOnly) {
1530                 pbuf->updateBibfilesCache();
1531                 return;
1532         }
1533
1534         d->bibfilesCache_.clear();
1535         for (InsetIterator it = inset_iterator_begin(inset()); it; ++it) {
1536                 if (it->lyxCode() == BIBTEX_CODE) {
1537                         InsetBibtex const & inset =
1538                                 static_cast<InsetBibtex const &>(*it);
1539                         support::FileNameList const bibfiles = inset.getBibFiles();
1540                         d->bibfilesCache_.insert(d->bibfilesCache_.end(),
1541                                 bibfiles.begin(),
1542                                 bibfiles.end());
1543                 } else if (it->lyxCode() == INCLUDE_CODE) {
1544                         InsetInclude & inset =
1545                                 static_cast<InsetInclude &>(*it);
1546                         inset.updateBibfilesCache();
1547                         support::FileNameList const & bibfiles =
1548                                         inset.getBibfilesCache();
1549                         d->bibfilesCache_.insert(d->bibfilesCache_.end(),
1550                                 bibfiles.begin(),
1551                                 bibfiles.end());
1552                 }
1553         }
1554         // the bibinfo cache is now invalid
1555         d->bibinfoCacheValid_ = false;
1556 }
1557
1558
1559 void Buffer::invalidateBibinfoCache()
1560 {
1561         d->bibinfoCacheValid_ = false;
1562 }
1563
1564
1565 support::FileNameList const & Buffer::getBibfilesCache(UpdateScope scope) const
1566 {
1567         // If this is a child document, use the parent's cache instead.
1568         Buffer const * const pbuf = d->parent();
1569         if (pbuf && scope != UpdateChildOnly)
1570                 return pbuf->getBibfilesCache();
1571
1572         // We update the cache when first used instead of at loading time.
1573         if (d->bibfilesCache_.empty())
1574                 const_cast<Buffer *>(this)->updateBibfilesCache(scope);
1575
1576         return d->bibfilesCache_;
1577 }
1578
1579
1580 BiblioInfo const & Buffer::masterBibInfo() const
1581 {
1582         // if this is a child document and the parent is already loaded
1583         // use the parent's list instead  [ale990412]
1584         Buffer const * const tmp = masterBuffer();
1585         LASSERT(tmp, /**/);
1586         if (tmp != this)
1587                 return tmp->masterBibInfo();
1588         return localBibInfo();
1589 }
1590
1591
1592 BiblioInfo const & Buffer::localBibInfo() const
1593 {
1594         if (d->bibinfoCacheValid_) {
1595                 support::FileNameList const & bibfilesCache = getBibfilesCache();
1596                 // compare the cached timestamps with the actual ones.
1597                 support::FileNameList::const_iterator ei = bibfilesCache.begin();
1598                 support::FileNameList::const_iterator en = bibfilesCache.end();
1599                 for (; ei != en; ++ ei) {
1600                         time_t lastw = ei->lastModified();
1601                         if (lastw != d->bibfileStatus_[*ei]) {
1602                                 d->bibinfoCacheValid_ = false;
1603                                 d->bibfileStatus_[*ei] = lastw;
1604                                 break;
1605                         }
1606                 }
1607         }
1608
1609         if (!d->bibinfoCacheValid_) {
1610                 d->bibinfo_.clear();
1611                 for (InsetIterator it = inset_iterator_begin(inset()); it; ++it)
1612                         it->fillWithBibKeys(d->bibinfo_, it);
1613                 d->bibinfoCacheValid_ = true;
1614         }
1615         return d->bibinfo_;
1616 }
1617
1618
1619 bool Buffer::isDepClean(string const & name) const
1620 {
1621         DepClean::const_iterator const it = d->dep_clean.find(name);
1622         if (it == d->dep_clean.end())
1623                 return true;
1624         return it->second;
1625 }
1626
1627
1628 void Buffer::markDepClean(string const & name)
1629 {
1630         d->dep_clean[name] = true;
1631 }
1632
1633
1634 bool Buffer::getStatus(FuncRequest const & cmd, FuncStatus & flag)
1635 {
1636         if (isInternal()) {
1637                 // FIXME? if there is an Buffer LFUN that can be dispatched even
1638                 // if internal, put a switch '(cmd.action)' here.
1639                 return false;
1640         }
1641
1642         bool enable = true;
1643
1644         switch (cmd.action) {
1645
1646                 case LFUN_BUFFER_TOGGLE_READ_ONLY:
1647                         flag.setOnOff(isReadonly());
1648                         break;
1649
1650                 // FIXME: There is need for a command-line import.
1651                 //case LFUN_BUFFER_IMPORT:
1652
1653                 case LFUN_BUFFER_AUTO_SAVE:
1654                         break;
1655
1656                 case LFUN_BUFFER_EXPORT_CUSTOM:
1657                         // FIXME: Nothing to check here?
1658                         break;
1659
1660                 case LFUN_BUFFER_EXPORT: {
1661                         docstring const arg = cmd.argument();
1662                         enable = arg == "custom" || isExportable(to_utf8(arg));
1663                         if (!enable)
1664                                 flag.message(bformat(
1665                                         _("Don't know how to export to format: %1$s"), arg));
1666                         break;
1667                 }
1668
1669                 case LFUN_MASTER_BUFFER_UPDATE:
1670                 case LFUN_MASTER_BUFFER_VIEW: 
1671                         enable = parent() != 0;
1672                         break;
1673                 case LFUN_BUFFER_UPDATE:
1674                 case LFUN_BUFFER_VIEW: {
1675                         string format = to_utf8(cmd.argument());
1676                         if (cmd.argument().empty())
1677                                 format = getDefaultOutputFormat();
1678                         typedef vector<Format const *> Formats;
1679                         Formats formats;
1680                         formats = exportableFormats(true);
1681                         Formats::const_iterator fit = formats.begin();
1682                         Formats::const_iterator end = formats.end();
1683                         enable = false;
1684                         for (; fit != end ; ++fit) {
1685                                 if ((*fit)->name() == format)
1686                                         enable = true;
1687                         }
1688                         break;
1689                 }
1690                 case LFUN_BUFFER_CHKTEX:
1691                         enable = isLatex() && !lyxrc.chktex_command.empty();
1692                         break;
1693
1694                 case LFUN_BUILD_PROGRAM:
1695                         enable = isExportable("program");
1696                         break;
1697
1698                 case LFUN_BRANCH_ACTIVATE: 
1699                 case LFUN_BRANCH_DEACTIVATE: {
1700                         BranchList const & branchList = params().branchlist();
1701                         docstring const branchName = cmd.argument();
1702                         enable = !branchName.empty() && branchList.find(branchName);
1703                         break;
1704                 }
1705
1706                 case LFUN_BRANCH_ADD:
1707                 case LFUN_BRANCHES_RENAME:
1708                 case LFUN_BUFFER_PRINT:
1709                         // if no Buffer is present, then of course we won't be called!
1710                         break;
1711
1712                 default:
1713                         return false;
1714         }
1715         flag.setEnabled(enable);
1716         return true;
1717 }
1718
1719
1720 void Buffer::dispatch(string const & command, DispatchResult & result)
1721 {
1722         return dispatch(lyxaction.lookupFunc(command), result);
1723 }
1724
1725
1726 // NOTE We can end up here even if we have no GUI, because we are called
1727 // by LyX::exec to handled command-line requests. So we may need to check 
1728 // whether we have a GUI or not. The boolean use_gui holds this information.
1729 void Buffer::dispatch(FuncRequest const & func, DispatchResult & dr)
1730 {
1731         if (isInternal()) {
1732                 // FIXME? if there is an Buffer LFUN that can be dispatched even
1733                 // if internal, put a switch '(cmd.action)' here.
1734                 dr.dispatched(false);
1735                 return;
1736         }
1737         string const argument = to_utf8(func.argument());
1738         // We'll set this back to false if need be.
1739         bool dispatched = true;
1740
1741         switch (func.action) {
1742         case LFUN_BUFFER_TOGGLE_READ_ONLY:
1743                 if (lyxvc().inUse())
1744                         lyxvc().toggleReadOnly();
1745                 else
1746                         setReadonly(!isReadonly());
1747                 break;
1748
1749         case LFUN_BUFFER_EXPORT: {
1750                 if (argument == "custom") {
1751                         lyx::dispatch(FuncRequest(LFUN_DIALOG_SHOW, "sendto"));
1752                         break;
1753                 }
1754                 doExport(argument, false);
1755                 bool success = doExport(argument, false);
1756                 dr.setError(success);
1757                 if (!success)
1758                         dr.setMessage(bformat(_("Error exporting to format: %1$s."), 
1759                                               func.argument()));
1760                 break;
1761         }
1762
1763         case LFUN_BUFFER_UPDATE: {
1764                 string format = argument;
1765                 if (argument.empty())
1766                         format = getDefaultOutputFormat();
1767                 doExport(format, true);
1768                 break;
1769         }
1770
1771         case LFUN_BUFFER_VIEW: {
1772                 string format = argument;
1773                 if (argument.empty())
1774                         format = getDefaultOutputFormat();
1775                 preview(format);
1776                 break;
1777         }
1778
1779         case LFUN_MASTER_BUFFER_UPDATE: {
1780                 string format = argument;
1781                 if (argument.empty())
1782                         format = masterBuffer()->getDefaultOutputFormat();
1783                 masterBuffer()->doExport(format, true);
1784                 break;
1785         }
1786
1787         case LFUN_MASTER_BUFFER_VIEW: {
1788                 string format = argument;
1789                 if (argument.empty())
1790                         format = masterBuffer()->getDefaultOutputFormat();
1791                 masterBuffer()->preview(format);
1792                 break;
1793         }
1794
1795         case LFUN_BUILD_PROGRAM:
1796                 doExport("program", true);
1797                 break;
1798
1799         case LFUN_BUFFER_CHKTEX:
1800                 runChktex();
1801                 break;
1802
1803         case LFUN_BUFFER_EXPORT_CUSTOM: {
1804                 string format_name;
1805                 string command = split(argument, format_name, ' ');
1806                 Format const * format = formats.getFormat(format_name);
1807                 if (!format) {
1808                         lyxerr << "Format \"" << format_name
1809                                 << "\" not recognized!"
1810                                 << endl;
1811                         break;
1812                 }
1813
1814                 // The name of the file created by the conversion process
1815                 string filename;
1816
1817                 // Output to filename
1818                 if (format->name() == "lyx") {
1819                         string const latexname = latexName(false);
1820                         filename = changeExtension(latexname,
1821                                 format->extension());
1822                         filename = addName(temppath(), filename);
1823
1824                         if (!writeFile(FileName(filename)))
1825                                 break;
1826
1827                 } else {
1828                         doExport(format_name, true, filename);
1829                 }
1830
1831                 // Substitute $$FName for filename
1832                 if (!contains(command, "$$FName"))
1833                         command = "( " + command + " ) < $$FName";
1834                 command = subst(command, "$$FName", filename);
1835
1836                 // Execute the command in the background
1837                 Systemcall call;
1838                 call.startscript(Systemcall::DontWait, command);
1839                 break;
1840         }
1841
1842         // FIXME: There is need for a command-line import.
1843         /*
1844         case LFUN_BUFFER_IMPORT:
1845                 doImport(argument);
1846                 break;
1847         */
1848
1849         case LFUN_BUFFER_AUTO_SAVE:
1850                 autoSave();
1851                 break;
1852
1853         case LFUN_BRANCH_ADD: {
1854                 BranchList & branchList = params().branchlist();
1855                 docstring const branchName = func.argument();
1856                 if (branchName.empty()) {
1857                         dispatched = false;
1858                         break;
1859                 }
1860                 Branch * branch = branchList.find(branchName);
1861                 if (branch) {
1862                         LYXERR0("Branch " << branchName << " does already exist.");
1863                         dr.setError(true);
1864                         docstring const msg = 
1865                                 bformat(_("Branch \"%1$s\" does already exist."), branchName);
1866                         dr.setMessage(msg);
1867                 } else {
1868                         branchList.add(branchName);
1869                         dr.setError(false);
1870                         dr.update(Update::Force);
1871                 }
1872                 break;
1873         }
1874
1875         case LFUN_BRANCH_ACTIVATE:
1876         case LFUN_BRANCH_DEACTIVATE: {
1877                 BranchList & branchList = params().branchlist();
1878                 docstring const branchName = func.argument();
1879                 // the case without a branch name is handled elsewhere
1880                 if (branchName.empty()) {
1881                         dispatched = false;
1882                         break;
1883                 }
1884                 Branch * branch = branchList.find(branchName);
1885                 if (!branch) {
1886                         LYXERR0("Branch " << branchName << " does not exist.");
1887                         dr.setError(true);
1888                         docstring const msg = 
1889                                 bformat(_("Branch \"%1$s\" does not exist."), branchName);
1890                         dr.setMessage(msg);
1891                 } else {
1892                         branch->setSelected(func.action == LFUN_BRANCH_ACTIVATE);
1893                         dr.setError(false);
1894                         dr.update(Update::Force);
1895                 }
1896                 break;
1897         }
1898
1899         case LFUN_BRANCHES_RENAME: {
1900                 if (func.argument().empty())
1901                         break;
1902
1903                 docstring const oldname = from_utf8(func.getArg(0));
1904                 docstring const newname = from_utf8(func.getArg(1));
1905                 InsetIterator it  = inset_iterator_begin(inset());
1906                 InsetIterator const end = inset_iterator_end(inset());
1907                 bool success = false;
1908                 for (; it != end; ++it) {
1909                         if (it->lyxCode() == BRANCH_CODE) {
1910                                 InsetBranch & ins = static_cast<InsetBranch &>(*it);
1911                                 if (ins.branch() == oldname) {
1912                                         undo().recordUndo(it);
1913                                         ins.rename(newname);
1914                                         success = true;
1915                                         continue;
1916                                 }
1917                         }
1918                         if (it->lyxCode() == INCLUDE_CODE) {
1919                                 // get buffer of external file
1920                                 InsetInclude const & ins =
1921                                         static_cast<InsetInclude const &>(*it);
1922                                 Buffer * child = ins.getChildBuffer();
1923                                 if (!child)
1924                                         continue;
1925                                 child->dispatch(func, dr);
1926                         }
1927                 }
1928
1929                 if (success)
1930                         dr.update(Update::Force);
1931                 break;
1932         }
1933
1934         case LFUN_BUFFER_PRINT: {
1935                 // we'll assume there's a problem until we succeed
1936                 dr.setError(true); 
1937                 string target = func.getArg(0);
1938                 string target_name = func.getArg(1);
1939                 string command = func.getArg(2);
1940
1941                 if (target.empty()
1942                     || target_name.empty()
1943                     || command.empty()) {
1944                         LYXERR0("Unable to parse " << func.argument());
1945                         docstring const msg = 
1946                                 bformat(_("Unable to parse \"%1$s\""), func.argument());
1947                         dr.setMessage(msg);
1948                         break;
1949                 }
1950                 if (target != "printer" && target != "file") {
1951                         LYXERR0("Unrecognized target \"" << target << '"');
1952                         docstring const msg = 
1953                                 bformat(_("Unrecognized target \"%1$s\""), from_utf8(target));
1954                         dr.setMessage(msg);
1955                         break;
1956                 }
1957
1958                 if (!doExport("dvi", true)) {
1959                         showPrintError(absFileName());
1960                         dr.setMessage(_("Error exporting to DVI."));
1961                         break;
1962                 }
1963
1964                 // Push directory path.
1965                 string const path = temppath();
1966                 // Prevent the compiler from optimizing away p
1967                 FileName pp(path);
1968                 PathChanger p(pp);
1969
1970                 // there are three cases here:
1971                 // 1. we print to a file
1972                 // 2. we print directly to a printer
1973                 // 3. we print using a spool command (print to file first)
1974                 Systemcall one;
1975                 int res = 0;
1976                 string const dviname = changeExtension(latexName(true), "dvi");
1977
1978                 if (target == "printer") {
1979                         if (!lyxrc.print_spool_command.empty()) {
1980                                 // case 3: print using a spool
1981                                 string const psname = changeExtension(dviname,".ps");
1982                                 command += ' ' + lyxrc.print_to_file
1983                                         + quoteName(psname)
1984                                         + ' '
1985                                         + quoteName(dviname);
1986
1987                                 string command2 = lyxrc.print_spool_command + ' ';
1988                                 if (target_name != "default") {
1989                                         command2 += lyxrc.print_spool_printerprefix
1990                                                 + target_name
1991                                                 + ' ';
1992                                 }
1993                                 command2 += quoteName(psname);
1994                                 // First run dvips.
1995                                 // If successful, then spool command
1996                                 res = one.startscript(Systemcall::Wait, command);
1997
1998                                 if (res == 0) {
1999                                         // If there's no GUI, we have to wait on this command. Otherwise,
2000                                         // LyX deletes the temporary directory, and with it the spooled
2001                                         // file, before it can be printed!!
2002                                         Systemcall::Starttype stype = use_gui ?
2003                                                 Systemcall::DontWait : Systemcall::Wait;
2004                                         res = one.startscript(stype, command2);
2005                                 }
2006                         } else {
2007                                 // case 2: print directly to a printer
2008                                 if (target_name != "default")
2009                                         command += ' ' + lyxrc.print_to_printer + target_name + ' ';
2010                                 // as above....
2011                                 Systemcall::Starttype stype = use_gui ?
2012                                         Systemcall::DontWait : Systemcall::Wait;
2013                                 res = one.startscript(stype, command + quoteName(dviname));
2014                         }
2015
2016                 } else {
2017                         // case 1: print to a file
2018                         FileName const filename(makeAbsPath(target_name, filePath()));
2019                         FileName const dvifile(makeAbsPath(dviname, path));
2020                         if (filename.exists()) {
2021                                 docstring text = bformat(
2022                                         _("The file %1$s already exists.\n\n"
2023                                           "Do you want to overwrite that file?"),
2024                                         makeDisplayPath(filename.absFilename()));
2025                                 if (Alert::prompt(_("Overwrite file?"),
2026                                                   text, 0, 1, _("&Overwrite"), _("&Cancel")) != 0)
2027                                         break;
2028                         }
2029                         command += ' ' + lyxrc.print_to_file
2030                                 + quoteName(filename.toFilesystemEncoding())
2031                                 + ' '
2032                                 + quoteName(dvifile.toFilesystemEncoding());
2033                         // as above....
2034                         Systemcall::Starttype stype = use_gui ?
2035                                 Systemcall::DontWait : Systemcall::Wait;
2036                         res = one.startscript(stype, command);
2037                 }
2038
2039                 if (res == 0) 
2040                         dr.setError(false);
2041                 else {
2042                         dr.setMessage(_("Error running external commands."));
2043                         showPrintError(absFileName());
2044                 }
2045                 break;
2046         }
2047
2048         default:
2049                 dispatched = false;
2050                 break;
2051         }
2052         dr.dispatched(dispatched);
2053 }
2054
2055
2056 void Buffer::changeLanguage(Language const * from, Language const * to)
2057 {
2058         LASSERT(from, /**/);
2059         LASSERT(to, /**/);
2060
2061         for_each(par_iterator_begin(),
2062                  par_iterator_end(),
2063                  bind(&Paragraph::changeLanguage, _1, params(), from, to));
2064 }
2065
2066
2067 bool Buffer::isMultiLingual() const
2068 {
2069         ParConstIterator end = par_iterator_end();
2070         for (ParConstIterator it = par_iterator_begin(); it != end; ++it)
2071                 if (it->isMultiLingual(params()))
2072                         return true;
2073
2074         return false;
2075 }
2076
2077
2078 DocIterator Buffer::getParFromID(int const id) const
2079 {
2080         Buffer * buf = const_cast<Buffer *>(this);
2081         if (id < 0) {
2082                 // John says this is called with id == -1 from undo
2083                 lyxerr << "getParFromID(), id: " << id << endl;
2084                 return doc_iterator_end(buf);
2085         }
2086
2087         for (DocIterator it = doc_iterator_begin(buf); !it.atEnd(); it.forwardPar())
2088                 if (it.paragraph().id() == id)
2089                         return it;
2090
2091         return doc_iterator_end(buf);
2092 }
2093
2094
2095 bool Buffer::hasParWithID(int const id) const
2096 {
2097         return !getParFromID(id).atEnd();
2098 }
2099
2100
2101 ParIterator Buffer::par_iterator_begin()
2102 {
2103         return ParIterator(doc_iterator_begin(this));
2104 }
2105
2106
2107 ParIterator Buffer::par_iterator_end()
2108 {
2109         return ParIterator(doc_iterator_end(this));
2110 }
2111
2112
2113 ParConstIterator Buffer::par_iterator_begin() const
2114 {
2115         return ParConstIterator(doc_iterator_begin(this));
2116 }
2117
2118
2119 ParConstIterator Buffer::par_iterator_end() const
2120 {
2121         return ParConstIterator(doc_iterator_end(this));
2122 }
2123
2124
2125 Language const * Buffer::language() const
2126 {
2127         return params().language;
2128 }
2129
2130
2131 docstring const Buffer::B_(string const & l10n) const
2132 {
2133         return params().B_(l10n);
2134 }
2135
2136
2137 bool Buffer::isClean() const
2138 {
2139         return d->lyx_clean;
2140 }
2141
2142
2143 bool Buffer::isBakClean() const
2144 {
2145         return d->bak_clean;
2146 }
2147
2148
2149 bool Buffer::isExternallyModified(CheckMethod method) const
2150 {
2151         LASSERT(d->filename.exists(), /**/);
2152         // if method == timestamp, check timestamp before checksum
2153         return (method == checksum_method
2154                 || d->timestamp_ != d->filename.lastModified())
2155                 && d->checksum_ != d->filename.checksum();
2156 }
2157
2158
2159 void Buffer::saveCheckSum(FileName const & file) const
2160 {
2161         if (file.exists()) {
2162                 d->timestamp_ = file.lastModified();
2163                 d->checksum_ = file.checksum();
2164         } else {
2165                 // in the case of save to a new file.
2166                 d->timestamp_ = 0;
2167                 d->checksum_ = 0;
2168         }
2169 }
2170
2171
2172 void Buffer::markClean() const
2173 {
2174         if (!d->lyx_clean) {
2175                 d->lyx_clean = true;
2176                 updateTitles();
2177         }
2178         // if the .lyx file has been saved, we don't need an
2179         // autosave
2180         d->bak_clean = true;
2181 }
2182
2183
2184 void Buffer::markBakClean() const
2185 {
2186         d->bak_clean = true;
2187 }
2188
2189
2190 void Buffer::setUnnamed(bool flag)
2191 {
2192         d->unnamed = flag;
2193 }
2194
2195
2196 bool Buffer::isUnnamed() const
2197 {
2198         return d->unnamed;
2199 }
2200
2201
2202 /// \note
2203 /// Don't check unnamed, here: isInternal() is used in
2204 /// newBuffer(), where the unnamed flag has not been set by anyone
2205 /// yet. Also, for an internal buffer, there should be no need for
2206 /// retrieving fileName() nor for checking if it is unnamed or not.
2207 bool Buffer::isInternal() const
2208 {
2209         return fileName().extension() == "internal";
2210 }
2211
2212
2213 void Buffer::markDirty()
2214 {
2215         if (d->lyx_clean) {
2216                 d->lyx_clean = false;
2217                 updateTitles();
2218         }
2219         d->bak_clean = false;
2220
2221         DepClean::iterator it = d->dep_clean.begin();
2222         DepClean::const_iterator const end = d->dep_clean.end();
2223
2224         for (; it != end; ++it)
2225                 it->second = false;
2226 }
2227
2228
2229 FileName Buffer::fileName() const
2230 {
2231         return d->filename;
2232 }
2233
2234
2235 string Buffer::absFileName() const
2236 {
2237         return d->filename.absFilename();
2238 }
2239
2240
2241 string Buffer::filePath() const
2242 {
2243         return d->filename.onlyPath().absFilename() + "/";
2244 }
2245
2246
2247 bool Buffer::isReadonly() const
2248 {
2249         return d->read_only;
2250 }
2251
2252
2253 void Buffer::setParent(Buffer const * buffer)
2254 {
2255         // Avoids recursive include.
2256         d->setParent(buffer == this ? 0 : buffer);
2257         updateMacros();
2258 }
2259
2260
2261 Buffer const * Buffer::parent() const
2262 {
2263         return d->parent();
2264 }
2265
2266
2267 void Buffer::collectRelatives(BufferSet & bufs) const
2268 {
2269         bufs.insert(this);
2270         if (parent())
2271                 parent()->collectRelatives(bufs);
2272
2273         // loop over children
2274         Impl::BufferPositionMap::iterator it = d->children_positions.begin();
2275         Impl::BufferPositionMap::iterator end = d->children_positions.end();
2276         for (; it != end; ++it)
2277                 bufs.insert(const_cast<Buffer *>(it->first));
2278 }
2279
2280
2281 std::vector<Buffer const *> Buffer::allRelatives() const
2282 {
2283         BufferSet bufs;
2284         collectRelatives(bufs);
2285         BufferSet::iterator it = bufs.begin();
2286         std::vector<Buffer const *> ret;
2287         for (; it != bufs.end(); ++it)
2288                 ret.push_back(*it);
2289         return ret;
2290 }
2291
2292
2293 Buffer const * Buffer::masterBuffer() const
2294 {
2295         Buffer const * const pbuf = d->parent();
2296         if (!pbuf)
2297                 return this;
2298
2299         return pbuf->masterBuffer();
2300 }
2301
2302
2303 bool Buffer::isChild(Buffer * child) const
2304 {
2305         return d->children_positions.find(child) != d->children_positions.end();
2306 }
2307
2308
2309 DocIterator Buffer::firstChildPosition(Buffer const * child)
2310 {
2311         Impl::BufferPositionMap::iterator it;
2312         it = d->children_positions.find(child);
2313         if (it == d->children_positions.end())
2314                 return DocIterator(this);
2315         return it->second;
2316 }
2317
2318
2319 std::vector<Buffer *> Buffer::getChildren() const
2320 {
2321         std::vector<Buffer *> clist;
2322         // loop over children
2323         Impl::BufferPositionMap::iterator it = d->children_positions.begin();
2324         Impl::BufferPositionMap::iterator end = d->children_positions.end();
2325         for (; it != end; ++it) {
2326                 Buffer * child = const_cast<Buffer *>(it->first);
2327                 clist.push_back(child);
2328                 // there might be grandchildren
2329                 std::vector<Buffer *> glist = child->getChildren();
2330                 for (vector<Buffer *>::const_iterator git = glist.begin();
2331                      git != glist.end(); ++git)
2332                         clist.push_back(*git);
2333         }
2334         return clist;
2335 }
2336
2337
2338 template<typename M>
2339 typename M::iterator greatest_below(M & m, typename M::key_type const & x)
2340 {
2341         if (m.empty())
2342                 return m.end();
2343
2344         typename M::iterator it = m.lower_bound(x);
2345         if (it == m.begin())
2346                 return m.end();
2347
2348         it--;
2349         return it;
2350 }
2351
2352
2353 MacroData const * Buffer::getBufferMacro(docstring const & name,
2354                                          DocIterator const & pos) const
2355 {
2356         LYXERR(Debug::MACROS, "Searching for " << to_ascii(name) << " at " << pos);
2357
2358         // if paragraphs have no macro context set, pos will be empty
2359         if (pos.empty())
2360                 return 0;
2361
2362         // we haven't found anything yet
2363         DocIterator bestPos = par_iterator_begin();
2364         MacroData const * bestData = 0;
2365
2366         // find macro definitions for name
2367         Impl::NamePositionScopeMacroMap::iterator nameIt
2368                 = d->macros.find(name);
2369         if (nameIt != d->macros.end()) {
2370                 // find last definition in front of pos or at pos itself
2371                 Impl::PositionScopeMacroMap::const_iterator it
2372                         = greatest_below(nameIt->second, pos);
2373                 if (it != nameIt->second.end()) {
2374                         while (true) {
2375                                 // scope ends behind pos?
2376                                 if (pos < it->second.first) {
2377                                         // Looks good, remember this. If there
2378                                         // is no external macro behind this,
2379                                         // we found the right one already.
2380                                         bestPos = it->first;
2381                                         bestData = &it->second.second;
2382                                         break;
2383                                 }
2384
2385                                 // try previous macro if there is one
2386                                 if (it == nameIt->second.begin())
2387                                         break;
2388                                 it--;
2389                         }
2390                 }
2391         }
2392
2393         // find macros in included files
2394         Impl::PositionScopeBufferMap::const_iterator it
2395                 = greatest_below(d->position_to_children, pos);
2396         if (it == d->position_to_children.end())
2397                 // no children before
2398                 return bestData;
2399
2400         while (true) {
2401                 // do we know something better (i.e. later) already?
2402                 if (it->first < bestPos )
2403                         break;
2404
2405                 // scope ends behind pos?
2406                 if (pos < it->second.first) {
2407                         // look for macro in external file
2408                         d->macro_lock = true;
2409                         MacroData const * data
2410                         = it->second.second->getMacro(name, false);
2411                         d->macro_lock = false;
2412                         if (data) {
2413                                 bestPos = it->first;
2414                                 bestData = data;
2415                                 break;
2416                         }
2417                 }
2418
2419                 // try previous file if there is one
2420                 if (it == d->position_to_children.begin())
2421                         break;
2422                 --it;
2423         }
2424
2425         // return the best macro we have found
2426         return bestData;
2427 }
2428
2429
2430 MacroData const * Buffer::getMacro(docstring const & name,
2431         DocIterator const & pos, bool global) const
2432 {
2433         if (d->macro_lock)
2434                 return 0;
2435
2436         // query buffer macros
2437         MacroData const * data = getBufferMacro(name, pos);
2438         if (data != 0)
2439                 return data;
2440
2441         // If there is a master buffer, query that
2442         Buffer const * const pbuf = d->parent();
2443         if (pbuf) {
2444                 d->macro_lock = true;
2445                 MacroData const * macro = pbuf->getMacro(
2446                         name, *this, false);
2447                 d->macro_lock = false;
2448                 if (macro)
2449                         return macro;
2450         }
2451
2452         if (global) {
2453                 data = MacroTable::globalMacros().get(name);
2454                 if (data != 0)
2455                         return data;
2456         }
2457
2458         return 0;
2459 }
2460
2461
2462 MacroData const * Buffer::getMacro(docstring const & name, bool global) const
2463 {
2464         // set scope end behind the last paragraph
2465         DocIterator scope = par_iterator_begin();
2466         scope.pit() = scope.lastpit() + 1;
2467
2468         return getMacro(name, scope, global);
2469 }
2470
2471
2472 MacroData const * Buffer::getMacro(docstring const & name,
2473         Buffer const & child, bool global) const
2474 {
2475         // look where the child buffer is included first
2476         Impl::BufferPositionMap::iterator it = d->children_positions.find(&child);
2477         if (it == d->children_positions.end())
2478                 return 0;
2479
2480         // check for macros at the inclusion position
2481         return getMacro(name, it->second, global);
2482 }
2483
2484
2485 void Buffer::updateMacros(DocIterator & it, DocIterator & scope) const
2486 {
2487         pit_type lastpit = it.lastpit();
2488
2489         // look for macros in each paragraph
2490         while (it.pit() <= lastpit) {
2491                 Paragraph & par = it.paragraph();
2492
2493                 // iterate over the insets of the current paragraph
2494                 InsetList const & insets = par.insetList();
2495                 InsetList::const_iterator iit = insets.begin();
2496                 InsetList::const_iterator end = insets.end();
2497                 for (; iit != end; ++iit) {
2498                         it.pos() = iit->pos;
2499
2500                         // is it a nested text inset?
2501                         if (iit->inset->asInsetText()) {
2502                                 // Inset needs its own scope?
2503                                 InsetText const * itext = iit->inset->asInsetText();
2504                                 bool newScope = itext->isMacroScope();
2505
2506                                 // scope which ends just behind the inset
2507                                 DocIterator insetScope = it;
2508                                 ++insetScope.pos();
2509
2510                                 // collect macros in inset
2511                                 it.push_back(CursorSlice(*iit->inset));
2512                                 updateMacros(it, newScope ? insetScope : scope);
2513                                 it.pop_back();
2514                                 continue;
2515                         }
2516
2517                         // is it an external file?
2518                         if (iit->inset->lyxCode() == INCLUDE_CODE) {
2519                                 // get buffer of external file
2520                                 InsetInclude const & inset =
2521                                         static_cast<InsetInclude const &>(*iit->inset);
2522                                 d->macro_lock = true;
2523                                 Buffer * child = inset.getChildBuffer();
2524                                 d->macro_lock = false;
2525                                 if (!child)
2526                                         continue;
2527
2528                                 // register its position, but only when it is
2529                                 // included first in the buffer
2530                                 if (d->children_positions.find(child) ==
2531                                         d->children_positions.end())
2532                                                 d->children_positions[child] = it;
2533
2534                                 // register child with its scope
2535                                 d->position_to_children[it] = Impl::ScopeBuffer(scope, child);
2536                                 continue;
2537                         }
2538
2539                         if (iit->inset->lyxCode() != MATHMACRO_CODE)
2540                                 continue;
2541
2542                         // get macro data
2543                         MathMacroTemplate & macroTemplate =
2544                                 static_cast<MathMacroTemplate &>(*iit->inset);
2545                         MacroContext mc(*this, it);
2546                         macroTemplate.updateToContext(mc);
2547
2548                         // valid?
2549                         bool valid = macroTemplate.validMacro();
2550                         // FIXME: Should be fixNameAndCheckIfValid() in fact,
2551                         // then the BufferView's cursor will be invalid in
2552                         // some cases which leads to crashes.
2553                         if (!valid)
2554                                 continue;
2555
2556                         // register macro
2557                         d->macros[macroTemplate.name()][it] =
2558                                 Impl::ScopeMacro(scope, MacroData(*this, it));
2559                 }
2560
2561                 // next paragraph
2562                 it.pit()++;
2563                 it.pos() = 0;
2564         }
2565 }
2566
2567
2568 void Buffer::updateMacros() const
2569 {
2570         if (d->macro_lock)
2571                 return;
2572
2573         LYXERR(Debug::MACROS, "updateMacro of " << d->filename.onlyFileName());
2574
2575         // start with empty table
2576         d->macros.clear();
2577         d->children_positions.clear();
2578         d->position_to_children.clear();
2579
2580         // Iterate over buffer, starting with first paragraph
2581         // The scope must be bigger than any lookup DocIterator
2582         // later. For the global lookup, lastpit+1 is used, hence
2583         // we use lastpit+2 here.
2584         DocIterator it = par_iterator_begin();
2585         DocIterator outerScope = it;
2586         outerScope.pit() = outerScope.lastpit() + 2;
2587         updateMacros(it, outerScope);
2588 }
2589
2590
2591 void Buffer::getUsedBranches(std::list<docstring> & result, bool const from_master) const
2592 {
2593         InsetIterator it  = inset_iterator_begin(inset());
2594         InsetIterator const end = inset_iterator_end(inset());
2595         for (; it != end; ++it) {
2596                 if (it->lyxCode() == BRANCH_CODE) {
2597                         InsetBranch & br = static_cast<InsetBranch &>(*it);
2598                         docstring const name = br.branch();
2599                         if (!from_master && !params().branchlist().find(name))
2600                                 result.push_back(name);
2601                         else if (from_master && !masterBuffer()->params().branchlist().find(name))
2602                                 result.push_back(name);
2603                         continue;
2604                 }
2605                 if (it->lyxCode() == INCLUDE_CODE) {
2606                         // get buffer of external file
2607                         InsetInclude const & ins =
2608                                 static_cast<InsetInclude const &>(*it);
2609                         Buffer * child = ins.getChildBuffer();
2610                         if (!child)
2611                                 continue;
2612                         child->getUsedBranches(result, true);
2613                 }
2614         }
2615         // remove duplicates
2616         result.unique();
2617 }
2618
2619
2620 void Buffer::updateMacroInstances() const
2621 {
2622         LYXERR(Debug::MACROS, "updateMacroInstances for "
2623                 << d->filename.onlyFileName());
2624         DocIterator it = doc_iterator_begin(this);
2625         DocIterator end = doc_iterator_end(this);
2626         for (; it != end; it.forwardPos()) {
2627                 // look for MathData cells in InsetMathNest insets
2628                 Inset * inset = it.nextInset();
2629                 if (!inset)
2630                         continue;
2631
2632                 InsetMath * minset = inset->asInsetMath();
2633                 if (!minset)
2634                         continue;
2635
2636                 // update macro in all cells of the InsetMathNest
2637                 DocIterator::idx_type n = minset->nargs();
2638                 MacroContext mc = MacroContext(*this, it);
2639                 for (DocIterator::idx_type i = 0; i < n; ++i) {
2640                         MathData & data = minset->cell(i);
2641                         data.updateMacros(0, mc);
2642                 }
2643         }
2644 }
2645
2646
2647 void Buffer::listMacroNames(MacroNameSet & macros) const
2648 {
2649         if (d->macro_lock)
2650                 return;
2651
2652         d->macro_lock = true;
2653
2654         // loop over macro names
2655         Impl::NamePositionScopeMacroMap::iterator nameIt = d->macros.begin();
2656         Impl::NamePositionScopeMacroMap::iterator nameEnd = d->macros.end();
2657         for (; nameIt != nameEnd; ++nameIt)
2658                 macros.insert(nameIt->first);
2659
2660         // loop over children
2661         Impl::BufferPositionMap::iterator it = d->children_positions.begin();
2662         Impl::BufferPositionMap::iterator end = d->children_positions.end();
2663         for (; it != end; ++it)
2664                 it->first->listMacroNames(macros);
2665
2666         // call parent
2667         Buffer const * const pbuf = d->parent();
2668         if (pbuf)
2669                 pbuf->listMacroNames(macros);
2670
2671         d->macro_lock = false;
2672 }
2673
2674
2675 void Buffer::listParentMacros(MacroSet & macros, LaTeXFeatures & features) const
2676 {
2677         Buffer const * const pbuf = d->parent();
2678         if (!pbuf)
2679                 return;
2680
2681         MacroNameSet names;
2682         pbuf->listMacroNames(names);
2683
2684         // resolve macros
2685         MacroNameSet::iterator it = names.begin();
2686         MacroNameSet::iterator end = names.end();
2687         for (; it != end; ++it) {
2688                 // defined?
2689                 MacroData const * data =
2690                 pbuf->getMacro(*it, *this, false);
2691                 if (data) {
2692                         macros.insert(data);
2693
2694                         // we cannot access the original MathMacroTemplate anymore
2695                         // here to calls validate method. So we do its work here manually.
2696                         // FIXME: somehow make the template accessible here.
2697                         if (data->optionals() > 0)
2698                                 features.require("xargs");
2699                 }
2700         }
2701 }
2702
2703
2704 Buffer::References & Buffer::references(docstring const & label)
2705 {
2706         if (d->parent())
2707                 return const_cast<Buffer *>(masterBuffer())->references(label);
2708
2709         RefCache::iterator it = d->ref_cache_.find(label);
2710         if (it != d->ref_cache_.end())
2711                 return it->second.second;
2712
2713         static InsetLabel const * dummy_il = 0;
2714         static References const dummy_refs;
2715         it = d->ref_cache_.insert(
2716                 make_pair(label, make_pair(dummy_il, dummy_refs))).first;
2717         return it->second.second;
2718 }
2719
2720
2721 Buffer::References const & Buffer::references(docstring const & label) const
2722 {
2723         return const_cast<Buffer *>(this)->references(label);
2724 }
2725
2726
2727 void Buffer::setInsetLabel(docstring const & label, InsetLabel const * il)
2728 {
2729         masterBuffer()->d->ref_cache_[label].first = il;
2730 }
2731
2732
2733 InsetLabel const * Buffer::insetLabel(docstring const & label) const
2734 {
2735         return masterBuffer()->d->ref_cache_[label].first;
2736 }
2737
2738
2739 void Buffer::clearReferenceCache() const
2740 {
2741         if (!d->parent())
2742                 d->ref_cache_.clear();
2743 }
2744
2745
2746 void Buffer::changeRefsIfUnique(docstring const & from, docstring const & to,
2747         InsetCode code)
2748 {
2749         //FIXME: This does not work for child documents yet.
2750         LASSERT(code == CITE_CODE, /**/);
2751         // Check if the label 'from' appears more than once
2752         vector<docstring> labels;
2753         string paramName;
2754         BiblioInfo const & keys = masterBibInfo();
2755         BiblioInfo::const_iterator bit  = keys.begin();
2756         BiblioInfo::const_iterator bend = keys.end();
2757
2758         for (; bit != bend; ++bit)
2759                 // FIXME UNICODE
2760                 labels.push_back(bit->first);
2761         paramName = "key";
2762
2763         if (count(labels.begin(), labels.end(), from) > 1)
2764                 return;
2765
2766         for (InsetIterator it = inset_iterator_begin(inset()); it; ++it) {
2767                 if (it->lyxCode() == code) {
2768                         InsetCommand & inset = static_cast<InsetCommand &>(*it);
2769                         docstring const oldValue = inset.getParam(paramName);
2770                         if (oldValue == from)
2771                                 inset.setParam(paramName, to);
2772                 }
2773         }
2774 }
2775
2776
2777 void Buffer::getSourceCode(odocstream & os, pit_type par_begin,
2778         pit_type par_end, bool full_source) const
2779 {
2780         OutputParams runparams(&params().encoding());
2781         runparams.nice = true;
2782         runparams.flavor = params().useXetex ? 
2783                 OutputParams::XETEX : OutputParams::LATEX;
2784         runparams.linelen = lyxrc.plaintext_linelen;
2785         // No side effect of file copying and image conversion
2786         runparams.dryrun = true;
2787
2788         if (full_source) {
2789                 os << "% " << _("Preview source code") << "\n\n";
2790                 d->texrow.reset();
2791                 d->texrow.newline();
2792                 d->texrow.newline();
2793                 if (isDocBook())
2794                         writeDocBookSource(os, absFileName(), runparams, false);
2795                 else
2796                         // latex or literate
2797                         writeLaTeXSource(os, string(), runparams, true, true);
2798         } else {
2799                 runparams.par_begin = par_begin;
2800                 runparams.par_end = par_end;
2801                 if (par_begin + 1 == par_end) {
2802                         os << "% "
2803                            << bformat(_("Preview source code for paragraph %1$d"), par_begin)
2804                            << "\n\n";
2805                 } else {
2806                         os << "% "
2807                            << bformat(_("Preview source code from paragraph %1$s to %2$s"),
2808                                         convert<docstring>(par_begin),
2809                                         convert<docstring>(par_end - 1))
2810                            << "\n\n";
2811                 }
2812                 TexRow texrow;
2813                 texrow.reset();
2814                 texrow.newline();
2815                 texrow.newline();
2816                 // output paragraphs
2817                 if (isDocBook())
2818                         docbookParagraphs(text(), *this, os, runparams);
2819                 else 
2820                         // latex or literate
2821                         latexParagraphs(*this, text(), os, texrow, runparams);
2822         }
2823 }
2824
2825
2826 ErrorList & Buffer::errorList(string const & type) const
2827 {
2828         static ErrorList emptyErrorList;
2829         map<string, ErrorList>::iterator I = d->errorLists.find(type);
2830         if (I == d->errorLists.end())
2831                 return emptyErrorList;
2832
2833         return I->second;
2834 }
2835
2836
2837 void Buffer::updateTocItem(std::string const & type,
2838         DocIterator const & dit) const
2839 {
2840         if (gui_)
2841                 gui_->updateTocItem(type, dit);
2842 }
2843
2844
2845 void Buffer::structureChanged() const
2846 {
2847         if (gui_)
2848                 gui_->structureChanged();
2849 }
2850
2851
2852 void Buffer::errors(string const & err, bool from_master) const
2853 {
2854         if (gui_)
2855                 gui_->errors(err, from_master);
2856 }
2857
2858
2859 void Buffer::message(docstring const & msg) const
2860 {
2861         if (gui_)
2862                 gui_->message(msg);
2863 }
2864
2865
2866 void Buffer::setBusy(bool on) const
2867 {
2868         if (gui_)
2869                 gui_->setBusy(on);
2870 }
2871
2872
2873 void Buffer::setReadOnly(bool on) const
2874 {
2875         if (d->wa_)
2876                 d->wa_->setReadOnly(on);
2877 }
2878
2879
2880 void Buffer::updateTitles() const
2881 {
2882         if (d->wa_)
2883                 d->wa_->updateTitles();
2884 }
2885
2886
2887 void Buffer::resetAutosaveTimers() const
2888 {
2889         if (gui_)
2890                 gui_->resetAutosaveTimers();
2891 }
2892
2893
2894 bool Buffer::hasGuiDelegate() const
2895 {
2896         return gui_;
2897 }
2898
2899
2900 void Buffer::setGuiDelegate(frontend::GuiBufferDelegate * gui)
2901 {
2902         gui_ = gui;
2903 }
2904
2905
2906
2907 namespace {
2908
2909 class AutoSaveBuffer : public ForkedProcess {
2910 public:
2911         ///
2912         AutoSaveBuffer(Buffer const & buffer, FileName const & fname)
2913                 : buffer_(buffer), fname_(fname) {}
2914         ///
2915         virtual boost::shared_ptr<ForkedProcess> clone() const
2916         {
2917                 return boost::shared_ptr<ForkedProcess>(new AutoSaveBuffer(*this));
2918         }
2919         ///
2920         int start()
2921         {
2922                 command_ = to_utf8(bformat(_("Auto-saving %1$s"),
2923                                                  from_utf8(fname_.absFilename())));
2924                 return run(DontWait);
2925         }
2926 private:
2927         ///
2928         virtual int generateChild();
2929         ///
2930         Buffer const & buffer_;
2931         FileName fname_;
2932 };
2933
2934
2935 int AutoSaveBuffer::generateChild()
2936 {
2937         // tmp_ret will be located (usually) in /tmp
2938         // will that be a problem?
2939         // Note that this calls ForkedCalls::fork(), so it's
2940         // ok cross-platform.
2941         pid_t const pid = fork();
2942         // If you want to debug the autosave
2943         // you should set pid to -1, and comment out the fork.
2944         if (pid != 0 && pid != -1)
2945                 return pid;
2946
2947         // pid = -1 signifies that lyx was unable
2948         // to fork. But we will do the save
2949         // anyway.
2950         bool failed = false;
2951         FileName const tmp_ret = FileName::tempName("lyxauto");
2952         if (!tmp_ret.empty()) {
2953                 buffer_.writeFile(tmp_ret);
2954                 // assume successful write of tmp_ret
2955                 if (!tmp_ret.moveTo(fname_))
2956                         failed = true;
2957         } else
2958                 failed = true;
2959
2960         if (failed) {
2961                 // failed to write/rename tmp_ret so try writing direct
2962                 if (!buffer_.writeFile(fname_)) {
2963                         // It is dangerous to do this in the child,
2964                         // but safe in the parent, so...
2965                         if (pid == -1) // emit message signal.
2966                                 buffer_.message(_("Autosave failed!"));
2967                 }
2968         }
2969
2970         if (pid == 0) // we are the child so...
2971                 _exit(0);
2972
2973         return pid;
2974 }
2975
2976 } // namespace anon
2977
2978
2979 FileName Buffer::getAutosaveFilename() const
2980 {
2981         // if the document is unnamed try to save in the backup dir, else
2982         // in the default document path, and as a last try in the filePath, 
2983         // which will most often be the temporary directory
2984         string fpath;
2985         if (isUnnamed())
2986                 fpath = lyxrc.backupdir_path.empty() ? lyxrc.document_path
2987                         : lyxrc.backupdir_path;
2988         if (!isUnnamed() || fpath.empty() || !FileName(fpath).exists())
2989                 fpath = filePath();
2990
2991         string const fname = "#" + d->filename.onlyFileName() + "#";
2992         return makeAbsPath(fname, fpath);
2993 }
2994
2995
2996 void Buffer::removeAutosaveFile() const
2997 {
2998         FileName const f = getAutosaveFilename();
2999         if (f.exists())
3000                 f.removeFile();
3001 }
3002
3003
3004 void Buffer::moveAutosaveFile(support::FileName const & oldauto) const
3005 {
3006         FileName const newauto = getAutosaveFilename();
3007         if (!(oldauto == newauto || oldauto.moveTo(newauto)))
3008                 LYXERR0("Unable to remove autosave file `" << oldauto << "'!");
3009 }
3010
3011
3012 // Perfect target for a thread...
3013 void Buffer::autoSave() const
3014 {
3015         if (isBakClean() || isReadonly()) {
3016                 // We don't save now, but we'll try again later
3017                 resetAutosaveTimers();
3018                 return;
3019         }
3020
3021         // emit message signal.
3022         message(_("Autosaving current document..."));
3023         AutoSaveBuffer autosave(*this, getAutosaveFilename());
3024         autosave.start();
3025
3026         markBakClean();
3027         resetAutosaveTimers();
3028 }
3029
3030
3031 string Buffer::bufferFormat() const
3032 {
3033         string format = params().documentClass().outputFormat();
3034         if (format == "latex") {
3035                 if (params().useXetex)
3036                         return "xetex";
3037                 if (params().encoding().package() == Encoding::japanese)
3038                         return "platex";
3039         }
3040         return format;
3041 }
3042
3043
3044 string Buffer::getDefaultOutputFormat() const
3045 {
3046         if (!params().defaultOutputFormat.empty()
3047             && params().defaultOutputFormat != "default")
3048                 return params().defaultOutputFormat;
3049         typedef vector<Format const *> Formats;
3050         Formats formats = exportableFormats(true);
3051         if (isDocBook()
3052             || isLiterate()
3053             || params().useXetex
3054             || params().encoding().package() == Encoding::japanese) {
3055                 if (formats.empty())
3056                         return string();
3057                 // return the first we find
3058                 return formats.front()->name();
3059         }
3060         return lyxrc.default_view_format;
3061 }
3062
3063
3064
3065 bool Buffer::doExport(string const & format, bool put_in_tempdir,
3066         string & result_file) const
3067 {
3068         string backend_format;
3069         OutputParams runparams(&params().encoding());
3070         runparams.flavor = OutputParams::LATEX;
3071         runparams.linelen = lyxrc.plaintext_linelen;
3072         vector<string> backs = backends();
3073         if (find(backs.begin(), backs.end(), format) == backs.end()) {
3074                 // Get shortest path to format
3075                 Graph::EdgePath path;
3076                 for (vector<string>::const_iterator it = backs.begin();
3077                      it != backs.end(); ++it) {
3078                         Graph::EdgePath p = theConverters().getPath(*it, format);
3079                         if (!p.empty() && (path.empty() || p.size() < path.size())) {
3080                                 backend_format = *it;
3081                                 path = p;
3082                         }
3083                 }
3084                 if (!path.empty())
3085                         runparams.flavor = theConverters().getFlavor(path);
3086                 else {
3087                         Alert::error(_("Couldn't export file"),
3088                                 bformat(_("No information for exporting the format %1$s."),
3089                                    formats.prettyName(format)));
3090                         return false;
3091                 }
3092         } else {
3093                 backend_format = format;
3094                 // FIXME: Don't hardcode format names here, but use a flag
3095                 if (backend_format == "pdflatex")
3096                         runparams.flavor = OutputParams::PDFLATEX;
3097         }
3098
3099         string filename = latexName(false);
3100         filename = addName(temppath(), filename);
3101         filename = changeExtension(filename,
3102                                    formats.extension(backend_format));
3103
3104         // fix macros
3105         updateMacroInstances();
3106
3107         // Plain text backend
3108         if (backend_format == "text")
3109                 writePlaintextFile(*this, FileName(filename), runparams);
3110         // no backend
3111         else if (backend_format == "xhtml")
3112                 makeLyXHTMLFile(FileName(filename), runparams);
3113         else if (backend_format == "lyx")
3114                 writeFile(FileName(filename));
3115         // Docbook backend
3116         else if (isDocBook()) {
3117                 runparams.nice = !put_in_tempdir;
3118                 makeDocBookFile(FileName(filename), runparams);
3119         }
3120         // LaTeX backend
3121         else if (backend_format == format) {
3122                 runparams.nice = true;
3123                 if (!makeLaTeXFile(FileName(filename), string(), runparams))
3124                         return false;
3125         } else if (!lyxrc.tex_allows_spaces
3126                    && contains(filePath(), ' ')) {
3127                 Alert::error(_("File name error"),
3128                            _("The directory path to the document cannot contain spaces."));
3129                 return false;
3130         } else {
3131                 runparams.nice = false;
3132                 if (!makeLaTeXFile(FileName(filename), filePath(), runparams))
3133                         return false;
3134         }
3135
3136         string const error_type = (format == "program")
3137                 ? "Build" : bufferFormat();
3138         ErrorList & error_list = d->errorLists[error_type];
3139         string const ext = formats.extension(format);
3140         FileName const tmp_result_file(changeExtension(filename, ext));
3141         bool const success = theConverters().convert(this, FileName(filename),
3142                 tmp_result_file, FileName(absFileName()), backend_format, format,
3143                 error_list);
3144         // Emit the signal to show the error list.
3145         if (format != backend_format) {
3146                 errors(error_type);
3147                 // also to the children, in case of master-buffer-view
3148                 std::vector<Buffer *> clist = getChildren();
3149                 for (vector<Buffer *>::const_iterator cit = clist.begin();
3150                      cit != clist.end(); ++cit)
3151                         (*cit)->errors(error_type, true);
3152         }
3153         if (!success)
3154                 return false;
3155
3156         if (put_in_tempdir) {
3157                 result_file = tmp_result_file.absFilename();
3158                 return true;
3159         }
3160
3161         result_file = changeExtension(exportFileName().absFilename(), ext);
3162         // We need to copy referenced files (e. g. included graphics
3163         // if format == "dvi") to the result dir.
3164         vector<ExportedFile> const files =
3165                 runparams.exportdata->externalFiles(format);
3166         string const dest = onlyPath(result_file);
3167         CopyStatus status = SUCCESS;
3168         for (vector<ExportedFile>::const_iterator it = files.begin();
3169                 it != files.end() && status != CANCEL; ++it) {
3170                 string const fmt = formats.getFormatFromFile(it->sourceName);
3171                 status = copyFile(fmt, it->sourceName,
3172                         makeAbsPath(it->exportName, dest),
3173                         it->exportName, status == FORCE);
3174         }
3175         if (status == CANCEL) {
3176                 message(_("Document export cancelled."));
3177         } else if (tmp_result_file.exists()) {
3178                 // Finally copy the main file
3179                 status = copyFile(format, tmp_result_file,
3180                         FileName(result_file), result_file,
3181                         status == FORCE);
3182                 message(bformat(_("Document exported as %1$s "
3183                         "to file `%2$s'"),
3184                         formats.prettyName(format),
3185                         makeDisplayPath(result_file)));
3186         } else {
3187                 // This must be a dummy converter like fax (bug 1888)
3188                 message(bformat(_("Document exported as %1$s"),
3189                         formats.prettyName(format)));
3190         }
3191
3192         return true;
3193 }
3194
3195
3196 bool Buffer::doExport(string const & format, bool put_in_tempdir) const
3197 {
3198         string result_file;
3199         return doExport(format, put_in_tempdir, result_file);
3200 }
3201
3202
3203 bool Buffer::preview(string const & format) const
3204 {
3205         string result_file;
3206         if (!doExport(format, true, result_file))
3207                 return false;
3208         return formats.view(*this, FileName(result_file), format);
3209 }
3210
3211
3212 bool Buffer::isExportable(string const & format) const
3213 {
3214         vector<string> backs = backends();
3215         for (vector<string>::const_iterator it = backs.begin();
3216              it != backs.end(); ++it)
3217                 if (theConverters().isReachable(*it, format))
3218                         return true;
3219         return false;
3220 }
3221
3222
3223 vector<Format const *> Buffer::exportableFormats(bool only_viewable) const
3224 {
3225         vector<string> backs = backends();
3226         vector<Format const *> result =
3227                 theConverters().getReachable(backs[0], only_viewable, true);
3228         for (vector<string>::const_iterator it = backs.begin() + 1;
3229              it != backs.end(); ++it) {
3230                 vector<Format const *>  r =
3231                         theConverters().getReachable(*it, only_viewable, false);
3232                 result.insert(result.end(), r.begin(), r.end());
3233         }
3234         return result;
3235 }
3236
3237
3238 vector<string> Buffer::backends() const
3239 {
3240         vector<string> v;
3241         if (params().baseClass()->isTeXClassAvailable()) {
3242                 v.push_back(bufferFormat());
3243                 // FIXME: Don't hardcode format names here, but use a flag
3244                 if (v.back() == "latex")
3245                         v.push_back("pdflatex");
3246         }
3247         v.push_back("text");
3248         v.push_back("xhtml");
3249         v.push_back("lyx");
3250         return v;
3251 }
3252
3253
3254 bool Buffer::readFileHelper(FileName const & s)
3255 {
3256         // File information about normal file
3257         if (!s.exists()) {
3258                 docstring const file = makeDisplayPath(s.absFilename(), 50);
3259                 docstring text = bformat(_("The specified document\n%1$s"
3260                                                      "\ncould not be read."), file);
3261                 Alert::error(_("Could not read document"), text);
3262                 return false;
3263         }
3264
3265         // Check if emergency save file exists and is newer.
3266         FileName const e(s.absFilename() + ".emergency");
3267
3268         if (e.exists() && s.exists() && e.lastModified() > s.lastModified()) {
3269                 docstring const file = makeDisplayPath(s.absFilename(), 20);
3270                 docstring const text =
3271                         bformat(_("An emergency save of the document "
3272                                   "%1$s exists.\n\n"
3273                                                "Recover emergency save?"), file);
3274                 switch (Alert::prompt(_("Load emergency save?"), text, 0, 2,
3275                                       _("&Recover"),  _("&Load Original"),
3276                                       _("&Cancel")))
3277                 {
3278                 case 0: {
3279                         // the file is not saved if we load the emergency file.
3280                         markDirty();
3281                         docstring str;
3282                         bool res;
3283
3284                         if ((res = readFile(e)) == success)
3285                                 str = _("Document was successfully recovered.");
3286                         else
3287                                 str = _("Document was NOT successfully recovered.");
3288                         str += "\n\n" + _("Remove emergency file now?");
3289
3290                         if (!Alert::prompt(_("Delete emergency file?"), str, 1, 1,
3291                                         _("&Remove"), _("&Keep it"))) {
3292                                 e.removeFile();
3293                                 if (res == success)
3294                                         Alert::warning(_("Emergency file deleted"),
3295                                                 _("Do not forget to save your file now!"), true);
3296                                 }
3297                         return res;
3298                 }
3299                 case 1:
3300                         if (!Alert::prompt(_("Delete emergency file?"),
3301                                         _("Remove emergency file now?"), 1, 1,
3302                                         _("&Remove"), _("&Keep it")))
3303                                 e.removeFile();
3304                         break;
3305                 default:
3306                         return false;
3307                 }
3308         }
3309
3310         // Now check if autosave file is newer.
3311         FileName const a(onlyPath(s.absFilename()) + '#' + onlyFilename(s.absFilename()) + '#');
3312
3313         if (a.exists() && s.exists() && a.lastModified() > s.lastModified()) {
3314                 docstring const file = makeDisplayPath(s.absFilename(), 20);
3315                 docstring const text =
3316                         bformat(_("The backup of the document "
3317                                   "%1$s is newer.\n\nLoad the "
3318                                                "backup instead?"), file);
3319                 switch (Alert::prompt(_("Load backup?"), text, 0, 2,
3320                                       _("&Load backup"), _("Load &original"),
3321                                       _("&Cancel") ))
3322                 {
3323                 case 0:
3324                         // the file is not saved if we load the autosave file.
3325                         markDirty();
3326                         return readFile(a);
3327                 case 1:
3328                         // Here we delete the autosave
3329                         a.removeFile();
3330                         break;
3331                 default:
3332                         return false;
3333                 }
3334         }
3335         return readFile(s);
3336 }
3337
3338
3339 bool Buffer::loadLyXFile(FileName const & s)
3340 {
3341         if (s.isReadableFile()) {
3342                 if (readFileHelper(s)) {
3343                         lyxvc().file_found_hook(s);
3344                         if (!s.isWritable())
3345                                 setReadonly(true);
3346                         return true;
3347                 }
3348         } else {
3349                 docstring const file = makeDisplayPath(s.absFilename(), 20);
3350                 // Here we probably should run
3351                 if (LyXVC::file_not_found_hook(s)) {
3352                         docstring const text =
3353                                 bformat(_("Do you want to retrieve the document"
3354                                                        " %1$s from version control?"), file);
3355                         int const ret = Alert::prompt(_("Retrieve from version control?"),
3356                                 text, 0, 1, _("&Retrieve"), _("&Cancel"));
3357
3358                         if (ret == 0) {
3359                                 // How can we know _how_ to do the checkout?
3360                                 // With the current VC support it has to be,
3361                                 // a RCS file since CVS do not have special ,v files.
3362                                 RCS::retrieve(s);
3363                                 return loadLyXFile(s);
3364                         }
3365                 }
3366         }
3367         return false;
3368 }
3369
3370
3371 void Buffer::bufferErrors(TeXErrors const & terr, ErrorList & errorList) const
3372 {
3373         TeXErrors::Errors::const_iterator cit = terr.begin();
3374         TeXErrors::Errors::const_iterator end = terr.end();
3375
3376         for (; cit != end; ++cit) {
3377                 int id_start = -1;
3378                 int pos_start = -1;
3379                 int errorRow = cit->error_in_line;
3380                 bool found = d->texrow.getIdFromRow(errorRow, id_start,
3381                                                        pos_start);
3382                 int id_end = -1;
3383                 int pos_end = -1;
3384                 do {
3385                         ++errorRow;
3386                         found = d->texrow.getIdFromRow(errorRow, id_end, pos_end);
3387                 } while (found && id_start == id_end && pos_start == pos_end);
3388
3389                 errorList.push_back(ErrorItem(cit->error_desc,
3390                         cit->error_text, id_start, pos_start, pos_end));
3391         }
3392 }
3393
3394
3395 void Buffer::setBuffersForInsets() const
3396 {
3397         inset().setBuffer(const_cast<Buffer &>(*this)); 
3398 }
3399
3400
3401 void Buffer::updateLabels(UpdateScope scope) const
3402 {
3403         // Use the master text class also for child documents
3404         Buffer const * const master = masterBuffer();
3405         DocumentClass const & textclass = master->params().documentClass();
3406
3407         // keep the buffers to be children in this set. If the call from the
3408         // master comes back we can see which of them were actually seen (i.e.
3409         // via an InsetInclude). The remaining ones in the set need still be updated.
3410         static std::set<Buffer const *> bufToUpdate;
3411         if (scope == UpdateMaster) {
3412                 // If this is a child document start with the master
3413                 if (master != this) {
3414                         bufToUpdate.insert(this);
3415                         master->updateLabels();
3416                         // Do this here in case the master has no gui associated with it. Then, 
3417                         // the TocModel is not updated and TocModel::toc_ is invalid (bug 5699).
3418                         if (!master->gui_)
3419                                 structureChanged();
3420
3421                         // was buf referenced from the master (i.e. not in bufToUpdate anymore)?
3422                         if (bufToUpdate.find(this) == bufToUpdate.end())
3423                                 return;
3424                 }
3425
3426                 // start over the counters in the master
3427                 textclass.counters().reset();
3428         }
3429
3430         // update will be done below for this buffer
3431         bufToUpdate.erase(this);
3432
3433         // update all caches
3434         clearReferenceCache();
3435         updateMacros();
3436
3437         Buffer & cbuf = const_cast<Buffer &>(*this);
3438
3439         LASSERT(!text().paragraphs().empty(), /**/);
3440
3441         // do the real work
3442         ParIterator parit = cbuf.par_iterator_begin();
3443         updateLabels(parit);
3444
3445         if (master != this)
3446                 // TocBackend update will be done later.
3447                 return;
3448
3449         cbuf.tocBackend().update();
3450         if (scope == UpdateMaster)
3451                 cbuf.structureChanged();
3452 }
3453
3454
3455 static depth_type getDepth(DocIterator const & it)
3456 {
3457         depth_type depth = 0;
3458         for (size_t i = 0 ; i < it.depth() ; ++i)
3459                 if (!it[i].inset().inMathed())
3460                         depth += it[i].paragraph().getDepth() + 1;
3461         // remove 1 since the outer inset does not count
3462         return depth - 1;
3463 }
3464
3465 static depth_type getItemDepth(ParIterator const & it)
3466 {
3467         Paragraph const & par = *it;
3468         LabelType const labeltype = par.layout().labeltype;
3469
3470         if (labeltype != LABEL_ENUMERATE && labeltype != LABEL_ITEMIZE)
3471                 return 0;
3472
3473         // this will hold the lowest depth encountered up to now.
3474         depth_type min_depth = getDepth(it);
3475         ParIterator prev_it = it;
3476         while (true) {
3477                 if (prev_it.pit())
3478                         --prev_it.top().pit();
3479                 else {
3480                         // start of nested inset: go to outer par
3481                         prev_it.pop_back();
3482                         if (prev_it.empty()) {
3483                                 // start of document: nothing to do
3484                                 return 0;
3485                         }
3486                 }
3487
3488                 // We search for the first paragraph with same label
3489                 // that is not more deeply nested.
3490                 Paragraph & prev_par = *prev_it;
3491                 depth_type const prev_depth = getDepth(prev_it);
3492                 if (labeltype == prev_par.layout().labeltype) {
3493                         if (prev_depth < min_depth)
3494                                 return prev_par.itemdepth + 1;
3495                         if (prev_depth == min_depth)
3496                                 return prev_par.itemdepth;
3497                 }
3498                 min_depth = min(min_depth, prev_depth);
3499                 // small optimization: if we are at depth 0, we won't
3500                 // find anything else
3501                 if (prev_depth == 0)
3502                         return 0;
3503         }
3504 }
3505
3506
3507 static bool needEnumCounterReset(ParIterator const & it)
3508 {
3509         Paragraph const & par = *it;
3510         LASSERT(par.layout().labeltype == LABEL_ENUMERATE, /**/);
3511         depth_type const cur_depth = par.getDepth();
3512         ParIterator prev_it = it;
3513         while (prev_it.pit()) {
3514                 --prev_it.top().pit();
3515                 Paragraph const & prev_par = *prev_it;
3516                 if (prev_par.getDepth() <= cur_depth)
3517                         return  prev_par.layout().labeltype != LABEL_ENUMERATE;
3518         }
3519         // start of nested inset: reset
3520         return true;
3521 }
3522
3523
3524 // set the label of a paragraph. This includes the counters.
3525 static void setLabel(Buffer const & buf, ParIterator & it)
3526 {
3527         BufferParams const & bp = buf.masterBuffer()->params();
3528         DocumentClass const & textclass = bp.documentClass();
3529         Paragraph & par = it.paragraph();
3530         Layout const & layout = par.layout();
3531         Counters & counters = textclass.counters();
3532
3533         if (par.params().startOfAppendix()) {
3534                 // FIXME: only the counter corresponding to toplevel
3535                 // sectionning should be reset
3536                 counters.reset();
3537                 counters.appendix(true);
3538         }
3539         par.params().appendix(counters.appendix());
3540
3541         // Compute the item depth of the paragraph
3542         par.itemdepth = getItemDepth(it);
3543
3544         if (layout.margintype == MARGIN_MANUAL
3545             || layout.latextype == LATEX_BIB_ENVIRONMENT) {
3546                 if (par.params().labelWidthString().empty())
3547                         par.params().labelWidthString(par.expandLabel(layout, bp));
3548         } else {
3549                 par.params().labelWidthString(docstring());
3550         }
3551
3552         switch(layout.labeltype) {
3553         case LABEL_COUNTER:
3554                 if (layout.toclevel <= bp.secnumdepth
3555                     && (layout.latextype != LATEX_ENVIRONMENT
3556                         || it.text()->isFirstInSequence(it.pit()))) {
3557                         counters.step(layout.counter);
3558                         par.params().labelString(
3559                                 par.expandLabel(layout, bp));
3560                 } else
3561                         par.params().labelString(docstring());
3562                 break;
3563
3564         case LABEL_ITEMIZE: {
3565                 // At some point of time we should do something more
3566                 // clever here, like:
3567                 //   par.params().labelString(
3568                 //    bp.user_defined_bullet(par.itemdepth).getText());
3569                 // for now, use a simple hardcoded label
3570                 docstring itemlabel;
3571                 switch (par.itemdepth) {
3572                 case 0:
3573                         itemlabel = char_type(0x2022);
3574                         break;
3575                 case 1:
3576                         itemlabel = char_type(0x2013);
3577                         break;
3578                 case 2:
3579                         itemlabel = char_type(0x2217);
3580                         break;
3581                 case 3:
3582                         itemlabel = char_type(0x2219); // or 0x00b7
3583                         break;
3584                 }
3585                 par.params().labelString(itemlabel);
3586                 break;
3587         }
3588
3589         case LABEL_ENUMERATE: {
3590                 docstring enumcounter = layout.counter.empty() ? from_ascii("enum") : layout.counter;
3591
3592                 switch (par.itemdepth) {
3593                 case 2:
3594                         enumcounter += 'i';
3595                 case 1:
3596                         enumcounter += 'i';
3597                 case 0:
3598                         enumcounter += 'i';
3599                         break;
3600                 case 3:
3601                         enumcounter += "iv";
3602                         break;
3603                 default:
3604                         // not a valid enumdepth...
3605                         break;
3606                 }
3607
3608                 // Maybe we have to reset the enumeration counter.
3609                 if (needEnumCounterReset(it))
3610                         counters.reset(enumcounter);
3611                 counters.step(enumcounter);
3612
3613                 string const & lang = par.getParLanguage(bp)->code();
3614                 par.params().labelString(counters.theCounter(enumcounter, lang));
3615
3616                 break;
3617         }
3618
3619         case LABEL_SENSITIVE: {
3620                 string const & type = counters.current_float();
3621                 docstring full_label;
3622                 if (type.empty())
3623                         full_label = buf.B_("Senseless!!! ");
3624                 else {
3625                         docstring name = buf.B_(textclass.floats().getType(type).name());
3626                         if (counters.hasCounter(from_utf8(type))) {
3627                                 string const & lang = par.getParLanguage(bp)->code();
3628                                 counters.step(from_utf8(type));
3629                                 full_label = bformat(from_ascii("%1$s %2$s:"), 
3630                                                      name, 
3631                                                      counters.theCounter(from_utf8(type), lang));
3632                         } else
3633                                 full_label = bformat(from_ascii("%1$s #:"), name);      
3634                 }
3635                 par.params().labelString(full_label);   
3636                 break;
3637         }
3638
3639         case LABEL_NO_LABEL:
3640                 par.params().labelString(docstring());
3641                 break;
3642
3643         case LABEL_MANUAL:
3644         case LABEL_TOP_ENVIRONMENT:
3645         case LABEL_CENTERED_TOP_ENVIRONMENT:
3646         case LABEL_STATIC:      
3647         case LABEL_BIBLIO:
3648                 par.params().labelString(par.expandLabel(layout, bp));
3649                 break;
3650         }
3651 }
3652
3653
3654 void Buffer::updateLabels(ParIterator & parit) const
3655 {
3656         LASSERT(parit.pit() == 0, /**/);
3657
3658         // set the position of the text in the buffer to be able
3659         // to resolve macros in it. This has nothing to do with
3660         // labels, but by putting it here we avoid implementing
3661         // a whole bunch of traversal routines just for this call.
3662         parit.text()->setMacrocontextPosition(parit);
3663
3664         depth_type maxdepth = 0;
3665         pit_type const lastpit = parit.lastpit();
3666         for ( ; parit.pit() <= lastpit ; ++parit.pit()) {
3667                 // reduce depth if necessary
3668                 parit->params().depth(min(parit->params().depth(), maxdepth));
3669                 maxdepth = parit->getMaxDepthAfter();
3670
3671                 // set the counter for this paragraph
3672                 setLabel(*this, parit);
3673
3674                 // Now the insets
3675                 InsetList::const_iterator iit = parit->insetList().begin();
3676                 InsetList::const_iterator end = parit->insetList().end();
3677                 for (; iit != end; ++iit) {
3678                         parit.pos() = iit->pos;
3679                         iit->inset->updateLabels(parit);
3680                 }
3681         }
3682 }
3683
3684
3685 int Buffer::spellCheck(DocIterator & from, DocIterator & to,
3686         WordLangTuple & word_lang, docstring_list & suggestions) const
3687 {
3688         int progress = 0;
3689         WordLangTuple wl;
3690         suggestions.clear();
3691         word_lang = WordLangTuple();
3692         // OK, we start from here.
3693         DocIterator const end = doc_iterator_end(this);
3694         for (; from != end; from.forwardPos()) {
3695                 // We are only interested in text so remove the math CursorSlice.
3696                 while (from.inMathed())
3697                         from.forwardInset();
3698                 to = from;
3699                 if (from.paragraph().spellCheck(from.pos(), to.pos(), wl, suggestions)) {
3700                         word_lang = wl;
3701                         break;
3702                 }
3703                 from = to;
3704                 ++progress;
3705         }
3706         return progress;
3707 }
3708
3709 } // namespace lyx