2002-09-25 14:26:13 +00:00
|
|
|
/**
|
2003-02-21 09:20:18 +00:00
|
|
|
* \file insetbibtex.C
|
2002-09-25 14:26:13 +00:00
|
|
|
* This file is part of LyX, the document processor.
|
|
|
|
* Licence details can be found in the file COPYING.
|
|
|
|
*
|
|
|
|
* \author Alejandro Aguilar Sierra
|
|
|
|
*
|
2003-08-23 00:17:00 +00:00
|
|
|
* Full author contact details are available in file CREDITS.
|
2002-09-25 14:26:13 +00:00
|
|
|
*/
|
1999-09-27 18:44:28 +00:00
|
|
|
|
2003-06-02 10:03:27 +00:00
|
|
|
#include <config.h>
|
1999-09-27 18:44:28 +00:00
|
|
|
|
2003-02-21 09:20:18 +00:00
|
|
|
#include "insetbibtex.h"
|
2003-08-26 10:33:59 +00:00
|
|
|
#include "metricsinfo.h"
|
1999-09-27 18:44:28 +00:00
|
|
|
#include "buffer.h"
|
2003-02-26 19:28:38 +00:00
|
|
|
#include "BufferView.h"
|
2003-02-21 09:20:18 +00:00
|
|
|
#include "debug.h"
|
2003-02-26 19:28:38 +00:00
|
|
|
#include "funcrequest.h"
|
1999-09-27 18:44:28 +00:00
|
|
|
#include "gettext.h"
|
2003-05-22 21:10:22 +00:00
|
|
|
#include "latexrunparams.h"
|
2001-12-28 13:26:54 +00:00
|
|
|
|
1999-10-02 16:21:10 +00:00
|
|
|
#include "support/filetools.h"
|
2000-05-17 13:40:40 +00:00
|
|
|
#include "support/path.h"
|
2001-05-17 15:11:01 +00:00
|
|
|
#include "support/os.h"
|
2001-07-29 17:39:01 +00:00
|
|
|
#include "support/lstrings.h"
|
2001-08-20 13:42:29 +00:00
|
|
|
#include "support/LAssert.h"
|
2001-12-28 13:26:54 +00:00
|
|
|
|
|
|
|
#include <fstream>
|
|
|
|
#include <cstdlib>
|
1999-09-27 18:44:28 +00:00
|
|
|
|
2003-06-30 23:56:22 +00:00
|
|
|
using namespace lyx::support;
|
|
|
|
|
2000-04-04 00:19:15 +00:00
|
|
|
using std::ostream;
|
2000-05-05 07:54:27 +00:00
|
|
|
using std::ifstream;
|
|
|
|
using std::getline;
|
2000-03-28 02:18:55 +00:00
|
|
|
using std::endl;
|
2000-06-07 08:53:40 +00:00
|
|
|
using std::vector;
|
|
|
|
using std::pair;
|
2003-02-18 12:36:02 +00:00
|
|
|
|
|
|
|
|
2003-05-26 09:13:55 +00:00
|
|
|
InsetBibtex::InsetBibtex(InsetCommandParams const & p)
|
2000-10-03 09:13:34 +00:00
|
|
|
: InsetCommand(p)
|
2000-07-15 23:51:46 +00:00
|
|
|
{}
|
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
|
2003-02-25 14:51:38 +00:00
|
|
|
InsetBibtex::~InsetBibtex()
|
|
|
|
{
|
2003-06-02 10:03:27 +00:00
|
|
|
InsetCommandMailer("bibtex", *this).hideDialog();
|
2003-02-25 14:51:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-07-28 23:53:36 +00:00
|
|
|
std::auto_ptr<InsetBase> InsetBibtex::clone() const
|
|
|
|
{
|
|
|
|
return std::auto_ptr<InsetBase>(new InsetBibtex(*this));
|
|
|
|
}
|
|
|
|
|
2003-08-26 10:33:59 +00:00
|
|
|
void InsetBibtex::metrics(MetricsInfo & mi, Dimension & dim) const
|
|
|
|
{
|
|
|
|
InsetCommand::metrics(mi, dim);
|
|
|
|
center_indent_ = (mi.base.textwidth - dim.wid) / 2;
|
|
|
|
dim.wid = mi.base.textwidth;
|
|
|
|
dim_ = dim;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void InsetBibtex::draw(PainterInfo & pi, int x, int y) const
|
|
|
|
{
|
|
|
|
InsetCommand::draw(pi, x + center_indent_, y);
|
|
|
|
}
|
|
|
|
|
2003-07-28 23:53:36 +00:00
|
|
|
|
2003-02-26 19:28:38 +00:00
|
|
|
dispatch_result InsetBibtex::localDispatch(FuncRequest const & cmd)
|
|
|
|
{
|
2003-03-07 21:44:48 +00:00
|
|
|
switch (cmd.action) {
|
2003-05-16 07:44:00 +00:00
|
|
|
|
|
|
|
case LFUN_INSET_EDIT:
|
|
|
|
InsetCommandMailer("bibtex", *this).showDialog(cmd.view());
|
|
|
|
return DISPATCHED;
|
|
|
|
|
2003-03-07 21:44:48 +00:00
|
|
|
case LFUN_INSET_MODIFY: {
|
|
|
|
InsetCommandParams p;
|
|
|
|
InsetCommandMailer::string2params(cmd.argument, p);
|
|
|
|
if (p.getCmdName().empty())
|
2003-05-16 07:44:00 +00:00
|
|
|
return DISPATCHED;
|
2003-03-07 21:44:48 +00:00
|
|
|
setParams(p);
|
2003-05-16 07:44:00 +00:00
|
|
|
return DISPATCHED;
|
2003-03-07 21:44:48 +00:00
|
|
|
}
|
2003-05-16 07:44:00 +00:00
|
|
|
|
2003-03-07 21:44:48 +00:00
|
|
|
default:
|
2003-05-16 07:44:00 +00:00
|
|
|
return InsetCommand::localDispatch(cmd);
|
2003-02-26 19:28:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2003-08-28 07:41:31 +00:00
|
|
|
string const InsetBibtex::getScreenLabel(Buffer const &) const
|
1999-09-27 18:44:28 +00:00
|
|
|
{
|
|
|
|
return _("BibTeX Generated References");
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-08-28 07:41:31 +00:00
|
|
|
int InsetBibtex::latex(Buffer const & buffer, ostream & os,
|
2003-05-23 08:59:47 +00:00
|
|
|
LatexRunParams const & runparams) const
|
1999-09-27 18:44:28 +00:00
|
|
|
{
|
2001-08-20 13:42:29 +00:00
|
|
|
// changing the sequence of the commands
|
|
|
|
// 1. \bibliographystyle{style}
|
|
|
|
// 2. \addcontentsline{...} - if option bibtotoc set
|
|
|
|
// 3. \bibliography{database}
|
2002-03-02 16:39:54 +00:00
|
|
|
string adb;
|
2000-03-02 02:19:43 +00:00
|
|
|
string db_in = getContents();
|
|
|
|
db_in = split(db_in, adb, ',');
|
2001-08-20 13:42:29 +00:00
|
|
|
|
|
|
|
// Style-Options
|
|
|
|
string style = getOptions(); // maybe empty! and with bibtotoc
|
|
|
|
string bibtotoc;
|
2002-07-28 18:13:51 +00:00
|
|
|
if (prefixIs(style, "bibtotoc")) {
|
2001-08-20 13:42:29 +00:00
|
|
|
bibtotoc = "bibtotoc";
|
2002-07-28 18:13:51 +00:00
|
|
|
if (contains(style, ',')) {
|
|
|
|
style = split(style, bibtotoc, ',');
|
2001-08-20 13:42:29 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2003-05-22 21:10:22 +00:00
|
|
|
if (!runparams.nice
|
2003-08-28 07:41:31 +00:00
|
|
|
&& IsFileReadable(MakeAbsPath(style, buffer.filePath()) + ".bst")) {
|
|
|
|
style = MakeAbsPath(style, buffer.filePath());
|
2001-08-20 13:42:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (!style.empty()) { // we want no \biblio...{}
|
|
|
|
os << "\\bibliographystyle{" << style << "}\n";
|
|
|
|
}
|
|
|
|
|
|
|
|
// bibtotoc-Option
|
2002-03-21 17:09:55 +00:00
|
|
|
if (!bibtotoc.empty()) {
|
2001-08-20 13:42:29 +00:00
|
|
|
// maybe a problem when a textclass has no "art" as
|
|
|
|
// part of its name, because it's than book.
|
|
|
|
// For the "official" lyx-layouts it's no problem to support
|
|
|
|
// all well
|
2003-08-28 07:41:31 +00:00
|
|
|
if (!contains(buffer.params.getLyXTextClass().name(),
|
2002-03-02 16:39:54 +00:00
|
|
|
"art")) {
|
2003-08-28 07:41:31 +00:00
|
|
|
if (buffer.params.sides == LyXTextClass::OneSide) {
|
2001-08-20 13:42:29 +00:00
|
|
|
// oneside
|
|
|
|
os << "\\clearpage";
|
|
|
|
} else {
|
|
|
|
// twoside
|
|
|
|
os << "\\cleardoublepage";
|
|
|
|
}
|
|
|
|
|
|
|
|
// bookclass
|
|
|
|
os << "\\addcontentsline{toc}{chapter}{\\bibname}";
|
|
|
|
|
|
|
|
} else {
|
|
|
|
// article class
|
2002-03-21 17:09:55 +00:00
|
|
|
os << "\\addcontentsline{toc}{section}{\\refname}";
|
2001-08-20 13:42:29 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// database
|
|
|
|
// If we generate in a temp dir, we might need to give an
|
|
|
|
// absolute path there. This is a bit complicated since we can
|
|
|
|
// have a comma-separated list of bibliographies
|
2002-03-02 16:39:54 +00:00
|
|
|
string db_out;
|
2001-12-05 08:04:20 +00:00
|
|
|
while (!adb.empty()) {
|
2003-05-22 21:10:22 +00:00
|
|
|
if (!runparams.nice &&
|
2003-08-28 07:41:31 +00:00
|
|
|
IsFileReadable(MakeAbsPath(adb, buffer.filePath())+".bib"))
|
|
|
|
adb = os::external_path(MakeAbsPath(adb, buffer.filePath()));
|
2000-03-02 02:19:43 +00:00
|
|
|
db_out += adb;
|
|
|
|
db_out += ',';
|
2003-02-18 13:25:18 +00:00
|
|
|
db_in = split(db_in, adb,',');
|
2000-03-02 02:19:43 +00:00
|
|
|
}
|
2002-07-28 22:50:13 +00:00
|
|
|
db_out = rtrim(db_out, ",");
|
2001-08-20 13:42:29 +00:00
|
|
|
os << "\\bibliography{" << db_out << "}\n";
|
2000-03-02 02:19:43 +00:00
|
|
|
return 2;
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-01-16 22:17:38 +00:00
|
|
|
vector<string> const InsetBibtex::getFiles(Buffer const & buffer) const
|
1999-09-27 18:44:28 +00:00
|
|
|
{
|
2002-01-16 22:17:38 +00:00
|
|
|
Path p(buffer.filePath());
|
2001-08-20 13:42:29 +00:00
|
|
|
|
|
|
|
vector<string> vec;
|
2000-05-17 13:40:40 +00:00
|
|
|
|
2000-06-07 08:53:40 +00:00
|
|
|
string tmp;
|
1999-11-24 22:14:46 +00:00
|
|
|
string bibfiles = getContents();
|
|
|
|
bibfiles = split(bibfiles, tmp, ',');
|
2001-12-05 08:04:20 +00:00
|
|
|
while (!tmp.empty()) {
|
2001-08-20 13:42:29 +00:00
|
|
|
string file = findtexfile(ChangeExtension(tmp, "bib"), "bib");
|
|
|
|
lyxerr[Debug::LATEX] << "Bibfile: " << file << endl;
|
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
// If we didn't find a matching file name just fail silently
|
2001-08-20 13:42:29 +00:00
|
|
|
if (!file.empty())
|
|
|
|
vec.push_back(file);
|
2002-03-21 17:09:55 +00:00
|
|
|
|
2001-08-20 13:42:29 +00:00
|
|
|
// Get next file name
|
2002-03-21 17:09:55 +00:00
|
|
|
bibfiles = split(bibfiles, tmp, ',');
|
2001-08-20 13:42:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return vec;
|
|
|
|
}
|
|
|
|
|
2003-02-18 12:36:02 +00:00
|
|
|
|
2001-08-20 13:42:29 +00:00
|
|
|
// This method returns a comma separated list of Bibtex entries
|
2003-08-28 07:41:31 +00:00
|
|
|
void InsetBibtex::fillWithBibKeys(Buffer const & buffer,
|
2003-06-28 01:23:11 +00:00
|
|
|
std::vector<std::pair<string, string> > & keys) const
|
2001-08-20 13:42:29 +00:00
|
|
|
{
|
2003-08-28 07:41:31 +00:00
|
|
|
vector<string> const files = getFiles(buffer);
|
2001-08-20 13:42:29 +00:00
|
|
|
for (vector<string>::const_iterator it = files.begin();
|
|
|
|
it != files.end(); ++ it) {
|
|
|
|
// This is a _very_ simple parser for Bibtex database
|
|
|
|
// files. All it does is to look for lines starting
|
|
|
|
// in @ and not being @preamble and @string entries.
|
|
|
|
// It does NOT do any syntax checking!
|
|
|
|
ifstream ifs(it->c_str());
|
|
|
|
string linebuf0;
|
|
|
|
while (getline(ifs, linebuf0)) {
|
2002-07-28 22:50:13 +00:00
|
|
|
string linebuf = trim(linebuf0);
|
2002-02-16 15:59:55 +00:00
|
|
|
if (linebuf.empty()) continue;
|
2001-08-20 13:42:29 +00:00
|
|
|
if (prefixIs(linebuf, "@")) {
|
|
|
|
linebuf = subst(linebuf, '{', '(');
|
|
|
|
string tmp;
|
|
|
|
linebuf = split(linebuf, tmp, '(');
|
2002-07-16 21:17:10 +00:00
|
|
|
tmp = ascii_lowercase(tmp);
|
2001-08-20 13:42:29 +00:00
|
|
|
if (!prefixIs(tmp, "@string")
|
|
|
|
&& !prefixIs(tmp, "@preamble")) {
|
|
|
|
linebuf = split(linebuf, tmp, ',');
|
2002-07-28 22:50:13 +00:00
|
|
|
tmp = ltrim(tmp, " \t");
|
2001-08-20 13:42:29 +00:00
|
|
|
if (!tmp.empty()) {
|
|
|
|
keys.push_back(pair<string,string>(tmp,string()));
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
|
|
|
}
|
2001-08-20 13:42:29 +00:00
|
|
|
} else if (!keys.empty()) {
|
|
|
|
keys.back().second += linebuf + "\n";
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1999-11-24 22:14:46 +00:00
|
|
|
|
1999-11-04 01:40:20 +00:00
|
|
|
bool InsetBibtex::addDatabase(string const & db)
|
1999-09-27 18:44:28 +00:00
|
|
|
{
|
2000-07-27 08:55:59 +00:00
|
|
|
string contents(getContents());
|
2000-09-26 13:54:57 +00:00
|
|
|
if (!contains(contents, db)) {
|
2002-03-21 17:09:55 +00:00
|
|
|
if (!contents.empty())
|
2002-11-27 10:30:28 +00:00
|
|
|
contents += ',';
|
2000-07-27 08:55:59 +00:00
|
|
|
setContents(contents + db);
|
1999-09-27 18:44:28 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
1999-11-04 01:40:20 +00:00
|
|
|
bool InsetBibtex::delDatabase(string const & db)
|
1999-09-27 18:44:28 +00:00
|
|
|
{
|
2000-09-26 13:54:57 +00:00
|
|
|
if (contains(getContents(), db)) {
|
1999-10-02 16:21:10 +00:00
|
|
|
string bd = db;
|
2000-11-22 18:38:31 +00:00
|
|
|
int const n = tokenPos(getContents(), ',', bd);
|
1999-09-27 18:44:28 +00:00
|
|
|
if (n > 0) {
|
1999-10-26 23:33:30 +00:00
|
|
|
// Weird code, would someone care to explain this?(Lgb)
|
1999-11-15 10:58:38 +00:00
|
|
|
string tmp(", ");
|
1999-09-27 18:44:28 +00:00
|
|
|
tmp += bd;
|
2000-09-26 13:54:57 +00:00
|
|
|
setContents(subst(getContents(), tmp, ", "));
|
1999-11-15 10:58:38 +00:00
|
|
|
} else if (n == 0)
|
2000-06-07 08:53:40 +00:00
|
|
|
setContents(split(getContents(), bd, ','));
|
2002-03-21 17:09:55 +00:00
|
|
|
else
|
1999-09-27 18:44:28 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|