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"
|
2003-09-06 18:38:02 +00:00
|
|
|
|
#include "lastfiles.h"
|
|
|
|
|
#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"
|
2004-03-25 09:16:36 +00:00
|
|
|
|
#include "ParagraphList_fwd.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>
|
|
|
|
|
|
2003-09-09 22:13:45 +00:00
|
|
|
|
using lyx::support::AddName;
|
|
|
|
|
using lyx::support::bformat;
|
|
|
|
|
using lyx::support::MakeAbsPath;
|
|
|
|
|
using lyx::support::MakeDisplayPath;
|
|
|
|
|
using lyx::support::OnlyFilename;
|
|
|
|
|
using lyx::support::removeAutosaveFile;
|
2005-01-10 19:17:43 +00:00
|
|
|
|
using lyx::support::package;
|
2003-10-14 11:35:50 +00:00
|
|
|
|
using lyx::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
|
|
|
|
|
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
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
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);
|
|
|
|
|
|
2003-03-29 07:09:13 +00:00
|
|
|
|
string file;
|
|
|
|
|
if (buf->isUnnamed())
|
|
|
|
|
file = OnlyFilename(buf->fileName());
|
|
|
|
|
else
|
|
|
|
|
file = MakeDisplayPath(buf->fileName(), 30);
|
|
|
|
|
|
2005-01-05 20:21:27 +00:00
|
|
|
|
string const text =
|
|
|
|
|
bformat(_("The document %1$s has unsaved changes.\n\n"
|
|
|
|
|
"Do you want to save the document or discard the changes?"), file);
|
2003-03-29 07:09:13 +00:00
|
|
|
|
int const ret = Alert::prompt(_("Save changed document?"),
|
2003-08-14 15:45:09 +00:00
|
|
|
|
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())
|
2003-06-10 14:39:45 +00:00
|
|
|
|
succeeded = WriteAs(buf);
|
2003-03-29 07:09:13 +00:00
|
|
|
|
else
|
2003-06-10 14:39:45 +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
|
|
|
|
}
|
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();
|
2003-02-15 19:21:11 +00:00
|
|
|
|
lyxerr[Debug::INFO] << "Assigning to buffer "
|
|
|
|
|
<< 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
|
|
|
|
|
2003-04-26 15:24:56 +00:00
|
|
|
|
// FIXME: is the quitting check still necessary ?
|
2003-09-09 09:47:59 +00:00
|
|
|
|
if (!ask || buf->isClean() || quitting || buf->paragraphs().empty()) {
|
2003-03-29 07:09:13 +00:00
|
|
|
|
release(buf);
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
string fname;
|
|
|
|
|
if (buf->isUnnamed())
|
|
|
|
|
fname = OnlyFilename(buf->fileName());
|
|
|
|
|
else
|
|
|
|
|
fname = MakeDisplayPath(buf->fileName(), 30);
|
2003-05-13 09:48:57 +00:00
|
|
|
|
|
2005-01-05 20:21:27 +00:00
|
|
|
|
string const text =
|
|
|
|
|
bformat(_("The document %1$s has unsaved changes.\n\n"
|
|
|
|
|
"Do you want to save the document or discard the changes?"), fname);
|
2003-03-29 07:09:13 +00:00
|
|
|
|
int const ret = Alert::prompt(_("Save changed document?"),
|
2003-08-14 15:45:09 +00:00
|
|
|
|
text, 0, 2, _("&Save"), _("&Discard"), _("&Cancel"));
|
2003-03-29 07:09:13 +00:00
|
|
|
|
|
|
|
|
|
if (ret == 0) {
|
|
|
|
|
if (buf->isUnnamed()) {
|
2003-06-10 14:39:45 +00:00
|
|
|
|
if (!WriteAs(buf))
|
2000-02-22 00:36:17 +00:00
|
|
|
|
return false;
|
2003-03-29 07:09:13 +00:00
|
|
|
|
} else if (buf->save()) {
|
2003-10-14 21:30:23 +00:00
|
|
|
|
LyX::ref().lastfiles().newFile(buf->fileName());
|
2003-03-29 07:09:13 +00:00
|
|
|
|
} else {
|
|
|
|
|
return false;
|
2000-07-26 13:43:16 +00:00
|
|
|
|
}
|
2003-04-26 15:24:56 +00:00
|
|
|
|
} else if (ret == 2) {
|
|
|
|
|
return false;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
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
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
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)) {
|
|
|
|
|
string writefile = mastertmpdir;
|
|
|
|
|
writefile += '/';
|
2000-05-11 16:12:46 +00:00
|
|
|
|
writefile += (*it)->getLatexName();
|
1999-11-05 06:02:34 +00:00
|
|
|
|
(*it)->makeLaTeXFile(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()
|
|
|
|
|
? OnlyFilename(buf->fileName()) : buf->fileName();
|
2002-11-21 18:33:09 +00:00
|
|
|
|
|
2003-05-13 09:48:57 +00:00
|
|
|
|
lyxerr << bformat(_("LyX: Attempting to save document %1$s"), doc) << 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;
|
2002-08-01 22:26:30 +00:00
|
|
|
|
if (buf->writeFile(s)) {
|
2002-08-04 23:11:50 +00:00
|
|
|
|
buf->markClean();
|
2000-10-11 21:06:43 +00:00
|
|
|
|
lyxerr << _(" Save seems successful. Phew.") << endl;
|
|
|
|
|
return;
|
|
|
|
|
} else {
|
|
|
|
|
lyxerr << _(" 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.
|
2005-01-10 19:17:43 +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;
|
2002-08-01 22:26:30 +00:00
|
|
|
|
if (buf->writeFile(s)) {
|
2002-08-04 23:11:50 +00:00
|
|
|
|
buf->markClean();
|
2000-10-11 21:06:43 +00:00
|
|
|
|
lyxerr << _(" Save seems successful. Phew.") << endl;
|
|
|
|
|
return;
|
|
|
|
|
}
|
2002-03-21 17:27:08 +00:00
|
|
|
|
|
2000-10-11 21:06:43 +00:00
|
|
|
|
lyxerr << _(" 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-03-20 15:35:04 +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;
|
2002-08-01 22:26:30 +00:00
|
|
|
|
if (buf->writeFile(s)) {
|
2002-08-04 23:11:50 +00:00
|
|
|
|
buf->markClean();
|
2000-10-11 21:06:43 +00:00
|
|
|
|
lyxerr << _(" Save seems successful. Phew.") << endl;
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
lyxerr << _(" 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;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2003-02-08 19:18:01 +00:00
|
|
|
|
void BufferList::setCurrentAuthor(string const & name, string const & email)
|
|
|
|
|
{
|
|
|
|
|
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
|
|
|
|
}
|
|
|
|
|
}
|