]> git.lyx.org Git - lyx.git/blobdiff - src/Buffer.cpp
Move Dialog.{h,cpp} and ButtonPolicy.{h,cpp} to frontends/qt4/
[lyx.git] / src / Buffer.cpp
index 2e2dc5fc4fcb5503832df364050a7236231bfee4..95920be88877c04b2fb1c9cf4d8c1887c5ea1c3a 100644 (file)
@@ -43,7 +43,6 @@
 #include "LyX.h"
 #include "LyXRC.h"
 #include "LyXVC.h"
-#include "Messages.h"
 #include "output_docbook.h"
 #include "output.h"
 #include "output_latex.h"
@@ -85,8 +84,8 @@
 #include "support/FileFilterList.h"
 #include "support/filetools.h"
 #include "support/Forkedcall.h"
-#include "support/fs_extras.h"
 #include "support/gzstream.h"
+#include "support/lstrings.h"
 #include "support/lyxlib.h"
 #include "support/os.h"
 #include "support/Path.h"
@@ -98,8 +97,6 @@
 #endif
 
 #include <boost/bind.hpp>
-#include <boost/filesystem/exception.hpp>
-#include <boost/filesystem/operations.hpp>
 #include <boost/shared_ptr.hpp>
 
 #include <algorithm>
@@ -153,11 +150,10 @@ using support::suffixIs;
 
 namespace Alert = frontend::Alert;
 namespace os = support::os;
-namespace fs = boost::filesystem;
 
 namespace {
 
-int const LYX_FORMAT = 299; //Uwe: Hyperlink types
+int const LYX_FORMAT = 299; // Uwe: Hyperlink types
 
 } // namespace anon
 
@@ -250,13 +246,13 @@ Buffer::Impl::Impl(Buffer & parent, FileName const & file, bool readonly_)
 Buffer::Buffer(string const & file, bool readonly)
        : pimpl_(new Impl(*this, FileName(file), readonly)), gui_(0)
 {
-       LYXERR(Debug::INFO) << "Buffer::Buffer()" << endl;
+       LYXERR(Debug::INFO, "Buffer::Buffer()");
 }
 
 
 Buffer::~Buffer()
 {
-       LYXERR(Debug::INFO) << "Buffer::~Buffer()" << endl;
+       LYXERR(Debug::INFO, "Buffer::~Buffer()");
        // here the buffer should take care that it is
        // saved properly, before it goes into the void.
 
@@ -401,12 +397,15 @@ string Buffer::latexName(bool const no_path) const
 }
 
 
-pair<Buffer::LogType, string> Buffer::logName() const
+string Buffer::logName(LogType * type) const
 {
        string const filename = latexName(false);
 
-       if (filename.empty())
-               return make_pair(Buffer::latexlog, string());
+       if (filename.empty()) {
+               if (type)
+                       *type = latexlog;
+               return string();
+       }
 
        string const path = temppath();
 
@@ -422,11 +421,15 @@ pair<Buffer::LogType, string> Buffer::logName() const
 
        if (bname.exists() &&
            (!fname.exists() || fname.lastModified() < bname.lastModified())) {
-               LYXERR(Debug::FILES) << "Log name calculated as: " << bname << endl;
-               return make_pair(Buffer::buildlog, bname.absFilename());
+               LYXERR(Debug::FILES, "Log name calculated as: " << bname);
+               if (type)
+                       *type = buildlog;
+               return bname.absFilename();
        }
-       LYXERR(Debug::FILES) << "Log name calculated as: " << fname << endl;
-       return make_pair(Buffer::latexlog, fname.absFilename());
+       LYXERR(Debug::FILES, "Log name calculated as: " << fname);
+       if (type)
+                       *type = latexlog;
+       return fname.absFilename();
 }
 
 
@@ -495,8 +498,8 @@ int Buffer::readHeader(Lexer & lex)
                        continue;
                }
 
-               LYXERR(Debug::PARSER) << "Handling document header token: `"
-                                     << token << '\'' << endl;
+               LYXERR(Debug::PARSER, "Handling document header token: `"
+                                     << token << '\'');
 
                string unknown = params().readToken(lex, token);
                if (!unknown.empty()) {
@@ -673,7 +676,7 @@ bool Buffer::readFile(FileName const & filename)
        string format = filename.guessFormatFromContents();
        if (format == "zip") {
                // decompress to a temp directory
-               LYXERR(Debug::FILES) << filename << " is in zip format. Unzip to " << temppath() << endl;
+               LYXERR(Debug::FILES, filename << " is in zip format. Unzip to " << temppath());
                ::unzipToDir(filename.toFilesystemEncoding(), temppath());
                //
                FileName lyxfile(addName(temppath(), "content.lyx"));
@@ -759,7 +762,7 @@ Buffer::ReadStatus Buffer::readFile(Lexer & lex, FileName const & filename,
                // Save the timestamp and checksum of disk file. If filename is an
                // emergency file, save the timestamp and sum of the original lyx file
                // because isExternallyModified will check for this file. (BUG4193)
-               string diskfile = filename.toFilesystemEncoding();
+               string diskfile = filename.absFilename();
                if (suffixIs(diskfile, ".emergency"))
                        diskfile = diskfile.substr(0, diskfile.size() - 10);
                saveCheckSum(FileName(diskfile));
@@ -799,9 +802,7 @@ Buffer::ReadStatus Buffer::readFile(Lexer & lex, FileName const & filename,
                        << ' ' << quoteName(filename.toFilesystemEncoding());
                string const command_str = command.str();
 
-               LYXERR(Debug::INFO) << "Running '"
-                                   << command_str << '\''
-                                   << endl;
+               LYXERR(Debug::INFO, "Running '" << command_str << '\'');
 
                cmd_ret const ret = runCommand(command_str);
                if (ret.first != 0) {
@@ -843,7 +844,7 @@ bool Buffer::save() const
        bool madeBackup = false;
 
        // make a backup if the file already exists
-       if (lyxrc.make_backup && fs::exists(encodedFilename)) {
+       if (lyxrc.make_backup && fileName().exists()) {
                backupName = FileName(absFileName() + '~');
                if (!lyxrc.backupdir_path.empty()) {
                        string const mangledName =
@@ -852,20 +853,19 @@ bool Buffer::save() const
                        backupName = FileName(addName(lyxrc.backupdir_path,
                                                      mangledName));
                }
-               try {
-                       fs::copy_file(encodedFilename, backupName.toFilesystemEncoding(), false);
+               if (fileName().copyTo(backupName, false)) {
                        madeBackup = true;
-               } catch (fs::filesystem_error const & fe) {
+               } else {
                        Alert::error(_("Backup failure"),
                                     bformat(_("Cannot create backup file %1$s.\n"
                                               "Please check whether the directory exists and is writeable."),
                                             from_utf8(backupName.absFilename())));
-                       LYXERR(Debug::DEBUG) << "Fs error: " << fe.what() << endl;
+                       //LYXERR(Debug::DEBUG, "Fs error: " << fe.what());
                }
        }
 
        // ask if the disk file has been externally modified (use checksum method)
-       if (fs::exists(encodedFilename) && isExternallyModified(checksum_method)) {
+       if (fileName().exists() && isExternallyModified(checksum_method)) {
                docstring const file = makeDisplayPath(absFileName(), 20);
                docstring text = bformat(_("Document %1$s has been externally modified. Are you sure "
                                                             "you want to overwrite this file?"), file);
@@ -947,7 +947,7 @@ bool Buffer::write(ostream & ofs) const
        AuthorList::Authors::const_iterator a_it = params().authors().begin();
        AuthorList::Authors::const_iterator a_end = params().authors().end();
        for (; a_it != a_end; ++a_it)
-               a_it->second.used(false);
+               a_it->second.setUsed(false);
 
        ParIterator const end = par_iterator_end();
        ParIterator it = par_iterator_begin();
@@ -994,8 +994,7 @@ bool Buffer::makeLaTeXFile(FileName const & fname,
                           bool output_preamble, bool output_body)
 {
        string const encoding = runparams.encoding->iconvName();
-       LYXERR(Debug::LATEX) << "makeLaTeXFile encoding: "
-               << encoding << "..." << endl;
+       LYXERR(Debug::LATEX, "makeLaTeXFile encoding: " << encoding << "...");
 
        odocfstream ofs(encoding);
        if (!openFileWrite(ofs, fname))
@@ -1048,10 +1047,10 @@ void Buffer::writeLaTeXSource(odocstream & os,
        OutputParams runparams = runparams_in;
 
        // validate the buffer.
-       LYXERR(Debug::LATEX) << "  Validating buffer..." << endl;
+       LYXERR(Debug::LATEX, "  Validating buffer...");
        LaTeXFeatures features(*this, params(), runparams);
        validate(features);
-       LYXERR(Debug::LATEX) << "  Buffer validation done." << endl;
+       LYXERR(Debug::LATEX, "  Buffer validation done.");
 
        // The starting paragraph of the coming rows is the
        // first paragraph of the document. (Asger)
@@ -1063,7 +1062,7 @@ void Buffer::writeLaTeXSource(odocstream & os,
                texrow().newline();
                texrow().newline();
        }
-       LYXERR(Debug::INFO) << "lyx document header finished" << endl;
+       LYXERR(Debug::INFO, "lyx document header finished");
        // There are a few differences between nice LaTeX and usual files:
        // usual is \batchmode and has a
        // special input@path to allow the including of figures
@@ -1107,7 +1106,7 @@ void Buffer::writeLaTeXSource(odocstream & os,
 
        texrow().start(paragraphs().begin()->id(), 0);
        
-       LYXERR(Debug::INFO) << "preamble finished, now the body." << endl;
+       LYXERR(Debug::INFO, "preamble finished, now the body.");
 
        if (!lyxrc.language_auto_begin &&
            !params().language->babel().empty()) {
@@ -1171,20 +1170,17 @@ void Buffer::writeLaTeXSource(odocstream & os,
        if (output_preamble) {
                os << "\\end{document}\n";
                texrow().newline();
-
-               LYXERR(Debug::LATEX) << "makeLaTeXFile...done" << endl;
+               LYXERR(Debug::LATEX, "makeLaTeXFile...done");
        } else {
-               LYXERR(Debug::LATEX) << "LaTeXFile for inclusion made."
-                                    << endl;
+               LYXERR(Debug::LATEX, "LaTeXFile for inclusion made.");
        }
        runparams_in.encoding = runparams.encoding;
 
        // Just to be sure. (Asger)
        texrow().newline();
 
-       LYXERR(Debug::INFO) << "Finished making LaTeX file." << endl;
-       LYXERR(Debug::INFO) << "Row count was " << texrow().rows() - 1
-                           << '.' << endl;
+       LYXERR(Debug::INFO, "Finished making LaTeX file.");
+       LYXERR(Debug::INFO, "Row count was " << texrow().rows() - 1 << '.');
 }
 
 
@@ -1210,7 +1206,7 @@ void Buffer::makeDocBookFile(FileName const & fname,
                              OutputParams const & runparams,
                              bool const body_only)
 {
-       LYXERR(Debug::LATEX) << "makeDocBookFile..." << endl;
+       LYXERR(Debug::LATEX, "makeDocBookFile...");
 
        //ofstream ofs;
        odocfstream ofs;
@@ -1311,7 +1307,7 @@ int Buffer::runChktex()
        string const name = addName(path.absFilename(), latexName());
        string const org_path = filePath();
 
-       support::Path p(path); // path to LaTeX file
+       support::PathChanger p(path); // path to LaTeX file
        message(_("Running chktex..."));
 
        // Generate the LaTeX file if neccessary
@@ -1693,6 +1689,12 @@ void Buffer::markDirty()
 }
 
 
+FileName Buffer::fileName() const
+{
+       return pimpl_->filename;
+}
+
+
 string Buffer::absFileName() const
 {
        return pimpl_->filename.absFilename();
@@ -1757,12 +1759,12 @@ bool Buffer::hasMacro(docstring const & name, Paragraph const & par) const
 {
        Impl::PositionToMacroMap::iterator it;
        it = pimpl_->macros[name].upper_bound(par.macrocontextPosition());
-       if( it != pimpl_->macros[name].end() )
+       if (it != pimpl_->macros[name].end())
                return true;
 
        // If there is a master buffer, query that
-       const Buffer *master = masterBuffer();
-       if (master && master!=this)
+       const Buffer * master = masterBuffer();
+       if (master && master != this)
                return master->hasMacro(name);
 
        return MacroTable::globalMacros().has(name);
@@ -1775,15 +1777,16 @@ bool Buffer::hasMacro(docstring const & name) const
                return true;
 
        // If there is a master buffer, query that
-       const Buffer *master = masterBuffer();
-       if (master && master!=this)
+       const Buffer * master = masterBuffer();
+       if (master && master != this)
                return master->hasMacro(name);
 
        return MacroTable::globalMacros().has(name);
 }
 
 
-MacroData const & Buffer::getMacro(docstring const & name, Paragraph const & par) const
+MacroData const & Buffer::getMacro(docstring const & name,
+       Paragraph const & par) const
 {
        Impl::PositionToMacroMap::iterator it;
        it = pimpl_->macros[name].upper_bound(par.macrocontextPosition());
@@ -1791,8 +1794,8 @@ MacroData const & Buffer::getMacro(docstring const & name, Paragraph const & par
                return it->second;
 
        // If there is a master buffer, query that
-       const Buffer *master = masterBuffer();
-       if (master && master!=this)
+       const Buffer * master = masterBuffer();
+       if (master && master != this)
                return master->getMacro(name);
 
        return MacroTable::globalMacros().get(name);
@@ -1807,8 +1810,8 @@ MacroData const & Buffer::getMacro(docstring const & name) const
                return it->second;
 
        // If there is a master buffer, query that
-       const Buffer *master = masterBuffer();
-       if (master && master!=this)
+       const Buffer * master = masterBuffer();
+       if (master && master != this)
                return master->getMacro(name);
 
        return MacroTable::globalMacros().get(name);
@@ -1987,15 +1990,15 @@ void Buffer::setBusy(bool on) const
 
 void Buffer::setReadOnly(bool on) const
 {
-       if (gui_)
-               gui_->setReadOnly(on);
+       if (pimpl_->wa_)
+               pimpl_->wa_->setReadOnly(on);
 }
 
 
 void Buffer::updateTitles() const
 {
-       if (gui_)
-               gui_->updateTitles();
+       if (pimpl_->wa_)
+               pimpl_->wa_->updateTitles();
 }