2003-06-20 12:46:28 +00:00
|
|
|
|
/**
|
|
|
|
|
* \file buffer_funcs.C
|
|
|
|
|
* This file is part of LyX, the document processor.
|
|
|
|
|
* Licence details can be found in the file COPYING.
|
|
|
|
|
*
|
2003-08-23 00:17:00 +00:00
|
|
|
|
* \author Lars Gullik Bj<EFBFBD>nnes
|
2003-06-20 12:46:28 +00:00
|
|
|
|
* \author Alfredo Braunstein
|
|
|
|
|
*
|
2003-08-23 00:17:00 +00:00
|
|
|
|
* Full author contact details are available in file CREDITS.
|
2003-06-20 12:46:28 +00:00
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
|
|
|
|
|
|
#include "buffer_funcs.h"
|
2003-09-06 18:38:02 +00:00
|
|
|
|
|
2003-06-20 12:46:28 +00:00
|
|
|
|
#include "buffer.h"
|
2003-09-06 18:38:02 +00:00
|
|
|
|
#include "bufferlist.h"
|
2003-09-09 11:24:33 +00:00
|
|
|
|
#include "bufferparams.h"
|
2004-12-27 16:30:27 +00:00
|
|
|
|
#include "dociterator.h"
|
2003-09-06 18:38:02 +00:00
|
|
|
|
#include "errorlist.h"
|
2003-06-20 12:46:28 +00:00
|
|
|
|
#include "gettext.h"
|
2003-09-06 18:38:02 +00:00
|
|
|
|
#include "LaTeX.h"
|
2003-09-06 17:23:08 +00:00
|
|
|
|
#include "paragraph.h"
|
2003-09-09 11:24:33 +00:00
|
|
|
|
#include "lyxvc.h"
|
|
|
|
|
#include "texrow.h"
|
2003-06-20 12:46:28 +00:00
|
|
|
|
#include "vc-backend.h"
|
|
|
|
|
|
|
|
|
|
#include "frontends/Alert.h"
|
|
|
|
|
|
2003-09-06 18:38:02 +00:00
|
|
|
|
#include "support/filetools.h"
|
2005-01-31 10:42:26 +00:00
|
|
|
|
#include "support/fs_extras.h"
|
2003-06-20 12:46:28 +00:00
|
|
|
|
#include "support/lyxlib.h"
|
|
|
|
|
|
2004-11-06 15:23:12 +00:00
|
|
|
|
#include <boost/bind.hpp>
|
2005-01-31 10:42:26 +00:00
|
|
|
|
#include <boost/filesystem/operations.hpp>
|
2004-11-06 15:23:12 +00:00
|
|
|
|
|
2003-09-09 22:13:45 +00:00
|
|
|
|
using lyx::support::bformat;
|
|
|
|
|
using lyx::support::LibFileSearch;
|
|
|
|
|
using lyx::support::MakeDisplayPath;
|
|
|
|
|
using lyx::support::OnlyFilename;
|
|
|
|
|
using lyx::support::OnlyPath;
|
|
|
|
|
using lyx::support::unlink;
|
2003-06-20 12:46:28 +00:00
|
|
|
|
|
2003-10-06 15:43:21 +00:00
|
|
|
|
using std::string;
|
|
|
|
|
|
2005-01-31 10:42:26 +00:00
|
|
|
|
namespace fs = boost::filesystem;
|
2003-06-30 23:56:22 +00:00
|
|
|
|
|
2003-09-09 22:13:45 +00:00
|
|
|
|
extern BufferList bufferlist;
|
2003-06-20 12:46:28 +00:00
|
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
|
|
2005-01-05 20:21:27 +00:00
|
|
|
|
bool readFile(Buffer * const b, string const & s)
|
2003-06-20 12:46:28 +00:00
|
|
|
|
{
|
2005-01-05 20:21:27 +00:00
|
|
|
|
BOOST_ASSERT(b);
|
|
|
|
|
|
2003-06-20 12:46:28 +00:00
|
|
|
|
// File information about normal file
|
2005-01-31 10:42:26 +00:00
|
|
|
|
if (!fs::exists(s)) {
|
2003-06-20 12:46:28 +00:00
|
|
|
|
string const file = MakeDisplayPath(s, 50);
|
|
|
|
|
string text = bformat(_("The specified document\n%1$s"
|
|
|
|
|
"\ncould not be read."), file);
|
|
|
|
|
Alert::error(_("Could not read document"), text);
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Check if emergency save file exists and is newer.
|
2004-03-26 17:49:08 +00:00
|
|
|
|
string const e = OnlyPath(s) + OnlyFilename(s) + ".emergency";
|
|
|
|
|
|
2005-01-31 10:42:26 +00:00
|
|
|
|
if (fs::exists(e) && fs::exists(s)
|
|
|
|
|
&& fs::last_write_time(e) > fs::last_write_time(s))
|
2004-03-26 17:49:08 +00:00
|
|
|
|
{
|
|
|
|
|
string const file = MakeDisplayPath(s, 20);
|
2005-01-05 20:21:27 +00:00
|
|
|
|
string const text =
|
|
|
|
|
bformat(_("An emergency save of the document "
|
|
|
|
|
"%1$s exists.\n\n"
|
|
|
|
|
"Recover emergency save?"), file);
|
2004-03-26 17:49:08 +00:00
|
|
|
|
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.
|
|
|
|
|
b->markDirty();
|
|
|
|
|
return b->readFile(e);
|
|
|
|
|
case 1:
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
return false;
|
2003-06-20 12:46:28 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2004-03-26 17:49:08 +00:00
|
|
|
|
// Now check if autosave file is newer.
|
|
|
|
|
string const a = OnlyPath(s) + '#' + OnlyFilename(s) + '#';
|
|
|
|
|
|
2005-01-31 10:42:26 +00:00
|
|
|
|
if (fs::exists(a) && fs::exists(s)
|
|
|
|
|
&& fs::last_write_time(a) > fs::last_write_time(s))
|
2004-03-26 17:49:08 +00:00
|
|
|
|
{
|
|
|
|
|
string const file = MakeDisplayPath(s, 20);
|
2005-01-05 20:21:27 +00:00
|
|
|
|
string const text =
|
|
|
|
|
bformat(_("The backup of the document "
|
|
|
|
|
"%1$s is newer.\n\nLoad the "
|
|
|
|
|
"backup instead?"), file);
|
2004-03-26 17:49:08 +00:00
|
|
|
|
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.
|
|
|
|
|
b->markDirty();
|
|
|
|
|
return b->readFile(a);
|
|
|
|
|
case 1:
|
|
|
|
|
// Here we delete the autosave
|
|
|
|
|
unlink(a);
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
return false;
|
2003-06-20 12:46:28 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
2004-03-26 17:49:08 +00:00
|
|
|
|
return b->readFile(s);
|
2003-06-20 12:46:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
} // namespace anon
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
bool loadLyXFile(Buffer * b, string const & s)
|
|
|
|
|
{
|
2005-01-05 20:21:27 +00:00
|
|
|
|
BOOST_ASSERT(b);
|
|
|
|
|
|
2005-01-31 10:42:26 +00:00
|
|
|
|
if (fs::is_readable(s)) {
|
2003-06-20 12:46:28 +00:00
|
|
|
|
if (readFile(b, s)) {
|
2003-09-09 09:47:59 +00:00
|
|
|
|
b->lyxvc().file_found_hook(s);
|
2005-01-31 10:42:26 +00:00
|
|
|
|
if (!fs::is_writable(s))
|
|
|
|
|
b->setReadonly(true);
|
2003-06-20 12:46:28 +00:00
|
|
|
|
return true;
|
|
|
|
|
}
|
2005-01-31 10:42:26 +00:00
|
|
|
|
} else {
|
2003-06-20 12:46:28 +00:00
|
|
|
|
string const file = MakeDisplayPath(s, 20);
|
|
|
|
|
// Here we probably should run
|
|
|
|
|
if (LyXVC::file_not_found_hook(s)) {
|
2005-01-05 20:21:27 +00:00
|
|
|
|
string const text =
|
|
|
|
|
bformat(_("Do you want to retrieve the document"
|
|
|
|
|
" %1$s from version control?"), file);
|
2003-06-20 12:46:28 +00:00
|
|
|
|
int const ret = Alert::prompt(_("Retrieve from version control?"),
|
|
|
|
|
text, 0, 1, _("&Retrieve"), _("&Cancel"));
|
|
|
|
|
|
|
|
|
|
if (ret == 0) {
|
|
|
|
|
// How can we know _how_ to do the checkout?
|
|
|
|
|
// With the current VC support it has to be,
|
|
|
|
|
// a RCS file since CVS do not have special ,v files.
|
|
|
|
|
RCS::retrieve(s);
|
|
|
|
|
return loadLyXFile(b, s);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2003-06-30 23:56:22 +00:00
|
|
|
|
Buffer * newFile(string const & filename, string const & templatename,
|
2005-01-05 20:21:27 +00:00
|
|
|
|
bool const isNamed)
|
2003-06-20 12:46:28 +00:00
|
|
|
|
{
|
|
|
|
|
// get a free buffer
|
|
|
|
|
Buffer * b = bufferlist.newBuffer(filename);
|
2005-01-05 20:21:27 +00:00
|
|
|
|
BOOST_ASSERT(b);
|
2003-06-20 12:46:28 +00:00
|
|
|
|
|
|
|
|
|
string tname;
|
|
|
|
|
// use defaults.lyx as a default template if it exists.
|
|
|
|
|
if (templatename.empty())
|
|
|
|
|
tname = LibFileSearch("templates", "defaults.lyx");
|
|
|
|
|
else
|
|
|
|
|
tname = templatename;
|
|
|
|
|
|
|
|
|
|
if (!tname.empty()) {
|
2003-07-28 14:40:29 +00:00
|
|
|
|
if (!b->readFile(tname)) {
|
2003-06-20 12:46:28 +00:00
|
|
|
|
string const file = MakeDisplayPath(tname, 50);
|
2003-07-29 16:40:26 +00:00
|
|
|
|
string const text = bformat(_("The specified document template\n%1$s\ncould not be read."), file);
|
2003-06-20 12:46:28 +00:00
|
|
|
|
Alert::error(_("Could not read template"), text);
|
|
|
|
|
// no template, start with empty buffer
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (!isNamed) {
|
|
|
|
|
b->setUnnamed();
|
|
|
|
|
b->setFileName(filename);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
b->setReadonly(false);
|
2003-10-22 14:40:24 +00:00
|
|
|
|
b->fully_loaded(true);
|
2003-09-09 09:47:59 +00:00
|
|
|
|
b->updateDocLang(b->params().language);
|
2003-06-20 12:46:28 +00:00
|
|
|
|
|
|
|
|
|
return b;
|
|
|
|
|
}
|
2003-06-24 20:42:15 +00:00
|
|
|
|
|
|
|
|
|
|
2003-07-28 14:40:29 +00:00
|
|
|
|
void bufferErrors(Buffer const & buf, TeXErrors const & terr)
|
2003-06-24 20:42:15 +00:00
|
|
|
|
{
|
|
|
|
|
TeXErrors::Errors::const_iterator cit = terr.begin();
|
|
|
|
|
TeXErrors::Errors::const_iterator end = terr.end();
|
|
|
|
|
|
|
|
|
|
for (; cit != end; ++cit) {
|
|
|
|
|
int par_id = -1;
|
|
|
|
|
int posstart = -1;
|
|
|
|
|
int const errorrow = cit->error_in_line;
|
2003-09-09 09:47:59 +00:00
|
|
|
|
buf.texrow().getIdFromRow(errorrow, par_id, posstart);
|
2003-06-24 20:42:15 +00:00
|
|
|
|
int posend = -1;
|
2003-09-09 09:47:59 +00:00
|
|
|
|
buf.texrow().getIdFromRow(errorrow + 1, par_id, posend);
|
2003-07-07 08:37:02 +00:00
|
|
|
|
buf.error(ErrorItem(cit->error_desc,
|
2003-06-24 20:42:15 +00:00
|
|
|
|
cit->error_text,
|
|
|
|
|
par_id, posstart, posend));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2003-07-28 14:40:29 +00:00
|
|
|
|
void bufferErrors(Buffer const & buf, ErrorList const & el)
|
2003-06-24 20:42:15 +00:00
|
|
|
|
{
|
2004-11-06 15:23:12 +00:00
|
|
|
|
for_each(el.begin(), el.end(), bind(ref(buf.error), _1));
|
2003-06-24 20:42:15 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
string const BufferFormat(Buffer const & buffer)
|
|
|
|
|
{
|
|
|
|
|
if (buffer.isLinuxDoc())
|
|
|
|
|
return "linuxdoc";
|
|
|
|
|
else if (buffer.isDocBook())
|
|
|
|
|
return "docbook";
|
|
|
|
|
else if (buffer.isLiterate())
|
|
|
|
|
return "literate";
|
|
|
|
|
else
|
|
|
|
|
return "latex";
|
|
|
|
|
}
|
2004-12-27 16:30:27 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
int countWords(DocIterator const & from, DocIterator const & to)
|
|
|
|
|
{
|
|
|
|
|
int count = 0;
|
|
|
|
|
bool inword = false;
|
|
|
|
|
for (DocIterator dit = from ; dit != to ; dit.forwardPos()) {
|
|
|
|
|
// Copied and adapted from isLetter() in ControlSpellChecker
|
|
|
|
|
if (dit.inTexted()
|
|
|
|
|
&& dit.pos() != dit.lastpos()
|
|
|
|
|
&& dit.paragraph().isLetter(dit.pos())
|
|
|
|
|
&& !isDeletedText(dit.paragraph(), dit.pos())) {
|
|
|
|
|
if (!inword) {
|
|
|
|
|
++count;
|
|
|
|
|
inword = true;
|
|
|
|
|
}
|
|
|
|
|
} else if (inword)
|
|
|
|
|
inword = false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return count;
|
|
|
|
|
}
|