X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;ds=inline;f=src%2FSession.cpp;h=310aa74c9b90760af8af76071c2cf5d471801c75;hb=830eb234bebea1f58170a38e17610c2d57e63719;hp=7f39bd6be354456b9ef49ef4788302181becce84;hpb=d1e3d75da226311cb290fc4be3686d6deef7b967;p=lyx.git diff --git a/src/Session.cpp b/src/Session.cpp index 7f39bd6be3..310aa74c9b 100644 --- a/src/Session.cpp +++ b/src/Session.cpp @@ -34,13 +34,13 @@ string const sec_bookmarks = "[bookmarks]"; string const sec_session = "[session info]"; string const sec_toolbars = "[toolbars]"; string const sec_lastcommands = "[last commands]"; +string const sec_authfiles = "[auth files]"; } // anon namespace namespace lyx { - LastFilesSection::LastFilesSection(unsigned int num) : default_num_last_files(4), absolute_max_last_files(100) @@ -85,7 +85,7 @@ void LastFilesSection::add(FileName const & file) LastFiles::iterator it = find(lastfiles.begin(), lastfiles.end(), file); if (it != lastfiles.end()) lastfiles.erase(it); - lastfiles.push_front(file); + lastfiles.insert(lastfiles.begin(), file); if (lastfiles.size() > num_lastfiles) lastfiles.pop_back(); } @@ -151,6 +151,16 @@ void LastOpenedSection::write(ostream & os) const void LastOpenedSection::add(FileName const & file, bool active) { LastOpenedFile lof(file, active); + // check if file is already recorded (this can happen + // with multiple buffer views). We do only record each + // file once, since we cannot restore multiple views + // currently, we even crash in some cases (see #9483). + // FIXME: Add session support for multiple views of + // the same buffer (split-view etc.). + for (size_t i = 0; i < lastopened.size(); ++i) { + if (lastopened[i].file_name == file) + return; + } lastopened.push_back(lof); } @@ -278,7 +288,7 @@ void BookmarksSection::read(istream & is) void BookmarksSection::write(ostream & os) const { os << '\n' << sec_bookmarks << '\n'; - for (size_t i = 1; i <= max_bookmarks; ++i) { + for (size_t i = 0; i <= max_bookmarks; ++i) { if (isValid(i)) os << i << ", " << bookmarks[i].bottom_pit << ", " @@ -381,7 +391,7 @@ Session::Session(unsigned int num_last_files, unsigned int num_last_commands) : { // locate the session file // note that the session file name 'session' is hard-coded - session_file = FileName(addName(package().user_support().absFilename(), "session")); + session_file = FileName(addName(package().user_support().absFileName(), "session")); // readFile(); } @@ -410,6 +420,8 @@ void Session::readFile() bookmarks().read(is); else if (tmp == sec_lastcommands) lastCommands().read(is); + else if (tmp == sec_authfiles) + authFiles().read(is); else LYXERR(Debug::INIT, "LyX: Warning: unknown Session section: " << tmp); @@ -429,9 +441,43 @@ void Session::writeFile() const lastFilePos().write(os); lastCommands().write(os); bookmarks().write(os); + authFiles().write(os); } else LYXERR(Debug::INIT, "LyX: Warning: unable to save Session: " << session_file); } + +AuthFilesSection::AuthFilesSection() { } + + +void AuthFilesSection::read(istream & is) +{ + string tmp; + do { + char c = is.peek(); + if (c == '[') + break; + getline(is, tmp); + if (tmp.empty() || tmp[0] == '#' || tmp[0] == ' ' || !FileName::isAbsolute(tmp)) + continue; + + // read lastfiles + FileName const file(tmp); + if (file.exists() && !file.isDirectory()) + auth_files_.insert(tmp); + else + LYXERR(Debug::INIT, "LyX: Warning: Ignore auth file: " << tmp); + } while (is.good()); +} + + +void AuthFilesSection::write(ostream & os) const +{ + os << '\n' << sec_authfiles << '\n'; + copy(auth_files_.begin(), auth_files_.end(), + ostream_iterator(os, "\n")); +} + + }