3 * This file is part of LyX, the document processor.
4 * Licence details can be found in the file COPYING.
6 * \author Lars Gullik Bjønnes
8 * Full author contact details are available in file CREDITS.
16 #include "BranchList.h"
17 #include "buffer_funcs.h"
18 #include "BufferList.h"
19 #include "BufferParams.h"
25 #include "ErrorList.h"
28 #include "FuncRequest.h"
30 #include "InsetIterator.h"
33 #include "LaTeXFeatures.h"
34 #include "LyXAction.h"
42 #include "output_docbook.h"
43 #include "output_latex.h"
44 #include "Paragraph.h"
45 #include "paragraph_funcs.h"
46 #include "ParagraphParameters.h"
47 #include "ParIterator.h"
50 #include "TocBackend.h"
54 #include "insets/InsetBibitem.h"
55 #include "insets/InsetBibtex.h"
56 #include "insets/InsetInclude.h"
57 #include "insets/InsetText.h"
59 #include "mathed/MathMacroTemplate.h"
60 #include "mathed/MacroTable.h"
61 #include "mathed/MathSupport.h"
63 #include "frontends/alert.h"
65 #include "graphics/Previews.h"
67 #include "support/types.h"
68 #include "support/lyxalgo.h"
69 #include "support/filetools.h"
70 #include "support/fs_extras.h"
71 #include "support/lyxlib.h"
72 #include "support/os.h"
73 #include "support/Path.h"
74 #include "support/textutils.h"
75 #include "support/convert.h"
77 #include <boost/iostreams/filtering_stream.hpp>
78 #include <boost/iostreams/filter/gzip.hpp>
79 #include <boost/iostreams/device/file.hpp>
80 #include <boost/bind.hpp>
81 #include <boost/filesystem/exception.hpp>
82 #include <boost/filesystem/operations.hpp>
84 #if defined (HAVE_UTIME_H)
86 #elif defined (HAVE_SYS_UTIME_H)
87 #include <sys/utime.h>
102 using std::ostringstream
;
112 using support::addName
;
113 using support::bformat
;
114 using support::changeExtension
;
115 using support::cmd_ret
;
116 using support::createBufferTmpDir
;
117 using support::destroyDir
;
118 using support::FileName
;
119 using support::getFormatFromContents
;
120 using support::libFileSearch
;
121 using support::latex_path
;
122 using support::ltrim
;
123 using support::makeAbsPath
;
124 using support::makeDisplayPath
;
125 using support::makeLatexName
;
126 using support::onlyFilename
;
127 using support::onlyPath
;
128 using support::quoteName
;
129 using support::removeAutosaveFile
;
130 using support::rename
;
131 using support::runCommand
;
132 using support::split
;
133 using support::subst
;
134 using support::tempName
;
137 namespace Alert
= frontend::Alert
;
138 namespace os
= support::os
;
139 namespace fs
= boost::filesystem
;
140 namespace io
= boost::iostreams
;
144 int const LYX_FORMAT
= 276;
149 typedef std::map
<string
, bool> DepClean
;
154 Impl(Buffer
& parent
, FileName
const & file
, bool readonly
);
156 limited_stack
<Undo
> undostack
;
157 limited_stack
<Undo
> redostack
;
163 /// need to regenerate .tex?
167 mutable bool lyx_clean
;
169 /// is autosave needed?
170 mutable bool bak_clean
;
172 /// is this a unnamed file (New...)?
178 /// name of the file the buffer is associated with.
181 /** Set to true only when the file is fully loaded.
182 * Used to prevent the premature generation of previews
183 * and by the citation inset.
185 bool file_fully_loaded
;
187 /// our Text that should be wrapped in an InsetText
194 TocBackend toc_backend
;
196 /// Container for all sort of Buffer dependant errors.
197 map
<string
, ErrorList
> errorLists
;
201 Buffer::Impl::Impl(Buffer
& parent
, FileName
const & file
, bool readonly_
)
202 : lyx_clean(true), bak_clean(true), unnamed(false), read_only(readonly_
),
203 filename(file
), file_fully_loaded(false), inset(params
),
206 inset
.setAutoBreakRows(true);
207 lyxvc
.buffer(&parent
);
208 temppath
= createBufferTmpDir();
209 params
.filepath
= onlyPath(file
.absFilename());
210 // FIXME: And now do something if temppath == string(), because we
211 // assume from now on that temppath points to a valid temp dir.
212 // See http://www.mail-archive.com/lyx-devel@lists.lyx.org/msg67406.html
216 Buffer::Buffer(string
const & file
, bool readonly
)
217 : pimpl_(new Impl(*this, FileName(file
), readonly
))
219 LYXERR(Debug::INFO
) << "Buffer::Buffer()" << endl
;
225 LYXERR(Debug::INFO
) << "Buffer::~Buffer()" << endl
;
226 // here the buffer should take care that it is
227 // saved properly, before it goes into the void.
231 if (!temppath().empty() && !destroyDir(FileName(temppath()))) {
232 Alert::warning(_("Could not remove temporary directory"),
233 bformat(_("Could not remove the temporary directory %1$s"),
234 from_utf8(temppath())));
237 // Remove any previewed LaTeX snippets associated with this buffer.
238 graphics::Previews::get().removeLoader(*this);
242 Text
& Buffer::text() const
244 return const_cast<Text
&>(pimpl_
->inset
.text_
);
248 Inset
& Buffer::inset() const
250 return const_cast<InsetText
&>(pimpl_
->inset
);
254 limited_stack
<Undo
> & Buffer::undostack()
256 return pimpl_
->undostack
;
260 limited_stack
<Undo
> const & Buffer::undostack() const
262 return pimpl_
->undostack
;
266 limited_stack
<Undo
> & Buffer::redostack()
268 return pimpl_
->redostack
;
272 limited_stack
<Undo
> const & Buffer::redostack() const
274 return pimpl_
->redostack
;
278 BufferParams
& Buffer::params()
280 return pimpl_
->params
;
284 BufferParams
const & Buffer::params() const
286 return pimpl_
->params
;
290 ParagraphList
& Buffer::paragraphs()
292 return text().paragraphs();
296 ParagraphList
const & Buffer::paragraphs() const
298 return text().paragraphs();
302 LyXVC
& Buffer::lyxvc()
304 return pimpl_
->lyxvc
;
308 LyXVC
const & Buffer::lyxvc() const
310 return pimpl_
->lyxvc
;
314 string
const & Buffer::temppath() const
316 return pimpl_
->temppath
;
320 TexRow
& Buffer::texrow()
322 return pimpl_
->texrow
;
326 TexRow
const & Buffer::texrow() const
328 return pimpl_
->texrow
;
332 TocBackend
& Buffer::tocBackend()
334 return pimpl_
->toc_backend
;
338 TocBackend
const & Buffer::tocBackend() const
340 return pimpl_
->toc_backend
;
344 string
const Buffer::getLatexName(bool const no_path
) const
346 string
const name
= changeExtension(makeLatexName(fileName()), ".tex");
347 return no_path
? onlyFilename(name
) : name
;
351 pair
<Buffer::LogType
, string
> const Buffer::getLogName() const
353 string
const filename
= getLatexName(false);
355 if (filename
.empty())
356 return make_pair(Buffer::latexlog
, string());
358 string
const path
= temppath();
360 FileName
const fname(addName(temppath(),
361 onlyFilename(changeExtension(filename
,
363 FileName
const bname(
364 addName(path
, onlyFilename(
365 changeExtension(filename
,
366 formats
.extension("literate") + ".out"))));
368 // If no Latex log or Build log is newer, show Build log
370 if (fs::exists(bname
.toFilesystemEncoding()) &&
371 (!fs::exists(fname
.toFilesystemEncoding()) ||
372 fs::last_write_time(fname
.toFilesystemEncoding()) < fs::last_write_time(bname
.toFilesystemEncoding()))) {
373 LYXERR(Debug::FILES
) << "Log name calculated as: " << bname
<< endl
;
374 return make_pair(Buffer::buildlog
, bname
.absFilename());
376 LYXERR(Debug::FILES
) << "Log name calculated as: " << fname
<< endl
;
377 return make_pair(Buffer::latexlog
, fname
.absFilename());
381 void Buffer::setReadonly(bool const flag
)
383 if (pimpl_
->read_only
!= flag
) {
384 pimpl_
->read_only
= flag
;
390 void Buffer::setFileName(string
const & newfile
)
392 pimpl_
->filename
= makeAbsPath(newfile
);
393 params().filepath
= onlyPath(pimpl_
->filename
.absFilename());
394 setReadonly(fs::is_readonly(pimpl_
->filename
.toFilesystemEncoding()));
399 // We'll remove this later. (Lgb)
402 void unknownClass(string
const & unknown
)
404 Alert::warning(_("Unknown document class"),
405 bformat(_("Using the default document class, because the "
406 "class %1$s is unknown."), from_utf8(unknown
)));
412 int Buffer::readHeader(Lexer
& lex
)
414 int unknown_tokens
= 0;
416 int begin_header_line
= -1;
418 // Initialize parameters that may be/go lacking in header:
419 params().branchlist().clear();
420 params().preamble
.erase();
421 params().options
.erase();
422 params().float_placement
.erase();
423 params().paperwidth
.erase();
424 params().paperheight
.erase();
425 params().leftmargin
.erase();
426 params().rightmargin
.erase();
427 params().topmargin
.erase();
428 params().bottommargin
.erase();
429 params().headheight
.erase();
430 params().headsep
.erase();
431 params().footskip
.erase();
432 params().listings_params
.clear();
433 for (int i
= 0; i
< 4; ++i
) {
434 params().user_defined_bullet(i
) = ITEMIZE_DEFAULTS
[i
];
435 params().temp_bullet(i
) = ITEMIZE_DEFAULTS
[i
];
438 ErrorList
& errorList
= pimpl_
->errorLists
["Parse"];
442 string
const token
= lex
.getString();
447 if (token
== "\\end_header")
451 if (token
== "\\begin_header") {
452 begin_header_line
= line
;
456 LYXERR(Debug::PARSER
) << "Handling document header token: `"
457 << token
<< '\'' << endl
;
459 string unknown
= params().readToken(lex
, token
);
460 if (!unknown
.empty()) {
461 if (unknown
[0] != '\\' && token
== "\\textclass") {
462 unknownClass(unknown
);
465 docstring
const s
= bformat(_("Unknown token: "
469 errorList
.push_back(ErrorItem(_("Document header error"),
474 if (begin_header_line
) {
475 docstring
const s
= _("\\begin_header is missing");
476 errorList
.push_back(ErrorItem(_("Document header error"),
480 return unknown_tokens
;
485 // changed to be public and have one parameter
486 // Returns false if "\end_document" is not read (Asger)
487 bool Buffer::readDocument(Lexer
& lex
)
489 ErrorList
& errorList
= pimpl_
->errorLists
["Parse"];
493 string
const token
= lex
.getString();
494 if (token
!= "\\begin_document") {
495 docstring
const s
= _("\\begin_document is missing");
496 errorList
.push_back(ErrorItem(_("Document header error"),
500 // we are reading in a brand new document
501 BOOST_ASSERT(paragraphs().empty());
504 if (!params().getTextClass().load(filePath())) {
505 string theclass
= params().getTextClass().name();
506 Alert::error(_("Can't load document class"), bformat(
507 _("Using the default document class, because the "
508 "class %1$s could not be loaded."), from_utf8(theclass
)));
509 params().textclass
= 0;
512 if (params().outputChanges
) {
513 bool dvipost
= LaTeXFeatures::isAvailable("dvipost");
514 bool xcolorsoul
= LaTeXFeatures::isAvailable("soul") &&
515 LaTeXFeatures::isAvailable("xcolor");
517 if (!dvipost
&& !xcolorsoul
) {
518 Alert::warning(_("Changes not shown in LaTeX output"),
519 _("Changes will not be highlighted in LaTeX output, "
520 "because neither dvipost nor xcolor/soul are installed.\n"
521 "Please install these packages or redefine "
522 "\\lyxadded and \\lyxdeleted in the LaTeX preamble."));
523 } else if (!xcolorsoul
) {
524 Alert::warning(_("Changes not shown in LaTeX output"),
525 _("Changes will not be highlighted in LaTeX output "
526 "when using pdflatex, because xcolor and soul are not installed.\n"
527 "Please install both packages or redefine "
528 "\\lyxadded and \\lyxdeleted in the LaTeX preamble."));
532 bool const res
= text().read(*this, lex
, errorList
);
533 for_each(text().paragraphs().begin(),
534 text().paragraphs().end(),
535 bind(&Paragraph::setInsetOwner
, _1
, &inset()));
541 // needed to insert the selection
542 void Buffer::insertStringAsLines(ParagraphList
& pars
,
543 pit_type
& pit
, pos_type
& pos
,
544 Font
const & fn
, docstring
const & str
, bool autobreakrows
)
548 // insert the string, don't insert doublespace
549 bool space_inserted
= true;
550 for (docstring::const_iterator cit
= str
.begin();
551 cit
!= str
.end(); ++cit
) {
552 Paragraph
& par
= pars
[pit
];
554 if (autobreakrows
&& (!par
.empty() || par
.allowEmpty())) {
555 breakParagraph(params(), pars
, pit
, pos
,
556 par
.layout()->isEnvironment());
559 space_inserted
= true;
563 // do not insert consecutive spaces if !free_spacing
564 } else if ((*cit
== ' ' || *cit
== '\t') &&
565 space_inserted
&& !par
.isFreeSpacing()) {
567 } else if (*cit
== '\t') {
568 if (!par
.isFreeSpacing()) {
569 // tabs are like spaces here
570 par
.insertChar(pos
, ' ', font
, params().trackChanges
);
572 space_inserted
= true;
574 const pos_type n
= 8 - pos
% 8;
575 for (pos_type i
= 0; i
< n
; ++i
) {
576 par
.insertChar(pos
, ' ', font
, params().trackChanges
);
579 space_inserted
= true;
581 } else if (!isPrintable(*cit
)) {
582 // Ignore unprintables
585 // just insert the character
586 par
.insertChar(pos
, *cit
, font
, params().trackChanges
);
588 space_inserted
= (*cit
== ' ');
595 bool Buffer::readString(std::string
const & s
)
597 params().compressed
= false;
599 // remove dummy empty par
600 paragraphs().clear();
602 std::istringstream
is(s
);
604 FileName
const name(tempName());
605 switch (readFile(lex
, name
, true)) {
609 // We need to call lyx2lyx, so write the input to a file
610 std::ofstream
os(name
.toFilesystemEncoding().c_str());
613 return readFile(name
);
623 bool Buffer::readFile(FileName
const & filename
)
625 // Check if the file is compressed.
626 string
const format
= getFormatFromContents(filename
);
627 if (format
== "gzip" || format
== "zip" || format
== "compress") {
628 params().compressed
= true;
631 // remove dummy empty par
632 paragraphs().clear();
634 lex
.setFile(filename
);
635 if (readFile(lex
, filename
) != success
)
642 bool Buffer::fully_loaded() const
644 return pimpl_
->file_fully_loaded
;
648 void Buffer::fully_loaded(bool const value
)
650 pimpl_
->file_fully_loaded
= value
;
654 Buffer::ReadStatus
Buffer::readFile(Lexer
& lex
, FileName
const & filename
,
657 BOOST_ASSERT(!filename
.empty());
660 Alert::error(_("Document could not be read"),
661 bformat(_("%1$s could not be read."), from_utf8(filename
.absFilename())));
666 string
const token(lex
.getString());
669 Alert::error(_("Document could not be read"),
670 bformat(_("%1$s could not be read."), from_utf8(filename
.absFilename())));
674 // the first token _must_ be...
675 if (token
!= "\\lyxformat") {
676 lyxerr
<< "Token: " << token
<< endl
;
678 Alert::error(_("Document format failure"),
679 bformat(_("%1$s is not a LyX document."),
680 from_utf8(filename
.absFilename())));
685 string tmp_format
= lex
.getString();
686 //lyxerr << "LyX Format: `" << tmp_format << '\'' << endl;
687 // if present remove ".," from string.
688 string::size_type dot
= tmp_format
.find_first_of(".,");
689 //lyxerr << " dot found at " << dot << endl;
690 if (dot
!= string::npos
)
691 tmp_format
.erase(dot
, 1);
692 int const file_format
= convert
<int>(tmp_format
);
693 //lyxerr << "format: " << file_format << endl;
695 if (file_format
!= LYX_FORMAT
) {
698 // lyx2lyx would fail
701 FileName
const tmpfile(tempName());
702 if (tmpfile
.empty()) {
703 Alert::error(_("Conversion failed"),
704 bformat(_("%1$s is from a different"
705 " version of LyX, but a temporary"
706 " file for converting it could"
708 from_utf8(filename
.absFilename())));
711 FileName
const lyx2lyx
= libFileSearch("lyx2lyx", "lyx2lyx");
712 if (lyx2lyx
.empty()) {
713 Alert::error(_("Conversion script not found"),
714 bformat(_("%1$s is from a different"
715 " version of LyX, but the"
716 " conversion script lyx2lyx"
717 " could not be found."),
718 from_utf8(filename
.absFilename())));
721 ostringstream command
;
722 command
<< os::python()
723 << ' ' << quoteName(lyx2lyx
.toFilesystemEncoding())
724 << " -t " << convert
<string
>(LYX_FORMAT
)
725 << " -o " << quoteName(tmpfile
.toFilesystemEncoding())
726 << ' ' << quoteName(filename
.toFilesystemEncoding());
727 string
const command_str
= command
.str();
729 LYXERR(Debug::INFO
) << "Running '"
730 << command_str
<< '\''
733 cmd_ret
const ret
= runCommand(command_str
);
734 if (ret
.first
!= 0) {
735 Alert::error(_("Conversion script failed"),
736 bformat(_("%1$s is from a different version"
737 " of LyX, but the lyx2lyx script"
738 " failed to convert it."),
739 from_utf8(filename
.absFilename())));
742 bool const ret
= readFile(tmpfile
);
743 // Do stuff with tmpfile name and buffer name here.
744 return ret
? success
: failure
;
749 if (readDocument(lex
)) {
750 Alert::error(_("Document format failure"),
751 bformat(_("%1$s ended unexpectedly, which means"
752 " that it is probably corrupted."),
753 from_utf8(filename
.absFilename())));
756 //lyxerr << "removing " << MacroTable::localMacros().size()
757 // << " temporary macro entries" << endl;
758 //MacroTable::localMacros().clear();
760 pimpl_
->file_fully_loaded
= true;
765 // Should probably be moved to somewhere else: BufferView? LyXView?
766 bool Buffer::save() const
768 // We don't need autosaves in the immediate future. (Asger)
769 resetAutosaveTimers();
771 string
const encodedFilename
= pimpl_
->filename
.toFilesystemEncoding();
774 bool madeBackup
= false;
776 // make a backup if the file already exists
777 if (lyxrc
.make_backup
&& fs::exists(encodedFilename
)) {
778 backupName
= FileName(fileName() + '~');
779 if (!lyxrc
.backupdir_path
.empty())
780 backupName
= FileName(addName(lyxrc
.backupdir_path
,
781 subst(os::internal_path(backupName
.absFilename()), '/', '!')));
784 fs::copy_file(encodedFilename
, backupName
.toFilesystemEncoding(), false);
786 } catch (fs::filesystem_error
const & fe
) {
787 Alert::error(_("Backup failure"),
788 bformat(_("Cannot create backup file %1$s.\n"
789 "Please check whether the directory exists and is writeable."),
790 from_utf8(backupName
.absFilename())));
791 LYXERR(Debug::DEBUG
) << "Fs error: " << fe
.what() << endl
;
795 if (writeFile(pimpl_
->filename
)) {
797 removeAutosaveFile(fileName());
800 // Saving failed, so backup is not backup
802 rename(backupName
, pimpl_
->filename
);
808 bool Buffer::writeFile(FileName
const & fname
) const
810 if (pimpl_
->read_only
&& fname
== pimpl_
->filename
)
815 if (params().compressed
) {
816 io::filtering_ostream
ofs(io::gzip_compressor() | io::file_sink(fname
.toFilesystemEncoding()));
822 ofstream
ofs(fname
.toFilesystemEncoding().c_str(), ios::out
|ios::trunc
);
833 bool Buffer::write(ostream
& ofs
) const
836 // Use the standard "C" locale for file output.
837 ofs
.imbue(std::locale::classic());
840 // The top of the file should not be written by params().
842 // write out a comment in the top of the file
843 ofs
<< "#LyX " << lyx_version
844 << " created this file. For more info see http://www.lyx.org/\n"
845 << "\\lyxformat " << LYX_FORMAT
<< "\n"
846 << "\\begin_document\n";
849 /// For each author, set 'used' to true if there is a change
850 /// by this author in the document; otherwise set it to 'false'.
851 AuthorList::Authors::const_iterator a_it
= params().authors().begin();
852 AuthorList::Authors::const_iterator a_end
= params().authors().end();
853 for (; a_it
!= a_end
; ++a_it
)
854 a_it
->second
.used(false);
856 ParIterator
const end
= par_iterator_end();
857 ParIterator it
= par_iterator_begin();
858 for ( ; it
!= end
; ++it
)
859 it
->checkAuthors(params().authors());
861 // now write out the buffer parameters.
862 ofs
<< "\\begin_header\n";
863 params().writeFile(ofs
);
864 ofs
<< "\\end_header\n";
867 ofs
<< "\n\\begin_body\n";
868 text().write(*this, ofs
);
869 ofs
<< "\n\\end_body\n";
871 // Write marker that shows file is complete
872 ofs
<< "\\end_document" << endl
;
874 // Shouldn't really be needed....
877 // how to check if close went ok?
878 // Following is an attempt... (BE 20001011)
880 // good() returns false if any error occured, including some
882 // bad() returns true if something bad happened in the buffer,
883 // which should include file system full errors.
888 lyxerr
<< "File was not closed properly." << endl
;
895 bool Buffer::makeLaTeXFile(FileName
const & fname
,
896 string
const & original_path
,
897 OutputParams
const & runparams
,
898 bool output_preamble
, bool output_body
)
900 string
const encoding
= runparams
.encoding
->iconvName();
901 LYXERR(Debug::LATEX
) << "makeLaTeXFile encoding: "
902 << encoding
<< "..." << endl
;
904 odocfstream
ofs(encoding
);
905 if (!openFileWrite(ofs
, fname
))
908 bool failed_export
= false;
910 writeLaTeXSource(ofs
, original_path
,
911 runparams
, output_preamble
, output_body
);
913 catch (iconv_codecvt_facet_exception
& e
) {
914 lyxerr
<< "Caught iconv exception: " << e
.what() << endl
;
915 failed_export
= true;
917 catch (std::exception
const & e
) {
918 lyxerr
<< "Caught \"normal\" exception: " << e
.what() << endl
;
919 failed_export
= true;
922 lyxerr
<< "Caught some really weird exception..." << endl
;
923 LyX::cref().emergencyCleanup();
929 failed_export
= true;
930 lyxerr
<< "File '" << fname
<< "' was not closed properly." << endl
;
934 Alert::error(_("Encoding error"),
935 _("Some characters of your document are probably not "
936 "representable in the chosen encoding.\n"
937 "Changing the document encoding to utf8 could help."));
944 void Buffer::writeLaTeXSource(odocstream
& os
,
945 string
const & original_path
,
946 OutputParams
const & runparams_in
,
947 bool const output_preamble
, bool const output_body
)
949 OutputParams runparams
= runparams_in
;
951 // validate the buffer.
952 LYXERR(Debug::LATEX
) << " Validating buffer..." << endl
;
953 LaTeXFeatures
features(*this, params(), runparams
);
955 LYXERR(Debug::LATEX
) << " Buffer validation done." << endl
;
959 // The starting paragraph of the coming rows is the
960 // first paragraph of the document. (Asger)
961 texrow().start(paragraphs().begin()->id(), 0);
963 if (output_preamble
&& runparams
.nice
) {
964 os
<< "%% LyX " << lyx_version
<< " created this file. "
965 "For more info, see http://www.lyx.org/.\n"
966 "%% Do not edit unless you really know what "
971 LYXERR(Debug::INFO
) << "lyx document header finished" << endl
;
972 // There are a few differences between nice LaTeX and usual files:
973 // usual is \batchmode and has a
974 // special input@path to allow the including of figures
975 // with either \input or \includegraphics (what figinsets do).
976 // input@path is set when the actual parameter
977 // original_path is set. This is done for usual tex-file, but not
978 // for nice-latex-file. (Matthias 250696)
979 // Note that input@path is only needed for something the user does
980 // in the preamble, included .tex files or ERT, files included by
981 // LyX work without it.
982 if (output_preamble
) {
983 if (!runparams
.nice
) {
984 // code for usual, NOT nice-latex-file
985 os
<< "\\batchmode\n"; // changed
989 if (!original_path
.empty()) {
991 // We don't know the encoding of inputpath
992 docstring
const inputpath
= from_utf8(latex_path(original_path
));
993 os
<< "\\makeatletter\n"
994 << "\\def\\input@path{{"
995 << inputpath
<< "/}}\n"
996 << "\\makeatother\n";
1002 // Write the preamble
1003 runparams
.use_babel
= params().writeLaTeX(os
, features
, texrow());
1009 os
<< "\\begin{document}\n";
1011 } // output_preamble
1012 LYXERR(Debug::INFO
) << "preamble finished, now the body." << endl
;
1014 if (!lyxrc
.language_auto_begin
&&
1015 !params().language
->babel().empty()) {
1017 os
<< from_utf8(subst(lyxrc
.language_command_begin
,
1019 params().language
->babel()))
1024 Encoding
const & encoding
= params().encoding();
1025 if (encoding
.package() == Encoding::CJK
) {
1026 // Open a CJK environment, since in contrast to the encodings
1027 // handled by inputenc the document encoding is not set in
1028 // the preamble if it is handled by CJK.sty.
1029 os
<< "\\begin{CJK}{" << from_ascii(encoding
.latexName())
1034 // if we are doing a real file with body, even if this is the
1035 // child of some other buffer, let's cut the link here.
1036 // This happens for example if only a child document is printed.
1037 string save_parentname
;
1038 if (output_preamble
) {
1039 save_parentname
= params().parentname
;
1040 params().parentname
.erase();
1044 latexParagraphs(*this, paragraphs(), os
, texrow(), runparams
);
1046 // Restore the parenthood if needed
1047 if (output_preamble
)
1048 params().parentname
= save_parentname
;
1050 // add this just in case after all the paragraphs
1054 if (encoding
.package() == Encoding::CJK
) {
1055 // Close the open CJK environment.
1056 // latexParagraphs will have opened one even if the last text
1058 os
<< "\\end{CJK}\n";
1062 if (!lyxrc
.language_auto_end
&&
1063 !params().language
->babel().empty()) {
1064 os
<< from_utf8(subst(lyxrc
.language_command_end
,
1066 params().language
->babel()))
1071 if (output_preamble
) {
1072 os
<< "\\end{document}\n";
1075 LYXERR(Debug::LATEX
) << "makeLaTeXFile...done" << endl
;
1077 LYXERR(Debug::LATEX
) << "LaTeXFile for inclusion made."
1080 runparams_in
.encoding
= runparams
.encoding
;
1082 // Just to be sure. (Asger)
1085 LYXERR(Debug::INFO
) << "Finished making LaTeX file." << endl
;
1086 LYXERR(Debug::INFO
) << "Row count was " << texrow().rows() - 1
1091 bool Buffer::isLatex() const
1093 return params().getTextClass().outputType() == LATEX
;
1097 bool Buffer::isLiterate() const
1099 return params().getTextClass().outputType() == LITERATE
;
1103 bool Buffer::isDocBook() const
1105 return params().getTextClass().outputType() == DOCBOOK
;
1109 void Buffer::makeDocBookFile(FileName
const & fname
,
1110 OutputParams
const & runparams
,
1111 bool const body_only
)
1113 LYXERR(Debug::LATEX
) << "makeDocBookFile..." << endl
;
1117 if (!openFileWrite(ofs
, fname
))
1120 writeDocBookSource(ofs
, fname
.absFilename(), runparams
, body_only
);
1124 lyxerr
<< "File '" << fname
<< "' was not closed properly." << endl
;
1128 void Buffer::writeDocBookSource(odocstream
& os
, string
const & fname
,
1129 OutputParams
const & runparams
,
1130 bool const only_body
)
1132 LaTeXFeatures
features(*this, params(), runparams
);
1137 TextClass
const & tclass
= params().getTextClass();
1138 string
const top_element
= tclass
.latexname();
1141 if (runparams
.flavor
== OutputParams::XML
)
1142 os
<< "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n";
1145 os
<< "<!DOCTYPE " << from_ascii(top_element
) << ' ';
1148 if (! tclass
.class_header().empty())
1149 os
<< from_ascii(tclass
.class_header());
1150 else if (runparams
.flavor
== OutputParams::XML
)
1151 os
<< "PUBLIC \"-//OASIS//DTD DocBook XML//EN\" "
1152 << "\"http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd\"";
1154 os
<< " PUBLIC \"-//OASIS//DTD DocBook V4.2//EN\"";
1156 docstring preamble
= from_utf8(params().preamble
);
1157 if (runparams
.flavor
!= OutputParams::XML
) {
1158 preamble
+= "<!ENTITY % output.print.png \"IGNORE\">\n";
1159 preamble
+= "<!ENTITY % output.print.pdf \"IGNORE\">\n";
1160 preamble
+= "<!ENTITY % output.print.eps \"IGNORE\">\n";
1161 preamble
+= "<!ENTITY % output.print.bmp \"IGNORE\">\n";
1164 string
const name
= runparams
.nice
? changeExtension(fileName(), ".sgml")
1166 preamble
+= features
.getIncludedFiles(name
);
1167 preamble
+= features
.getLyXSGMLEntities();
1169 if (!preamble
.empty()) {
1170 os
<< "\n [ " << preamble
<< " ]";
1175 string top
= top_element
;
1177 if (runparams
.flavor
== OutputParams::XML
)
1178 top
+= params().language
->code();
1180 top
+= params().language
->code().substr(0,2);
1183 if (!params().options
.empty()) {
1185 top
+= params().options
;
1188 os
<< "<!-- " << ((runparams
.flavor
== OutputParams::XML
)? "XML" : "SGML")
1189 << " file was created by LyX " << lyx_version
1190 << "\n See http://www.lyx.org/ for more information -->\n";
1192 params().getTextClass().counters().reset();
1194 sgml::openTag(os
, top
);
1196 docbookParagraphs(paragraphs(), *this, os
, runparams
);
1197 sgml::closeTag(os
, top_element
);
1201 // chktex should be run with these flags disabled: 3, 22, 25, 30, 38(?)
1202 // Other flags: -wall -v0 -x
1203 int Buffer::runChktex()
1207 // get LaTeX-Filename
1208 FileName
const path(temppath());
1209 string
const name
= addName(path
.absFilename(), getLatexName());
1210 string
const org_path
= filePath();
1212 support::Path
p(path
); // path to LaTeX file
1213 message(_("Running chktex..."));
1215 // Generate the LaTeX file if neccessary
1216 OutputParams
runparams(¶ms().encoding());
1217 runparams
.flavor
= OutputParams::LATEX
;
1218 runparams
.nice
= false;
1219 makeLaTeXFile(FileName(name
), org_path
, runparams
);
1222 Chktex
chktex(lyxrc
.chktex_command
, onlyFilename(name
), filePath());
1223 int const res
= chktex
.run(terr
); // run chktex
1226 Alert::error(_("chktex failure"),
1227 _("Could not run chktex successfully."));
1228 } else if (res
> 0) {
1229 ErrorList
& errorList
= pimpl_
->errorLists
["ChkTeX"];
1230 // Clear out old errors
1232 // Fill-in the error list with the TeX errors
1233 bufferErrors(*this, terr
, errorList
);
1244 void Buffer::validate(LaTeXFeatures
& features
) const
1246 TextClass
const & tclass
= params().getTextClass();
1248 if (params().outputChanges
) {
1249 bool dvipost
= LaTeXFeatures::isAvailable("dvipost");
1250 bool xcolorsoul
= LaTeXFeatures::isAvailable("soul") &&
1251 LaTeXFeatures::isAvailable("xcolor");
1253 if (features
.runparams().flavor
== OutputParams::LATEX
) {
1255 features
.require("ct-dvipost");
1256 features
.require("dvipost");
1257 } else if (xcolorsoul
) {
1258 features
.require("ct-xcolor-soul");
1259 features
.require("soul");
1260 features
.require("xcolor");
1262 features
.require("ct-none");
1264 } else if (features
.runparams().flavor
== OutputParams::PDFLATEX
) {
1266 features
.require("ct-xcolor-soul");
1267 features
.require("soul");
1268 features
.require("xcolor");
1269 features
.require("pdfcolmk"); // improves color handling in PDF output
1271 features
.require("ct-none");
1276 // AMS Style is at document level
1277 if (params().use_amsmath
== BufferParams::package_on
1278 || tclass
.provides("amsmath"))
1279 features
.require("amsmath");
1280 if (params().use_esint
== BufferParams::package_on
)
1281 features
.require("esint");
1283 for_each(paragraphs().begin(), paragraphs().end(),
1284 boost::bind(&Paragraph::validate
, _1
, boost::ref(features
)));
1286 // the bullet shapes are buffer level not paragraph level
1287 // so they are tested here
1288 for (int i
= 0; i
< 4; ++i
) {
1289 if (params().user_defined_bullet(i
) != ITEMIZE_DEFAULTS
[i
]) {
1290 int const font
= params().user_defined_bullet(i
).getFont();
1292 int const c
= params()
1293 .user_defined_bullet(i
)
1300 features
.require("latexsym");
1302 } else if (font
== 1) {
1303 features
.require("amssymb");
1304 } else if ((font
>= 2 && font
<= 5)) {
1305 features
.require("pifont");
1310 if (lyxerr
.debugging(Debug::LATEX
)) {
1311 features
.showStruct();
1316 void Buffer::getLabelList(vector
<docstring
> & list
) const
1318 /// if this is a child document and the parent is already loaded
1319 /// Use the parent's list instead [ale990407]
1320 Buffer
const * tmp
= getMasterBuffer();
1322 lyxerr
<< "getMasterBuffer() failed!" << endl
;
1326 tmp
->getLabelList(list
);
1330 for (InsetIterator it
= inset_iterator_begin(inset()); it
; ++it
)
1331 it
.nextInset()->getLabelList(*this, list
);
1335 // This is also a buffer property (ale)
1336 void Buffer::fillWithBibKeys(vector
<pair
<string
, docstring
> > & keys
)
1339 /// if this is a child document and the parent is already loaded
1340 /// use the parent's list instead [ale990412]
1341 Buffer
const * tmp
= getMasterBuffer();
1344 tmp
->fillWithBibKeys(keys
);
1348 for (InsetIterator it
= inset_iterator_begin(inset()); it
; ++it
) {
1349 if (it
->lyxCode() == Inset::BIBTEX_CODE
) {
1350 InsetBibtex
const & inset
=
1351 static_cast<InsetBibtex
const &>(*it
);
1352 inset
.fillWithBibKeys(*this, keys
);
1353 } else if (it
->lyxCode() == Inset::INCLUDE_CODE
) {
1354 InsetInclude
const & inset
=
1355 static_cast<InsetInclude
const &>(*it
);
1356 inset
.fillWithBibKeys(*this, keys
);
1357 } else if (it
->lyxCode() == Inset::BIBITEM_CODE
) {
1358 InsetBibitem
const & inset
=
1359 static_cast<InsetBibitem
const &>(*it
);
1361 string
const key
= to_utf8(inset
.getParam("key"));
1362 docstring
const label
= inset
.getParam("label");
1363 DocIterator
doc_it(it
); doc_it
.forwardPos();
1364 docstring
const ref
= doc_it
.paragraph().asString(*this, false);
1365 docstring
const info
= label
+ "TheBibliographyRef" + ref
;
1366 keys
.push_back(pair
<string
, docstring
>(key
, info
));
1372 void Buffer::updateBibfilesCache()
1374 // if this is a child document and the parent is already loaded
1375 // update the parent's cache instead
1376 Buffer
* tmp
= getMasterBuffer();
1379 tmp
->updateBibfilesCache();
1383 bibfilesCache_
.clear();
1384 for (InsetIterator it
= inset_iterator_begin(inset()); it
; ++it
) {
1385 if (it
->lyxCode() == Inset::BIBTEX_CODE
) {
1386 InsetBibtex
const & inset
=
1387 static_cast<InsetBibtex
const &>(*it
);
1388 vector
<FileName
> const bibfiles
= inset
.getFiles(*this);
1389 bibfilesCache_
.insert(bibfilesCache_
.end(),
1392 } else if (it
->lyxCode() == Inset::INCLUDE_CODE
) {
1393 InsetInclude
& inset
=
1394 static_cast<InsetInclude
&>(*it
);
1395 inset
.updateBibfilesCache(*this);
1396 vector
<FileName
> const & bibfiles
=
1397 inset
.getBibfilesCache(*this);
1398 bibfilesCache_
.insert(bibfilesCache_
.end(),
1406 vector
<FileName
> const & Buffer::getBibfilesCache() const
1408 // if this is a child document and the parent is already loaded
1409 // use the parent's cache instead
1410 Buffer
const * tmp
= getMasterBuffer();
1413 return tmp
->getBibfilesCache();
1415 // We update the cache when first used instead of at loading time.
1416 if (bibfilesCache_
.empty())
1417 const_cast<Buffer
*>(this)->updateBibfilesCache();
1419 return bibfilesCache_
;
1423 bool Buffer::isDepClean(string
const & name
) const
1425 DepClean::const_iterator
const it
= pimpl_
->dep_clean
.find(name
);
1426 if (it
== pimpl_
->dep_clean
.end())
1432 void Buffer::markDepClean(string
const & name
)
1434 pimpl_
->dep_clean
[name
] = true;
1438 bool Buffer::dispatch(string
const & command
, bool * result
)
1440 return dispatch(lyxaction
.lookupFunc(command
), result
);
1444 bool Buffer::dispatch(FuncRequest
const & func
, bool * result
)
1446 bool dispatched
= true;
1448 switch (func
.action
) {
1449 case LFUN_BUFFER_EXPORT
: {
1450 bool const tmp
= Exporter::Export(this, to_utf8(func
.argument()), false);
1463 void Buffer::changeLanguage(Language
const * from
, Language
const * to
)
1468 for_each(par_iterator_begin(),
1470 bind(&Paragraph::changeLanguage
, _1
, params(), from
, to
));
1472 text().current_font
.setLanguage(to
);
1473 text().real_current_font
.setLanguage(to
);
1477 bool Buffer::isMultiLingual() const
1479 ParConstIterator end
= par_iterator_end();
1480 for (ParConstIterator it
= par_iterator_begin(); it
!= end
; ++it
)
1481 if (it
->isMultiLingual(params()))
1488 ParIterator
Buffer::getParFromID(int const id
) const
1490 ParConstIterator it
= par_iterator_begin();
1491 ParConstIterator
const end
= par_iterator_end();
1494 // John says this is called with id == -1 from undo
1495 lyxerr
<< "getParFromID(), id: " << id
<< endl
;
1499 for (; it
!= end
; ++it
)
1507 bool Buffer::hasParWithID(int const id
) const
1509 ParConstIterator
const it
= getParFromID(id
);
1510 return it
!= par_iterator_end();
1514 ParIterator
Buffer::par_iterator_begin()
1516 return lyx::par_iterator_begin(inset());
1520 ParIterator
Buffer::par_iterator_end()
1522 return lyx::par_iterator_end(inset());
1526 ParConstIterator
Buffer::par_iterator_begin() const
1528 return lyx::par_const_iterator_begin(inset());
1532 ParConstIterator
Buffer::par_iterator_end() const
1534 return lyx::par_const_iterator_end(inset());
1538 Language
const * Buffer::getLanguage() const
1540 return params().language
;
1544 docstring
const Buffer::B_(string
const & l10n
) const
1546 return params().B_(l10n
);
1550 bool Buffer::isClean() const
1552 return pimpl_
->lyx_clean
;
1556 bool Buffer::isBakClean() const
1558 return pimpl_
->bak_clean
;
1562 void Buffer::markClean() const
1564 if (!pimpl_
->lyx_clean
) {
1565 pimpl_
->lyx_clean
= true;
1568 // if the .lyx file has been saved, we don't need an
1570 pimpl_
->bak_clean
= true;
1574 void Buffer::markBakClean()
1576 pimpl_
->bak_clean
= true;
1580 void Buffer::setUnnamed(bool flag
)
1582 pimpl_
->unnamed
= flag
;
1586 bool Buffer::isUnnamed() const
1588 return pimpl_
->unnamed
;
1592 #ifdef WITH_WARNINGS
1593 #warning this function should be moved to buffer_pimpl.C
1595 void Buffer::markDirty()
1597 if (pimpl_
->lyx_clean
) {
1598 pimpl_
->lyx_clean
= false;
1601 pimpl_
->bak_clean
= false;
1603 DepClean::iterator it
= pimpl_
->dep_clean
.begin();
1604 DepClean::const_iterator
const end
= pimpl_
->dep_clean
.end();
1606 for (; it
!= end
; ++it
)
1611 string
const Buffer::fileName() const
1613 return pimpl_
->filename
.absFilename();
1617 string
const & Buffer::filePath() const
1619 return params().filepath
;
1623 bool Buffer::isReadonly() const
1625 return pimpl_
->read_only
;
1629 void Buffer::setParentName(string
const & name
)
1631 if (name
== pimpl_
->filename
.absFilename())
1632 // Avoids recursive include.
1633 params().parentname
.clear();
1635 params().parentname
= name
;
1639 Buffer
const * Buffer::getMasterBuffer() const
1641 if (!params().parentname
.empty()
1642 && theBufferList().exists(params().parentname
)) {
1643 Buffer
const * buf
= theBufferList().getBuffer(params().parentname
);
1644 //We need to check if the parent is us...
1645 //FIXME RECURSIVE INCLUDE
1646 //This is not sufficient, since recursive includes could be downstream.
1647 if (buf
&& buf
!= this)
1648 return buf
->getMasterBuffer();
1655 Buffer
* Buffer::getMasterBuffer()
1657 if (!params().parentname
.empty()
1658 && theBufferList().exists(params().parentname
)) {
1659 Buffer
* buf
= theBufferList().getBuffer(params().parentname
);
1661 return buf
->getMasterBuffer();
1668 MacroData
const & Buffer::getMacro(docstring
const & name
) const
1670 return pimpl_
->macros
.get(name
);
1674 bool Buffer::hasMacro(docstring
const & name
) const
1676 return pimpl_
->macros
.has(name
);
1680 void Buffer::insertMacro(docstring
const & name
, MacroData
const & data
)
1682 MacroTable::globalMacros().insert(name
, data
);
1683 pimpl_
->macros
.insert(name
, data
);
1687 void Buffer::buildMacros()
1689 // Start with global table.
1690 pimpl_
->macros
= MacroTable::globalMacros();
1693 ParagraphList
const & pars
= text().paragraphs();
1694 for (size_t i
= 0, n
= pars
.size(); i
!= n
; ++i
) {
1695 //lyxerr << "searching main par " << i
1696 // << " for macro definitions" << std::endl;
1697 InsetList
const & insets
= pars
[i
].insetlist
;
1698 InsetList::const_iterator it
= insets
.begin();
1699 InsetList::const_iterator end
= insets
.end();
1700 for ( ; it
!= end
; ++it
) {
1701 //lyxerr << "found inset code " << it->inset->lyxCode() << std::endl;
1702 if (it
->inset
->lyxCode() == Inset::MATHMACRO_CODE
) {
1703 MathMacroTemplate
const & mac
1704 = static_cast<MathMacroTemplate
const &>(*it
->inset
);
1705 insertMacro(mac
.name(), mac
.asMacroData());
1712 void Buffer::saveCursor(StableDocIterator cur
, StableDocIterator anc
)
1719 void Buffer::changeRefsIfUnique(docstring
const & from
, docstring
const & to
,
1722 //FIXME: This does not work for child documents yet.
1723 BOOST_ASSERT(code
== Inset::CITE_CODE
|| code
== Inset::REF_CODE
);
1724 // Check if the label 'from' appears more than once
1725 vector
<docstring
> labels
;
1727 if (code
== Inset::CITE_CODE
) {
1728 vector
<pair
<string
, docstring
> > keys
;
1729 fillWithBibKeys(keys
);
1730 vector
<pair
<string
, docstring
> >::const_iterator bit
= keys
.begin();
1731 vector
<pair
<string
, docstring
> >::const_iterator bend
= keys
.end();
1733 for (; bit
!= bend
; ++bit
)
1735 labels
.push_back(from_utf8(bit
->first
));
1737 getLabelList(labels
);
1739 if (lyx::count(labels
.begin(), labels
.end(), from
) > 1)
1742 for (InsetIterator it
= inset_iterator_begin(inset()); it
; ++it
) {
1743 if (it
->lyxCode() == code
) {
1744 InsetCommand
& inset
= static_cast<InsetCommand
&>(*it
);
1745 inset
.replaceContents(to_utf8(from
), to_utf8(to
));
1751 void Buffer::getSourceCode(odocstream
& os
, pit_type par_begin
,
1752 pit_type par_end
, bool full_source
)
1754 OutputParams
runparams(¶ms().encoding());
1755 runparams
.nice
= true;
1756 runparams
.flavor
= OutputParams::LATEX
;
1757 runparams
.linelen
= lyxrc
.plaintext_linelen
;
1758 // No side effect of file copying and image conversion
1759 runparams
.dryrun
= true;
1762 os
<< "% " << _("Preview source code") << "\n\n";
1764 writeLaTeXSource(os
, filePath(), runparams
, true, true);
1766 writeDocBookSource(os
, fileName(), runparams
, false);
1769 runparams
.par_begin
= par_begin
;
1770 runparams
.par_end
= par_end
;
1771 if (par_begin
+ 1 == par_end
)
1773 << bformat(_("Preview source code for paragraph %1$s"), par_begin
)
1777 << bformat(_("Preview source code from paragraph %1$s to %2$s"),
1778 convert
<docstring
>(par_begin
),
1779 convert
<docstring
>(par_end
- 1))
1781 // output paragraphs
1784 latexParagraphs(*this, paragraphs(), os
, texrow(), runparams
);
1787 docbookParagraphs(paragraphs(), *this, os
, runparams
);
1793 ErrorList
const & Buffer::errorList(string
const & type
) const
1795 static ErrorList
const emptyErrorList
;
1796 std::map
<string
, ErrorList
>::const_iterator I
= pimpl_
->errorLists
.find(type
);
1797 if (I
== pimpl_
->errorLists
.end())
1798 return emptyErrorList
;
1804 ErrorList
& Buffer::errorList(string
const & type
)
1806 return pimpl_
->errorLists
[type
];