2006-04-05 22:56:18 +00:00
|
|
|
/**
|
|
|
|
* \file session.C
|
|
|
|
* This file is part of LyX, the document processor.
|
|
|
|
* Licence details can be found in the file COPYING.
|
|
|
|
*
|
|
|
|
* \author Lars Gullik Bjønnes
|
|
|
|
* \author Bo Peng
|
|
|
|
*
|
|
|
|
* Full author contact details are available in file CREDITS.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
|
|
|
|
#include "session.h"
|
|
|
|
#include "debug.h"
|
|
|
|
#include "support/package.h"
|
|
|
|
#include "support/filetools.h"
|
|
|
|
|
|
|
|
#include <boost/filesystem/operations.hpp>
|
|
|
|
|
|
|
|
#include <fstream>
|
|
|
|
#include <sstream>
|
|
|
|
#include <algorithm>
|
|
|
|
#include <iterator>
|
|
|
|
|
2006-12-02 16:07:15 +00:00
|
|
|
using lyx::support::absolutePath;
|
2006-04-08 22:31:11 +00:00
|
|
|
using lyx::support::addName;
|
2006-12-02 16:07:15 +00:00
|
|
|
using lyx::support::FileName;
|
2006-04-05 23:56:29 +00:00
|
|
|
using lyx::support::package;
|
2006-04-05 22:56:18 +00:00
|
|
|
|
|
|
|
namespace fs = boost::filesystem;
|
|
|
|
|
|
|
|
using std::vector;
|
|
|
|
using std::getline;
|
|
|
|
using std::string;
|
|
|
|
using std::ifstream;
|
|
|
|
using std::ofstream;
|
2006-10-27 14:18:03 +00:00
|
|
|
using std::istream;
|
|
|
|
using std::ostream;
|
2006-04-05 22:56:18 +00:00
|
|
|
using std::endl;
|
|
|
|
using std::istringstream;
|
|
|
|
using std::copy;
|
|
|
|
using std::find;
|
|
|
|
using std::ostream_iterator;
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
|
|
|
|
string const sec_lastfiles = "[recent files]";
|
|
|
|
string const sec_lastfilepos = "[cursor positions]";
|
|
|
|
string const sec_lastopened = "[last opened files]";
|
|
|
|
string const sec_bookmarks = "[bookmarks]";
|
|
|
|
string const sec_session = "[session info]";
|
2006-11-02 16:01:36 +00:00
|
|
|
string const sec_toolbars = "[toolbars]";
|
2006-04-05 22:56:18 +00:00
|
|
|
|
|
|
|
} // anon namespace
|
|
|
|
|
|
|
|
|
2006-10-21 00:16:43 +00:00
|
|
|
namespace lyx {
|
|
|
|
|
2006-10-27 14:18:03 +00:00
|
|
|
LastFilesSection::LastFilesSection(unsigned int num) :
|
2006-04-05 22:56:18 +00:00
|
|
|
default_num_last_files(4),
|
2006-10-27 14:18:03 +00:00
|
|
|
absolute_max_last_files(100)
|
2006-04-05 22:56:18 +00:00
|
|
|
{
|
|
|
|
setNumberOfLastFiles(num);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-10-27 14:18:03 +00:00
|
|
|
void LastFilesSection::read(istream & is)
|
|
|
|
{
|
|
|
|
string tmp;
|
|
|
|
do {
|
|
|
|
char c = is.peek();
|
|
|
|
if (c == '[')
|
|
|
|
break;
|
|
|
|
getline(is, tmp);
|
2006-12-02 16:07:15 +00:00
|
|
|
if (tmp == "" || tmp[0] == '#' || tmp[0] == ' ' || !absolutePath(tmp))
|
2006-10-27 14:18:03 +00:00
|
|
|
continue;
|
2006-11-22 21:00:14 +00:00
|
|
|
|
|
|
|
// read lastfiles
|
2006-12-02 16:07:15 +00:00
|
|
|
FileName const file(tmp);
|
|
|
|
if (fs::exists(file.toFilesystemEncoding()) &&
|
|
|
|
!fs::is_directory(file.toFilesystemEncoding()) &&
|
|
|
|
lastfiles.size() < num_lastfiles)
|
|
|
|
lastfiles.push_back(file);
|
2006-11-22 21:00:14 +00:00
|
|
|
else
|
2006-11-29 02:34:52 +00:00
|
|
|
lyxerr[Debug::INIT] << "LyX: Warning: Ignore last file: " << tmp << endl;
|
2006-10-27 14:18:03 +00:00
|
|
|
} while (is.good());
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void LastFilesSection::write(ostream & os) const
|
|
|
|
{
|
|
|
|
os << '\n' << sec_lastfiles << '\n';
|
|
|
|
copy(lastfiles.begin(), lastfiles.end(),
|
2006-12-02 16:07:15 +00:00
|
|
|
ostream_iterator<FileName>(os, "\n"));
|
2006-10-27 14:18:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-12-02 16:07:15 +00:00
|
|
|
void LastFilesSection::add(FileName const & file)
|
2006-10-27 14:18:03 +00:00
|
|
|
{
|
|
|
|
// If file already exist, delete it and reinsert at front.
|
|
|
|
LastFiles::iterator it = find(lastfiles.begin(), lastfiles.end(), file);
|
|
|
|
if (it != lastfiles.end())
|
|
|
|
lastfiles.erase(it);
|
|
|
|
lastfiles.push_front(file);
|
|
|
|
if (lastfiles.size() > num_lastfiles)
|
|
|
|
lastfiles.pop_back();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void LastFilesSection::setNumberOfLastFiles(unsigned int no)
|
2006-04-05 22:56:18 +00:00
|
|
|
{
|
|
|
|
if (0 < no && no <= absolute_max_last_files)
|
|
|
|
num_lastfiles = no;
|
|
|
|
else {
|
2006-11-29 02:34:52 +00:00
|
|
|
lyxerr[Debug::INIT] << "LyX: session: too many last files\n"
|
2006-04-05 22:56:18 +00:00
|
|
|
<< "\tdefault (=" << default_num_last_files
|
|
|
|
<< ") used." << endl;
|
|
|
|
num_lastfiles = default_num_last_files;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-10-27 14:18:03 +00:00
|
|
|
void LastOpenedSection::read(istream & is)
|
2006-04-05 22:56:18 +00:00
|
|
|
{
|
|
|
|
string tmp;
|
2006-10-27 14:18:03 +00:00
|
|
|
do {
|
|
|
|
char c = is.peek();
|
|
|
|
if (c == '[')
|
|
|
|
break;
|
|
|
|
getline(is, tmp);
|
2006-12-02 16:07:15 +00:00
|
|
|
if (tmp == "" || tmp[0] == '#' || tmp[0] == ' ' || !absolutePath(tmp))
|
2006-04-05 22:56:18 +00:00
|
|
|
continue;
|
2006-11-22 21:00:14 +00:00
|
|
|
|
2006-12-02 16:07:15 +00:00
|
|
|
FileName const file(tmp);
|
|
|
|
if (fs::exists(file.toFilesystemEncoding()) &&
|
|
|
|
!fs::is_directory(file.toFilesystemEncoding()))
|
|
|
|
lastopened.push_back(file);
|
2006-11-22 21:00:14 +00:00
|
|
|
else
|
2006-11-29 02:34:52 +00:00
|
|
|
lyxerr[Debug::INIT] << "LyX: Warning: Ignore last opened file: " << tmp << endl;
|
2006-10-27 14:18:03 +00:00
|
|
|
} while (is.good());
|
|
|
|
}
|
2006-04-05 22:56:18 +00:00
|
|
|
|
2006-10-27 14:18:03 +00:00
|
|
|
|
|
|
|
void LastOpenedSection::write(ostream & os) const
|
|
|
|
{
|
|
|
|
os << '\n' << sec_lastopened << '\n';
|
|
|
|
copy(lastopened.begin(), lastopened.end(),
|
2006-12-02 16:07:15 +00:00
|
|
|
ostream_iterator<FileName>(os, "\n"));
|
2006-04-05 22:56:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-12-02 16:07:15 +00:00
|
|
|
void LastOpenedSection::add(FileName const & file)
|
2006-04-05 22:56:18 +00:00
|
|
|
{
|
2006-10-27 14:18:03 +00:00
|
|
|
lastopened.push_back(file);
|
2006-04-05 22:56:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-10-27 14:18:03 +00:00
|
|
|
void LastOpenedSection::clear()
|
2006-04-05 22:56:18 +00:00
|
|
|
{
|
2006-10-27 14:18:03 +00:00
|
|
|
lastopened.clear();
|
2006-04-05 22:56:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-10-27 14:18:03 +00:00
|
|
|
void LastFilePosSection::read(istream & is)
|
|
|
|
{
|
|
|
|
string tmp;
|
|
|
|
do {
|
|
|
|
char c = is.peek();
|
|
|
|
if (c == '[')
|
|
|
|
break;
|
|
|
|
getline(is, tmp);
|
2006-11-22 21:00:14 +00:00
|
|
|
if (tmp == "" || tmp[0] == '#' || tmp[0] == ' ')
|
2006-10-27 14:18:03 +00:00
|
|
|
continue;
|
2006-11-22 21:00:14 +00:00
|
|
|
|
|
|
|
try {
|
|
|
|
// read lastfilepos
|
|
|
|
// pos, file\n
|
|
|
|
pit_type pit;
|
|
|
|
pos_type pos;
|
|
|
|
string fname;
|
|
|
|
istringstream itmp(tmp);
|
|
|
|
itmp >> pit;
|
|
|
|
itmp.ignore(2); // ignore ", "
|
|
|
|
itmp >> pos;
|
|
|
|
itmp.ignore(2); // ignore ", "
|
2007-01-17 05:35:03 +00:00
|
|
|
getline(itmp, fname);
|
2006-12-02 16:07:15 +00:00
|
|
|
if (!absolutePath(fname))
|
|
|
|
continue;
|
|
|
|
FileName const file(fname);
|
|
|
|
if (fs::exists(file.toFilesystemEncoding()) &&
|
|
|
|
!fs::is_directory(file.toFilesystemEncoding()) &&
|
|
|
|
lastfilepos.size() < num_lastfilepos)
|
|
|
|
lastfilepos[file] = boost::tie(pit, pos);
|
2006-11-22 21:00:14 +00:00
|
|
|
else
|
2006-11-29 02:34:52 +00:00
|
|
|
lyxerr[Debug::INIT] << "LyX: Warning: Ignore pos of last file: " << fname << endl;
|
2006-11-22 21:00:14 +00:00
|
|
|
} catch (...) {
|
2006-11-29 02:34:52 +00:00
|
|
|
lyxerr[Debug::INIT] << "LyX: Warning: unknown pos of last file: " << tmp << endl;
|
2006-11-22 21:00:14 +00:00
|
|
|
}
|
2006-10-27 14:18:03 +00:00
|
|
|
} while (is.good());
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void LastFilePosSection::write(ostream & os) const
|
|
|
|
{
|
|
|
|
os << '\n' << sec_lastfilepos << '\n';
|
|
|
|
for (FilePosMap::const_iterator file = lastfilepos.begin();
|
|
|
|
file != lastfilepos.end(); ++file) {
|
|
|
|
os << file->second.get<0>() << ", "
|
|
|
|
<< file->second.get<1>() << ", "
|
|
|
|
<< file->first << '\n';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-12-02 16:07:15 +00:00
|
|
|
void LastFilePosSection::save(FileName const & fname, FilePos pos)
|
2006-04-05 22:56:18 +00:00
|
|
|
{
|
|
|
|
lastfilepos[fname] = pos;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-12-02 16:07:15 +00:00
|
|
|
LastFilePosSection::FilePos LastFilePosSection::load(FileName const & fname) const
|
2006-04-05 22:56:18 +00:00
|
|
|
{
|
|
|
|
FilePosMap::const_iterator entry = lastfilepos.find(fname);
|
|
|
|
// Has position information, return it.
|
|
|
|
if (entry != lastfilepos.end())
|
|
|
|
return entry->second;
|
|
|
|
// Not found, return the first paragraph
|
2006-04-05 23:56:29 +00:00
|
|
|
else
|
2006-04-05 22:56:18 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-03-29 03:41:55 +00:00
|
|
|
void BookmarksSection::clear()
|
|
|
|
{
|
|
|
|
// keep bookmark[0], the temporary one
|
|
|
|
bookmarks.resize(1);
|
|
|
|
bookmarks.resize(max_bookmarks + 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-10-27 14:18:03 +00:00
|
|
|
void BookmarksSection::read(istream & is)
|
2006-04-05 22:56:18 +00:00
|
|
|
{
|
2006-10-27 14:18:03 +00:00
|
|
|
string tmp;
|
|
|
|
do {
|
|
|
|
char c = is.peek();
|
|
|
|
if (c == '[')
|
|
|
|
break;
|
|
|
|
getline(is, tmp);
|
2006-11-22 21:00:14 +00:00
|
|
|
if (tmp == "" || tmp[0] == '#' || tmp[0] == ' ')
|
|
|
|
continue;
|
|
|
|
|
|
|
|
try {
|
|
|
|
// read bookmarks
|
2007-03-29 03:41:55 +00:00
|
|
|
// idx, pit, pos, file\n
|
|
|
|
unsigned int idx;
|
2007-01-11 16:01:10 +00:00
|
|
|
pit_type pit;
|
2006-11-22 21:00:14 +00:00
|
|
|
pos_type pos;
|
|
|
|
string fname;
|
|
|
|
istringstream itmp(tmp);
|
2007-03-29 03:41:55 +00:00
|
|
|
itmp >> idx;
|
|
|
|
itmp.ignore(2); // ignore ", "
|
2007-01-11 16:01:10 +00:00
|
|
|
itmp >> pit;
|
2006-11-22 21:00:14 +00:00
|
|
|
itmp.ignore(2); // ignore ", "
|
|
|
|
itmp >> pos;
|
|
|
|
itmp.ignore(2); // ignore ", "
|
2007-01-17 05:35:03 +00:00
|
|
|
getline(itmp, fname);
|
2006-12-02 16:07:15 +00:00
|
|
|
if (!absolutePath(fname))
|
|
|
|
continue;
|
|
|
|
FileName const file(fname);
|
2006-11-22 21:00:14 +00:00
|
|
|
// only load valid bookmarks
|
2006-12-02 16:07:15 +00:00
|
|
|
if (fs::exists(file.toFilesystemEncoding()) &&
|
|
|
|
!fs::is_directory(file.toFilesystemEncoding()) &&
|
2007-03-29 03:41:55 +00:00
|
|
|
idx <= max_bookmarks)
|
|
|
|
bookmarks[idx] = Bookmark(file, pit, 0, pos);
|
2006-12-02 16:07:15 +00:00
|
|
|
else
|
2006-11-29 02:34:52 +00:00
|
|
|
lyxerr[Debug::INIT] << "LyX: Warning: Ignore bookmark of file: " << fname << endl;
|
2006-11-22 21:00:14 +00:00
|
|
|
} catch (...) {
|
2006-11-29 02:34:52 +00:00
|
|
|
lyxerr[Debug::INIT] << "LyX: Warning: unknown Bookmark info: " << tmp << endl;
|
2006-11-22 21:00:14 +00:00
|
|
|
}
|
2006-10-27 14:18:03 +00:00
|
|
|
} while (is.good());
|
2006-04-05 22:56:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-10-27 14:18:03 +00:00
|
|
|
void BookmarksSection::write(ostream & os) const
|
2006-04-05 22:56:18 +00:00
|
|
|
{
|
2006-10-27 14:18:03 +00:00
|
|
|
os << '\n' << sec_bookmarks << '\n';
|
2007-03-29 03:41:55 +00:00
|
|
|
for (size_t i = 1; i <= max_bookmarks; ++i) {
|
|
|
|
if (isValid(i))
|
|
|
|
os << i << ", "
|
|
|
|
<< bookmarks[i].par_pit << ", "
|
|
|
|
<< bookmarks[i].par_pos << ", "
|
|
|
|
<< bookmarks[i].filename << '\n';
|
2006-10-27 14:18:03 +00:00
|
|
|
}
|
2006-04-05 22:56:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-03-29 03:41:55 +00:00
|
|
|
void BookmarksSection::save(FileName const & fname, pit_type par_pit, int par_id, pos_type par_pos, unsigned int idx)
|
2006-11-01 15:55:17 +00:00
|
|
|
{
|
2007-03-29 03:41:55 +00:00
|
|
|
// silently ignore bookmarks when idx is out of range
|
|
|
|
if (idx <= max_bookmarks)
|
|
|
|
bookmarks[idx] = Bookmark(fname, par_pit, par_id, par_pos);
|
2006-11-01 15:55:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool BookmarksSection::isValid(unsigned int i) const
|
2006-04-05 22:56:18 +00:00
|
|
|
{
|
2007-03-29 03:41:55 +00:00
|
|
|
return i <= max_bookmarks && !bookmarks[i].filename.empty();
|
2006-11-01 15:55:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
BookmarksSection::Bookmark const & BookmarksSection::bookmark(unsigned int i) const
|
|
|
|
{
|
2007-03-29 03:41:55 +00:00
|
|
|
return bookmarks[i];
|
2006-04-05 22:56:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-11-02 16:01:36 +00:00
|
|
|
void ToolbarSection::read(istream & is)
|
|
|
|
{
|
|
|
|
string tmp;
|
|
|
|
do {
|
|
|
|
char c = is.peek();
|
|
|
|
if (c == '[')
|
|
|
|
break;
|
|
|
|
getline(is, tmp);
|
2006-11-22 21:00:14 +00:00
|
|
|
if (tmp == "" || tmp[0] == '#' || tmp[0] == ' ')
|
|
|
|
continue;
|
2006-11-02 16:01:36 +00:00
|
|
|
|
2006-11-22 21:00:14 +00:00
|
|
|
try {
|
|
|
|
// Read session info, saved as key/value pairs
|
|
|
|
// would better yell if pos returns npos
|
|
|
|
string::size_type pos = tmp.find_first_of(" = ");
|
|
|
|
// silently ignore lines without " = "
|
|
|
|
if (pos != string::npos) {
|
|
|
|
string key = tmp.substr(0, pos);
|
|
|
|
int state;
|
|
|
|
int location;
|
2007-01-27 20:54:17 +00:00
|
|
|
int posx;
|
|
|
|
int posy;
|
2006-11-22 21:00:14 +00:00
|
|
|
istringstream value(tmp.substr(pos + 3));
|
|
|
|
value >> state;
|
|
|
|
value >> location;
|
2007-01-27 20:54:17 +00:00
|
|
|
value >> posx;
|
|
|
|
value >> posy;
|
2007-01-31 02:39:46 +00:00
|
|
|
toolbars.push_back(boost::make_tuple(key, ToolbarInfo(state, location, posx, posy)));
|
2006-11-22 21:00:14 +00:00
|
|
|
} else
|
2006-11-29 02:34:52 +00:00
|
|
|
lyxerr[Debug::INIT] << "LyX: Warning: Ignore toolbar info: " << tmp << endl;
|
2006-11-22 21:00:14 +00:00
|
|
|
} catch (...) {
|
2006-11-29 02:34:52 +00:00
|
|
|
lyxerr[Debug::INIT] << "LyX: Warning: unknown Toolbar info: " << tmp << endl;
|
2006-11-02 16:01:36 +00:00
|
|
|
}
|
|
|
|
} while (is.good());
|
2007-01-31 02:39:46 +00:00
|
|
|
// sort the toolbars by location, line and position
|
|
|
|
std::sort(toolbars.begin(), toolbars.end());
|
2006-11-02 16:01:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void ToolbarSection::write(ostream & os) const
|
|
|
|
{
|
|
|
|
os << '\n' << sec_toolbars << '\n';
|
2007-01-31 02:39:46 +00:00
|
|
|
for (ToolbarList::const_iterator tb = toolbars.begin();
|
2006-11-02 16:01:36 +00:00
|
|
|
tb != toolbars.end(); ++tb) {
|
2007-01-31 02:39:46 +00:00
|
|
|
os << tb->get<0>() << " = "
|
|
|
|
<< static_cast<int>(tb->get<1>().state) << " "
|
|
|
|
<< static_cast<int>(tb->get<1>().location) << " "
|
|
|
|
<< tb->get<1>().posx << " "
|
|
|
|
<< tb->get<1>().posy << '\n';
|
2006-11-02 16:01:36 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
ToolbarSection::ToolbarInfo & ToolbarSection::load(string const & name)
|
|
|
|
{
|
2007-01-31 02:39:46 +00:00
|
|
|
for (ToolbarList::iterator tb = toolbars.begin();
|
|
|
|
tb != toolbars.end(); ++tb)
|
|
|
|
if (tb->get<0>() == name)
|
|
|
|
return tb->get<1>();
|
|
|
|
// add a new item
|
|
|
|
toolbars.push_back(boost::make_tuple(name, ToolbarSection::ToolbarInfo()));
|
|
|
|
return toolbars.back().get<1>();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool operator<(ToolbarSection::ToolbarItem const & a, ToolbarSection::ToolbarItem const & b)
|
|
|
|
{
|
|
|
|
ToolbarSection::ToolbarInfo lhs = a.get<1>();
|
|
|
|
ToolbarSection::ToolbarInfo rhs = b.get<1>();
|
|
|
|
// on if before off
|
|
|
|
if (lhs.state != rhs.state)
|
|
|
|
return static_cast<int>(lhs.state) < static_cast<int>(rhs.state);
|
|
|
|
// order of dock does not really matter
|
|
|
|
if (lhs.location != rhs.location)
|
|
|
|
return static_cast<int>(lhs.location) < static_cast<int>(rhs.location);
|
|
|
|
// if the same dock, the order depends on position
|
|
|
|
if (lhs.location == ToolbarSection::ToolbarInfo::TOP ||
|
|
|
|
lhs.location == ToolbarSection::ToolbarInfo::BOTTOM)
|
|
|
|
return lhs.posy < rhs.posy || (lhs.posy == rhs.posy && lhs.posx < rhs.posx);
|
|
|
|
else if (lhs.location == ToolbarSection::ToolbarInfo::LEFT ||
|
|
|
|
lhs.location == ToolbarSection::ToolbarInfo::RIGHT)
|
|
|
|
return lhs.posx < rhs.posx || (lhs.posx == rhs.posx && lhs.posy < rhs.posy);
|
|
|
|
else
|
|
|
|
return true;
|
2006-11-02 16:01:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-10-27 14:18:03 +00:00
|
|
|
void SessionInfoSection::read(istream & is)
|
|
|
|
{
|
|
|
|
string tmp;
|
|
|
|
do {
|
|
|
|
char c = is.peek();
|
|
|
|
if (c == '[')
|
|
|
|
break;
|
|
|
|
getline(is, tmp);
|
2006-11-22 21:00:14 +00:00
|
|
|
if (tmp == "" || tmp[0] == '#' || tmp[0] == ' ')
|
|
|
|
continue;
|
2006-10-27 14:18:03 +00:00
|
|
|
|
2006-11-22 21:00:14 +00:00
|
|
|
try {
|
|
|
|
// Read session info, saved as key/value pairs
|
|
|
|
// would better yell if pos returns npos
|
|
|
|
string::size_type pos = tmp.find_first_of(" = ");
|
|
|
|
// silently ignore lines without " = "
|
|
|
|
if (pos != string::npos) {
|
|
|
|
string key = tmp.substr(0, pos);
|
|
|
|
string value = tmp.substr(pos + 3);
|
|
|
|
sessioninfo[key] = value;
|
|
|
|
} else
|
2006-11-29 02:34:52 +00:00
|
|
|
lyxerr[Debug::INIT] << "LyX: Warning: Ignore session info: " << tmp << endl;
|
2006-11-22 21:00:14 +00:00
|
|
|
} catch (...) {
|
2006-11-29 02:34:52 +00:00
|
|
|
lyxerr[Debug::INIT] << "LyX: Warning: unknown Session info: " << tmp << endl;
|
2006-10-27 14:18:03 +00:00
|
|
|
}
|
|
|
|
} while (is.good());
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void SessionInfoSection::write(ostream & os) const
|
|
|
|
{
|
|
|
|
os << '\n' << sec_session << '\n';
|
|
|
|
for (MiscInfo::const_iterator val = sessioninfo.begin();
|
|
|
|
val != sessioninfo.end(); ++val) {
|
|
|
|
os << val->first << " = " << val->second << '\n';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void SessionInfoSection::save(string const & key, string const & value)
|
2006-04-05 22:56:18 +00:00
|
|
|
{
|
|
|
|
sessioninfo[key] = value;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-10-27 14:18:03 +00:00
|
|
|
string const SessionInfoSection::load(string const & key, bool release)
|
2006-04-05 22:56:18 +00:00
|
|
|
{
|
|
|
|
MiscInfo::const_iterator pos = sessioninfo.find(key);
|
|
|
|
string value;
|
|
|
|
if (pos != sessioninfo.end())
|
|
|
|
value = pos->second;
|
|
|
|
if (release)
|
|
|
|
sessioninfo.erase(key);
|
|
|
|
return value;
|
|
|
|
}
|
|
|
|
|
2006-10-27 14:18:03 +00:00
|
|
|
|
|
|
|
Session::Session(unsigned int num) :
|
|
|
|
last_files(num)
|
|
|
|
{
|
|
|
|
// locate the session file
|
|
|
|
// note that the session file name 'session' is hard-coded
|
2006-12-02 16:07:15 +00:00
|
|
|
session_file = FileName(addName(package().user_support(), "session"));
|
2006-10-27 14:18:03 +00:00
|
|
|
//
|
|
|
|
readFile();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void Session::readFile()
|
|
|
|
{
|
|
|
|
// we will not complain if we can't find session_file nor will
|
|
|
|
// we issue a warning. (Lgb)
|
2006-12-02 16:07:15 +00:00
|
|
|
ifstream is(session_file.toFilesystemEncoding().c_str());
|
2006-10-27 14:18:03 +00:00
|
|
|
string tmp;
|
|
|
|
|
|
|
|
while (getline(is, tmp)) {
|
|
|
|
// Ignore comments, empty line or line stats with ' '
|
|
|
|
if (tmp == "" || tmp[0] == '#' || tmp[0] == ' ')
|
|
|
|
continue;
|
|
|
|
|
|
|
|
// Determine section id
|
|
|
|
if (tmp == sec_lastfiles)
|
2006-10-29 20:01:00 +00:00
|
|
|
lastFiles().read(is);
|
2006-10-27 14:18:03 +00:00
|
|
|
else if (tmp == sec_lastopened)
|
2006-10-29 20:01:00 +00:00
|
|
|
lastOpened().read(is);
|
2006-10-27 14:18:03 +00:00
|
|
|
else if (tmp == sec_lastfilepos)
|
2006-10-29 20:01:00 +00:00
|
|
|
lastFilePos().read(is);
|
2006-10-27 14:18:03 +00:00
|
|
|
else if (tmp == sec_bookmarks)
|
2006-10-29 20:01:00 +00:00
|
|
|
bookmarks().read(is);
|
2006-11-02 16:01:36 +00:00
|
|
|
else if (tmp == sec_toolbars)
|
|
|
|
toolbars().read(is);
|
2006-10-27 14:18:03 +00:00
|
|
|
else if (tmp == sec_session)
|
2006-10-29 20:01:00 +00:00
|
|
|
sessionInfo().read(is);
|
2006-10-27 14:18:03 +00:00
|
|
|
else
|
2006-11-29 02:34:52 +00:00
|
|
|
lyxerr[Debug::INIT] << "LyX: Warning: unknown Session section: " << tmp << endl;
|
2006-10-27 14:18:03 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void Session::writeFile() const
|
|
|
|
{
|
2006-12-02 16:07:15 +00:00
|
|
|
ofstream os(session_file.toFilesystemEncoding().c_str());
|
2006-10-27 14:18:03 +00:00
|
|
|
if (os) {
|
|
|
|
os << "## Automatically generated lyx session file \n"
|
|
|
|
<< "## Editing this file manually may cause lyx to crash.\n";
|
|
|
|
|
2006-10-29 20:01:00 +00:00
|
|
|
lastFiles().write(os);
|
|
|
|
lastOpened().write(os);
|
|
|
|
lastFilePos().write(os);
|
|
|
|
bookmarks().write(os);
|
2006-11-02 16:01:36 +00:00
|
|
|
toolbars().write(os);
|
2006-10-29 20:01:00 +00:00
|
|
|
sessionInfo().write(os);
|
2006-10-27 14:18:03 +00:00
|
|
|
} else
|
2006-11-29 02:34:52 +00:00
|
|
|
lyxerr[Debug::INIT] << "LyX: Warning: unable to save Session: "
|
2006-10-27 14:18:03 +00:00
|
|
|
<< session_file << endl;
|
|
|
|
}
|
|
|
|
|
2006-04-05 22:56:18 +00:00
|
|
|
}
|