]> git.lyx.org Git - lyx.git/blob - src/Buffer.cpp
Now we have disentangled writeSession() and closeWorkAreaAll(), we can release child...
[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 (d->unnamed && d->filename.extension() == "internal") {
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 = _("Buffer had unsaved changes when destroyed!\n");
333                 msg += emergencyWrite();
334                 frontend::Alert::warning(_("Attempting to destroy dirty Buffer!"), 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         switch (cmd.action) {
1637                 case LFUN_BUFFER_EXPORT: {
1638                         docstring const arg = cmd.argument();
1639                         bool enable = arg == "custom" || isExportable(to_utf8(arg));
1640                         if (!enable)
1641                                 flag.message(bformat(
1642                                         _("Don't know how to export to format: %1$s"), arg));
1643                         flag.setEnabled(enable);
1644                         break;
1645                 }
1646
1647                 case LFUN_BRANCH_ACTIVATE: 
1648                 case LFUN_BRANCH_DEACTIVATE: {
1649                         BranchList const & branchList = params().branchlist();
1650                         docstring const branchName = cmd.argument();
1651                         flag.setEnabled(!branchName.empty()
1652                                 && branchList.find(branchName));
1653                         break;
1654                 }
1655
1656                 case LFUN_BRANCH_ADD:
1657                 case LFUN_BRANCHES_RENAME:
1658                 case LFUN_BUFFER_PRINT:
1659                         // if no Buffer is present, then of course we won't be called!
1660                         flag.setEnabled(true);
1661                         break;
1662
1663                 default:
1664                         return false;
1665         }
1666         return true;
1667 }
1668
1669
1670 void Buffer::dispatch(string const & command, DispatchResult & result)
1671 {
1672         return dispatch(lyxaction.lookupFunc(command), result);
1673 }
1674
1675
1676 // NOTE We can end up here even if we have no GUI, because we are called
1677 // by LyX::exec to handled command-line requests. So we may need to check 
1678 // whether we have a GUI or not. The boolean use_gui holds this information.
1679 void Buffer::dispatch(FuncRequest const & func, DispatchResult & dr)
1680 {
1681         // We'll set this back to false if need be.
1682         bool dispatched = true;
1683
1684         switch (func.action) {
1685         case LFUN_BUFFER_EXPORT: {
1686                 bool success = doExport(to_utf8(func.argument()), false);
1687                 dr.setError(success);
1688                 if (!success)
1689                         dr.setMessage(bformat(_("Error exporting to format: %1$s."), 
1690                                               func.argument()));
1691                 break;
1692         }
1693
1694         case LFUN_BRANCH_ADD: {
1695                 BranchList & branchList = params().branchlist();
1696                 docstring const branchName = func.argument();
1697                 if (branchName.empty()) {
1698                         dispatched = false;
1699                         break;
1700                 }
1701                 Branch * branch = branchList.find(branchName);
1702                 if (branch) {
1703                         LYXERR0("Branch " << branchName << " does already exist.");
1704                         dr.setError(true);
1705                         docstring const msg = 
1706                                 bformat(_("Branch \"%1$s\" does already exist."), branchName);
1707                         dr.setMessage(msg);
1708                 } else {
1709                         branchList.add(branchName);
1710                         dr.setError(false);
1711                         dr.update(Update::Force);
1712                 }
1713                 break;
1714         }
1715
1716         case LFUN_BRANCH_ACTIVATE:
1717         case LFUN_BRANCH_DEACTIVATE: {
1718                 BranchList & branchList = params().branchlist();
1719                 docstring const branchName = func.argument();
1720                 // the case without a branch name is handled elsewhere
1721                 if (branchName.empty()) {
1722                         dispatched = false;
1723                         break;
1724                 }
1725                 Branch * branch = branchList.find(branchName);
1726                 if (!branch) {
1727                         LYXERR0("Branch " << branchName << " does not exist.");
1728                         dr.setError(true);
1729                         docstring const msg = 
1730                                 bformat(_("Branch \"%1$s\" does not exist."), branchName);
1731                         dr.setMessage(msg);
1732                 } else {
1733                         branch->setSelected(func.action == LFUN_BRANCH_ACTIVATE);
1734                         dr.setError(false);
1735                         dr.update(Update::Force);
1736                 }
1737                 break;
1738         }
1739
1740         case LFUN_BRANCHES_RENAME: {
1741                 if (func.argument().empty())
1742                         break;
1743
1744                 docstring const oldname = from_utf8(func.getArg(0));
1745                 docstring const newname = from_utf8(func.getArg(1));
1746                 InsetIterator it  = inset_iterator_begin(inset());
1747                 InsetIterator const end = inset_iterator_end(inset());
1748                 bool success = false;
1749                 for (; it != end; ++it) {
1750                         if (it->lyxCode() == BRANCH_CODE) {
1751                                 InsetBranch & ins = static_cast<InsetBranch &>(*it);
1752                                 if (ins.branch() == oldname) {
1753                                         undo().recordUndo(it);
1754                                         ins.rename(newname);
1755                                         success = true;
1756                                         continue;
1757                                 }
1758                         }
1759                         if (it->lyxCode() == INCLUDE_CODE) {
1760                                 // get buffer of external file
1761                                 InsetInclude const & ins =
1762                                         static_cast<InsetInclude const &>(*it);
1763                                 Buffer * child = ins.getChildBuffer();
1764                                 if (!child)
1765                                         continue;
1766                                 child->dispatch(func, dr);
1767                         }
1768                 }
1769
1770                 if (success)
1771                         dr.update(Update::Force);
1772                 break;
1773         }
1774
1775         case LFUN_BUFFER_PRINT: {
1776                 // we'll assume there's a problem until we succeed
1777                 dr.setError(true); 
1778                 string target = func.getArg(0);
1779                 string target_name = func.getArg(1);
1780                 string command = func.getArg(2);
1781
1782                 if (target.empty()
1783                     || target_name.empty()
1784                     || command.empty()) {
1785                         LYXERR0("Unable to parse " << func.argument());
1786                         docstring const msg = 
1787                                 bformat(_("Unable to parse \"%1$s\""), func.argument());
1788                         dr.setMessage(msg);
1789                         break;
1790                 }
1791                 if (target != "printer" && target != "file") {
1792                         LYXERR0("Unrecognized target \"" << target << '"');
1793                         docstring const msg = 
1794                                 bformat(_("Unrecognized target \"%1$s\""), from_utf8(target));
1795                         dr.setMessage(msg);
1796                         break;
1797                 }
1798
1799                 if (!doExport("dvi", true)) {
1800                         showPrintError(absFileName());
1801                         dr.setMessage(_("Error exporting to DVI."));
1802                         break;
1803                 }
1804
1805                 // Push directory path.
1806                 string const path = temppath();
1807                 // Prevent the compiler from optimizing away p
1808                 FileName pp(path);
1809                 PathChanger p(pp);
1810
1811                 // there are three cases here:
1812                 // 1. we print to a file
1813                 // 2. we print directly to a printer
1814                 // 3. we print using a spool command (print to file first)
1815                 Systemcall one;
1816                 int res = 0;
1817                 string const dviname = changeExtension(latexName(true), "dvi");
1818
1819                 if (target == "printer") {
1820                         if (!lyxrc.print_spool_command.empty()) {
1821                                 // case 3: print using a spool
1822                                 string const psname = changeExtension(dviname,".ps");
1823                                 command += ' ' + lyxrc.print_to_file
1824                                         + quoteName(psname)
1825                                         + ' '
1826                                         + quoteName(dviname);
1827
1828                                 string command2 = lyxrc.print_spool_command + ' ';
1829                                 if (target_name != "default") {
1830                                         command2 += lyxrc.print_spool_printerprefix
1831                                                 + target_name
1832                                                 + ' ';
1833                                 }
1834                                 command2 += quoteName(psname);
1835                                 // First run dvips.
1836                                 // If successful, then spool command
1837                                 res = one.startscript(Systemcall::Wait, command);
1838
1839                                 if (res == 0) {
1840                                         // If there's no GUI, we have to wait on this command. Otherwise,
1841                                         // LyX deletes the temporary directory, and with it the spooled
1842                                         // file, before it can be printed!!
1843                                         Systemcall::Starttype stype = use_gui ?
1844                                                 Systemcall::DontWait : Systemcall::Wait;
1845                                         res = one.startscript(stype, command2);
1846                                 }
1847                         } else {
1848                                 // case 2: print directly to a printer
1849                                 if (target_name != "default")
1850                                         command += ' ' + lyxrc.print_to_printer + target_name + ' ';
1851                                 // as above....
1852                                 Systemcall::Starttype stype = use_gui ?
1853                                         Systemcall::DontWait : Systemcall::Wait;
1854                                 res = one.startscript(stype, command + quoteName(dviname));
1855                         }
1856
1857                 } else {
1858                         // case 1: print to a file
1859                         FileName const filename(makeAbsPath(target_name, filePath()));
1860                         FileName const dvifile(makeAbsPath(dviname, path));
1861                         if (filename.exists()) {
1862                                 docstring text = bformat(
1863                                         _("The file %1$s already exists.\n\n"
1864                                           "Do you want to overwrite that file?"),
1865                                         makeDisplayPath(filename.absFilename()));
1866                                 if (Alert::prompt(_("Overwrite file?"),
1867                                                   text, 0, 1, _("&Overwrite"), _("&Cancel")) != 0)
1868                                         break;
1869                         }
1870                         command += ' ' + lyxrc.print_to_file
1871                                 + quoteName(filename.toFilesystemEncoding())
1872                                 + ' '
1873                                 + quoteName(dvifile.toFilesystemEncoding());
1874                         // as above....
1875                         Systemcall::Starttype stype = use_gui ?
1876                                 Systemcall::DontWait : Systemcall::Wait;
1877                         res = one.startscript(stype, command);
1878                 }
1879
1880                 if (res == 0) 
1881                         dr.setError(false);
1882                 else {
1883                         dr.setMessage(_("Error running external commands."));
1884                         showPrintError(absFileName());
1885                 }
1886                 break;
1887         }
1888
1889         default:
1890                 dispatched = false;
1891                 break;
1892         }
1893         dr.dispatched(dispatched);
1894 }
1895
1896
1897 void Buffer::changeLanguage(Language const * from, Language const * to)
1898 {
1899         LASSERT(from, /**/);
1900         LASSERT(to, /**/);
1901
1902         for_each(par_iterator_begin(),
1903                  par_iterator_end(),
1904                  bind(&Paragraph::changeLanguage, _1, params(), from, to));
1905 }
1906
1907
1908 bool Buffer::isMultiLingual() const
1909 {
1910         ParConstIterator end = par_iterator_end();
1911         for (ParConstIterator it = par_iterator_begin(); it != end; ++it)
1912                 if (it->isMultiLingual(params()))
1913                         return true;
1914
1915         return false;
1916 }
1917
1918
1919 DocIterator Buffer::getParFromID(int const id) const
1920 {
1921         Buffer * buf = const_cast<Buffer *>(this);
1922         if (id < 0) {
1923                 // John says this is called with id == -1 from undo
1924                 lyxerr << "getParFromID(), id: " << id << endl;
1925                 return doc_iterator_end(buf);
1926         }
1927
1928         for (DocIterator it = doc_iterator_begin(buf); !it.atEnd(); it.forwardPar())
1929                 if (it.paragraph().id() == id)
1930                         return it;
1931
1932         return doc_iterator_end(buf);
1933 }
1934
1935
1936 bool Buffer::hasParWithID(int const id) const
1937 {
1938         return !getParFromID(id).atEnd();
1939 }
1940
1941
1942 ParIterator Buffer::par_iterator_begin()
1943 {
1944         return ParIterator(doc_iterator_begin(this));
1945 }
1946
1947
1948 ParIterator Buffer::par_iterator_end()
1949 {
1950         return ParIterator(doc_iterator_end(this));
1951 }
1952
1953
1954 ParConstIterator Buffer::par_iterator_begin() const
1955 {
1956         return ParConstIterator(doc_iterator_begin(this));
1957 }
1958
1959
1960 ParConstIterator Buffer::par_iterator_end() const
1961 {
1962         return ParConstIterator(doc_iterator_end(this));
1963 }
1964
1965
1966 Language const * Buffer::language() const
1967 {
1968         return params().language;
1969 }
1970
1971
1972 docstring const Buffer::B_(string const & l10n) const
1973 {
1974         return params().B_(l10n);
1975 }
1976
1977
1978 bool Buffer::isClean() const
1979 {
1980         return d->lyx_clean;
1981 }
1982
1983
1984 bool Buffer::isBakClean() const
1985 {
1986         return d->bak_clean;
1987 }
1988
1989
1990 bool Buffer::isExternallyModified(CheckMethod method) const
1991 {
1992         LASSERT(d->filename.exists(), /**/);
1993         // if method == timestamp, check timestamp before checksum
1994         return (method == checksum_method
1995                 || d->timestamp_ != d->filename.lastModified())
1996                 && d->checksum_ != d->filename.checksum();
1997 }
1998
1999
2000 void Buffer::saveCheckSum(FileName const & file) const
2001 {
2002         if (file.exists()) {
2003                 d->timestamp_ = file.lastModified();
2004                 d->checksum_ = file.checksum();
2005         } else {
2006                 // in the case of save to a new file.
2007                 d->timestamp_ = 0;
2008                 d->checksum_ = 0;
2009         }
2010 }
2011
2012
2013 void Buffer::markClean() const
2014 {
2015         if (!d->lyx_clean) {
2016                 d->lyx_clean = true;
2017                 updateTitles();
2018         }
2019         // if the .lyx file has been saved, we don't need an
2020         // autosave
2021         d->bak_clean = true;
2022 }
2023
2024
2025 void Buffer::markBakClean() const
2026 {
2027         d->bak_clean = true;
2028 }
2029
2030
2031 void Buffer::setUnnamed(bool flag)
2032 {
2033         d->unnamed = flag;
2034 }
2035
2036
2037 bool Buffer::isUnnamed() const
2038 {
2039         return d->unnamed;
2040 }
2041
2042
2043 // FIXME: this function should be moved to buffer_pimpl.C
2044 void Buffer::markDirty()
2045 {
2046         if (d->lyx_clean) {
2047                 d->lyx_clean = false;
2048                 updateTitles();
2049         }
2050         d->bak_clean = false;
2051
2052         DepClean::iterator it = d->dep_clean.begin();
2053         DepClean::const_iterator const end = d->dep_clean.end();
2054
2055         for (; it != end; ++it)
2056                 it->second = false;
2057 }
2058
2059
2060 FileName Buffer::fileName() const
2061 {
2062         return d->filename;
2063 }
2064
2065
2066 string Buffer::absFileName() const
2067 {
2068         return d->filename.absFilename();
2069 }
2070
2071
2072 string Buffer::filePath() const
2073 {
2074         return d->filename.onlyPath().absFilename() + "/";
2075 }
2076
2077
2078 bool Buffer::isReadonly() const
2079 {
2080         return d->read_only;
2081 }
2082
2083
2084 void Buffer::setParent(Buffer const * buffer)
2085 {
2086         // Avoids recursive include.
2087         d->setParent(buffer == this ? 0 : buffer);
2088         updateMacros();
2089 }
2090
2091
2092 Buffer const * Buffer::parent() const
2093 {
2094         return d->parent();
2095 }
2096
2097
2098 void Buffer::collectRelatives(BufferSet & bufs) const
2099 {
2100         bufs.insert(this);
2101         if (parent())
2102                 parent()->collectRelatives(bufs);
2103
2104         // loop over children
2105         Impl::BufferPositionMap::iterator it = d->children_positions.begin();
2106         Impl::BufferPositionMap::iterator end = d->children_positions.end();
2107         for (; it != end; ++it)
2108                 bufs.insert(const_cast<Buffer *>(it->first));
2109 }
2110
2111
2112 std::vector<Buffer const *> Buffer::allRelatives() const
2113 {
2114         BufferSet bufs;
2115         collectRelatives(bufs);
2116         BufferSet::iterator it = bufs.begin();
2117         std::vector<Buffer const *> ret;
2118         for (; it != bufs.end(); ++it)
2119                 ret.push_back(*it);
2120         return ret;
2121 }
2122
2123
2124 Buffer const * Buffer::masterBuffer() const
2125 {
2126         Buffer const * const pbuf = d->parent();
2127         if (!pbuf)
2128                 return this;
2129
2130         return pbuf->masterBuffer();
2131 }
2132
2133
2134 bool Buffer::isChild(Buffer * child) const
2135 {
2136         return d->children_positions.find(child) != d->children_positions.end();
2137 }
2138
2139
2140 DocIterator Buffer::firstChildPosition(Buffer const * child)
2141 {
2142         Impl::BufferPositionMap::iterator it;
2143         it = d->children_positions.find(child);
2144         if (it == d->children_positions.end())
2145                 return DocIterator(this);
2146         return it->second;
2147 }
2148
2149
2150 std::vector<Buffer *> Buffer::getChildren() const
2151 {
2152         std::vector<Buffer *> clist;
2153         // loop over children
2154         Impl::BufferPositionMap::iterator it = d->children_positions.begin();
2155         Impl::BufferPositionMap::iterator end = d->children_positions.end();
2156         for (; it != end; ++it) {
2157                 Buffer * child = const_cast<Buffer *>(it->first);
2158                 clist.push_back(child);
2159                 // there might be grandchildren
2160                 std::vector<Buffer *> glist = child->getChildren();
2161                 for (vector<Buffer *>::const_iterator git = glist.begin();
2162                      git != glist.end(); ++git)
2163                         clist.push_back(*git);
2164         }
2165         return clist;
2166 }
2167
2168
2169 template<typename M>
2170 typename M::iterator greatest_below(M & m, typename M::key_type const & x)
2171 {
2172         if (m.empty())
2173                 return m.end();
2174
2175         typename M::iterator it = m.lower_bound(x);
2176         if (it == m.begin())
2177                 return m.end();
2178
2179         it--;
2180         return it;
2181 }
2182
2183
2184 MacroData const * Buffer::getBufferMacro(docstring const & name,
2185                                          DocIterator const & pos) const
2186 {
2187         LYXERR(Debug::MACROS, "Searching for " << to_ascii(name) << " at " << pos);
2188
2189         // if paragraphs have no macro context set, pos will be empty
2190         if (pos.empty())
2191                 return 0;
2192
2193         // we haven't found anything yet
2194         DocIterator bestPos = par_iterator_begin();
2195         MacroData const * bestData = 0;
2196
2197         // find macro definitions for name
2198         Impl::NamePositionScopeMacroMap::iterator nameIt
2199                 = d->macros.find(name);
2200         if (nameIt != d->macros.end()) {
2201                 // find last definition in front of pos or at pos itself
2202                 Impl::PositionScopeMacroMap::const_iterator it
2203                         = greatest_below(nameIt->second, pos);
2204                 if (it != nameIt->second.end()) {
2205                         while (true) {
2206                                 // scope ends behind pos?
2207                                 if (pos < it->second.first) {
2208                                         // Looks good, remember this. If there
2209                                         // is no external macro behind this,
2210                                         // we found the right one already.
2211                                         bestPos = it->first;
2212                                         bestData = &it->second.second;
2213                                         break;
2214                                 }
2215
2216                                 // try previous macro if there is one
2217                                 if (it == nameIt->second.begin())
2218                                         break;
2219                                 it--;
2220                         }
2221                 }
2222         }
2223
2224         // find macros in included files
2225         Impl::PositionScopeBufferMap::const_iterator it
2226                 = greatest_below(d->position_to_children, pos);
2227         if (it == d->position_to_children.end())
2228                 // no children before
2229                 return bestData;
2230
2231         while (true) {
2232                 // do we know something better (i.e. later) already?
2233                 if (it->first < bestPos )
2234                         break;
2235
2236                 // scope ends behind pos?
2237                 if (pos < it->second.first) {
2238                         // look for macro in external file
2239                         d->macro_lock = true;
2240                         MacroData const * data
2241                         = it->second.second->getMacro(name, false);
2242                         d->macro_lock = false;
2243                         if (data) {
2244                                 bestPos = it->first;
2245                                 bestData = data;
2246                                 break;
2247                         }
2248                 }
2249
2250                 // try previous file if there is one
2251                 if (it == d->position_to_children.begin())
2252                         break;
2253                 --it;
2254         }
2255
2256         // return the best macro we have found
2257         return bestData;
2258 }
2259
2260
2261 MacroData const * Buffer::getMacro(docstring const & name,
2262         DocIterator const & pos, bool global) const
2263 {
2264         if (d->macro_lock)
2265                 return 0;
2266
2267         // query buffer macros
2268         MacroData const * data = getBufferMacro(name, pos);
2269         if (data != 0)
2270                 return data;
2271
2272         // If there is a master buffer, query that
2273         Buffer const * const pbuf = d->parent();
2274         if (pbuf) {
2275                 d->macro_lock = true;
2276                 MacroData const * macro = pbuf->getMacro(
2277                         name, *this, false);
2278                 d->macro_lock = false;
2279                 if (macro)
2280                         return macro;
2281         }
2282
2283         if (global) {
2284                 data = MacroTable::globalMacros().get(name);
2285                 if (data != 0)
2286                         return data;
2287         }
2288
2289         return 0;
2290 }
2291
2292
2293 MacroData const * Buffer::getMacro(docstring const & name, bool global) const
2294 {
2295         // set scope end behind the last paragraph
2296         DocIterator scope = par_iterator_begin();
2297         scope.pit() = scope.lastpit() + 1;
2298
2299         return getMacro(name, scope, global);
2300 }
2301
2302
2303 MacroData const * Buffer::getMacro(docstring const & name,
2304         Buffer const & child, bool global) const
2305 {
2306         // look where the child buffer is included first
2307         Impl::BufferPositionMap::iterator it = d->children_positions.find(&child);
2308         if (it == d->children_positions.end())
2309                 return 0;
2310
2311         // check for macros at the inclusion position
2312         return getMacro(name, it->second, global);
2313 }
2314
2315
2316 void Buffer::updateMacros(DocIterator & it, DocIterator & scope) const
2317 {
2318         pit_type lastpit = it.lastpit();
2319
2320         // look for macros in each paragraph
2321         while (it.pit() <= lastpit) {
2322                 Paragraph & par = it.paragraph();
2323
2324                 // iterate over the insets of the current paragraph
2325                 InsetList const & insets = par.insetList();
2326                 InsetList::const_iterator iit = insets.begin();
2327                 InsetList::const_iterator end = insets.end();
2328                 for (; iit != end; ++iit) {
2329                         it.pos() = iit->pos;
2330
2331                         // is it a nested text inset?
2332                         if (iit->inset->asInsetText()) {
2333                                 // Inset needs its own scope?
2334                                 InsetText const * itext = iit->inset->asInsetText();
2335                                 bool newScope = itext->isMacroScope();
2336
2337                                 // scope which ends just behind the inset
2338                                 DocIterator insetScope = it;
2339                                 ++insetScope.pos();
2340
2341                                 // collect macros in inset
2342                                 it.push_back(CursorSlice(*iit->inset));
2343                                 updateMacros(it, newScope ? insetScope : scope);
2344                                 it.pop_back();
2345                                 continue;
2346                         }
2347
2348                         // is it an external file?
2349                         if (iit->inset->lyxCode() == INCLUDE_CODE) {
2350                                 // get buffer of external file
2351                                 InsetInclude const & inset =
2352                                         static_cast<InsetInclude const &>(*iit->inset);
2353                                 d->macro_lock = true;
2354                                 Buffer * child = inset.getChildBuffer();
2355                                 d->macro_lock = false;
2356                                 if (!child)
2357                                         continue;
2358
2359                                 // register its position, but only when it is
2360                                 // included first in the buffer
2361                                 if (d->children_positions.find(child) ==
2362                                         d->children_positions.end())
2363                                                 d->children_positions[child] = it;
2364
2365                                 // register child with its scope
2366                                 d->position_to_children[it] = Impl::ScopeBuffer(scope, child);
2367                                 continue;
2368                         }
2369
2370                         if (iit->inset->lyxCode() != MATHMACRO_CODE)
2371                                 continue;
2372
2373                         // get macro data
2374                         MathMacroTemplate & macroTemplate =
2375                                 static_cast<MathMacroTemplate &>(*iit->inset);
2376                         MacroContext mc(*this, it);
2377                         macroTemplate.updateToContext(mc);
2378
2379                         // valid?
2380                         bool valid = macroTemplate.validMacro();
2381                         // FIXME: Should be fixNameAndCheckIfValid() in fact,
2382                         // then the BufferView's cursor will be invalid in
2383                         // some cases which leads to crashes.
2384                         if (!valid)
2385                                 continue;
2386
2387                         // register macro
2388                         d->macros[macroTemplate.name()][it] =
2389                                 Impl::ScopeMacro(scope, MacroData(*this, it));
2390                 }
2391
2392                 // next paragraph
2393                 it.pit()++;
2394                 it.pos() = 0;
2395         }
2396 }
2397
2398
2399 void Buffer::updateMacros() const
2400 {
2401         if (d->macro_lock)
2402                 return;
2403
2404         LYXERR(Debug::MACROS, "updateMacro of " << d->filename.onlyFileName());
2405
2406         // start with empty table
2407         d->macros.clear();
2408         d->children_positions.clear();
2409         d->position_to_children.clear();
2410
2411         // Iterate over buffer, starting with first paragraph
2412         // The scope must be bigger than any lookup DocIterator
2413         // later. For the global lookup, lastpit+1 is used, hence
2414         // we use lastpit+2 here.
2415         DocIterator it = par_iterator_begin();
2416         DocIterator outerScope = it;
2417         outerScope.pit() = outerScope.lastpit() + 2;
2418         updateMacros(it, outerScope);
2419 }
2420
2421
2422 void Buffer::getUsedBranches(std::list<docstring> & result, bool const from_master) const
2423 {
2424         InsetIterator it  = inset_iterator_begin(inset());
2425         InsetIterator const end = inset_iterator_end(inset());
2426         for (; it != end; ++it) {
2427                 if (it->lyxCode() == BRANCH_CODE) {
2428                         InsetBranch & br = static_cast<InsetBranch &>(*it);
2429                         docstring const name = br.branch();
2430                         if (!from_master && !params().branchlist().find(name))
2431                                 result.push_back(name);
2432                         else if (from_master && !masterBuffer()->params().branchlist().find(name))
2433                                 result.push_back(name);
2434                         continue;
2435                 }
2436                 if (it->lyxCode() == INCLUDE_CODE) {
2437                         // get buffer of external file
2438                         InsetInclude const & ins =
2439                                 static_cast<InsetInclude const &>(*it);
2440                         Buffer * child = ins.getChildBuffer();
2441                         if (!child)
2442                                 continue;
2443                         child->getUsedBranches(result, true);
2444                 }
2445         }
2446         // remove duplicates
2447         result.unique();
2448 }
2449
2450
2451 void Buffer::updateMacroInstances() const
2452 {
2453         LYXERR(Debug::MACROS, "updateMacroInstances for "
2454                 << d->filename.onlyFileName());
2455         DocIterator it = doc_iterator_begin(this);
2456         DocIterator end = doc_iterator_end(this);
2457         for (; it != end; it.forwardPos()) {
2458                 // look for MathData cells in InsetMathNest insets
2459                 Inset * inset = it.nextInset();
2460                 if (!inset)
2461                         continue;
2462
2463                 InsetMath * minset = inset->asInsetMath();
2464                 if (!minset)
2465                         continue;
2466
2467                 // update macro in all cells of the InsetMathNest
2468                 DocIterator::idx_type n = minset->nargs();
2469                 MacroContext mc = MacroContext(*this, it);
2470                 for (DocIterator::idx_type i = 0; i < n; ++i) {
2471                         MathData & data = minset->cell(i);
2472                         data.updateMacros(0, mc);
2473                 }
2474         }
2475 }
2476
2477
2478 void Buffer::listMacroNames(MacroNameSet & macros) const
2479 {
2480         if (d->macro_lock)
2481                 return;
2482
2483         d->macro_lock = true;
2484
2485         // loop over macro names
2486         Impl::NamePositionScopeMacroMap::iterator nameIt = d->macros.begin();
2487         Impl::NamePositionScopeMacroMap::iterator nameEnd = d->macros.end();
2488         for (; nameIt != nameEnd; ++nameIt)
2489                 macros.insert(nameIt->first);
2490
2491         // loop over children
2492         Impl::BufferPositionMap::iterator it = d->children_positions.begin();
2493         Impl::BufferPositionMap::iterator end = d->children_positions.end();
2494         for (; it != end; ++it)
2495                 it->first->listMacroNames(macros);
2496
2497         // call parent
2498         Buffer const * const pbuf = d->parent();
2499         if (pbuf)
2500                 pbuf->listMacroNames(macros);
2501
2502         d->macro_lock = false;
2503 }
2504
2505
2506 void Buffer::listParentMacros(MacroSet & macros, LaTeXFeatures & features) const
2507 {
2508         Buffer const * const pbuf = d->parent();
2509         if (!pbuf)
2510                 return;
2511
2512         MacroNameSet names;
2513         pbuf->listMacroNames(names);
2514
2515         // resolve macros
2516         MacroNameSet::iterator it = names.begin();
2517         MacroNameSet::iterator end = names.end();
2518         for (; it != end; ++it) {
2519                 // defined?
2520                 MacroData const * data =
2521                 pbuf->getMacro(*it, *this, false);
2522                 if (data) {
2523                         macros.insert(data);
2524
2525                         // we cannot access the original MathMacroTemplate anymore
2526                         // here to calls validate method. So we do its work here manually.
2527                         // FIXME: somehow make the template accessible here.
2528                         if (data->optionals() > 0)
2529                                 features.require("xargs");
2530                 }
2531         }
2532 }
2533
2534
2535 Buffer::References & Buffer::references(docstring const & label)
2536 {
2537         if (d->parent())
2538                 return const_cast<Buffer *>(masterBuffer())->references(label);
2539
2540         RefCache::iterator it = d->ref_cache_.find(label);
2541         if (it != d->ref_cache_.end())
2542                 return it->second.second;
2543
2544         static InsetLabel const * dummy_il = 0;
2545         static References const dummy_refs;
2546         it = d->ref_cache_.insert(
2547                 make_pair(label, make_pair(dummy_il, dummy_refs))).first;
2548         return it->second.second;
2549 }
2550
2551
2552 Buffer::References const & Buffer::references(docstring const & label) const
2553 {
2554         return const_cast<Buffer *>(this)->references(label);
2555 }
2556
2557
2558 void Buffer::setInsetLabel(docstring const & label, InsetLabel const * il)
2559 {
2560         masterBuffer()->d->ref_cache_[label].first = il;
2561 }
2562
2563
2564 InsetLabel const * Buffer::insetLabel(docstring const & label) const
2565 {
2566         return masterBuffer()->d->ref_cache_[label].first;
2567 }
2568
2569
2570 void Buffer::clearReferenceCache() const
2571 {
2572         if (!d->parent())
2573                 d->ref_cache_.clear();
2574 }
2575
2576
2577 void Buffer::changeRefsIfUnique(docstring const & from, docstring const & to,
2578         InsetCode code)
2579 {
2580         //FIXME: This does not work for child documents yet.
2581         LASSERT(code == CITE_CODE, /**/);
2582         // Check if the label 'from' appears more than once
2583         vector<docstring> labels;
2584         string paramName;
2585         BiblioInfo const & keys = masterBibInfo();
2586         BiblioInfo::const_iterator bit  = keys.begin();
2587         BiblioInfo::const_iterator bend = keys.end();
2588
2589         for (; bit != bend; ++bit)
2590                 // FIXME UNICODE
2591                 labels.push_back(bit->first);
2592         paramName = "key";
2593
2594         if (count(labels.begin(), labels.end(), from) > 1)
2595                 return;
2596
2597         for (InsetIterator it = inset_iterator_begin(inset()); it; ++it) {
2598                 if (it->lyxCode() == code) {
2599                         InsetCommand & inset = static_cast<InsetCommand &>(*it);
2600                         docstring const oldValue = inset.getParam(paramName);
2601                         if (oldValue == from)
2602                                 inset.setParam(paramName, to);
2603                 }
2604         }
2605 }
2606
2607
2608 void Buffer::getSourceCode(odocstream & os, pit_type par_begin,
2609         pit_type par_end, bool full_source) const
2610 {
2611         OutputParams runparams(&params().encoding());
2612         runparams.nice = true;
2613         runparams.flavor = params().useXetex ? 
2614                 OutputParams::XETEX : OutputParams::LATEX;
2615         runparams.linelen = lyxrc.plaintext_linelen;
2616         // No side effect of file copying and image conversion
2617         runparams.dryrun = true;
2618
2619         if (full_source) {
2620                 os << "% " << _("Preview source code") << "\n\n";
2621                 d->texrow.reset();
2622                 d->texrow.newline();
2623                 d->texrow.newline();
2624                 if (isDocBook())
2625                         writeDocBookSource(os, absFileName(), runparams, false);
2626                 else
2627                         // latex or literate
2628                         writeLaTeXSource(os, string(), runparams, true, true);
2629         } else {
2630                 runparams.par_begin = par_begin;
2631                 runparams.par_end = par_end;
2632                 if (par_begin + 1 == par_end) {
2633                         os << "% "
2634                            << bformat(_("Preview source code for paragraph %1$d"), par_begin)
2635                            << "\n\n";
2636                 } else {
2637                         os << "% "
2638                            << bformat(_("Preview source code from paragraph %1$s to %2$s"),
2639                                         convert<docstring>(par_begin),
2640                                         convert<docstring>(par_end - 1))
2641                            << "\n\n";
2642                 }
2643                 TexRow texrow;
2644                 texrow.reset();
2645                 texrow.newline();
2646                 texrow.newline();
2647                 // output paragraphs
2648                 if (isDocBook())
2649                         docbookParagraphs(text(), *this, os, runparams);
2650                 else 
2651                         // latex or literate
2652                         latexParagraphs(*this, text(), os, texrow, runparams);
2653         }
2654 }
2655
2656
2657 ErrorList & Buffer::errorList(string const & type) const
2658 {
2659         static ErrorList emptyErrorList;
2660         map<string, ErrorList>::iterator I = d->errorLists.find(type);
2661         if (I == d->errorLists.end())
2662                 return emptyErrorList;
2663
2664         return I->second;
2665 }
2666
2667
2668 void Buffer::updateTocItem(std::string const & type,
2669         DocIterator const & dit) const
2670 {
2671         if (gui_)
2672                 gui_->updateTocItem(type, dit);
2673 }
2674
2675
2676 void Buffer::structureChanged() const
2677 {
2678         if (gui_)
2679                 gui_->structureChanged();
2680 }
2681
2682
2683 void Buffer::errors(string const & err, bool from_master) const
2684 {
2685         if (gui_)
2686                 gui_->errors(err, from_master);
2687 }
2688
2689
2690 void Buffer::message(docstring const & msg) const
2691 {
2692         if (gui_)
2693                 gui_->message(msg);
2694 }
2695
2696
2697 void Buffer::setBusy(bool on) const
2698 {
2699         if (gui_)
2700                 gui_->setBusy(on);
2701 }
2702
2703
2704 void Buffer::setReadOnly(bool on) const
2705 {
2706         if (d->wa_)
2707                 d->wa_->setReadOnly(on);
2708 }
2709
2710
2711 void Buffer::updateTitles() const
2712 {
2713         if (d->wa_)
2714                 d->wa_->updateTitles();
2715 }
2716
2717
2718 void Buffer::resetAutosaveTimers() const
2719 {
2720         if (gui_)
2721                 gui_->resetAutosaveTimers();
2722 }
2723
2724
2725 bool Buffer::hasGuiDelegate() const
2726 {
2727         return gui_;
2728 }
2729
2730
2731 void Buffer::setGuiDelegate(frontend::GuiBufferDelegate * gui)
2732 {
2733         gui_ = gui;
2734 }
2735
2736
2737
2738 namespace {
2739
2740 class AutoSaveBuffer : public ForkedProcess {
2741 public:
2742         ///
2743         AutoSaveBuffer(Buffer const & buffer, FileName const & fname)
2744                 : buffer_(buffer), fname_(fname) {}
2745         ///
2746         virtual boost::shared_ptr<ForkedProcess> clone() const
2747         {
2748                 return boost::shared_ptr<ForkedProcess>(new AutoSaveBuffer(*this));
2749         }
2750         ///
2751         int start()
2752         {
2753                 command_ = to_utf8(bformat(_("Auto-saving %1$s"),
2754                                                  from_utf8(fname_.absFilename())));
2755                 return run(DontWait);
2756         }
2757 private:
2758         ///
2759         virtual int generateChild();
2760         ///
2761         Buffer const & buffer_;
2762         FileName fname_;
2763 };
2764
2765
2766 int AutoSaveBuffer::generateChild()
2767 {
2768         // tmp_ret will be located (usually) in /tmp
2769         // will that be a problem?
2770         // Note that this calls ForkedCalls::fork(), so it's
2771         // ok cross-platform.
2772         pid_t const pid = fork();
2773         // If you want to debug the autosave
2774         // you should set pid to -1, and comment out the fork.
2775         if (pid != 0 && pid != -1)
2776                 return pid;
2777
2778         // pid = -1 signifies that lyx was unable
2779         // to fork. But we will do the save
2780         // anyway.
2781         bool failed = false;
2782         FileName const tmp_ret = FileName::tempName("lyxauto");
2783         if (!tmp_ret.empty()) {
2784                 buffer_.writeFile(tmp_ret);
2785                 // assume successful write of tmp_ret
2786                 if (!tmp_ret.moveTo(fname_))
2787                         failed = true;
2788         } else
2789                 failed = true;
2790
2791         if (failed) {
2792                 // failed to write/rename tmp_ret so try writing direct
2793                 if (!buffer_.writeFile(fname_)) {
2794                         // It is dangerous to do this in the child,
2795                         // but safe in the parent, so...
2796                         if (pid == -1) // emit message signal.
2797                                 buffer_.message(_("Autosave failed!"));
2798                 }
2799         }
2800
2801         if (pid == 0) // we are the child so...
2802                 _exit(0);
2803
2804         return pid;
2805 }
2806
2807 } // namespace anon
2808
2809
2810 FileName Buffer::getAutosaveFilename() const
2811 {
2812         // if the document is unnamed try to save in the backup dir, else
2813         // in the default document path, and as a last try in the filePath, 
2814         // which will most often be the temporary directory
2815         string fpath;
2816         if (isUnnamed())
2817                 fpath = lyxrc.backupdir_path.empty() ? lyxrc.document_path
2818                         : lyxrc.backupdir_path;
2819         if (!isUnnamed() || fpath.empty() || !FileName(fpath).exists())
2820                 fpath = filePath();
2821
2822         string const fname = "#" + d->filename.onlyFileName() + "#";
2823         return makeAbsPath(fname, fpath);
2824 }
2825
2826
2827 void Buffer::removeAutosaveFile() const
2828 {
2829         FileName const f = getAutosaveFilename();
2830         if (f.exists())
2831                 f.removeFile();
2832 }
2833
2834
2835 void Buffer::moveAutosaveFile(support::FileName const & oldauto) const
2836 {
2837         FileName const newauto = getAutosaveFilename();
2838         if (!(oldauto == newauto || oldauto.moveTo(newauto)))
2839                 LYXERR0("Unable to remove autosave file `" << oldauto << "'!");
2840 }
2841
2842
2843 // Perfect target for a thread...
2844 void Buffer::autoSave() const
2845 {
2846         if (isBakClean() || isReadonly()) {
2847                 // We don't save now, but we'll try again later
2848                 resetAutosaveTimers();
2849                 return;
2850         }
2851
2852         // emit message signal.
2853         message(_("Autosaving current document..."));
2854         AutoSaveBuffer autosave(*this, getAutosaveFilename());
2855         autosave.start();
2856
2857         markBakClean();
2858         resetAutosaveTimers();
2859 }
2860
2861
2862 string Buffer::bufferFormat() const
2863 {
2864         string format = params().documentClass().outputFormat();
2865         if (format == "latex") {
2866                 if (params().useXetex)
2867                         return "xetex";
2868                 if (params().encoding().package() == Encoding::japanese)
2869                         return "platex";
2870         }
2871         return format;
2872 }
2873
2874
2875 string Buffer::getDefaultOutputFormat() const
2876 {
2877         if (!params().defaultOutputFormat.empty()
2878             && params().defaultOutputFormat != "default")
2879                 return params().defaultOutputFormat;
2880         typedef vector<Format const *> Formats;
2881         Formats formats = exportableFormats(true);
2882         if (isDocBook()
2883             || isLiterate()
2884             || params().useXetex
2885             || params().encoding().package() == Encoding::japanese) {
2886                 if (formats.empty())
2887                         return string();
2888                 // return the first we find
2889                 return formats.front()->name();
2890         }
2891         return lyxrc.default_view_format;
2892 }
2893
2894
2895
2896 bool Buffer::doExport(string const & format, bool put_in_tempdir,
2897         string & result_file) const
2898 {
2899         string backend_format;
2900         OutputParams runparams(&params().encoding());
2901         runparams.flavor = OutputParams::LATEX;
2902         runparams.linelen = lyxrc.plaintext_linelen;
2903         vector<string> backs = backends();
2904         if (find(backs.begin(), backs.end(), format) == backs.end()) {
2905                 // Get shortest path to format
2906                 Graph::EdgePath path;
2907                 for (vector<string>::const_iterator it = backs.begin();
2908                      it != backs.end(); ++it) {
2909                         Graph::EdgePath p = theConverters().getPath(*it, format);
2910                         if (!p.empty() && (path.empty() || p.size() < path.size())) {
2911                                 backend_format = *it;
2912                                 path = p;
2913                         }
2914                 }
2915                 if (!path.empty())
2916                         runparams.flavor = theConverters().getFlavor(path);
2917                 else {
2918                         Alert::error(_("Couldn't export file"),
2919                                 bformat(_("No information for exporting the format %1$s."),
2920                                    formats.prettyName(format)));
2921                         return false;
2922                 }
2923         } else {
2924                 backend_format = format;
2925                 // FIXME: Don't hardcode format names here, but use a flag
2926                 if (backend_format == "pdflatex")
2927                         runparams.flavor = OutputParams::PDFLATEX;
2928         }
2929
2930         string filename = latexName(false);
2931         filename = addName(temppath(), filename);
2932         filename = changeExtension(filename,
2933                                    formats.extension(backend_format));
2934
2935         // fix macros
2936         updateMacroInstances();
2937
2938         // Plain text backend
2939         if (backend_format == "text")
2940                 writePlaintextFile(*this, FileName(filename), runparams);
2941         // no backend
2942         else if (backend_format == "xhtml")
2943                 makeLyXHTMLFile(FileName(filename), runparams);
2944         else if (backend_format == "lyx")
2945                 writeFile(FileName(filename));
2946         // Docbook backend
2947         else if (isDocBook()) {
2948                 runparams.nice = !put_in_tempdir;
2949                 makeDocBookFile(FileName(filename), runparams);
2950         }
2951         // LaTeX backend
2952         else if (backend_format == format) {
2953                 runparams.nice = true;
2954                 if (!makeLaTeXFile(FileName(filename), string(), runparams))
2955                         return false;
2956         } else if (!lyxrc.tex_allows_spaces
2957                    && contains(filePath(), ' ')) {
2958                 Alert::error(_("File name error"),
2959                            _("The directory path to the document cannot contain spaces."));
2960                 return false;
2961         } else {
2962                 runparams.nice = false;
2963                 if (!makeLaTeXFile(FileName(filename), filePath(), runparams))
2964                         return false;
2965         }
2966
2967         string const error_type = (format == "program")
2968                 ? "Build" : bufferFormat();
2969         ErrorList & error_list = d->errorLists[error_type];
2970         string const ext = formats.extension(format);
2971         FileName const tmp_result_file(changeExtension(filename, ext));
2972         bool const success = theConverters().convert(this, FileName(filename),
2973                 tmp_result_file, FileName(absFileName()), backend_format, format,
2974                 error_list);
2975         // Emit the signal to show the error list.
2976         if (format != backend_format) {
2977                 errors(error_type);
2978                 // also to the children, in case of master-buffer-view
2979                 std::vector<Buffer *> clist = getChildren();
2980                 for (vector<Buffer *>::const_iterator cit = clist.begin();
2981                      cit != clist.end(); ++cit)
2982                         (*cit)->errors(error_type, true);
2983         }
2984         if (!success)
2985                 return false;
2986
2987         if (put_in_tempdir) {
2988                 result_file = tmp_result_file.absFilename();
2989                 return true;
2990         }
2991
2992         result_file = changeExtension(exportFileName().absFilename(), ext);
2993         // We need to copy referenced files (e. g. included graphics
2994         // if format == "dvi") to the result dir.
2995         vector<ExportedFile> const files =
2996                 runparams.exportdata->externalFiles(format);
2997         string const dest = onlyPath(result_file);
2998         CopyStatus status = SUCCESS;
2999         for (vector<ExportedFile>::const_iterator it = files.begin();
3000                 it != files.end() && status != CANCEL; ++it) {
3001                 string const fmt = formats.getFormatFromFile(it->sourceName);
3002                 status = copyFile(fmt, it->sourceName,
3003                         makeAbsPath(it->exportName, dest),
3004                         it->exportName, status == FORCE);
3005         }
3006         if (status == CANCEL) {
3007                 message(_("Document export cancelled."));
3008         } else if (tmp_result_file.exists()) {
3009                 // Finally copy the main file
3010                 status = copyFile(format, tmp_result_file,
3011                         FileName(result_file), result_file,
3012                         status == FORCE);
3013                 message(bformat(_("Document exported as %1$s "
3014                         "to file `%2$s'"),
3015                         formats.prettyName(format),
3016                         makeDisplayPath(result_file)));
3017         } else {
3018                 // This must be a dummy converter like fax (bug 1888)
3019                 message(bformat(_("Document exported as %1$s"),
3020                         formats.prettyName(format)));
3021         }
3022
3023         return true;
3024 }
3025
3026
3027 bool Buffer::doExport(string const & format, bool put_in_tempdir) const
3028 {
3029         string result_file;
3030         return doExport(format, put_in_tempdir, result_file);
3031 }
3032
3033
3034 bool Buffer::preview(string const & format) const
3035 {
3036         string result_file;
3037         if (!doExport(format, true, result_file))
3038                 return false;
3039         return formats.view(*this, FileName(result_file), format);
3040 }
3041
3042
3043 bool Buffer::isExportable(string const & format) const
3044 {
3045         vector<string> backs = backends();
3046         for (vector<string>::const_iterator it = backs.begin();
3047              it != backs.end(); ++it)
3048                 if (theConverters().isReachable(*it, format))
3049                         return true;
3050         return false;
3051 }
3052
3053
3054 vector<Format const *> Buffer::exportableFormats(bool only_viewable) const
3055 {
3056         vector<string> backs = backends();
3057         vector<Format const *> result =
3058                 theConverters().getReachable(backs[0], only_viewable, true);
3059         for (vector<string>::const_iterator it = backs.begin() + 1;
3060              it != backs.end(); ++it) {
3061                 vector<Format const *>  r =
3062                         theConverters().getReachable(*it, only_viewable, false);
3063                 result.insert(result.end(), r.begin(), r.end());
3064         }
3065         return result;
3066 }
3067
3068
3069 vector<string> Buffer::backends() const
3070 {
3071         vector<string> v;
3072         if (params().baseClass()->isTeXClassAvailable()) {
3073                 v.push_back(bufferFormat());
3074                 // FIXME: Don't hardcode format names here, but use a flag
3075                 if (v.back() == "latex")
3076                         v.push_back("pdflatex");
3077         }
3078         v.push_back("text");
3079         v.push_back("xhtml");
3080         v.push_back("lyx");
3081         return v;
3082 }
3083
3084
3085 bool Buffer::readFileHelper(FileName const & s)
3086 {
3087         // File information about normal file
3088         if (!s.exists()) {
3089                 docstring const file = makeDisplayPath(s.absFilename(), 50);
3090                 docstring text = bformat(_("The specified document\n%1$s"
3091                                                      "\ncould not be read."), file);
3092                 Alert::error(_("Could not read document"), text);
3093                 return false;
3094         }
3095
3096         // Check if emergency save file exists and is newer.
3097         FileName const e(s.absFilename() + ".emergency");
3098
3099         if (e.exists() && s.exists() && e.lastModified() > s.lastModified()) {
3100                 docstring const file = makeDisplayPath(s.absFilename(), 20);
3101                 docstring const text =
3102                         bformat(_("An emergency save of the document "
3103                                   "%1$s exists.\n\n"
3104                                                "Recover emergency save?"), file);
3105                 switch (Alert::prompt(_("Load emergency save?"), text, 0, 2,
3106                                       _("&Recover"),  _("&Load Original"),
3107                                       _("&Cancel")))
3108                 {
3109                 case 0: {
3110                         // the file is not saved if we load the emergency file.
3111                         markDirty();
3112                         docstring str;
3113                         bool res;
3114
3115                         if ((res = readFile(e)) == success)
3116                                 str = _("Document was successfully recovered.");
3117                         else
3118                                 str = _("Document was NOT successfully recovered.");
3119                         str += "\n\n" + _("Remove emergency file now?");
3120
3121                         if (!Alert::prompt(_("Delete emergency file?"), str, 1, 1,
3122                                         _("&Remove"), _("&Keep it"))) {
3123                                 e.removeFile();
3124                                 if (res == success)
3125                                         Alert::warning(_("Emergency file deleted"),
3126                                                 _("Do not forget to save your file now!"), true);
3127                                 }
3128                         return res;
3129                 }
3130                 case 1:
3131                         if (!Alert::prompt(_("Delete emergency file?"),
3132                                         _("Remove emergency file now?"), 1, 1,
3133                                         _("&Remove"), _("&Keep it")))
3134                                 e.removeFile();
3135                         break;
3136                 default:
3137                         return false;
3138                 }
3139         }
3140
3141         // Now check if autosave file is newer.
3142         FileName const a(onlyPath(s.absFilename()) + '#' + onlyFilename(s.absFilename()) + '#');
3143
3144         if (a.exists() && s.exists() && a.lastModified() > s.lastModified()) {
3145                 docstring const file = makeDisplayPath(s.absFilename(), 20);
3146                 docstring const text =
3147                         bformat(_("The backup of the document "
3148                                   "%1$s is newer.\n\nLoad the "
3149                                                "backup instead?"), file);
3150                 switch (Alert::prompt(_("Load backup?"), text, 0, 2,
3151                                       _("&Load backup"), _("Load &original"),
3152                                       _("&Cancel") ))
3153                 {
3154                 case 0:
3155                         // the file is not saved if we load the autosave file.
3156                         markDirty();
3157                         return readFile(a);
3158                 case 1:
3159                         // Here we delete the autosave
3160                         a.removeFile();
3161                         break;
3162                 default:
3163                         return false;
3164                 }
3165         }
3166         return readFile(s);
3167 }
3168
3169
3170 bool Buffer::loadLyXFile(FileName const & s)
3171 {
3172         if (s.isReadableFile()) {
3173                 if (readFileHelper(s)) {
3174                         lyxvc().file_found_hook(s);
3175                         if (!s.isWritable())
3176                                 setReadonly(true);
3177                         return true;
3178                 }
3179         } else {
3180                 docstring const file = makeDisplayPath(s.absFilename(), 20);
3181                 // Here we probably should run
3182                 if (LyXVC::file_not_found_hook(s)) {
3183                         docstring const text =
3184                                 bformat(_("Do you want to retrieve the document"
3185                                                        " %1$s from version control?"), file);
3186                         int const ret = Alert::prompt(_("Retrieve from version control?"),
3187                                 text, 0, 1, _("&Retrieve"), _("&Cancel"));
3188
3189                         if (ret == 0) {
3190                                 // How can we know _how_ to do the checkout?
3191                                 // With the current VC support it has to be,
3192                                 // a RCS file since CVS do not have special ,v files.
3193                                 RCS::retrieve(s);
3194                                 return loadLyXFile(s);
3195                         }
3196                 }
3197         }
3198         return false;
3199 }
3200
3201
3202 void Buffer::bufferErrors(TeXErrors const & terr, ErrorList & errorList) const
3203 {
3204         TeXErrors::Errors::const_iterator cit = terr.begin();
3205         TeXErrors::Errors::const_iterator end = terr.end();
3206
3207         for (; cit != end; ++cit) {
3208                 int id_start = -1;
3209                 int pos_start = -1;
3210                 int errorRow = cit->error_in_line;
3211                 bool found = d->texrow.getIdFromRow(errorRow, id_start,
3212                                                        pos_start);
3213                 int id_end = -1;
3214                 int pos_end = -1;
3215                 do {
3216                         ++errorRow;
3217                         found = d->texrow.getIdFromRow(errorRow, id_end, pos_end);
3218                 } while (found && id_start == id_end && pos_start == pos_end);
3219
3220                 errorList.push_back(ErrorItem(cit->error_desc,
3221                         cit->error_text, id_start, pos_start, pos_end));
3222         }
3223 }
3224
3225
3226 void Buffer::setBuffersForInsets() const
3227 {
3228         inset().setBuffer(const_cast<Buffer &>(*this)); 
3229 }
3230
3231
3232 void Buffer::updateLabels(UpdateScope scope) const
3233 {
3234         // Use the master text class also for child documents
3235         Buffer const * const master = masterBuffer();
3236         DocumentClass const & textclass = master->params().documentClass();
3237
3238         // keep the buffers to be children in this set. If the call from the
3239         // master comes back we can see which of them were actually seen (i.e.
3240         // via an InsetInclude). The remaining ones in the set need still be updated.
3241         static std::set<Buffer const *> bufToUpdate;
3242         if (scope == UpdateMaster) {
3243                 // If this is a child document start with the master
3244                 if (master != this) {
3245                         bufToUpdate.insert(this);
3246                         master->updateLabels();
3247                         // Do this here in case the master has no gui associated with it. Then, 
3248                         // the TocModel is not updated and TocModel::toc_ is invalid (bug 5699).
3249                         if (!master->gui_)
3250                                 structureChanged();
3251
3252                         // was buf referenced from the master (i.e. not in bufToUpdate anymore)?
3253                         if (bufToUpdate.find(this) == bufToUpdate.end())
3254                                 return;
3255                 }
3256
3257                 // start over the counters in the master
3258                 textclass.counters().reset();
3259         }
3260
3261         // update will be done below for this buffer
3262         bufToUpdate.erase(this);
3263
3264         // update all caches
3265         clearReferenceCache();
3266         updateMacros();
3267
3268         Buffer & cbuf = const_cast<Buffer &>(*this);
3269
3270         LASSERT(!text().paragraphs().empty(), /**/);
3271
3272         // do the real work
3273         ParIterator parit = cbuf.par_iterator_begin();
3274         updateLabels(parit);
3275
3276         if (master != this)
3277                 // TocBackend update will be done later.
3278                 return;
3279
3280         cbuf.tocBackend().update();
3281         if (scope == UpdateMaster)
3282                 cbuf.structureChanged();
3283 }
3284
3285
3286 static depth_type getDepth(DocIterator const & it)
3287 {
3288         depth_type depth = 0;
3289         for (size_t i = 0 ; i < it.depth() ; ++i)
3290                 if (!it[i].inset().inMathed())
3291                         depth += it[i].paragraph().getDepth() + 1;
3292         // remove 1 since the outer inset does not count
3293         return depth - 1;
3294 }
3295
3296 static depth_type getItemDepth(ParIterator const & it)
3297 {
3298         Paragraph const & par = *it;
3299         LabelType const labeltype = par.layout().labeltype;
3300
3301         if (labeltype != LABEL_ENUMERATE && labeltype != LABEL_ITEMIZE)
3302                 return 0;
3303
3304         // this will hold the lowest depth encountered up to now.
3305         depth_type min_depth = getDepth(it);
3306         ParIterator prev_it = it;
3307         while (true) {
3308                 if (prev_it.pit())
3309                         --prev_it.top().pit();
3310                 else {
3311                         // start of nested inset: go to outer par
3312                         prev_it.pop_back();
3313                         if (prev_it.empty()) {
3314                                 // start of document: nothing to do
3315                                 return 0;
3316                         }
3317                 }
3318
3319                 // We search for the first paragraph with same label
3320                 // that is not more deeply nested.
3321                 Paragraph & prev_par = *prev_it;
3322                 depth_type const prev_depth = getDepth(prev_it);
3323                 if (labeltype == prev_par.layout().labeltype) {
3324                         if (prev_depth < min_depth)
3325                                 return prev_par.itemdepth + 1;
3326                         if (prev_depth == min_depth)
3327                                 return prev_par.itemdepth;
3328                 }
3329                 min_depth = min(min_depth, prev_depth);
3330                 // small optimization: if we are at depth 0, we won't
3331                 // find anything else
3332                 if (prev_depth == 0)
3333                         return 0;
3334         }
3335 }
3336
3337
3338 static bool needEnumCounterReset(ParIterator const & it)
3339 {
3340         Paragraph const & par = *it;
3341         LASSERT(par.layout().labeltype == LABEL_ENUMERATE, /**/);
3342         depth_type const cur_depth = par.getDepth();
3343         ParIterator prev_it = it;
3344         while (prev_it.pit()) {
3345                 --prev_it.top().pit();
3346                 Paragraph const & prev_par = *prev_it;
3347                 if (prev_par.getDepth() <= cur_depth)
3348                         return  prev_par.layout().labeltype != LABEL_ENUMERATE;
3349         }
3350         // start of nested inset: reset
3351         return true;
3352 }
3353
3354
3355 // set the label of a paragraph. This includes the counters.
3356 static void setLabel(Buffer const & buf, ParIterator & it)
3357 {
3358         BufferParams const & bp = buf.masterBuffer()->params();
3359         DocumentClass const & textclass = bp.documentClass();
3360         Paragraph & par = it.paragraph();
3361         Layout const & layout = par.layout();
3362         Counters & counters = textclass.counters();
3363
3364         if (par.params().startOfAppendix()) {
3365                 // FIXME: only the counter corresponding to toplevel
3366                 // sectionning should be reset
3367                 counters.reset();
3368                 counters.appendix(true);
3369         }
3370         par.params().appendix(counters.appendix());
3371
3372         // Compute the item depth of the paragraph
3373         par.itemdepth = getItemDepth(it);
3374
3375         if (layout.margintype == MARGIN_MANUAL
3376             || layout.latextype == LATEX_BIB_ENVIRONMENT) {
3377                 if (par.params().labelWidthString().empty())
3378                         par.params().labelWidthString(par.expandLabel(layout, bp));
3379         } else {
3380                 par.params().labelWidthString(docstring());
3381         }
3382
3383         switch(layout.labeltype) {
3384         case LABEL_COUNTER:
3385                 if (layout.toclevel <= bp.secnumdepth
3386                     && (layout.latextype != LATEX_ENVIRONMENT
3387                         || it.text()->isFirstInSequence(it.pit()))) {
3388                         counters.step(layout.counter);
3389                         par.params().labelString(
3390                                 par.expandLabel(layout, bp));
3391                 } else
3392                         par.params().labelString(docstring());
3393                 break;
3394
3395         case LABEL_ITEMIZE: {
3396                 // At some point of time we should do something more
3397                 // clever here, like:
3398                 //   par.params().labelString(
3399                 //    bp.user_defined_bullet(par.itemdepth).getText());
3400                 // for now, use a simple hardcoded label
3401                 docstring itemlabel;
3402                 switch (par.itemdepth) {
3403                 case 0:
3404                         itemlabel = char_type(0x2022);
3405                         break;
3406                 case 1:
3407                         itemlabel = char_type(0x2013);
3408                         break;
3409                 case 2:
3410                         itemlabel = char_type(0x2217);
3411                         break;
3412                 case 3:
3413                         itemlabel = char_type(0x2219); // or 0x00b7
3414                         break;
3415                 }
3416                 par.params().labelString(itemlabel);
3417                 break;
3418         }
3419
3420         case LABEL_ENUMERATE: {
3421                 docstring enumcounter = layout.counter.empty() ? from_ascii("enum") : layout.counter;
3422
3423                 switch (par.itemdepth) {
3424                 case 2:
3425                         enumcounter += 'i';
3426                 case 1:
3427                         enumcounter += 'i';
3428                 case 0:
3429                         enumcounter += 'i';
3430                         break;
3431                 case 3:
3432                         enumcounter += "iv";
3433                         break;
3434                 default:
3435                         // not a valid enumdepth...
3436                         break;
3437                 }
3438
3439                 // Maybe we have to reset the enumeration counter.
3440                 if (needEnumCounterReset(it))
3441                         counters.reset(enumcounter);
3442                 counters.step(enumcounter);
3443
3444                 string const & lang = par.getParLanguage(bp)->code();
3445                 par.params().labelString(counters.theCounter(enumcounter, lang));
3446
3447                 break;
3448         }
3449
3450         case LABEL_SENSITIVE: {
3451                 string const & type = counters.current_float();
3452                 docstring full_label;
3453                 if (type.empty())
3454                         full_label = buf.B_("Senseless!!! ");
3455                 else {
3456                         docstring name = buf.B_(textclass.floats().getType(type).name());
3457                         if (counters.hasCounter(from_utf8(type))) {
3458                                 string const & lang = par.getParLanguage(bp)->code();
3459                                 counters.step(from_utf8(type));
3460                                 full_label = bformat(from_ascii("%1$s %2$s:"), 
3461                                                      name, 
3462                                                      counters.theCounter(from_utf8(type), lang));
3463                         } else
3464                                 full_label = bformat(from_ascii("%1$s #:"), name);      
3465                 }
3466                 par.params().labelString(full_label);   
3467                 break;
3468         }
3469
3470         case LABEL_NO_LABEL:
3471                 par.params().labelString(docstring());
3472                 break;
3473
3474         case LABEL_MANUAL:
3475         case LABEL_TOP_ENVIRONMENT:
3476         case LABEL_CENTERED_TOP_ENVIRONMENT:
3477         case LABEL_STATIC:      
3478         case LABEL_BIBLIO:
3479                 par.params().labelString(par.expandLabel(layout, bp));
3480                 break;
3481         }
3482 }
3483
3484
3485 void Buffer::updateLabels(ParIterator & parit) const
3486 {
3487         LASSERT(parit.pit() == 0, /**/);
3488
3489         // set the position of the text in the buffer to be able
3490         // to resolve macros in it. This has nothing to do with
3491         // labels, but by putting it here we avoid implementing
3492         // a whole bunch of traversal routines just for this call.
3493         parit.text()->setMacrocontextPosition(parit);
3494
3495         depth_type maxdepth = 0;
3496         pit_type const lastpit = parit.lastpit();
3497         for ( ; parit.pit() <= lastpit ; ++parit.pit()) {
3498                 // reduce depth if necessary
3499                 parit->params().depth(min(parit->params().depth(), maxdepth));
3500                 maxdepth = parit->getMaxDepthAfter();
3501
3502                 // set the counter for this paragraph
3503                 setLabel(*this, parit);
3504
3505                 // Now the insets
3506                 InsetList::const_iterator iit = parit->insetList().begin();
3507                 InsetList::const_iterator end = parit->insetList().end();
3508                 for (; iit != end; ++iit) {
3509                         parit.pos() = iit->pos;
3510                         iit->inset->updateLabels(parit);
3511                 }
3512         }
3513 }
3514
3515
3516 int Buffer::spellCheck(DocIterator & from, DocIterator & to,
3517         WordLangTuple & word_lang, docstring_list & suggestions) const
3518 {
3519         int progress = 0;
3520         WordLangTuple wl;
3521         suggestions.clear();
3522         word_lang = WordLangTuple();
3523         // OK, we start from here.
3524         DocIterator const end = doc_iterator_end(this);
3525         for (; from != end; from.forwardPos()) {
3526                 // We are only interested in text so remove the math CursorSlice.
3527                 while (from.inMathed())
3528                         from.forwardInset();
3529                 to = from;
3530                 if (from.paragraph().spellCheck(from.pos(), to.pos(), wl, suggestions)) {
3531                         word_lang = wl;
3532                         break;
3533                 }
3534                 from = to;
3535                 ++progress;
3536         }
3537         return progress;
3538 }
3539
3540 } // namespace lyx