2003-03-29 07:09:13 +00:00
|
|
|
|
/**
|
|
|
|
|
* \file bufferlist.C
|
|
|
|
|
* This file is part of LyX, the document processor.
|
|
|
|
|
* Licence details can be found in the file COPYING.
|
2002-03-21 17:27:08 +00:00
|
|
|
|
*
|
2003-03-29 07:09:13 +00:00
|
|
|
|
* \author Lars Gullik Bj<EFBFBD>nnes
|
1999-09-27 18:44:28 +00:00
|
|
|
|
*
|
2003-08-23 00:17:00 +00:00
|
|
|
|
* Full author contact details are available in file CREDITS.
|
1999-09-27 18:44:28 +00:00
|
|
|
|
*/
|
|
|
|
|
|
2001-12-10 20:06:59 +00:00
|
|
|
|
#include <config.h>
|
|
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
|
#include "bufferlist.h"
|
2003-09-06 18:38:02 +00:00
|
|
|
|
|
2003-09-09 17:00:19 +00:00
|
|
|
|
#include "author.h"
|
2003-05-23 13:54:09 +00:00
|
|
|
|
#include "buffer.h"
|
2003-09-09 11:24:33 +00:00
|
|
|
|
#include "bufferparams.h"
|
1999-10-07 18:44:17 +00:00
|
|
|
|
#include "debug.h"
|
1999-09-27 18:44:28 +00:00
|
|
|
|
#include "gettext.h"
|
2006-04-05 22:56:18 +00:00
|
|
|
|
#include "session.h"
|
2003-09-06 18:38:02 +00:00
|
|
|
|
#include "lyx_cb.h"
|
|
|
|
|
#include "lyx_main.h"
|
2003-11-05 12:06:20 +00:00
|
|
|
|
#include "output_latex.h"
|
2003-09-06 17:23:08 +00:00
|
|
|
|
#include "paragraph.h"
|
2006-03-23 20:11:06 +00:00
|
|
|
|
#include "ParagraphList.h"
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
2001-12-10 20:06:59 +00:00
|
|
|
|
#include "frontends/Alert.h"
|
|
|
|
|
|
|
|
|
|
#include "support/filetools.h"
|
2005-01-10 19:17:43 +00:00
|
|
|
|
#include "support/package.h"
|
2001-12-10 20:06:59 +00:00
|
|
|
|
|
2002-08-20 20:04:24 +00:00
|
|
|
|
#include <boost/bind.hpp>
|
|
|
|
|
|
2004-11-06 15:23:12 +00:00
|
|
|
|
#include <algorithm>
|
|
|
|
|
#include <functional>
|
|
|
|
|
|
2006-10-21 00:16:43 +00:00
|
|
|
|
|
|
|
|
|
namespace lyx {
|
|
|
|
|
|
|
|
|
|
using support::addName;
|
|
|
|
|
using support::bformat;
|
2006-11-30 16:59:50 +00:00
|
|
|
|
using support::FileName;
|
2006-10-21 00:16:43 +00:00
|
|
|
|
using support::makeDisplayPath;
|
|
|
|
|
using support::onlyFilename;
|
|
|
|
|
using support::removeAutosaveFile;
|
|
|
|
|
using support::package;
|
|
|
|
|
using support::prefixIs;
|
2003-06-30 23:56:22 +00:00
|
|
|
|
|
2004-01-31 15:30:24 +00:00
|
|
|
|
using boost::bind;
|
|
|
|
|
|
2003-11-03 17:47:28 +00:00
|
|
|
|
using std::auto_ptr;
|
2000-03-28 02:18:55 +00:00
|
|
|
|
using std::endl;
|
2004-11-06 16:14:22 +00:00
|
|
|
|
using std::equal_to;
|
2003-09-08 00:33:41 +00:00
|
|
|
|
using std::find;
|
2000-10-12 15:17:42 +00:00
|
|
|
|
using std::find_if;
|
|
|
|
|
using std::for_each;
|
2003-10-06 15:43:21 +00:00
|
|
|
|
using std::string;
|
2003-09-08 00:33:41 +00:00
|
|
|
|
using std::vector;
|
2004-11-06 15:23:12 +00:00
|
|
|
|
using std::back_inserter;
|
|
|
|
|
using std::transform;
|
2000-02-04 09:38:32 +00:00
|
|
|
|
|
2006-10-07 16:47:54 +00:00
|
|
|
|
namespace Alert = lyx::frontend::Alert;
|
|
|
|
|
|
1999-11-15 12:27:25 +00:00
|
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
|
BufferList::BufferList()
|
2000-01-20 01:41:55 +00:00
|
|
|
|
{}
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
|
|
|
2000-02-03 17:09:33 +00:00
|
|
|
|
bool BufferList::empty() const
|
1999-09-27 18:44:28 +00:00
|
|
|
|
{
|
1999-11-05 06:02:34 +00:00
|
|
|
|
return bstore.empty();
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2006-11-26 16:39:39 +00:00
|
|
|
|
BufferList::iterator BufferList::begin()
|
|
|
|
|
{
|
|
|
|
|
return bstore.begin();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
BufferList::const_iterator BufferList::begin() const
|
|
|
|
|
{
|
|
|
|
|
return bstore.begin();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
BufferList::iterator BufferList::end()
|
|
|
|
|
{
|
|
|
|
|
return bstore.end();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
BufferList::const_iterator BufferList::end() const
|
|
|
|
|
{
|
|
|
|
|
return bstore.end();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2003-03-29 07:09:13 +00:00
|
|
|
|
bool BufferList::quitWriteBuffer(Buffer * buf)
|
2001-11-26 10:19:58 +00:00
|
|
|
|
{
|
2005-01-05 20:21:27 +00:00
|
|
|
|
BOOST_ASSERT(buf);
|
|
|
|
|
|
2006-09-11 08:54:10 +00:00
|
|
|
|
docstring file;
|
2003-03-29 07:09:13 +00:00
|
|
|
|
if (buf->isUnnamed())
|
2006-10-21 00:16:43 +00:00
|
|
|
|
file = from_utf8(onlyFilename(buf->fileName()));
|
2003-03-29 07:09:13 +00:00
|
|
|
|
else
|
2006-04-08 22:31:11 +00:00
|
|
|
|
file = makeDisplayPath(buf->fileName(), 30);
|
2003-03-29 07:09:13 +00:00
|
|
|
|
|
2006-09-11 08:54:10 +00:00
|
|
|
|
docstring const text =
|
|
|
|
|
bformat(_("The document %1$s has unsaved changes.\n\n"
|
|
|
|
|
"Do you want to save the document or discard the changes?"),
|
|
|
|
|
file);
|
|
|
|
|
int const ret = Alert::prompt(_("Save changed document?"),
|
|
|
|
|
text, 0, 2, _("&Save"), _("&Discard"), _("&Cancel"));
|
2002-03-21 17:27:08 +00:00
|
|
|
|
|
2003-03-29 07:09:13 +00:00
|
|
|
|
if (ret == 0) {
|
|
|
|
|
// FIXME: WriteAs can be asynch !
|
|
|
|
|
// but not right now...maybe we should remove that
|
|
|
|
|
|
|
|
|
|
bool succeeded;
|
|
|
|
|
|
|
|
|
|
if (buf->isUnnamed())
|
2006-04-09 00:26:19 +00:00
|
|
|
|
succeeded = writeAs(buf);
|
2003-03-29 07:09:13 +00:00
|
|
|
|
else
|
2006-04-09 00:26:19 +00:00
|
|
|
|
succeeded = menuWrite(buf);
|
2003-03-29 07:09:13 +00:00
|
|
|
|
|
|
|
|
|
if (!succeeded)
|
2001-11-26 10:19:58 +00:00
|
|
|
|
return false;
|
2003-03-29 07:09:13 +00:00
|
|
|
|
} else if (ret == 1) {
|
|
|
|
|
// if we crash after this we could
|
|
|
|
|
// have no autosave file but I guess
|
|
|
|
|
// this is really inprobable (Jug)
|
|
|
|
|
if (buf->isUnnamed())
|
|
|
|
|
removeAutosaveFile(buf->fileName());
|
|
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
return false;
|
2001-11-26 10:19:58 +00:00
|
|
|
|
}
|
2003-03-29 07:09:13 +00:00
|
|
|
|
|
2001-11-28 16:09:25 +00:00
|
|
|
|
return true;
|
2001-11-26 10:19:58 +00:00
|
|
|
|
}
|
|
|
|
|
|
2002-03-21 17:27:08 +00:00
|
|
|
|
|
2003-03-29 07:09:13 +00:00
|
|
|
|
bool BufferList::quitWriteAll()
|
1999-09-27 18:44:28 +00:00
|
|
|
|
{
|
2001-12-28 13:26:54 +00:00
|
|
|
|
BufferStorage::iterator it = bstore.begin();
|
|
|
|
|
BufferStorage::iterator end = bstore.end();
|
|
|
|
|
for (; it != end; ++it) {
|
2003-03-29 07:09:13 +00:00
|
|
|
|
if ((*it)->isClean())
|
|
|
|
|
continue;
|
|
|
|
|
|
|
|
|
|
if (!quitWriteBuffer(*it))
|
|
|
|
|
return false;
|
1999-11-05 06:02:34 +00:00
|
|
|
|
}
|
2006-04-28 14:29:38 +00:00
|
|
|
|
// now, all buffers have been written sucessfully
|
|
|
|
|
// save file names to .lyx/session
|
|
|
|
|
it = bstore.begin();
|
|
|
|
|
for (; it != end; ++it) {
|
2006-09-09 15:27:44 +00:00
|
|
|
|
// if master/slave are both open, do not save slave since it
|
2006-04-28 14:29:38 +00:00
|
|
|
|
// will be automatically loaded when the master is loaded
|
|
|
|
|
if ((*it)->getMasterBuffer() == (*it))
|
2006-12-02 16:07:15 +00:00
|
|
|
|
LyX::ref().session().lastOpened().add(FileName((*it)->fileName()));
|
2006-04-28 14:29:38 +00:00
|
|
|
|
}
|
2002-03-21 17:27:08 +00:00
|
|
|
|
|
2001-11-28 16:09:25 +00:00
|
|
|
|
return true;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2003-02-15 19:21:11 +00:00
|
|
|
|
void BufferList::release(Buffer * buf)
|
|
|
|
|
{
|
2003-09-09 17:25:35 +00:00
|
|
|
|
BOOST_ASSERT(buf);
|
2005-01-05 20:21:27 +00:00
|
|
|
|
BufferStorage::iterator const it =
|
|
|
|
|
find(bstore.begin(), bstore.end(), buf);
|
2003-02-15 19:21:11 +00:00
|
|
|
|
if (it != bstore.end()) {
|
|
|
|
|
Buffer * tmp = (*it);
|
2005-01-05 20:21:27 +00:00
|
|
|
|
BOOST_ASSERT(tmp);
|
2003-02-15 19:21:11 +00:00
|
|
|
|
bstore.erase(it);
|
|
|
|
|
delete tmp;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2005-01-05 20:21:27 +00:00
|
|
|
|
Buffer * BufferList::newBuffer(string const & s, bool const ronly)
|
2003-02-15 19:21:11 +00:00
|
|
|
|
{
|
2003-11-03 17:47:28 +00:00
|
|
|
|
auto_ptr<Buffer> tmpbuf(new Buffer(s, ronly));
|
2003-09-09 09:47:59 +00:00
|
|
|
|
tmpbuf->params().useClassDefaults();
|
2007-04-01 10:09:49 +00:00
|
|
|
|
LYXERR(Debug::INFO) << "Assigning to buffer "
|
2003-02-15 19:21:11 +00:00
|
|
|
|
<< bstore.size() << endl;
|
2003-11-03 17:47:28 +00:00
|
|
|
|
bstore.push_back(tmpbuf.get());
|
|
|
|
|
return tmpbuf.release();
|
2003-02-15 19:21:11 +00:00
|
|
|
|
}
|
2003-03-04 09:27:27 +00:00
|
|
|
|
|
2003-02-15 19:21:11 +00:00
|
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
|
void BufferList::closeAll()
|
|
|
|
|
{
|
1999-11-05 06:02:34 +00:00
|
|
|
|
while (!bstore.empty()) {
|
2003-04-26 15:24:56 +00:00
|
|
|
|
close(bstore.front(), false);
|
1999-11-05 06:02:34 +00:00
|
|
|
|
}
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2005-01-05 20:21:27 +00:00
|
|
|
|
bool BufferList::close(Buffer * buf, bool const ask)
|
1999-09-27 18:44:28 +00:00
|
|
|
|
{
|
2003-09-09 17:25:35 +00:00
|
|
|
|
BOOST_ASSERT(buf);
|
2002-03-21 17:27:08 +00:00
|
|
|
|
|
2006-07-17 15:21:54 +00:00
|
|
|
|
if (!ask || buf->isClean() || buf->paragraphs().empty()) {
|
2003-03-29 07:09:13 +00:00
|
|
|
|
release(buf);
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
2006-09-11 08:54:10 +00:00
|
|
|
|
docstring fname;
|
2003-03-29 07:09:13 +00:00
|
|
|
|
if (buf->isUnnamed())
|
2006-10-21 00:16:43 +00:00
|
|
|
|
fname = from_utf8(onlyFilename(buf->fileName()));
|
2003-03-29 07:09:13 +00:00
|
|
|
|
else
|
2006-04-08 22:31:11 +00:00
|
|
|
|
fname = makeDisplayPath(buf->fileName(), 30);
|
2003-05-13 09:48:57 +00:00
|
|
|
|
|
2006-09-11 08:54:10 +00:00
|
|
|
|
docstring const text =
|
|
|
|
|
bformat(_("The document %1$s has unsaved changes.\n\n"
|
|
|
|
|
"Do you want to save the document or discard the changes?"),
|
|
|
|
|
fname);
|
|
|
|
|
int const ret = Alert::prompt(_("Save changed document?"),
|
|
|
|
|
text, 0, 2, _("&Save"), _("&Discard"), _("&Cancel"));
|
2003-03-29 07:09:13 +00:00
|
|
|
|
|
|
|
|
|
if (ret == 0) {
|
|
|
|
|
if (buf->isUnnamed()) {
|
2006-04-09 00:26:19 +00:00
|
|
|
|
if (!writeAs(buf))
|
2000-02-22 00:36:17 +00:00
|
|
|
|
return false;
|
2006-07-17 15:21:54 +00:00
|
|
|
|
} else if (!menuWrite(buf))
|
2003-03-29 07:09:13 +00:00
|
|
|
|
return false;
|
2006-07-17 15:21:54 +00:00
|
|
|
|
else
|
|
|
|
|
return false;
|
|
|
|
|
} else if (ret == 2)
|
2003-04-26 15:24:56 +00:00
|
|
|
|
return false;
|
2003-04-28 21:58:53 +00:00
|
|
|
|
|
2003-03-29 07:09:13 +00:00
|
|
|
|
if (buf->isUnnamed()) {
|
|
|
|
|
removeAutosaveFile(buf->fileName());
|
|
|
|
|
}
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
2003-02-15 19:21:11 +00:00
|
|
|
|
release(buf);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2000-09-14 17:53:12 +00:00
|
|
|
|
vector<string> const BufferList::getFileNames() const
|
1999-09-27 18:44:28 +00:00
|
|
|
|
{
|
2000-01-20 01:41:55 +00:00
|
|
|
|
vector<string> nvec;
|
2004-11-06 15:23:12 +00:00
|
|
|
|
transform(bstore.begin(), bstore.end(),
|
|
|
|
|
back_inserter(nvec),
|
|
|
|
|
boost::bind(&Buffer::fileName, _1));
|
2000-01-20 01:41:55 +00:00
|
|
|
|
return nvec;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
1999-11-05 06:02:34 +00:00
|
|
|
|
Buffer * BufferList::first()
|
1999-09-27 18:44:28 +00:00
|
|
|
|
{
|
2002-03-12 17:15:44 +00:00
|
|
|
|
if (bstore.empty())
|
|
|
|
|
return 0;
|
1999-11-05 06:02:34 +00:00
|
|
|
|
return bstore.front();
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2006-11-26 15:47:45 +00:00
|
|
|
|
Buffer * BufferList::last()
|
|
|
|
|
{
|
|
|
|
|
if (bstore.empty())
|
|
|
|
|
return 0;
|
|
|
|
|
return bstore.back();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2005-01-05 20:21:27 +00:00
|
|
|
|
Buffer * BufferList::getBuffer(unsigned int const choice)
|
1999-09-27 18:44:28 +00:00
|
|
|
|
{
|
2002-03-12 17:15:44 +00:00
|
|
|
|
if (choice >= bstore.size())
|
|
|
|
|
return 0;
|
1999-11-05 06:02:34 +00:00
|
|
|
|
return bstore[choice];
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2004-10-26 21:16:44 +00:00
|
|
|
|
Buffer * BufferList::next(Buffer const * buf) const
|
2004-10-22 10:24:55 +00:00
|
|
|
|
{
|
2005-01-05 20:21:27 +00:00
|
|
|
|
BOOST_ASSERT(buf);
|
|
|
|
|
|
2004-10-22 10:24:55 +00:00
|
|
|
|
if (bstore.empty())
|
|
|
|
|
return 0;
|
2004-10-26 21:16:44 +00:00
|
|
|
|
BufferStorage::const_iterator it = find(bstore.begin(),
|
2004-10-22 10:24:55 +00:00
|
|
|
|
bstore.end(), buf);
|
|
|
|
|
BOOST_ASSERT(it != bstore.end());
|
|
|
|
|
++it;
|
|
|
|
|
if (it == bstore.end())
|
|
|
|
|
return bstore.front();
|
|
|
|
|
else
|
|
|
|
|
return *it;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2004-10-26 21:16:44 +00:00
|
|
|
|
Buffer * BufferList::previous(Buffer const * buf) const
|
2004-10-22 10:24:55 +00:00
|
|
|
|
{
|
2005-01-05 20:21:27 +00:00
|
|
|
|
BOOST_ASSERT(buf);
|
|
|
|
|
|
2004-10-22 10:24:55 +00:00
|
|
|
|
if (bstore.empty())
|
|
|
|
|
return 0;
|
2004-10-26 21:16:44 +00:00
|
|
|
|
BufferStorage::const_iterator it = find(bstore.begin(),
|
2004-10-22 10:24:55 +00:00
|
|
|
|
bstore.end(), buf);
|
|
|
|
|
BOOST_ASSERT(it != bstore.end());
|
|
|
|
|
if (it == bstore.begin())
|
|
|
|
|
return bstore.back();
|
|
|
|
|
else
|
|
|
|
|
return *(it - 1);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2003-05-22 18:59:10 +00:00
|
|
|
|
void BufferList::updateIncludedTeXfiles(string const & mastertmpdir,
|
2003-11-05 12:06:20 +00:00
|
|
|
|
OutputParams const & runparams)
|
1999-09-27 18:44:28 +00:00
|
|
|
|
{
|
2001-12-28 13:26:54 +00:00
|
|
|
|
BufferStorage::iterator it = bstore.begin();
|
|
|
|
|
BufferStorage::iterator end = bstore.end();
|
|
|
|
|
for (; it != end; ++it) {
|
1999-11-05 06:02:34 +00:00
|
|
|
|
if (!(*it)->isDepClean(mastertmpdir)) {
|
2007-02-07 10:51:48 +00:00
|
|
|
|
string writefile = addName(mastertmpdir, (*it)->getLatexName());
|
2006-12-04 15:46:57 +00:00
|
|
|
|
(*it)->makeLaTeXFile(FileName(writefile), mastertmpdir,
|
2003-07-26 21:37:10 +00:00
|
|
|
|
runparams, false);
|
1999-11-05 06:02:34 +00:00
|
|
|
|
(*it)->markDepClean(mastertmpdir);
|
|
|
|
|
}
|
|
|
|
|
}
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void BufferList::emergencyWriteAll()
|
|
|
|
|
{
|
2000-10-11 21:06:43 +00:00
|
|
|
|
for_each(bstore.begin(), bstore.end(),
|
2004-01-31 15:30:24 +00:00
|
|
|
|
bind(&BufferList::emergencyWrite, this, _1));
|
2000-10-11 21:06:43 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2002-03-21 17:27:08 +00:00
|
|
|
|
void BufferList::emergencyWrite(Buffer * buf)
|
2000-10-11 21:06:43 +00:00
|
|
|
|
{
|
2005-01-05 20:21:27 +00:00
|
|
|
|
// Use ::assert to avoid a loop, BOOST_ASSERT ends up calling ::assert
|
|
|
|
|
// compare with 0 to avoid pointer/interger comparison
|
|
|
|
|
assert(buf != 0);
|
2002-03-21 17:27:08 +00:00
|
|
|
|
|
2000-10-11 21:06:43 +00:00
|
|
|
|
// No need to save if the buffer has not changed.
|
2002-08-04 23:11:50 +00:00
|
|
|
|
if (buf->isClean())
|
2001-12-28 13:26:54 +00:00
|
|
|
|
return;
|
2002-03-21 17:27:08 +00:00
|
|
|
|
|
2002-08-24 22:02:30 +00:00
|
|
|
|
string const doc = buf->isUnnamed()
|
2006-04-08 22:31:11 +00:00
|
|
|
|
? onlyFilename(buf->fileName()) : buf->fileName();
|
2002-11-21 18:33:09 +00:00
|
|
|
|
|
2006-10-21 00:16:43 +00:00
|
|
|
|
lyxerr << to_utf8(
|
|
|
|
|
bformat(_("LyX: Attempting to save document %1$s"), from_utf8(doc)))
|
2006-09-11 08:54:10 +00:00
|
|
|
|
<< endl;
|
2000-10-11 21:06:43 +00:00
|
|
|
|
|
2003-05-13 09:48:57 +00:00
|
|
|
|
// We try to save three places:
|
2000-10-11 21:06:43 +00:00
|
|
|
|
// 1) Same place as document. Unless it is an unnamed doc.
|
|
|
|
|
if (!buf->isUnnamed()) {
|
|
|
|
|
string s = buf->fileName();
|
|
|
|
|
s += ".emergency";
|
|
|
|
|
lyxerr << " " << s << endl;
|
2006-11-30 16:59:50 +00:00
|
|
|
|
if (buf->writeFile(FileName(s))) {
|
2002-08-04 23:11:50 +00:00
|
|
|
|
buf->markClean();
|
2006-10-21 00:16:43 +00:00
|
|
|
|
lyxerr << to_utf8(_(" Save seems successful. Phew.")) << endl;
|
2000-10-11 21:06:43 +00:00
|
|
|
|
return;
|
|
|
|
|
} else {
|
2006-10-21 00:16:43 +00:00
|
|
|
|
lyxerr << to_utf8(_(" Save failed! Trying...")) << endl;
|
1999-11-05 06:02:34 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
2002-03-21 17:27:08 +00:00
|
|
|
|
|
2000-10-11 21:06:43 +00:00
|
|
|
|
// 2) In HOME directory.
|
2006-04-08 22:31:11 +00:00
|
|
|
|
string s = addName(package().home_dir(), buf->fileName());
|
2000-10-11 21:06:43 +00:00
|
|
|
|
s += ".emergency";
|
2002-11-27 10:30:28 +00:00
|
|
|
|
lyxerr << ' ' << s << endl;
|
2006-11-30 16:59:50 +00:00
|
|
|
|
if (buf->writeFile(FileName(s))) {
|
2002-08-04 23:11:50 +00:00
|
|
|
|
buf->markClean();
|
2006-10-21 00:16:43 +00:00
|
|
|
|
lyxerr << to_utf8(_(" Save seems successful. Phew.")) << endl;
|
2000-10-11 21:06:43 +00:00
|
|
|
|
return;
|
|
|
|
|
}
|
2002-03-21 17:27:08 +00:00
|
|
|
|
|
2006-10-21 00:16:43 +00:00
|
|
|
|
lyxerr << to_utf8(_(" Save failed! Trying...")) << endl;
|
2002-03-21 17:27:08 +00:00
|
|
|
|
|
2000-10-11 21:06:43 +00:00
|
|
|
|
// 3) In "/tmp" directory.
|
|
|
|
|
// MakeAbsPath to prepend the current
|
|
|
|
|
// drive letter on OS/2
|
2006-04-08 22:31:11 +00:00
|
|
|
|
s = addName(package().temp_dir(), buf->fileName());
|
2000-10-11 21:06:43 +00:00
|
|
|
|
s += ".emergency";
|
2002-11-27 10:30:28 +00:00
|
|
|
|
lyxerr << ' ' << s << endl;
|
2006-11-30 16:59:50 +00:00
|
|
|
|
if (buf->writeFile(FileName(s))) {
|
2002-08-04 23:11:50 +00:00
|
|
|
|
buf->markClean();
|
2006-10-21 00:16:43 +00:00
|
|
|
|
lyxerr << to_utf8(_(" Save seems successful. Phew.")) << endl;
|
2000-10-11 21:06:43 +00:00
|
|
|
|
return;
|
|
|
|
|
}
|
2006-10-21 00:16:43 +00:00
|
|
|
|
lyxerr << to_utf8(_(" Save failed! Bummer. Document is lost.")) << endl;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2000-02-03 17:09:33 +00:00
|
|
|
|
bool BufferList::exists(string const & s) const
|
1999-09-27 18:44:28 +00:00
|
|
|
|
{
|
2000-10-11 21:06:43 +00:00
|
|
|
|
return find_if(bstore.begin(), bstore.end(),
|
2004-11-06 16:14:22 +00:00
|
|
|
|
bind(equal_to<string>(),
|
|
|
|
|
bind(&Buffer::fileName, _1),
|
|
|
|
|
s))
|
2001-04-24 15:25:26 +00:00
|
|
|
|
!= bstore.end();
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2000-02-03 17:09:33 +00:00
|
|
|
|
bool BufferList::isLoaded(Buffer const * b) const
|
|
|
|
|
{
|
2003-09-09 17:25:35 +00:00
|
|
|
|
BOOST_ASSERT(b);
|
2000-02-03 17:09:33 +00:00
|
|
|
|
BufferStorage::const_iterator cit =
|
|
|
|
|
find(bstore.begin(), bstore.end(), b);
|
|
|
|
|
return cit != bstore.end();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
1999-11-05 06:02:34 +00:00
|
|
|
|
Buffer * BufferList::getBuffer(string const & s)
|
1999-09-27 18:44:28 +00:00
|
|
|
|
{
|
2000-10-11 21:06:43 +00:00
|
|
|
|
BufferStorage::iterator it =
|
|
|
|
|
find_if(bstore.begin(), bstore.end(),
|
2004-11-06 16:14:22 +00:00
|
|
|
|
bind(equal_to<string>(),
|
|
|
|
|
bind(&Buffer::fileName, _1),
|
|
|
|
|
s));
|
|
|
|
|
|
2000-10-11 21:06:43 +00:00
|
|
|
|
return it != bstore.end() ? (*it) : 0;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2003-10-14 11:35:50 +00:00
|
|
|
|
Buffer * BufferList::getBufferFromTmp(string const & s)
|
|
|
|
|
{
|
|
|
|
|
BufferStorage::iterator it = bstore.begin();
|
|
|
|
|
BufferStorage::iterator end = bstore.end();
|
|
|
|
|
for (; it < end; ++it)
|
|
|
|
|
if (prefixIs(s, (*it)->temppath()))
|
|
|
|
|
return *it;
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2006-12-21 13:58:28 +00:00
|
|
|
|
void BufferList::setCurrentAuthor(docstring const & name, docstring const & email)
|
2003-02-08 19:18:01 +00:00
|
|
|
|
{
|
|
|
|
|
BufferStorage::iterator it = bstore.begin();
|
|
|
|
|
BufferStorage::iterator end = bstore.end();
|
|
|
|
|
for (; it != end; ++it) {
|
2003-09-09 17:00:19 +00:00
|
|
|
|
(*it)->params().authors().record(0, Author(name, email));
|
2003-02-08 19:18:01 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
2006-10-21 00:16:43 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
} // namespace lyx
|