]> git.lyx.org Git - lyx.git/blob - src/buffer.C
* output_plaintext.C: cosmetics in comment: line length cannot be < 0
[lyx.git] / src / buffer.C
1 /**
2  * \file buffer.C
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  *
8  * Full author contact details are available in file CREDITS.
9  */
10
11 #include <config.h>
12
13 #include "buffer.h"
14
15 #include "author.h"
16 #include "BranchList.h"
17 #include "buffer_funcs.h"
18 #include "bufferlist.h"
19 #include "bufferparams.h"
20 #include "counters.h"
21 #include "Bullet.h"
22 #include "Chktex.h"
23 #include "debug.h"
24 #include "encoding.h"
25 #include "errorlist.h"
26 #include "exporter.h"
27 #include "format.h"
28 #include "funcrequest.h"
29 #include "gettext.h"
30 #include "insetiterator.h"
31 #include "language.h"
32 #include "LaTeX.h"
33 #include "LaTeXFeatures.h"
34 #include "LyXAction.h"
35 #include "lyxlex.h"
36 #include "lyxtext.h"
37 #include "lyxrc.h"
38 #include "lyxvc.h"
39 #include "messages.h"
40 #include "output.h"
41 #include "output_docbook.h"
42 #include "output_latex.h"
43 #include "paragraph.h"
44 #include "paragraph_funcs.h"
45 #include "ParagraphParameters.h"
46 #include "pariterator.h"
47 #include "sgml.h"
48 #include "texrow.h"
49 #include "TocBackend.h"
50 #include "undo.h"
51 #include "version.h"
52
53 #include "insets/insetbibitem.h"
54 #include "insets/insetbibtex.h"
55 #include "insets/insetinclude.h"
56 #include "insets/insettext.h"
57
58 #include "mathed/MathMacroTemplate.h"
59 #include "mathed/MathMacroTable.h"
60 #include "mathed/MathSupport.h"
61
62 #include "frontends/Alert.h"
63
64 #include "graphics/Previews.h"
65
66 #include "support/types.h"
67 #include "support/lyxalgo.h"
68 #include "support/filetools.h"
69 #include "support/fs_extras.h"
70 #include "support/lyxlib.h"
71 #include "support/os.h"
72 #include "support/path.h"
73 #include "support/textutils.h"
74 #include "support/convert.h"
75
76 #include <boost/iostreams/filtering_stream.hpp>
77 #include <boost/iostreams/filter/gzip.hpp>
78 #include <boost/iostreams/device/file.hpp>
79 #include <boost/bind.hpp>
80 #include <boost/filesystem/exception.hpp>
81 #include <boost/filesystem/operations.hpp>
82
83 #if defined (HAVE_UTIME_H)
84 #include <utime.h>
85 #elif defined (HAVE_SYS_UTIME_H)
86 #include <sys/utime.h>
87 #endif
88
89 #include <iomanip>
90 #include <stack>
91 #include <sstream>
92 #include <fstream>
93
94
95 namespace lyx {
96
97 using support::addName;
98 using support::bformat;
99 using support::changeExtension;
100 using support::cmd_ret;
101 using support::createBufferTmpDir;
102 using support::destroyDir;
103 using support::FileName;
104 using support::getFormatFromContents;
105 using support::libFileSearch;
106 using support::latex_path;
107 using support::ltrim;
108 using support::makeAbsPath;
109 using support::makeDisplayPath;
110 using support::makeLatexName;
111 using support::onlyFilename;
112 using support::onlyPath;
113 using support::quoteName;
114 using support::removeAutosaveFile;
115 using support::rename;
116 using support::runCommand;
117 using support::split;
118 using support::subst;
119 using support::tempName;
120 using support::trim;
121
122 namespace Alert = frontend::Alert;
123 namespace os = support::os;
124 namespace fs = boost::filesystem;
125 namespace io = boost::iostreams;
126
127 using std::endl;
128 using std::for_each;
129 using std::make_pair;
130
131 using std::ios;
132 using std::map;
133 using std::ostream;
134 using std::ostringstream;
135 using std::ofstream;
136 using std::pair;
137 using std::stack;
138 using std::vector;
139 using std::string;
140
141
142 namespace {
143
144 int const LYX_FORMAT = 256;
145
146 } // namespace anon
147
148
149 typedef std::map<string, bool> DepClean;
150
151 class Buffer::Impl
152 {
153 public:
154         Impl(Buffer & parent, FileName const & file, bool readonly);
155
156         limited_stack<Undo> undostack;
157         limited_stack<Undo> redostack;
158         BufferParams params;
159         LyXVC lyxvc;
160         string temppath;
161         TexRow texrow;
162
163         /// need to regenerate .tex?
164         DepClean dep_clean;
165
166         /// is save needed?
167         mutable bool lyx_clean;
168
169         /// is autosave needed?
170         mutable bool bak_clean;
171
172         /// is this a unnamed file (New...)?
173         bool unnamed;
174
175         /// buffer is r/o
176         bool read_only;
177
178         /// name of the file the buffer is associated with.
179         FileName filename;
180
181         Messages * messages;
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         /// our LyXText that should be wrapped in an InsetText
190         InsetText inset;
191
192         ///
193         MacroTable macros;
194
195         ///
196         TocBackend toc_backend;
197 };
198
199
200 Buffer::Impl::Impl(Buffer & parent, FileName const & file, bool readonly_)
201         : lyx_clean(true), bak_clean(true), unnamed(false), read_only(readonly_),
202           filename(file), messages(0), file_fully_loaded(false), inset(params),
203           toc_backend(&parent)
204 {
205         inset.setAutoBreakRows(true);
206         lyxvc.buffer(&parent);
207         temppath = createBufferTmpDir();
208         params.filepath = onlyPath(file.absFilename());
209         // FIXME: And now do something if temppath == string(), because we
210         // assume from now on that temppath points to a valid temp dir.
211         // See http://www.mail-archive.com/lyx-devel@lists.lyx.org/msg67406.html
212 }
213
214
215 Buffer::Buffer(string const & file, bool readonly)
216         : pimpl_(new Impl(*this, FileName(file), readonly))
217 {
218         lyxerr[Debug::INFO] << "Buffer::Buffer()" << endl;
219 }
220
221
222 Buffer::~Buffer()
223 {
224         lyxerr[Debug::INFO] << "Buffer::~Buffer()" << endl;
225         // here the buffer should take care that it is
226         // saved properly, before it goes into the void.
227
228         closing();
229
230         if (!temppath().empty() && !destroyDir(FileName(temppath()))) {
231                 Alert::warning(_("Could not remove temporary directory"),
232                         bformat(_("Could not remove the temporary directory %1$s"),
233                         from_utf8(temppath())));
234         }
235
236         // Remove any previewed LaTeX snippets associated with this buffer.
237         graphics::Previews::get().removeLoader(*this);
238 }
239
240
241 LyXText & Buffer::text() const
242 {
243         return const_cast<LyXText &>(pimpl_->inset.text_);
244 }
245
246
247 InsetBase & Buffer::inset() const
248 {
249         return const_cast<InsetText &>(pimpl_->inset);
250 }
251
252
253 limited_stack<Undo> & Buffer::undostack()
254 {
255         return pimpl_->undostack;
256 }
257
258
259 limited_stack<Undo> const & Buffer::undostack() const
260 {
261         return pimpl_->undostack;
262 }
263
264
265 limited_stack<Undo> & Buffer::redostack()
266 {
267         return pimpl_->redostack;
268 }
269
270
271 limited_stack<Undo> const & Buffer::redostack() const
272 {
273         return pimpl_->redostack;
274 }
275
276
277 BufferParams & Buffer::params()
278 {
279         return pimpl_->params;
280 }
281
282
283 BufferParams const & Buffer::params() const
284 {
285         return pimpl_->params;
286 }
287
288
289 ParagraphList & Buffer::paragraphs()
290 {
291         return text().paragraphs();
292 }
293
294
295 ParagraphList const & Buffer::paragraphs() const
296 {
297         return text().paragraphs();
298 }
299
300
301 LyXVC & Buffer::lyxvc()
302 {
303         return pimpl_->lyxvc;
304 }
305
306
307 LyXVC const & Buffer::lyxvc() const
308 {
309         return pimpl_->lyxvc;
310 }
311
312
313 string const & Buffer::temppath() const
314 {
315         return pimpl_->temppath;
316 }
317
318
319 TexRow & Buffer::texrow()
320 {
321         return pimpl_->texrow;
322 }
323
324
325 TexRow const & Buffer::texrow() const
326 {
327         return pimpl_->texrow;
328 }
329
330
331 TocBackend & Buffer::tocBackend()
332 {
333         return pimpl_->toc_backend;
334 }
335
336
337 TocBackend const & Buffer::tocBackend() const
338 {
339         return pimpl_->toc_backend;
340 }
341
342
343 string const Buffer::getLatexName(bool const no_path) const
344 {
345         string const name = changeExtension(makeLatexName(fileName()), ".tex");
346         return no_path ? onlyFilename(name) : name;
347 }
348
349
350 pair<Buffer::LogType, string> const Buffer::getLogName() const
351 {
352         string const filename = getLatexName(false);
353
354         if (filename.empty())
355                 return make_pair(Buffer::latexlog, string());
356
357         string const path = temppath();
358
359         FileName const fname(addName(temppath(),
360                                      onlyFilename(changeExtension(filename,
361                                                                   ".log"))));
362         FileName const bname(
363                 addName(path, onlyFilename(
364                         changeExtension(filename,
365                                         formats.extension("literate") + ".out"))));
366
367         // If no Latex log or Build log is newer, show Build log
368
369         if (fs::exists(bname.toFilesystemEncoding()) &&
370             (!fs::exists(fname.toFilesystemEncoding()) ||
371              fs::last_write_time(fname.toFilesystemEncoding()) < fs::last_write_time(bname.toFilesystemEncoding()))) {
372                 lyxerr[Debug::FILES] << "Log name calculated as: " << bname << endl;
373                 return make_pair(Buffer::buildlog, bname.absFilename());
374         }
375         lyxerr[Debug::FILES] << "Log name calculated as: " << fname << endl;
376         return make_pair(Buffer::latexlog, fname.absFilename());
377 }
378
379
380 void Buffer::setReadonly(bool const flag)
381 {
382         if (pimpl_->read_only != flag) {
383                 pimpl_->read_only = flag;
384                 readonly(flag);
385         }
386 }
387
388
389 void Buffer::setFileName(string const & newfile)
390 {
391         pimpl_->filename = makeAbsPath(newfile);
392         params().filepath = onlyPath(pimpl_->filename.absFilename());
393         setReadonly(fs::is_readonly(pimpl_->filename.toFilesystemEncoding()));
394         updateTitles();
395 }
396
397
398 // We'll remove this later. (Lgb)
399 namespace {
400
401 void unknownClass(string const & unknown)
402 {
403         Alert::warning(_("Unknown document class"),
404                        bformat(_("Using the default document class, because the "
405                                               "class %1$s is unknown."), from_utf8(unknown)));
406 }
407
408 } // anon
409
410
411 int Buffer::readHeader(LyXLex & lex)
412 {
413         int unknown_tokens = 0;
414         int line = -1;
415         int begin_header_line = -1;
416
417         // Initialize parameters that may be/go lacking in header:
418         params().branchlist().clear();
419         params().preamble.erase();
420         params().options.erase();
421         params().float_placement.erase();
422         params().paperwidth.erase();
423         params().paperheight.erase();
424         params().leftmargin.erase();
425         params().rightmargin.erase();
426         params().topmargin.erase();
427         params().bottommargin.erase();
428         params().headheight.erase();
429         params().headsep.erase();
430         params().footskip.erase();
431
432         ErrorList & errorList = errorLists_["Parse"];
433
434         while (lex.isOK()) {
435                 lex.next();
436                 string const token = lex.getString();
437
438                 if (token.empty())
439                         continue;
440
441                 if (token == "\\end_header")
442                         break;
443
444                 ++line;
445                 if (token == "\\begin_header") {
446                         begin_header_line = line;
447                         continue;
448                 }
449
450                 lyxerr[Debug::PARSER] << "Handling document header token: `"
451                                       << token << '\'' << endl;
452
453                 string unknown = params().readToken(lex, token);
454                 if (!unknown.empty()) {
455                         if (unknown[0] != '\\' && token == "\\textclass") {
456                                 unknownClass(unknown);
457                         } else {
458                                 ++unknown_tokens;
459                                 docstring const s = bformat(_("Unknown token: "
460                                                                         "%1$s %2$s\n"),
461                                                          from_utf8(token),
462                                                          lex.getDocString());
463                                 errorList.push_back(ErrorItem(_("Document header error"),
464                                         s, -1, 0, 0));
465                         }
466                 }
467         }
468         if (begin_header_line) {
469                 docstring const s = _("\\begin_header is missing");
470                 errorList.push_back(ErrorItem(_("Document header error"),
471                         s, -1, 0, 0));
472         }
473
474         return unknown_tokens;
475 }
476
477
478 // Uwe C. Schroeder
479 // changed to be public and have one parameter
480 // Returns false if "\end_document" is not read (Asger)
481 bool Buffer::readDocument(LyXLex & lex)
482 {
483         ErrorList & errorList = errorLists_["Parse"];
484         errorList.clear();
485
486         lex.next();
487         string const token = lex.getString();
488         if (token != "\\begin_document") {
489                 docstring const s = _("\\begin_document is missing");
490                 errorList.push_back(ErrorItem(_("Document header error"),
491                         s, -1, 0, 0));
492         }
493
494         // we are reading in a brand new document
495         BOOST_ASSERT(paragraphs().empty());
496
497         readHeader(lex);
498         if (!params().getLyXTextClass().load(filePath())) {
499                 string theclass = params().getLyXTextClass().name();
500                 Alert::error(_("Can't load document class"), bformat(
501                         _("Using the default document class, because the "
502                                      "class %1$s could not be loaded."), from_utf8(theclass)));
503                 params().textclass = 0;
504         }
505
506         bool const res = text().read(*this, lex, errorList);
507         for_each(text().paragraphs().begin(),
508                  text().paragraphs().end(),
509                  bind(&Paragraph::setInsetOwner, _1, &inset()));
510
511         return res;
512 }
513
514
515 // needed to insert the selection
516 void Buffer::insertStringAsLines(ParagraphList & pars,
517         pit_type & pit, pos_type & pos,
518         LyXFont const & fn, docstring const & str, bool autobreakrows)
519 {
520         LyXFont font = fn;
521
522         // insert the string, don't insert doublespace
523         bool space_inserted = true;
524         for (docstring::const_iterator cit = str.begin();
525             cit != str.end(); ++cit) {
526                 Paragraph & par = pars[pit];
527                 if (*cit == '\n') {
528                         if (autobreakrows && (!par.empty() || par.allowEmpty())) {
529                                 breakParagraph(params(), pars, pit, pos,
530                                                par.layout()->isEnvironment());
531                                 ++pit;
532                                 pos = 0;
533                                 space_inserted = true;
534                         } else {
535                                 continue;
536                         }
537                         // do not insert consecutive spaces if !free_spacing
538                 } else if ((*cit == ' ' || *cit == '\t') &&
539                            space_inserted && !par.isFreeSpacing()) {
540                         continue;
541                 } else if (*cit == '\t') {
542                         if (!par.isFreeSpacing()) {
543                                 // tabs are like spaces here
544                                 par.insertChar(pos, ' ', font, params().trackChanges);
545                                 ++pos;
546                                 space_inserted = true;
547                         } else {
548                                 const pos_type n = 8 - pos % 8;
549                                 for (pos_type i = 0; i < n; ++i) {
550                                         par.insertChar(pos, ' ', font, params().trackChanges);
551                                         ++pos;
552                                 }
553                                 space_inserted = true;
554                         }
555                 } else if (!isPrintable(*cit)) {
556                         // Ignore unprintables
557                         continue;
558                 } else {
559                         // just insert the character
560                         par.insertChar(pos, *cit, font, params().trackChanges);
561                         ++pos;
562                         space_inserted = (*cit == ' ');
563                 }
564
565         }
566 }
567
568
569 bool Buffer::readString(std::string const & s)
570 {
571         params().compressed = false;
572
573         // remove dummy empty par
574         paragraphs().clear();
575         LyXLex lex(0, 0);
576         std::istringstream is(s);
577         lex.setStream(is);
578         FileName const name(tempName());
579         switch (readFile(lex, name)) {
580         case failure:
581                 return false;
582         case wrongversion: {
583                 // We need to call lyx2lyx, so write the input to a file
584                 std::ofstream os(name.toFilesystemEncoding().c_str());
585                 os << s;
586                 os.close();
587                 return readFile(name) == success;
588         }
589         case success:
590                 break;
591         }
592
593         // After we have read a file, we must ensure that the buffer
594         // language is set and used in the gui.
595         // If you know of a better place to put this, please tell me. (Lgb)
596         updateDocLang(params().language);
597
598         return true;
599 }
600
601
602 bool Buffer::readFile(FileName const & filename)
603 {
604         // Check if the file is compressed.
605         string const format = getFormatFromContents(filename);
606         if (format == "gzip" || format == "zip" || format == "compress") {
607                 params().compressed = true;
608         }
609
610         // remove dummy empty par
611         paragraphs().clear();
612         LyXLex lex(0, 0);
613         lex.setFile(filename);
614         if (readFile(lex, filename) != success)
615                 return false;
616
617         // After we have read a file, we must ensure that the buffer
618         // language is set and used in the gui.
619         // If you know of a better place to put this, please tell me. (Lgb)
620         updateDocLang(params().language);
621
622         return true;
623 }
624
625
626 bool Buffer::fully_loaded() const
627 {
628         return pimpl_->file_fully_loaded;
629 }
630
631
632 void Buffer::fully_loaded(bool const value)
633 {
634         pimpl_->file_fully_loaded = value;
635 }
636
637
638 Buffer::ReadStatus Buffer::readFile(LyXLex & lex, FileName const & filename,
639                 bool fromstring)
640 {
641         BOOST_ASSERT(!filename.empty());
642
643         if (!lex.isOK()) {
644                 Alert::error(_("Document could not be read"),
645                              bformat(_("%1$s could not be read."), from_utf8(filename.absFilename())));
646                 return failure;
647         }
648
649         lex.next();
650         string const token(lex.getString());
651
652         if (!lex.isOK()) {
653                 Alert::error(_("Document could not be read"),
654                              bformat(_("%1$s could not be read."), from_utf8(filename.absFilename())));
655                 return failure;
656         }
657
658         // the first token _must_ be...
659         if (token != "\\lyxformat") {
660                 lyxerr << "Token: " << token << endl;
661
662                 Alert::error(_("Document format failure"),
663                              bformat(_("%1$s is not a LyX document."),
664                                        from_utf8(filename.absFilename())));
665                 return failure;
666         }
667
668         lex.next();
669         string tmp_format = lex.getString();
670         //lyxerr << "LyX Format: `" << tmp_format << '\'' << endl;
671         // if present remove ".," from string.
672         string::size_type dot = tmp_format.find_first_of(".,");
673         //lyxerr << "           dot found at " << dot << endl;
674         if (dot != string::npos)
675                         tmp_format.erase(dot, 1);
676         int const file_format = convert<int>(tmp_format);
677         //lyxerr << "format: " << file_format << endl;
678
679         if (file_format != LYX_FORMAT) {
680
681                 if (fromstring)
682                         // lyx2lyx would fail
683                         return wrongversion;
684
685                 FileName const tmpfile(tempName());
686                 if (tmpfile.empty()) {
687                         Alert::error(_("Conversion failed"),
688                                      bformat(_("%1$s is from an earlier"
689                                               " version of LyX, but a temporary"
690                                               " file for converting it could"
691                                                             " not be created."),
692                                               from_utf8(filename.absFilename())));
693                         return failure;
694                 }
695                 FileName const lyx2lyx = libFileSearch("lyx2lyx", "lyx2lyx");
696                 if (lyx2lyx.empty()) {
697                         Alert::error(_("Conversion script not found"),
698                                      bformat(_("%1$s is from an earlier"
699                                                " version of LyX, but the"
700                                                " conversion script lyx2lyx"
701                                                             " could not be found."),
702                                                from_utf8(filename.absFilename())));
703                         return failure;
704                 }
705                 ostringstream command;
706                 command << os::python()
707                         << ' ' << quoteName(lyx2lyx.toFilesystemEncoding())
708                         << " -t " << convert<string>(LYX_FORMAT)
709                         << " -o " << quoteName(tmpfile.toFilesystemEncoding())
710                         << ' ' << quoteName(filename.toFilesystemEncoding());
711                 string const command_str = command.str();
712
713                 lyxerr[Debug::INFO] << "Running '"
714                                     << command_str << '\''
715                                     << endl;
716
717                 cmd_ret const ret = runCommand(command_str);
718                 if (ret.first != 0) {
719                         Alert::error(_("Conversion script failed"),
720                                      bformat(_("%1$s is from an earlier version"
721                                               " of LyX, but the lyx2lyx script"
722                                                             " failed to convert it."),
723                                               from_utf8(filename.absFilename())));
724                         return failure;
725                 } else {
726                         bool const ret = readFile(tmpfile);
727                         // Do stuff with tmpfile name and buffer name here.
728                         return ret ? success : failure;
729                 }
730
731         }
732
733         if (readDocument(lex)) {
734                 Alert::error(_("Document format failure"),
735                              bformat(_("%1$s ended unexpectedly, which means"
736                                                     " that it is probably corrupted."),
737                                        from_utf8(filename.absFilename())));
738         }
739
740         //lyxerr << "removing " << MacroTable::localMacros().size()
741         //      << " temporary macro entries" << endl;
742         //MacroTable::localMacros().clear();
743
744         pimpl_->file_fully_loaded = true;
745         return success;
746 }
747
748
749 // Should probably be moved to somewhere else: BufferView? LyXView?
750 bool Buffer::save() const
751 {
752         // We don't need autosaves in the immediate future. (Asger)
753         resetAutosaveTimers();
754
755         string const encodedFilename = pimpl_->filename.toFilesystemEncoding();
756
757         FileName backupName;
758         bool madeBackup = false;
759
760         // make a backup if the file already exists
761         if (lyxrc.make_backup && fs::exists(encodedFilename)) {
762                 backupName = FileName(fileName() + '~');
763                 if (!lyxrc.backupdir_path.empty())
764                         backupName = FileName(addName(lyxrc.backupdir_path,
765                                               subst(os::internal_path(backupName.absFilename()), '/', '!')));
766
767                 try {
768                         fs::copy_file(encodedFilename, backupName.toFilesystemEncoding(), false);
769                         madeBackup = true;
770                 } catch (fs::filesystem_error const & fe) {
771                         Alert::error(_("Backup failure"),
772                                      bformat(_("Cannot create backup file %1$s.\n"
773                                                "Please check whether the directory exists and is writeable."),
774                                              from_utf8(backupName.absFilename())));
775                         lyxerr[Debug::DEBUG] << "Fs error: " << fe.what() << endl;
776                 }
777         }
778
779         if (writeFile(pimpl_->filename)) {
780                 markClean();
781                 removeAutosaveFile(fileName());
782                 return true;
783         } else {
784                 // Saving failed, so backup is not backup
785                 if (madeBackup)
786                         rename(backupName, pimpl_->filename);
787                 return false;
788         }
789 }
790
791
792 bool Buffer::writeFile(FileName const & fname) const
793 {
794         if (pimpl_->read_only && fname == pimpl_->filename)
795                 return false;
796
797         bool retval = false;
798
799         if (params().compressed) {
800                 io::filtering_ostream ofs(io::gzip_compressor() | io::file_sink(fname.toFilesystemEncoding()));
801                 if (!ofs)
802                         return false;
803
804                 retval = write(ofs);
805         } else {
806                 ofstream ofs(fname.toFilesystemEncoding().c_str(), ios::out|ios::trunc);
807                 if (!ofs)
808                         return false;
809
810                 retval = write(ofs);
811         }
812
813         return retval;
814 }
815
816
817 bool Buffer::write(ostream & ofs) const
818 {
819 #ifdef HAVE_LOCALE
820         // Use the standard "C" locale for file output.
821         ofs.imbue(std::locale::classic());
822 #endif
823
824         // The top of the file should not be written by params().
825
826         // write out a comment in the top of the file
827         ofs << "#LyX " << lyx_version
828             << " created this file. For more info see http://www.lyx.org/\n"
829             << "\\lyxformat " << LYX_FORMAT << "\n"
830             << "\\begin_document\n";
831
832         // now write out the buffer parameters.
833         ofs << "\\begin_header\n";
834         params().writeFile(ofs);
835         ofs << "\\end_header\n";
836
837         // write the text
838         ofs << "\n\\begin_body\n";
839         text().write(*this, ofs);
840         ofs << "\n\\end_body\n";
841
842         // Write marker that shows file is complete
843         ofs << "\\end_document" << endl;
844
845         // Shouldn't really be needed....
846         //ofs.close();
847
848         // how to check if close went ok?
849         // Following is an attempt... (BE 20001011)
850
851         // good() returns false if any error occured, including some
852         //        formatting error.
853         // bad()  returns true if something bad happened in the buffer,
854         //        which should include file system full errors.
855
856         bool status = true;
857         if (!ofs) {
858                 status = false;
859                 lyxerr << "File was not closed properly." << endl;
860         }
861
862         return status;
863 }
864
865
866 bool Buffer::makeLaTeXFile(FileName const & fname,
867                            string const & original_path,
868                            OutputParams const & runparams,
869                            bool output_preamble, bool output_body)
870 {
871         string const encoding = params().encoding().iconvName();
872         lyxerr[Debug::LATEX] << "makeLaTeXFile encoding: "
873                 << encoding << "..." << endl;
874
875         odocfstream ofs(encoding);
876         if (!openFileWrite(ofs, fname))
877                 return false;
878
879         try {
880                 writeLaTeXSource(ofs, original_path,
881                       runparams, output_preamble, output_body);
882         }
883         catch (iconv_codecvt_facet_exception &) {
884                 Alert::error(_("Encoding error"),
885                         _("Some characters of your document are not "
886                           "representable in the chosen encoding.\n"
887                           "Changing the document encoding to utf8 could help."));
888                 return false;
889         }
890
891         ofs.close();
892         if (ofs.fail()) {
893                 lyxerr << "File '" << fname << "' was not closed properly." << endl;
894                 Alert::error(_("Error closing file"),
895                         _("The output file could not be closed properly.\n"
896                           " Probably some characters of your document are not "
897                           "representable in the chosen encoding.\n"
898                           "Changing the document encoding to utf8 could help."));
899                 return false;
900         }
901         return true;
902 }
903
904
905 void Buffer::writeLaTeXSource(odocstream & os,
906                            string const & original_path,
907                            OutputParams const & runparams_in,
908                            bool const output_preamble, bool const output_body)
909 {
910         OutputParams runparams = runparams_in;
911
912         // validate the buffer.
913         lyxerr[Debug::LATEX] << "  Validating buffer..." << endl;
914         LaTeXFeatures features(*this, params(), runparams);
915         validate(features);
916         lyxerr[Debug::LATEX] << "  Buffer validation done." << endl;
917
918         texrow().reset();
919
920         // The starting paragraph of the coming rows is the
921         // first paragraph of the document. (Asger)
922         texrow().start(paragraphs().begin()->id(), 0);
923
924         if (output_preamble && runparams.nice) {
925                 os << "%% LyX " << lyx_version << " created this file.  "
926                         "For more info, see http://www.lyx.org/.\n"
927                         "%% Do not edit unless you really know what "
928                         "you are doing.\n";
929                 texrow().newline();
930                 texrow().newline();
931         }
932         lyxerr[Debug::INFO] << "lyx document header finished" << endl;
933         // There are a few differences between nice LaTeX and usual files:
934         // usual is \batchmode and has a
935         // special input@path to allow the including of figures
936         // with either \input or \includegraphics (what figinsets do).
937         // input@path is set when the actual parameter
938         // original_path is set. This is done for usual tex-file, but not
939         // for nice-latex-file. (Matthias 250696)
940         // Note that input@path is only needed for something the user does
941         // in the preamble, included .tex files or ERT, files included by
942         // LyX work without it.
943         if (output_preamble) {
944                 if (!runparams.nice) {
945                         // code for usual, NOT nice-latex-file
946                         os << "\\batchmode\n"; // changed
947                         // from \nonstopmode
948                         texrow().newline();
949                 }
950                 if (!original_path.empty()) {
951                         // FIXME UNICODE
952                         // We don't know the encoding of inputpath
953                         docstring const inputpath = from_utf8(latex_path(original_path));
954                         os << "\\makeatletter\n"
955                            << "\\def\\input@path{{"
956                            << inputpath << "/}}\n"
957                            << "\\makeatother\n";
958                         texrow().newline();
959                         texrow().newline();
960                         texrow().newline();
961                 }
962
963                 // Write the preamble
964                 runparams.use_babel = params().writeLaTeX(os, features, texrow());
965
966                 if (!output_body)
967                         return;
968
969                 // make the body.
970                 os << "\\begin{document}\n";
971                 texrow().newline();
972         } // output_preamble
973         lyxerr[Debug::INFO] << "preamble finished, now the body." << endl;
974
975         if (!lyxrc.language_auto_begin) {
976                 // FIXME UNICODE
977                 os << from_utf8(subst(lyxrc.language_command_begin,
978                                            "$$lang",
979                                            params().language->babel()))
980                    << '\n';
981                 texrow().newline();
982         }
983
984         // if we are doing a real file with body, even if this is the
985         // child of some other buffer, let's cut the link here.
986         // This happens for example if only a child document is printed.
987         string save_parentname;
988         if (output_preamble) {
989                 save_parentname = params().parentname;
990                 params().parentname.erase();
991         }
992
993         // the real stuff
994         latexParagraphs(*this, paragraphs(), os, texrow(), runparams);
995
996         // Restore the parenthood if needed
997         if (output_preamble)
998                 params().parentname = save_parentname;
999
1000         // add this just in case after all the paragraphs
1001         os << endl;
1002         texrow().newline();
1003
1004         if (!lyxrc.language_auto_end) {
1005                 os << from_utf8(subst(lyxrc.language_command_end,
1006                                            "$$lang",
1007                                            params().language->babel()))
1008                    << '\n';
1009                 texrow().newline();
1010         }
1011
1012         if (output_preamble) {
1013                 os << "\\end{document}\n";
1014                 texrow().newline();
1015
1016                 lyxerr[Debug::LATEX] << "makeLaTeXFile...done" << endl;
1017         } else {
1018                 lyxerr[Debug::LATEX] << "LaTeXFile for inclusion made."
1019                                      << endl;
1020         }
1021
1022         // Just to be sure. (Asger)
1023         texrow().newline();
1024
1025         lyxerr[Debug::INFO] << "Finished making LaTeX file." << endl;
1026         lyxerr[Debug::INFO] << "Row count was " << texrow().rows() - 1
1027                             << '.' << endl;
1028 }
1029
1030
1031 bool Buffer::isLatex() const
1032 {
1033         return params().getLyXTextClass().outputType() == LATEX;
1034 }
1035
1036
1037 bool Buffer::isLiterate() const
1038 {
1039         return params().getLyXTextClass().outputType() == LITERATE;
1040 }
1041
1042
1043 bool Buffer::isDocBook() const
1044 {
1045         return params().getLyXTextClass().outputType() == DOCBOOK;
1046 }
1047
1048
1049 void Buffer::makeDocBookFile(FileName const & fname,
1050                               OutputParams const & runparams,
1051                               bool const body_only)
1052 {
1053         lyxerr[Debug::LATEX] << "makeDocBookFile..." << endl;
1054
1055         //ofstream ofs;
1056         odocfstream ofs;
1057         if (!openFileWrite(ofs, fname))
1058                 return;
1059
1060         writeDocBookSource(ofs, fname.absFilename(), runparams, body_only);
1061
1062         ofs.close();
1063         if (ofs.fail())
1064                 lyxerr << "File '" << fname << "' was not closed properly." << endl;
1065 }
1066
1067
1068 void Buffer::writeDocBookSource(odocstream & os, string const & fname,
1069                              OutputParams const & runparams,
1070                              bool const only_body)
1071 {
1072         LaTeXFeatures features(*this, params(), runparams);
1073         validate(features);
1074
1075         texrow().reset();
1076
1077         LyXTextClass const & tclass = params().getLyXTextClass();
1078         string const top_element = tclass.latexname();
1079
1080         if (!only_body) {
1081                 if (runparams.flavor == OutputParams::XML)
1082                         os << "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n";
1083
1084                 // FIXME UNICODE
1085                 os << "<!DOCTYPE " << from_ascii(top_element) << ' ';
1086
1087                 // FIXME UNICODE
1088                 if (! tclass.class_header().empty())
1089                         os << from_ascii(tclass.class_header());
1090                 else if (runparams.flavor == OutputParams::XML)
1091                         os << "PUBLIC \"-//OASIS//DTD DocBook XML//EN\" "
1092                             << "\"http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd\"";
1093                 else
1094                         os << " PUBLIC \"-//OASIS//DTD DocBook V4.2//EN\"";
1095
1096                 docstring preamble = from_utf8(params().preamble);
1097                 if (runparams.flavor != OutputParams::XML ) {
1098                         preamble += "<!ENTITY % output.print.png \"IGNORE\">\n";
1099                         preamble += "<!ENTITY % output.print.pdf \"IGNORE\">\n";
1100                         preamble += "<!ENTITY % output.print.eps \"IGNORE\">\n";
1101                         preamble += "<!ENTITY % output.print.bmp \"IGNORE\">\n";
1102                 }
1103
1104                 string const name = runparams.nice ? changeExtension(fileName(), ".sgml")
1105                          : fname;
1106                 preamble += features.getIncludedFiles(name);
1107                 preamble += features.getLyXSGMLEntities();
1108
1109                 if (!preamble.empty()) {
1110                         os << "\n [ " << preamble << " ]";
1111                 }
1112                 os << ">\n\n";
1113         }
1114
1115         string top = top_element;
1116         top += " lang=\"";
1117         if (runparams.flavor == OutputParams::XML)
1118                 top += params().language->code();
1119         else
1120                 top += params().language->code().substr(0,2);
1121         top += '"';
1122
1123         if (!params().options.empty()) {
1124                 top += ' ';
1125                 top += params().options;
1126         }
1127
1128         os << "<!-- " << ((runparams.flavor == OutputParams::XML)? "XML" : "SGML")
1129             << " file was created by LyX " << lyx_version
1130             << "\n  See http://www.lyx.org/ for more information -->\n";
1131
1132         params().getLyXTextClass().counters().reset();
1133
1134         sgml::openTag(os, top);
1135         os << '\n';
1136         docbookParagraphs(paragraphs(), *this, os, runparams);
1137         sgml::closeTag(os, top_element);
1138 }
1139
1140
1141 // chktex should be run with these flags disabled: 3, 22, 25, 30, 38(?)
1142 // Other flags: -wall -v0 -x
1143 int Buffer::runChktex()
1144 {
1145         busy(true);
1146
1147         // get LaTeX-Filename
1148         string const name = getLatexName(false);
1149         string const path = temppath();
1150         string const org_path = filePath();
1151
1152         support::Path p(path); // path to LaTeX file
1153         message(_("Running chktex..."));
1154
1155         // Generate the LaTeX file if neccessary
1156         OutputParams runparams;
1157         runparams.flavor = OutputParams::LATEX;
1158         runparams.nice = false;
1159         makeLaTeXFile(FileName(name), org_path, runparams);
1160
1161         TeXErrors terr;
1162         Chktex chktex(lyxrc.chktex_command, onlyFilename(name), filePath());
1163         int const res = chktex.run(terr); // run chktex
1164
1165         if (res == -1) {
1166                 Alert::error(_("chktex failure"),
1167                              _("Could not run chktex successfully."));
1168         } else if (res > 0) {
1169                 // Fill-in the error list with the TeX errors
1170                 bufferErrors(*this, terr, errorLists_["ChkTex"]);
1171         }
1172
1173         busy(false);
1174
1175         errors("ChkTeX");
1176
1177         return res;
1178 }
1179
1180
1181 void Buffer::validate(LaTeXFeatures & features) const
1182 {
1183         LyXTextClass const & tclass = params().getLyXTextClass();
1184
1185         if (features.isAvailable("dvipost") && params().outputChanges)
1186                 features.require("dvipost");
1187
1188         // AMS Style is at document level
1189         if (params().use_amsmath == BufferParams::package_on
1190             || tclass.provides(LyXTextClass::amsmath))
1191                 features.require("amsmath");
1192         if (params().use_esint == BufferParams::package_on)
1193                 features.require("esint");
1194
1195         for_each(paragraphs().begin(), paragraphs().end(),
1196                  boost::bind(&Paragraph::validate, _1, boost::ref(features)));
1197
1198         // the bullet shapes are buffer level not paragraph level
1199         // so they are tested here
1200         for (int i = 0; i < 4; ++i) {
1201                 if (params().user_defined_bullet(i) != ITEMIZE_DEFAULTS[i]) {
1202                         int const font = params().user_defined_bullet(i).getFont();
1203                         if (font == 0) {
1204                                 int const c = params()
1205                                         .user_defined_bullet(i)
1206                                         .getCharacter();
1207                                 if (c == 16
1208                                    || c == 17
1209                                    || c == 25
1210                                    || c == 26
1211                                    || c == 31) {
1212                                         features.require("latexsym");
1213                                 }
1214                         } else if (font == 1) {
1215                                 features.require("amssymb");
1216                         } else if ((font >= 2 && font <= 5)) {
1217                                 features.require("pifont");
1218                         }
1219                 }
1220         }
1221
1222         if (lyxerr.debugging(Debug::LATEX)) {
1223                 features.showStruct();
1224         }
1225 }
1226
1227
1228 void Buffer::getLabelList(vector<docstring> & list) const
1229 {
1230         /// if this is a child document and the parent is already loaded
1231         /// Use the parent's list instead  [ale990407]
1232         Buffer const * tmp = getMasterBuffer();
1233         if (!tmp) {
1234                 lyxerr << "getMasterBuffer() failed!" << endl;
1235                 BOOST_ASSERT(tmp);
1236         }
1237         if (tmp != this) {
1238                 tmp->getLabelList(list);
1239                 return;
1240         }
1241
1242         for (InsetIterator it = inset_iterator_begin(inset()); it; ++it)
1243                 it.nextInset()->getLabelList(*this, list);
1244 }
1245
1246
1247 // This is also a buffer property (ale)
1248 void Buffer::fillWithBibKeys(vector<pair<string, docstring> > & keys)
1249         const
1250 {
1251         /// if this is a child document and the parent is already loaded
1252         /// use the parent's list instead  [ale990412]
1253         Buffer const * tmp = getMasterBuffer();
1254         BOOST_ASSERT(tmp);
1255         if (tmp != this) {
1256                 tmp->fillWithBibKeys(keys);
1257                 return;
1258         }
1259
1260         for (InsetIterator it = inset_iterator_begin(inset()); it; ++it) {
1261                 if (it->lyxCode() == InsetBase::BIBTEX_CODE) {
1262                         InsetBibtex const & inset =
1263                                 dynamic_cast<InsetBibtex const &>(*it);
1264                         inset.fillWithBibKeys(*this, keys);
1265                 } else if (it->lyxCode() == InsetBase::INCLUDE_CODE) {
1266                         InsetInclude const & inset =
1267                                 dynamic_cast<InsetInclude const &>(*it);
1268                         inset.fillWithBibKeys(*this, keys);
1269                 } else if (it->lyxCode() == InsetBase::BIBITEM_CODE) {
1270                         InsetBibitem const & inset =
1271                                 dynamic_cast<InsetBibitem const &>(*it);
1272                         // FIXME UNICODE
1273                         string const key = to_utf8(inset.getParam("key"));
1274                         docstring const label = inset.getParam("label");
1275                         docstring const ref; // = pit->asString(this, false);
1276                         docstring const info = label + "TheBibliographyRef" + ref;
1277                         keys.push_back(pair<string, docstring>(key, info));
1278                 }
1279         }
1280 }
1281
1282
1283 void Buffer::updateBibfilesCache()
1284 {
1285         // if this is a child document and the parent is already loaded
1286         // update the parent's cache instead
1287         Buffer * tmp = getMasterBuffer();
1288         BOOST_ASSERT(tmp);
1289         if (tmp != this) {
1290                 tmp->updateBibfilesCache();
1291                 return;
1292         }
1293
1294         bibfilesCache_.clear();
1295         for (InsetIterator it = inset_iterator_begin(inset()); it; ++it) {
1296                 if (it->lyxCode() == InsetBase::BIBTEX_CODE) {
1297                         InsetBibtex const & inset =
1298                                 dynamic_cast<InsetBibtex const &>(*it);
1299                         vector<FileName> const bibfiles = inset.getFiles(*this);
1300                         bibfilesCache_.insert(bibfilesCache_.end(),
1301                                 bibfiles.begin(),
1302                                 bibfiles.end());
1303                 } else if (it->lyxCode() == InsetBase::INCLUDE_CODE) {
1304                         InsetInclude & inset =
1305                                 dynamic_cast<InsetInclude &>(*it);
1306                         inset.updateBibfilesCache(*this);
1307                         vector<FileName> const & bibfiles =
1308                                         inset.getBibfilesCache(*this);
1309                         bibfilesCache_.insert(bibfilesCache_.end(),
1310                                 bibfiles.begin(),
1311                                 bibfiles.end());
1312                 }
1313         }
1314 }
1315
1316
1317 vector<FileName> const & Buffer::getBibfilesCache() const
1318 {
1319         // if this is a child document and the parent is already loaded
1320         // use the parent's cache instead
1321         Buffer const * tmp = getMasterBuffer();
1322         BOOST_ASSERT(tmp);
1323         if (tmp != this)
1324                 return tmp->getBibfilesCache();
1325
1326         // We update the cache when first used instead of at loading time.
1327         if (bibfilesCache_.empty())
1328                 const_cast<Buffer *>(this)->updateBibfilesCache();
1329
1330         return bibfilesCache_;
1331 }
1332
1333
1334 bool Buffer::isDepClean(string const & name) const
1335 {
1336         DepClean::const_iterator const it = pimpl_->dep_clean.find(name);
1337         if (it == pimpl_->dep_clean.end())
1338                 return true;
1339         return it->second;
1340 }
1341
1342
1343 void Buffer::markDepClean(string const & name)
1344 {
1345         pimpl_->dep_clean[name] = true;
1346 }
1347
1348
1349 bool Buffer::dispatch(string const & command, bool * result)
1350 {
1351         return dispatch(lyxaction.lookupFunc(command), result);
1352 }
1353
1354
1355 bool Buffer::dispatch(FuncRequest const & func, bool * result)
1356 {
1357         bool dispatched = true;
1358
1359         switch (func.action) {
1360                 case LFUN_BUFFER_EXPORT: {
1361                         bool const tmp = Exporter::Export(this, to_utf8(func.argument()), false);
1362                         if (result)
1363                                 *result = tmp;
1364                         break;
1365                 }
1366
1367                 default:
1368                         dispatched = false;
1369         }
1370         return dispatched;
1371 }
1372
1373
1374 void Buffer::changeLanguage(Language const * from, Language const * to)
1375 {
1376         BOOST_ASSERT(from);
1377         BOOST_ASSERT(to);
1378
1379         // Take care of l10n/i18n
1380         updateDocLang(to);
1381
1382         for_each(par_iterator_begin(),
1383                  par_iterator_end(),
1384                  bind(&Paragraph::changeLanguage, _1, params(), from, to));
1385
1386         text().current_font.setLanguage(to);
1387         text().real_current_font.setLanguage(to);
1388 }
1389
1390
1391 void Buffer::updateDocLang(Language const * nlang)
1392 {
1393         BOOST_ASSERT(nlang);
1394
1395         pimpl_->messages = &getMessages(nlang->code());
1396 }
1397
1398
1399 bool Buffer::isMultiLingual() const
1400 {
1401         ParConstIterator end = par_iterator_end();
1402         for (ParConstIterator it = par_iterator_begin(); it != end; ++it)
1403                 if (it->isMultiLingual(params()))
1404                         return true;
1405
1406         return false;
1407 }
1408
1409
1410 ParIterator Buffer::getParFromID(int const id) const
1411 {
1412         ParConstIterator it = par_iterator_begin();
1413         ParConstIterator const end = par_iterator_end();
1414
1415         if (id < 0) {
1416                 // John says this is called with id == -1 from undo
1417                 lyxerr << "getParFromID(), id: " << id << endl;
1418                 return end;
1419         }
1420
1421         for (; it != end; ++it)
1422                 if (it->id() == id)
1423                         return it;
1424
1425         return end;
1426 }
1427
1428
1429 bool Buffer::hasParWithID(int const id) const
1430 {
1431         ParConstIterator const it = getParFromID(id);
1432         return it != par_iterator_end();
1433 }
1434
1435
1436 ParIterator Buffer::par_iterator_begin()
1437 {
1438         return lyx::par_iterator_begin(inset());
1439 }
1440
1441
1442 ParIterator Buffer::par_iterator_end()
1443 {
1444         return lyx::par_iterator_end(inset());
1445 }
1446
1447
1448 ParConstIterator Buffer::par_iterator_begin() const
1449 {
1450         return lyx::par_const_iterator_begin(inset());
1451 }
1452
1453
1454 ParConstIterator Buffer::par_iterator_end() const
1455 {
1456         return lyx::par_const_iterator_end(inset());
1457 }
1458
1459
1460 Language const * Buffer::getLanguage() const
1461 {
1462         return params().language;
1463 }
1464
1465
1466 docstring const Buffer::B_(string const & l10n) const
1467 {
1468         if (pimpl_->messages) 
1469                 return pimpl_->messages->get(l10n);
1470
1471         return _(l10n);
1472 }
1473
1474
1475 bool Buffer::isClean() const
1476 {
1477         return pimpl_->lyx_clean;
1478 }
1479
1480
1481 bool Buffer::isBakClean() const
1482 {
1483         return pimpl_->bak_clean;
1484 }
1485
1486
1487 void Buffer::markClean() const
1488 {
1489         if (!pimpl_->lyx_clean) {
1490                 pimpl_->lyx_clean = true;
1491                 updateTitles();
1492         }
1493         // if the .lyx file has been saved, we don't need an
1494         // autosave
1495         pimpl_->bak_clean = true;
1496 }
1497
1498
1499 void Buffer::markBakClean()
1500 {
1501         pimpl_->bak_clean = true;
1502 }
1503
1504
1505 void Buffer::setUnnamed(bool flag)
1506 {
1507         pimpl_->unnamed = flag;
1508 }
1509
1510
1511 bool Buffer::isUnnamed() const
1512 {
1513         return pimpl_->unnamed;
1514 }
1515
1516
1517 #ifdef WITH_WARNINGS
1518 #warning this function should be moved to buffer_pimpl.C
1519 #endif
1520 void Buffer::markDirty()
1521 {
1522         if (pimpl_->lyx_clean) {
1523                 pimpl_->lyx_clean = false;
1524                 updateTitles();
1525         }
1526         pimpl_->bak_clean = false;
1527
1528         DepClean::iterator it = pimpl_->dep_clean.begin();
1529         DepClean::const_iterator const end = pimpl_->dep_clean.end();
1530
1531         for (; it != end; ++it)
1532                 it->second = false;
1533 }
1534
1535
1536 string const Buffer::fileName() const
1537 {
1538         return pimpl_->filename.absFilename();
1539 }
1540
1541
1542 string const & Buffer::filePath() const
1543 {
1544         return params().filepath;
1545 }
1546
1547
1548 bool Buffer::isReadonly() const
1549 {
1550         return pimpl_->read_only;
1551 }
1552
1553
1554 void Buffer::setParentName(string const & name)
1555 {
1556         params().parentname = name;
1557 }
1558
1559
1560 Buffer const * Buffer::getMasterBuffer() const
1561 {
1562         if (!params().parentname.empty()
1563             && theBufferList().exists(params().parentname)) {
1564                 Buffer const * buf = theBufferList().getBuffer(params().parentname);
1565                 if (buf)
1566                         return buf->getMasterBuffer();
1567         }
1568
1569         return this;
1570 }
1571
1572
1573 Buffer * Buffer::getMasterBuffer()
1574 {
1575         if (!params().parentname.empty()
1576             && theBufferList().exists(params().parentname)) {
1577                 Buffer * buf = theBufferList().getBuffer(params().parentname);
1578                 if (buf)
1579                         return buf->getMasterBuffer();
1580         }
1581
1582         return this;
1583 }
1584
1585
1586 MacroData const & Buffer::getMacro(docstring const & name) const
1587 {
1588         return pimpl_->macros.get(name);
1589 }
1590
1591
1592 bool Buffer::hasMacro(docstring const & name) const
1593 {
1594         return pimpl_->macros.has(name);
1595 }
1596
1597
1598 void Buffer::insertMacro(docstring const & name, MacroData const & data)
1599 {
1600         MacroTable::globalMacros().insert(name, data);
1601         pimpl_->macros.insert(name, data);
1602 }
1603
1604
1605 void Buffer::buildMacros()
1606 {
1607         // Start with global table.
1608         pimpl_->macros = MacroTable::globalMacros();
1609
1610         // Now add our own.
1611         ParagraphList const & pars = text().paragraphs();
1612         for (size_t i = 0, n = pars.size(); i != n; ++i) {
1613                 //lyxerr << "searching main par " << i
1614                 //      << " for macro definitions" << std::endl;
1615                 InsetList const & insets = pars[i].insetlist;
1616                 InsetList::const_iterator it = insets.begin();
1617                 InsetList::const_iterator end = insets.end();
1618                 for ( ; it != end; ++it) {
1619                         //lyxerr << "found inset code " << it->inset->lyxCode() << std::endl;
1620                         if (it->inset->lyxCode() == InsetBase::MATHMACRO_CODE) {
1621                                 MathMacroTemplate const & mac
1622                                         = static_cast<MathMacroTemplate const &>(*it->inset);
1623                                 insertMacro(mac.name(), mac.asMacroData());
1624                         }
1625                 }
1626         }
1627 }
1628
1629
1630 void Buffer::saveCursor(StableDocIterator cur, StableDocIterator anc)
1631 {
1632         cursor_ = cur;
1633         anchor_ = anc;
1634 }
1635
1636
1637 void Buffer::changeRefsIfUnique(docstring const & from, docstring const & to,
1638         InsetBase::Code code)
1639 {
1640         //FIXME: This does not work for child documents yet.
1641         BOOST_ASSERT(code == InsetBase::CITE_CODE || code == InsetBase::REF_CODE);
1642         // Check if the label 'from' appears more than once
1643         vector<docstring> labels;
1644
1645         if (code == InsetBase::CITE_CODE) {
1646                 vector<pair<string, docstring> > keys;
1647                 fillWithBibKeys(keys);
1648                 vector<pair<string, docstring> >::const_iterator bit  = keys.begin();
1649                 vector<pair<string, docstring> >::const_iterator bend = keys.end();
1650
1651                 for (; bit != bend; ++bit)
1652                         // FIXME UNICODE
1653                         labels.push_back(from_utf8(bit->first));
1654         } else
1655                 getLabelList(labels);
1656
1657         if (lyx::count(labels.begin(), labels.end(), from) > 1)
1658                 return;
1659
1660         for (InsetIterator it = inset_iterator_begin(inset()); it; ++it) {
1661                 if (it->lyxCode() == code) {
1662                         InsetCommand & inset = dynamic_cast<InsetCommand &>(*it);
1663                         inset.replaceContents(to_utf8(from), to_utf8(to));
1664                 }
1665         }
1666 }
1667
1668
1669 void Buffer::getSourceCode(odocstream & os, pit_type par_begin,
1670         pit_type par_end, bool full_source)
1671 {
1672         OutputParams runparams;
1673         runparams.nice = true;
1674         runparams.flavor = OutputParams::LATEX;
1675         runparams.linelen = lyxrc.plaintext_linelen;
1676         // No side effect of file copying and image conversion
1677         runparams.dryrun = true;
1678
1679         if (full_source) {
1680                 os << "% Preview source code\n\n";
1681                 if (isLatex())
1682                         writeLaTeXSource(os, filePath(), runparams, true, true);
1683                 else {
1684                         writeDocBookSource(os, fileName(), runparams, false);
1685                 }
1686         } else {
1687                 runparams.par_begin = par_begin;
1688                 runparams.par_end = par_end;
1689                 if (par_begin + 1 == par_end)
1690                         os << "% Preview source code for paragraph " << par_begin << "\n\n";
1691                 else
1692                         os << "% Preview source code from paragraph " << par_begin
1693                            << " to " << par_end - 1 << "\n\n";
1694                 // output paragraphs
1695                 if (isLatex()) {
1696                         texrow().reset();
1697                         latexParagraphs(*this, paragraphs(), os, texrow(), runparams);
1698                 } else {
1699                         // DocBook
1700                         docbookParagraphs(paragraphs(), *this, os, runparams);
1701                 }
1702         }
1703 }
1704
1705
1706 ErrorList const & Buffer::errorList(string const & type) const
1707 {
1708         static ErrorList const emptyErrorList;
1709         std::map<string, ErrorList>::const_iterator I = errorLists_.find(type);
1710         if (I == errorLists_.end())
1711                 return emptyErrorList;
1712
1713         return I->second;
1714 }
1715
1716
1717 ErrorList & Buffer::errorList(string const & type)
1718 {
1719         return errorLists_[type];
1720 }
1721
1722
1723 } // namespace lyx