]> git.lyx.org Git - lyx.git/blobdiff - src/Buffer.cpp
InsetTabular.cpp: multirows inherit the width and the alignment from the column;...
[lyx.git] / src / Buffer.cpp
index bfcac852562b3523b45aa0ad42acfdef73019b44..5bd73da715315da24f5f00effdb0757f195ba092 100644 (file)
@@ -70,6 +70,7 @@
 #include "insets/InsetBibtex.h"
 #include "insets/InsetBranch.h"
 #include "insets/InsetInclude.h"
+#include "insets/InsetTabular.h"
 #include "insets/InsetText.h"
 
 #include "mathed/InsetMathHull.h"
@@ -127,7 +128,7 @@ namespace {
 
 // Do not remove the comment below, so we get merge conflict in
 // independent branches. Instead add your own.
-int const LYX_FORMAT = 401; // Ronen: support for \Diagram
+int const LYX_FORMAT = 404; // rgh: refstyle
 
 typedef map<string, bool> DepClean;
 typedef map<docstring, pair<InsetLabel const *, Buffer::References> > RefCache;
@@ -413,9 +414,8 @@ Buffer::~Buffer()
                        from_utf8(d->temppath.absFileName())));
        }
 
-       // Remove any previewed LaTeX snippets associated with this buffer.
        if (!isClone())
-               thePreviews().removeLoader(*this);
+               removePreviews();
 
        delete d;
 }
@@ -753,15 +753,15 @@ bool Buffer::readDocument(Lexer & lex)
        ErrorList & errorList = d->errorLists["Parse"];
        errorList.clear();
 
+       // remove dummy empty par
+       paragraphs().clear();
+
        if (!lex.checkFor("\\begin_document")) {
                docstring const s = _("\\begin_document is missing");
                errorList.push_back(ErrorItem(_("Document header error"),
                        s, -1, 0, 0));
        }
 
-       // we are reading in a brand new document
-       LASSERT(paragraphs().empty(), /**/);
-
        readHeader(lex);
 
        if (params().outputChanges) {
@@ -831,44 +831,65 @@ bool Buffer::readString(string const & s)
 {
        params().compressed = false;
 
-       // remove dummy empty par
-       paragraphs().clear();
        Lexer lex;
        istringstream is(s);
        lex.setStream(is);
-       FileName const name = FileName::tempName("Buffer_readString");
-       switch (readFile(lex, name, true)) {
-       case failure:
-               return false;
-       case wrongversion: {
+       FileName const fn = FileName::tempName("Buffer_readString");
+
+       int file_format;
+       ReadStatus const ret_plf = parseLyXFormat(lex, fn, file_format);
+       if (ret_plf != ReadSuccess)
+               return ret_plf;
+
+       if (file_format != LYX_FORMAT) {
                // We need to call lyx2lyx, so write the input to a file
-               ofstream os(name.toFilesystemEncoding().c_str());
+               ofstream os(fn.toFilesystemEncoding().c_str());
                os << s;
                os.close();
-               return readFile(name);
-       }
-       case success:
-               break;
+               // lyxvc in readFile
+               return readFile(fn) == ReadSuccess;
        }
 
+       if (readDocument(lex))
+               return false;
        return true;
 }
 
 
-bool Buffer::readFile(FileName const & filename)
+Buffer::ReadStatus Buffer::readFile(FileName const & fn)
 {
-       FileName fname(filename);
-
-       params().compressed = fname.isZippedFile();
-
-       // remove dummy empty par
-       paragraphs().clear();
+       FileName fname(fn);
        Lexer lex;
        lex.setFile(fname);
-       if (readFile(lex, fname) != success)
-               return false;
 
-       return true;
+       int file_format;
+       ReadStatus const ret_plf = parseLyXFormat(lex, fn, file_format);
+       if (ret_plf != ReadSuccess)
+               return ret_plf;
+
+       if (file_format != LYX_FORMAT) {
+               FileName tmpFile;
+               ReadStatus const ret_clf = convertLyXFormat(fn, tmpFile, file_format);
+               if (ret_clf != ReadSuccess)
+                       return ret_clf;
+               return readFile(tmpFile);
+       }
+
+       if (readDocument(lex)) {
+               Alert::error(_("Document format failure"),
+                       bformat(_("%1$s ended unexpectedly, which means"
+                               " that it is probably corrupted."),
+                                       from_utf8(fn.absFileName())));
+               return ReadDocumentFailure;
+       }
+
+       d->file_fully_loaded = true;
+       // InsetInfo needs to know if file is under VCS
+       lyxvc().file_found_hook(fn);
+       d->read_only = !fname.isWritable();
+       params().compressed = fname.isZippedFile();
+       saveCheckSum();
+       return ReadSuccess;
 }
 
 
@@ -884,112 +905,100 @@ void Buffer::setFullyLoaded(bool value)
 }
 
 
-Buffer::ReadStatus Buffer::readFile(Lexer & lex, FileName const & filename,
-               bool fromstring)
+void Buffer::updatePreviews() const
+{
+       if (graphics::Previews::status() != LyXRC::PREVIEW_OFF)
+               thePreviews().generateBufferPreviews(*this);
+}
+
+
+void Buffer::removePreviews() const
 {
-       LASSERT(!filename.empty(), /**/);
+       thePreviews().removeLoader(*this);
+}
 
-       // the first (non-comment) token _must_ be...
-       if (!lex.checkFor("\\lyxformat")) {
+
+Buffer::ReadStatus Buffer::parseLyXFormat(Lexer & lex,
+       FileName const & fn, int & file_format) const
+{
+       if(!lex.checkFor("\\lyxformat")) {
                Alert::error(_("Document format failure"),
-                            bformat(_("%1$s is not a readable LyX document."),
-                                      from_utf8(filename.absFileName())));
-               return failure;
-       }
+                       bformat(_("%1$s is not a readable LyX document."),
+                               from_utf8(fn.absFileName())));
+               return ReadNoLyXFormat;
+       }       
 
        string tmp_format;
        lex >> tmp_format;
-       //lyxerr << "LyX Format: `" << tmp_format << '\'' << endl;
-       // if present remove ".," from string.
+
+       // LyX formats 217 and earlier were written as 2.17. This corresponds
+       // to files from LyX versions < 1.1.6.3. We just remove the dot in
+       // these cases. See also: www.lyx.org/trac/changeset/1313.
        size_t dot = tmp_format.find_first_of(".,");
-       //lyxerr << "           dot found at " << dot << endl;
        if (dot != string::npos)
-                       tmp_format.erase(dot, 1);
-       int const file_format = convert<int>(tmp_format);
-       //lyxerr << "format: " << file_format << endl;
-
-       // save timestamp and checksum of the original disk file, making sure
-       // to not overwrite them with those of the file created in the tempdir
-       // when it has to be converted to the current format.
-       if (!d->checksum_) {
-               // Save the timestamp and checksum of disk file. If filename is an
-               // emergency file, save the timestamp and checksum of the original lyx file
-               // because isExternallyModified will check for this file. (BUG4193)
-               string diskfile = filename.absFileName();
-               if (suffixIs(diskfile, ".emergency"))
-                       diskfile = diskfile.substr(0, diskfile.size() - 10);
-               saveCheckSum(FileName(diskfile));
-       }
+               tmp_format.erase(dot, 1);
 
-       if (file_format != LYX_FORMAT) {
+       file_format = convert<int>(tmp_format);
+       return ReadSuccess;
+}
 
-               if (fromstring)
-                       // lyx2lyx would fail
-                       return wrongversion;
-
-               FileName const tmpfile = FileName::tempName("Buffer_readFile");
-               if (tmpfile.empty()) {
-                       Alert::error(_("Conversion failed"),
-                                    bformat(_("%1$s is from a different"
-                                             " version of LyX, but a temporary"
-                                             " file for converting it could"
-                                             " not be created."),
-                                             from_utf8(filename.absFileName())));
-                       return failure;
-               }
-               FileName const lyx2lyx = libFileSearch("lyx2lyx", "lyx2lyx");
-               if (lyx2lyx.empty()) {
-                       Alert::error(_("Conversion script not found"),
-                                    bformat(_("%1$s is from a different"
-                                              " version of LyX, but the"
-                                              " conversion script lyx2lyx"
-                                              " could not be found."),
-                                              from_utf8(filename.absFileName())));
-                       return failure;
-               }
-               ostringstream command;
-               command << os::python()
-                       << ' ' << quoteName(lyx2lyx.toFilesystemEncoding())
-                       << " -t " << convert<string>(LYX_FORMAT)
-                       << " -o " << quoteName(tmpfile.toFilesystemEncoding())
-                       << ' ' << quoteName(filename.toSafeFilesystemEncoding());
-               string const command_str = command.str();
-
-               LYXERR(Debug::INFO, "Running '" << command_str << '\'');
-
-               cmd_ret const ret = runCommand(command_str);
-               if (ret.first != 0) {
-                       if (file_format < LYX_FORMAT)
-                               Alert::error(_("Conversion script failed"),
-                                    bformat(_("%1$s is from an older version"
-                                             " of LyX, but the lyx2lyx script"
-                                             " failed to convert it."),
-                                             from_utf8(filename.absFileName())));
-                       else
-                               Alert::error(_("Conversion script failed"),
-                                    bformat(_("%1$s is from a newer version"
-                                             " of LyX and cannot be converted by the"
-                                                               " lyx2lyx script."),
-                                             from_utf8(filename.absFileName())));
-                       return failure;
-               } else {
-                       bool const ret = readFile(tmpfile);
-                       // Do stuff with tmpfile name and buffer name here.
-                       return ret ? success : failure;
-               }
 
+Buffer::ReadStatus Buffer::convertLyXFormat(FileName const & fn, 
+       FileName & tmpfile, int from_format)
+{
+       tmpfile = FileName::tempName("Buffer_convertLyXFormat");
+       if(tmpfile.empty()) {
+               Alert::error(_("Conversion failed"),
+                       bformat(_("%1$s is from a different"
+                               " version of LyX, but a temporary"
+                               " file for converting it could"
+                               " not be created."),
+                               from_utf8(fn.absFileName())));
+               return LyX2LyXNoTempFile;
        }
 
-       if (readDocument(lex)) {
-               Alert::error(_("Document format failure"),
-                            bformat(_("%1$s ended unexpectedly, which means"
-                                                   " that it is probably corrupted."),
-                                      from_utf8(filename.absFileName())));
-               return failure;
+       FileName const lyx2lyx = libFileSearch("lyx2lyx", "lyx2lyx");
+       if (lyx2lyx.empty()) {
+               Alert::error(_("Conversion script not found"),
+                    bformat(_("%1$s is from a different"
+                              " version of LyX, but the"
+                              " conversion script lyx2lyx"
+                              " could not be found."),
+                              from_utf8(fn.absFileName())));
+               return LyX2LyXNotFound;
        }
 
-       d->file_fully_loaded = true;
-       return success;
+       // Run lyx2lyx:
+       //   $python$ "$lyx2lyx$" -t $LYX_FORMAT$ -o "$tempfile$" "$filetoread$"
+       ostringstream command;
+       command << os::python()
+               << ' ' << quoteName(lyx2lyx.toFilesystemEncoding())
+               << " -t " << convert<string>(LYX_FORMAT)
+               << " -o " << quoteName(tmpfile.toFilesystemEncoding())
+               << ' ' << quoteName(fn.toSafeFilesystemEncoding());
+       string const command_str = command.str();
+
+       LYXERR(Debug::INFO, "Running '" << command_str << '\'');
+
+       cmd_ret const ret = runCommand(command_str);
+       if (ret.first != 0) {
+               if (from_format < LYX_FORMAT) {
+                       Alert::error(_("Conversion script failed"),
+                               bformat(_("%1$s is from an older version"
+                                       " of LyX, but the lyx2lyx script"
+                                       " failed to convert it."),
+                                       from_utf8(fn.absFileName())));
+                       return LyX2LyXOlderFormat;
+               } else {
+                       Alert::error(_("Conversion script failed"),
+                               bformat(_("%1$s is from an newer version"
+                                       " of LyX, but the lyx2lyx script"
+                                       " failed to convert it."),
+                                       from_utf8(fn.absFileName())));
+                       return LyX2LyXNewerFormat;
+               }
+       }
+       return ReadSuccess;
 }
 
 
@@ -1075,7 +1084,7 @@ bool Buffer::writeFile(FileName const & fname) const
        // see bug 6587
        // removeAutosaveFile();
 
-       saveCheckSum(d->filename);
+       saveCheckSum();
        message(str + _(" done."));
 
        return true;
@@ -1682,10 +1691,9 @@ void Buffer::validate(LaTeXFeatures & features) const
 
 void Buffer::getLabelList(vector<docstring> & list) const
 {
-       // If this is a child document, use the parent's list instead.
-       Buffer const * const pbuf = d->parent();
-       if (pbuf) {
-               pbuf->getLabelList(list);
+       // If this is a child document, use the master's list instead.
+       if (parent()) {
+               masterBuffer()->getLabelList(list);
                return;
        }
 
@@ -1704,24 +1712,21 @@ void Buffer::updateBibfilesCache(UpdateScope scope) const
 {
        // FIXME This is probably unnecssary, given where we call this.
        // If this is a child document, use the parent's cache instead.
-       Buffer const * const pbuf = d->parent();
-       if (pbuf && scope != UpdateChildOnly) {
-               pbuf->updateBibfilesCache();
+       if (parent() && scope != UpdateChildOnly) {
+               masterBuffer()->updateBibfilesCache();
                return;
        }
 
        d->bibfiles_cache_.clear();
        for (InsetIterator it = inset_iterator_begin(inset()); it; ++it) {
                if (it->lyxCode() == BIBTEX_CODE) {
-                       InsetBibtex const & inset =
-                               static_cast<InsetBibtex const &>(*it);
+                       InsetBibtex const & inset = static_cast<InsetBibtex const &>(*it);
                        support::FileNameList const bibfiles = inset.getBibFiles();
                        d->bibfiles_cache_.insert(d->bibfiles_cache_.end(),
                                bibfiles.begin(),
                                bibfiles.end());
                } else if (it->lyxCode() == INCLUDE_CODE) {
-                       InsetInclude & inset =
-                               static_cast<InsetInclude &>(*it);
+                       InsetInclude & inset = static_cast<InsetInclude &>(*it);
                        Buffer const * const incbuf = inset.getChildBuffer();
                        if (!incbuf)
                                continue;
@@ -2047,7 +2052,7 @@ void Buffer::dispatch(FuncRequest const & func, DispatchResult & dr)
                                docstring const str = branch_name + ' ' + from_ascii(x11hexname);
                                lyx::dispatch(FuncRequest(LFUN_SET_COLOR, str));
                                dr.setError(false);
-                               dr.update(Update::Force);
+                               dr.screenUpdate(Update::Force);
                        }
                }
                if (!msg.empty())
@@ -2074,7 +2079,7 @@ void Buffer::dispatch(FuncRequest const & func, DispatchResult & dr)
                } else {
                        branch->setSelected(func.action() == LFUN_BRANCH_ACTIVATE);
                        dr.setError(false);
-                       dr.update(Update::Force);
+                       dr.screenUpdate(Update::Force);
                        dr.forceBufferUpdate();
                }
                break;
@@ -2111,7 +2116,7 @@ void Buffer::dispatch(FuncRequest const & func, DispatchResult & dr)
                }
 
                if (success) {
-                       dr.update(Update::Force);
+                       dr.screenUpdate(Update::Force);
                        dr.forceBufferUpdate();
                }
                break;
@@ -2294,7 +2299,7 @@ void Buffer::getLanguages(std::set<Language const *> & languages) const
        for (ParConstIterator it = par_iterator_begin(); it != end; ++it)
                it->getLanguages(languages);
        // also children
-       ListOfBuffers clist = getChildren();
+       ListOfBuffers clist = getDescendents();
        ListOfBuffers::const_iterator cit = clist.begin();
        ListOfBuffers::const_iterator const cen = clist.end();
        for (; cit != cen; ++cit)
@@ -2377,8 +2382,9 @@ bool Buffer::isExternallyModified(CheckMethod method) const
 }
 
 
-void Buffer::saveCheckSum(FileName const & file) const
+void Buffer::saveCheckSum() const
 {
+       FileName const & file = d->filename;
        if (file.exists()) {
                d->timestamp_ = file.lastModified();
                d->checksum_ = file.checksum();
@@ -2482,14 +2488,16 @@ Buffer const * Buffer::parent() const
 
 ListOfBuffers Buffer::allRelatives() const
 {
-       if (parent())
-               return parent()->allRelatives();
-       return getChildren(/* true */);
+       ListOfBuffers lb = masterBuffer()->getDescendents();
+       lb.push_front(const_cast<Buffer *>(this));
+       return lb;
 }
 
 
 Buffer const * Buffer::masterBuffer() const
 {
+       // FIXME Should be make sure we are not in some kind
+       // of recursive include? A -> B -> A will crash this.
        Buffer const * const pbuf = d->parent();
        if (!pbuf)
                return this;
@@ -2520,25 +2528,37 @@ bool Buffer::hasChildren() const
 }
 
 
-void Buffer::getChildren(ListOfBuffers & clist, bool grand_children) const
+void Buffer::collectChildren(ListOfBuffers & clist, bool grand_children) const
 {
        // loop over children
        Impl::BufferPositionMap::iterator it = d->children_positions.begin();
        Impl::BufferPositionMap::iterator end = d->children_positions.end();
        for (; it != end; ++it) {
                Buffer * child = const_cast<Buffer *>(it->first);
+               // No duplicates
+               ListOfBuffers::const_iterator bit = find(clist.begin(), clist.end(), child);
+               if (bit != clist.end())
+                       continue;
                clist.push_back(child);
                if (grand_children) 
                        // there might be grandchildren
-                       child->getChildren(clist /*, true */);
+                       child->collectChildren(clist, true);
        }
 }
 
 
-ListOfBuffers Buffer::getChildren(bool grand_children) const
+ListOfBuffers Buffer::getChildren() const
 {
        ListOfBuffers v;
-       getChildren(v, grand_children);
+       collectChildren(v, false);
+       return v;
+}
+
+
+ListOfBuffers Buffer::getDescendents() const
+{
+       ListOfBuffers v;
+       collectChildren(v, true);
        return v;
 }
 
@@ -2720,6 +2740,17 @@ void Buffer::Impl::updateMacros(DocIterator & it, DocIterator & scope)
                                it.pop_back();
                                continue;
                        }
+                       
+                       if (iit->inset->asInsetTabular()) {
+                               CursorSlice slice(*iit->inset);
+                               size_t const numcells = slice.nargs();
+                               for (; slice.idx() < numcells; slice.forwardIdx()) {
+                                       it.push_back(slice);
+                                       updateMacros(it, scope);
+                                       it.pop_back();
+                               }
+                               continue;
+                       }
 
                        // is it an external file?
                        if (iit->inset->lyxCode() == INCLUDE_CODE) {
@@ -2743,12 +2774,11 @@ void Buffer::Impl::updateMacros(DocIterator & it, DocIterator & scope)
                                continue;
                        }
 
-                       if (doing_export && iit->inset->asInsetMath()) {
-                               InsetMath * im = static_cast<InsetMath *>(iit->inset);
-                               if (im->asHullInset()) {
-                                       InsetMathHull * hull = static_cast<InsetMathHull *>(im);
+                       InsetMath * im = iit->inset->asInsetMath();
+                       if (doing_export && im)  {
+                               InsetMathHull * hull = im->asHullInset();
+                               if (hull)
                                        hull->recordLocation(it);
-                               }
                        }
 
                        if (iit->inset->lyxCode() != MATHMACRO_CODE)
@@ -2756,7 +2786,7 @@ void Buffer::Impl::updateMacros(DocIterator & it, DocIterator & scope)
 
                        // get macro data
                        MathMacroTemplate & macroTemplate =
-                               static_cast<MathMacroTemplate &>(*iit->inset);
+                               *iit->inset->asInsetMath()->asMacroTemplate();
                        MacroContext mc(owner_, it);
                        macroTemplate.updateToContext(mc);
 
@@ -2980,10 +3010,12 @@ void Buffer::changeRefsIfUnique(docstring const & from, docstring const & to,
 
        for (InsetIterator it = inset_iterator_begin(inset()); it; ++it) {
                if (it->lyxCode() == code) {
-                       InsetCommand & inset = static_cast<InsetCommand &>(*it);
-                       docstring const oldValue = inset.getParam(paramName);
+                       InsetCommand * inset = it->asInsetCommand();
+                       if (!inset)
+                               continue;
+                       docstring const oldValue = inset->getParam(paramName);
                        if (oldValue == from)
-                               inset.setParam(paramName, to);
+                               inset->setParam(paramName, to);
                }
        }
 }
@@ -3194,6 +3226,18 @@ int AutoSaveBuffer::generateChild()
 } // namespace anon
 
 
+FileName Buffer::getEmergencyFileName() const
+{
+       return getEmergencyFileNameFor(d->filename);
+}
+
+
+FileName Buffer::getEmergencyFileNameFor(FileName const & fn) const
+{
+       return FileName(fn.absFileName() + ".emergency");
+}
+
+
 FileName Buffer::getAutosaveFileName() const
 {
        // if the document is unnamed try to save in the backup dir, else
@@ -3206,8 +3250,15 @@ FileName Buffer::getAutosaveFileName() const
        if (!isUnnamed() || fpath.empty() || !FileName(fpath).exists())
                fpath = filePath();
 
-       string const fname = "#" + d->filename.onlyFileName() + "#";
-       return makeAbsPath(fname, fpath);
+       string const fname = d->filename.onlyFileName();
+       return getAutosaveFileNameFor(makeAbsPath(fname, fpath));
+}
+
+
+FileName Buffer::getAutosaveFileNameFor(FileName const & fn) const
+{
+       string const fname = "#" + onlyFileName(fn.absFileName()) + "#";
+       return FileName(onlyPath(fn.absFileName()) + fname);
 }
 
 
@@ -3426,7 +3477,7 @@ bool Buffer::doExport(string const & format, bool put_in_tempdir,
                } else 
                        errors(error_type);
                // also to the children, in case of master-buffer-view
-               ListOfBuffers clist = getChildren();
+               ListOfBuffers clist = getDescendents();
                ListOfBuffers::const_iterator cit = clist.begin();
                ListOfBuffers::const_iterator const cen = clist.end();
                for (; cit != cen; ++cit) {
@@ -3566,109 +3617,132 @@ vector<string> Buffer::backends() const
 }
 
 
-bool Buffer::readFileHelper(FileName const & s)
+Buffer::ReadStatus Buffer::extractFromVC(FileName const & fn)
 {
-       // File information about normal file
-       if (!s.exists()) {
-               docstring const file = makeDisplayPath(s.absFileName(), 50);
-               docstring text = bformat(_("The specified document\n%1$s"
-                                                    "\ncould not be read."), file);
-               Alert::error(_("Could not read document"), text);
-               return false;
-       }
+       bool const found = LyXVC::file_not_found_hook(fn);
+       if (!found)
+               return ReadFileNotFound;
+       if (!fn.isReadableFile())
+               return ReadVCError;
+       return ReadSuccess;
+}
 
-       // Check if emergency save file exists and is newer.
-       FileName const e(s.absFileName() + ".emergency");
-
-       if (e.exists() && s.exists() && e.lastModified() > s.lastModified()) {
-               docstring const file = makeDisplayPath(s.absFileName(), 20);
-               docstring const text =
-                       bformat(_("An emergency save of the document "
-                                 "%1$s exists.\n\n"
-                                              "Recover emergency save?"), file);
-               switch (Alert::prompt(_("Load emergency save?"), text, 0, 2,
-                                     _("&Recover"),  _("&Load Original"),
-                                     _("&Cancel")))
-               {
-               case 0: {
-                       // the file is not saved if we load the emergency file.
+
+Buffer::ReadStatus Buffer::loadEmergency(FileName const & fn)
+{
+       FileName const emergencyFile = getEmergencyFileNameFor(fn);
+       if (!emergencyFile.exists() 
+                 || emergencyFile.lastModified() <= fn.lastModified())
+               return ReadFileNotFound;
+
+       docstring const file = makeDisplayPath(fn.absFileName(), 20);
+       docstring const text = bformat(_("An emergency save of the document "
+               "%1$s exists.\n\nRecover emergency save?"), file);
+       
+       int const load_emerg = Alert::prompt(_("Load emergency save?"), text,
+               0, 2, _("&Recover"), _("&Load Original"), _("&Cancel"));
+
+       switch (load_emerg)
+       {
+       case 0: {
+               docstring str;
+               ReadStatus const ret_llf = loadThisLyXFile(emergencyFile);
+               bool const success = (ret_llf == ReadSuccess);
+               if (success) {
                        markDirty();
-                       docstring str;
-                       bool res;
-
-                       if ((res = readFile(e)) == success)
-                               str = _("Document was successfully recovered.");
-                       else
-                               str = _("Document was NOT successfully recovered.");
-                       str += "\n\n" + bformat(_("Remove emergency file now?\n(%1$s)"),
-                                               makeDisplayPath(e.absFileName()));
-
-                       if (!Alert::prompt(_("Delete emergency file?"), str, 1, 1,
-                                       _("&Remove"), _("&Keep it"))) {
-                               e.removeFile();
-                               if (res == success)
-                                       Alert::warning(_("Emergency file deleted"),
-                                               _("Do not forget to save your file now!"), true);
-                               }
-                       return res;
-               }
-               case 1:
-                       if (!Alert::prompt(_("Delete emergency file?"),
-                                       _("Remove emergency file now?"), 1, 1,
-                                       _("&Remove"), _("&Keep it")))
-                               e.removeFile();
-                       break;
-               default:
-                       return false;
-               }
+                       str = _("Document was successfully recovered.");
+               } else
+                       str = _("Document was NOT successfully recovered.");
+               str += "\n\n" + bformat(_("Remove emergency file now?\n(%1$s)"),
+                                       makeDisplayPath(emergencyFile.absFileName()));
+
+               int const del_emerg = 
+                       Alert::prompt(_("Delete emergency file?"), str, 1, 1,
+                               _("&Remove"), _("&Keep"));
+               if (del_emerg == 0) {
+                       emergencyFile.removeFile();
+                       if (success)
+                               Alert::warning(_("Emergency file deleted"),
+                                       _("Do not forget to save your file now!"), true);
+                       }
+               return success ? ReadSuccess : ReadEmergencyFailure;
+       }
+       case 1: {
+               int const del_emerg =
+                       Alert::prompt(_("Delete emergency file?"),
+                               _("Remove emergency file now?"), 1, 1,
+                               _("&Remove"), _("&Keep"));
+               if (del_emerg == 0)
+                       emergencyFile.removeFile();
+               return ReadOriginal;
        }
 
+       default:
+               break;
+       }
+       return ReadCancel;
+}
+
+
+Buffer::ReadStatus Buffer::loadAutosave(FileName const & fn)
+{
        // Now check if autosave file is newer.
-       FileName const a(onlyPath(s.absFileName()) + '#' + onlyFileName(s.absFileName()) + '#');
-
-       if (a.exists() && s.exists() && a.lastModified() > s.lastModified()) {
-               docstring const file = makeDisplayPath(s.absFileName(), 20);
-               docstring const text =
-                       bformat(_("The backup of the document "
-                                 "%1$s is newer.\n\nLoad the "
-                                              "backup instead?"), file);
-               switch (Alert::prompt(_("Load backup?"), text, 0, 2,
-                                     _("&Load backup"), _("Load &original"),
-                                     _("&Cancel") ))
-               {
-               case 0:
-                       // the file is not saved if we load the autosave file.
+       FileName const autosaveFile = getAutosaveFileNameFor(fn);
+       if (!autosaveFile.exists() 
+                 || autosaveFile.lastModified() <= fn.lastModified()) 
+               return ReadFileNotFound;
+
+       docstring const file = makeDisplayPath(fn.absFileName(), 20);
+       docstring const text = bformat(_("The backup of the document %1$s " 
+               "is newer.\n\nLoad the backup instead?"), file);
+       int const ret = Alert::prompt(_("Load backup?"), text, 0, 2,
+               _("&Load backup"), _("Load &original"), _("&Cancel"));
+       
+       switch (ret)
+       {
+       case 0: {
+               ReadStatus const ret_llf = loadThisLyXFile(autosaveFile);
+               // the file is not saved if we load the autosave file.
+               if (ret_llf == ReadSuccess) {
                        markDirty();
-                       return readFile(a);
-               case 1:
-                       // Here we delete the autosave
-                       a.removeFile();
-                       break;
-               default:
-                       return false;
+                       return ReadSuccess;
                }
+               return ReadAutosaveFailure;
+       }
+       case 1:
+               // Here we delete the autosave
+               autosaveFile.removeFile();
+               return ReadOriginal;
+       default:
+               break;
        }
-       return readFile(s);
+       return ReadCancel;
 }
 
 
-bool Buffer::loadLyXFile(FileName const & s)
+Buffer::ReadStatus Buffer::loadLyXFile(FileName const & fn)
 {
-       // If the file is not readable, we try to
-       // retrieve the file from version control.
-       if (!s.isReadableFile()
-                 && !LyXVC::file_not_found_hook(s))
-               return false;
-       
-       if (s.isReadableFile()){
-               // InsetInfo needs to know if file is under VCS
-               lyxvc().file_found_hook(s);
-               if (readFileHelper(s)) {
-                       d->read_only = !s.isWritable();
-                       return true;
-               }
+       if (!fn.isReadableFile()) {
+               ReadStatus const ret_rvc = extractFromVC(fn);
+               if (ret_rvc != ReadSuccess)
+                       return ret_rvc;
        }
-       return false;
+
+       ReadStatus const ret_re = loadEmergency(fn);
+       if (ret_re == ReadSuccess || ret_re == ReadCancel)
+               return ret_re;
+       
+       ReadStatus const ret_ra = loadAutosave(fn);
+       if (ret_ra == ReadSuccess || ret_ra == ReadCancel)
+               return ret_ra;
+
+       return loadThisLyXFile(fn);
+}
+
+
+Buffer::ReadStatus Buffer::loadThisLyXFile(FileName const & fn)
+{
+       return readFile(fn);
 }
 
 
@@ -3963,10 +4037,8 @@ void Buffer::updateBuffer(ParIterator & parit, UpdateType utype) const
 {
        LASSERT(parit.pit() == 0, /**/);
 
-       // set the position of the text in the buffer to be able
-       // to resolve macros in it. This has nothing to do with
-       // labels, but by putting it here we avoid implementing
-       // a whole bunch of traversal routines just for this call.
+       // Set the position of the text in the buffer to be able
+       // to resolve macros in it.
        parit.text()->setMacrocontextPosition(parit);
 
        depth_type maxdepth = 0;
@@ -4036,7 +4108,7 @@ int Buffer::spellCheck(DocIterator & from, DocIterator & to,
 }
 
 
-bool Buffer::reload()
+Buffer::ReadStatus Buffer::reload()
 {
        setBusy(true);
        // c.f. bug 6587
@@ -4045,8 +4117,8 @@ bool Buffer::reload()
        d->filename.refresh();
        docstring const disp_fn = makeDisplayPath(d->filename.absFileName());
 
-       bool const success = loadLyXFile(d->filename);
-       if (success) {
+       ReadStatus const status = loadLyXFile(d->filename);
+       if (status == ReadSuccess) {
                updateBuffer();
                changed(true);
                updateTitles();
@@ -4056,11 +4128,10 @@ bool Buffer::reload()
                message(bformat(_("Could not reload document %1$s."), disp_fn));
        }       
        setBusy(false);
-       thePreviews().removeLoader(*this);
-       if (graphics::Previews::status() != LyXRC::PREVIEW_OFF)
-               thePreviews().generateBufferPreviews(*this);
+       removePreviews();
+       updatePreviews();
        errors("Parse");
-       return success;
+       return status;
 }