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-09-05 09:01:27 +00:00
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
#include "buffer.h"
|
2003-09-09 11:24:33 +00:00
|
|
|
#include "bufferparams.h"
|
2003-10-29 10:47:21 +00:00
|
|
|
#include "dispatchresult.h"
|
2003-02-21 09:20:18 +00:00
|
|
|
#include "debug.h"
|
2003-02-26 19:28:38 +00:00
|
|
|
#include "funcrequest.h"
|
2004-03-29 13:17:25 +00:00
|
|
|
#include "LaTeXFeatures.h"
|
1999-09-27 18:44:28 +00:00
|
|
|
#include "gettext.h"
|
2003-09-05 09:01:27 +00:00
|
|
|
#include "metricsinfo.h"
|
2003-11-05 12:06:20 +00:00
|
|
|
#include "outputparams.h"
|
2001-12-28 13:26:54 +00:00
|
|
|
|
1999-10-02 16:21:10 +00:00
|
|
|
#include "support/filetools.h"
|
2001-07-29 17:39:01 +00:00
|
|
|
#include "support/lstrings.h"
|
2003-09-05 09:01:27 +00:00
|
|
|
#include "support/os.h"
|
|
|
|
#include "support/path.h"
|
2001-12-28 13:26:54 +00:00
|
|
|
|
|
|
|
#include <fstream>
|
1999-09-27 18:44:28 +00:00
|
|
|
|
2004-04-20 12:46:15 +00:00
|
|
|
using lyx::support::AbsolutePath;
|
2003-09-09 22:13:45 +00:00
|
|
|
using lyx::support::ascii_lowercase;
|
|
|
|
using lyx::support::ChangeExtension;
|
|
|
|
using lyx::support::contains;
|
|
|
|
using lyx::support::findtexfile;
|
|
|
|
using lyx::support::IsFileReadable;
|
|
|
|
using lyx::support::ltrim;
|
|
|
|
using lyx::support::MakeAbsPath;
|
2004-04-20 12:46:15 +00:00
|
|
|
using lyx::support::MakeRelPath;
|
2003-09-09 22:13:45 +00:00
|
|
|
using lyx::support::Path;
|
|
|
|
using lyx::support::prefixIs;
|
|
|
|
using lyx::support::rtrim;
|
|
|
|
using lyx::support::split;
|
|
|
|
using lyx::support::subst;
|
|
|
|
using lyx::support::tokenPos;
|
|
|
|
using lyx::support::trim;
|
2003-06-30 23:56:22 +00:00
|
|
|
|
2003-09-16 11:03:20 +00:00
|
|
|
namespace os = lyx::support::os;
|
|
|
|
|
2000-03-28 02:18:55 +00:00
|
|
|
using std::endl;
|
2003-09-05 09:01:27 +00:00
|
|
|
using std::getline;
|
2003-10-06 15:43:21 +00:00
|
|
|
using std::string;
|
2003-09-05 09:01:27 +00:00
|
|
|
using std::ifstream;
|
|
|
|
using std::ostream;
|
2000-06-07 08:53:40 +00:00
|
|
|
using std::pair;
|
2003-09-05 09:01:27 +00:00
|
|
|
using std::vector;
|
2003-02-18 12:36:02 +00:00
|
|
|
|
|
|
|
|
2003-09-03 17:40:58 +00:00
|
|
|
InsetBibtex::InsetBibtex(InsetCommandParams const & p)
|
2003-12-11 15:23:15 +00:00
|
|
|
: InsetCommand(p, "bibtex")
|
2000-07-15 23:51:46 +00:00
|
|
|
{}
|
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
|
2004-11-23 23:04:52 +00:00
|
|
|
std::auto_ptr<InsetBase> InsetBibtex::doClone() const
|
2003-09-03 17:28:39 +00:00
|
|
|
{
|
2003-09-03 17:40:58 +00:00
|
|
|
return std::auto_ptr<InsetBase>(new InsetBibtex(*this));
|
2003-09-03 17:28:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2004-11-24 21:58:42 +00:00
|
|
|
void InsetBibtex::doDispatch(LCursor & cur, FuncRequest & cmd)
|
2003-02-26 19:28:38 +00:00
|
|
|
{
|
2003-03-07 21:44:48 +00:00
|
|
|
switch (cmd.action) {
|
2003-05-16 07:44:00 +00:00
|
|
|
|
2003-03-07 21:44:48 +00:00
|
|
|
case LFUN_INSET_MODIFY: {
|
2003-09-03 17:40:58 +00:00
|
|
|
InsetCommandParams p;
|
2003-12-11 15:23:15 +00:00
|
|
|
InsetCommandMailer::string2params("bibtex", cmd.argument, p);
|
2003-11-03 19:52:47 +00:00
|
|
|
if (!p.getCmdName().empty())
|
|
|
|
setParams(p);
|
2004-02-16 11:58:51 +00:00
|
|
|
break;
|
2003-03-07 21:44:48 +00:00
|
|
|
}
|
2004-04-03 08:37:12 +00:00
|
|
|
|
2003-03-07 21:44:48 +00:00
|
|
|
default:
|
2004-11-24 21:58:42 +00:00
|
|
|
InsetCommand::doDispatch(cur, cmd);
|
2004-02-16 11:58:51 +00:00
|
|
|
break;
|
2003-02-26 19:28:38 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2003-11-03 19:52:47 +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");
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2004-04-20 12:46:15 +00:00
|
|
|
namespace {
|
|
|
|
|
|
|
|
string normalize_name(Buffer const & buffer, OutputParams const & runparams,
|
|
|
|
string const & name, string const & ext)
|
|
|
|
{
|
|
|
|
string const fname = MakeAbsPath(name, buffer.filePath());
|
|
|
|
if (AbsolutePath(name) || !IsFileReadable(fname + ext))
|
|
|
|
return name;
|
2004-04-29 07:58:52 +00:00
|
|
|
else if (!runparams.nice)
|
2004-04-20 12:46:15 +00:00
|
|
|
return fname;
|
2004-04-29 07:58:52 +00:00
|
|
|
else
|
2004-04-20 12:46:15 +00:00
|
|
|
return MakeRelPath(fname, buffer.getMasterBuffer()->filePath());
|
|
|
|
}
|
2004-04-29 07:58:52 +00:00
|
|
|
|
2004-04-20 12:46:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-08-28 07:41:31 +00:00
|
|
|
int InsetBibtex::latex(Buffer const & buffer, ostream & os,
|
2003-11-05 12:06:20 +00:00
|
|
|
OutputParams const & runparams) const
|
1999-09-27 18:44:28 +00:00
|
|
|
{
|
2004-03-29 13:17:25 +00:00
|
|
|
// the sequence of the commands:
|
2001-08-20 13:42:29 +00:00
|
|
|
// 1. \bibliographystyle{style}
|
2003-09-03 17:40:58 +00:00
|
|
|
// 2. \addcontentsline{...} - if option bibtotoc set
|
|
|
|
// 3. \bibliography{database}
|
2004-03-29 13:17:25 +00:00
|
|
|
// and with bibtopic:
|
|
|
|
// 1. \bibliographystyle{style}
|
|
|
|
// 2. \begin{btSect}{database}
|
|
|
|
// 3. \btPrint{Cited|NotCited|All}
|
|
|
|
// 4. \end{btSect}
|
2004-04-03 08:37:12 +00:00
|
|
|
|
2004-03-29 13:17:25 +00:00
|
|
|
// the database string
|
2003-09-03 17:40:58 +00:00
|
|
|
string adb;
|
|
|
|
string db_in = getContents();
|
|
|
|
db_in = split(db_in, adb, ',');
|
2004-03-29 13:17:25 +00:00
|
|
|
// 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
|
|
|
|
string db_out;
|
|
|
|
while (!adb.empty()) {
|
2004-04-20 12:46:15 +00:00
|
|
|
db_out += os::external_path(normalize_name(buffer, runparams,
|
|
|
|
adb, ".bib"));
|
2004-03-29 13:17:25 +00:00
|
|
|
db_out += ',';
|
|
|
|
db_in = split(db_in, adb,',');
|
|
|
|
}
|
|
|
|
db_out = rtrim(db_out, ",");
|
2003-09-03 17:40:58 +00:00
|
|
|
|
|
|
|
// Style-Options
|
|
|
|
string style = getOptions(); // maybe empty! and with bibtotoc
|
|
|
|
string bibtotoc;
|
|
|
|
if (prefixIs(style, "bibtotoc")) {
|
|
|
|
bibtotoc = "bibtotoc";
|
|
|
|
if (contains(style, ',')) {
|
|
|
|
style = split(style, bibtotoc, ',');
|
|
|
|
}
|
|
|
|
}
|
2004-04-03 08:37:12 +00:00
|
|
|
|
2004-03-29 13:17:25 +00:00
|
|
|
// line count
|
|
|
|
int i = 0;
|
2001-08-20 13:42:29 +00:00
|
|
|
|
2004-03-29 13:17:25 +00:00
|
|
|
if (!style.empty()) {
|
2004-04-20 12:46:15 +00:00
|
|
|
os << "\\bibliographystyle{"
|
2004-04-29 07:58:52 +00:00
|
|
|
<< os::external_path(normalize_name(buffer, runparams,
|
2004-04-20 12:46:15 +00:00
|
|
|
style, ".bst"))
|
|
|
|
<< "}\n";
|
2004-03-29 13:17:25 +00:00
|
|
|
i += 1;
|
|
|
|
}
|
2004-04-03 08:37:12 +00:00
|
|
|
|
2004-03-29 13:17:25 +00:00
|
|
|
if (buffer.params().use_bibtopic){
|
|
|
|
os << "\\begin{btSect}{" << db_out << "}\n";
|
|
|
|
string btprint = getSecOptions();
|
|
|
|
if (btprint.empty())
|
|
|
|
// default
|
|
|
|
btprint = "btPrintCited";
|
|
|
|
os << "\\" << btprint << "\n"
|
|
|
|
<< "\\end{btSect}\n";
|
|
|
|
i += 3;
|
2001-08-20 13:42:29 +00:00
|
|
|
}
|
|
|
|
|
2003-09-03 17:40:58 +00:00
|
|
|
// bibtotoc-Option
|
2004-03-29 13:17:25 +00:00
|
|
|
if (!bibtotoc.empty() && !buffer.params().use_bibtopic) {
|
2003-09-03 17:40:58 +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-09-09 09:47:59 +00:00
|
|
|
if (!contains(buffer.params().getLyXTextClass().name(),
|
2003-09-03 17:40:58 +00:00
|
|
|
"art")) {
|
2003-09-09 09:47:59 +00:00
|
|
|
if (buffer.params().sides == LyXTextClass::OneSide) {
|
2003-09-03 17:40:58 +00:00
|
|
|
// oneside
|
|
|
|
os << "\\clearpage";
|
2001-08-20 13:42:29 +00:00
|
|
|
} else {
|
2003-09-03 17:40:58 +00:00
|
|
|
// twoside
|
|
|
|
os << "\\cleardoublepage";
|
2001-08-20 13:42:29 +00:00
|
|
|
}
|
|
|
|
|
2003-09-03 17:40:58 +00:00
|
|
|
// bookclass
|
|
|
|
os << "\\addcontentsline{toc}{chapter}{\\bibname}";
|
|
|
|
|
2001-08-20 13:42:29 +00:00
|
|
|
} else {
|
|
|
|
// article class
|
2003-09-03 17:40:58 +00:00
|
|
|
os << "\\addcontentsline{toc}{section}{\\refname}";
|
2001-08-20 13:42:29 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-03-29 13:17:25 +00:00
|
|
|
if (!buffer.params().use_bibtopic){
|
|
|
|
os << "\\bibliography{" << db_out << "}\n";
|
|
|
|
i += 1;
|
2000-03-02 02:19:43 +00:00
|
|
|
}
|
2004-04-03 08:37:12 +00:00
|
|
|
|
2004-03-29 13:17:25 +00:00
|
|
|
return i;
|
2003-09-03 17:28:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-09-03 17:40:58 +00:00
|
|
|
vector<string> const InsetBibtex::getFiles(Buffer const & buffer) const
|
1999-09-27 18:44:28 +00:00
|
|
|
{
|
2003-09-03 17:40:58 +00:00
|
|
|
Path p(buffer.filePath());
|
2001-08-20 13:42:29 +00:00
|
|
|
|
2003-09-03 17:40:58 +00:00
|
|
|
vector<string> vec;
|
2000-05-17 13:40:40 +00:00
|
|
|
|
2003-09-03 17:40:58 +00:00
|
|
|
string tmp;
|
|
|
|
string bibfiles = getContents();
|
|
|
|
bibfiles = split(bibfiles, tmp, ',');
|
|
|
|
while (!tmp.empty()) {
|
|
|
|
string file = findtexfile(ChangeExtension(tmp, "bib"), "bib");
|
|
|
|
lyxerr[Debug::LATEX] << "Bibfile: " << file << endl;
|
2001-08-20 13:42:29 +00:00
|
|
|
|
2003-09-03 17:40:58 +00:00
|
|
|
// If we didn't find a matching file name just fail silently
|
|
|
|
if (!file.empty())
|
|
|
|
vec.push_back(file);
|
2002-03-21 17:09:55 +00:00
|
|
|
|
2003-09-03 17:40:58 +00:00
|
|
|
// Get next file name
|
|
|
|
bibfiles = split(bibfiles, tmp, ',');
|
2001-08-20 13:42:29 +00:00
|
|
|
}
|
|
|
|
|
2003-09-03 17:40:58 +00:00
|
|
|
return vec;
|
2001-08-20 13:42:29 +00:00
|
|
|
}
|
|
|
|
|
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)) {
|
2003-09-03 17:40:58 +00:00
|
|
|
string linebuf = trim(linebuf0);
|
2002-02-16 15:59:55 +00:00
|
|
|
if (linebuf.empty()) continue;
|
2003-09-03 17:40:58 +00:00
|
|
|
if (prefixIs(linebuf, "@")) {
|
|
|
|
linebuf = subst(linebuf, '{', '(');
|
2001-08-20 13:42:29 +00:00
|
|
|
string tmp;
|
2003-09-03 17:40:58 +00:00
|
|
|
linebuf = split(linebuf, tmp, '(');
|
|
|
|
tmp = ascii_lowercase(tmp);
|
|
|
|
if (!prefixIs(tmp, "@string")
|
|
|
|
&& !prefixIs(tmp, "@preamble")) {
|
|
|
|
linebuf = split(linebuf, tmp, ',');
|
|
|
|
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
|
|
|
|
2003-09-03 17:40:58 +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());
|
2003-09-03 17:40:58 +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;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-09-03 17:40:58 +00:00
|
|
|
bool InsetBibtex::delDatabase(string const & db)
|
1999-09-27 18:44:28 +00:00
|
|
|
{
|
2003-09-03 17:40:58 +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;
|
2003-09-03 17:40:58 +00:00
|
|
|
setContents(subst(getContents(), tmp, ", "));
|
1999-11-15 10:58:38 +00:00
|
|
|
} else if (n == 0)
|
2003-09-03 17:40:58 +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;
|
|
|
|
}
|
2004-03-29 13:17:25 +00:00
|
|
|
|
|
|
|
|
|
|
|
void InsetBibtex::validate(LaTeXFeatures & features) const
|
|
|
|
{
|
|
|
|
if (features.bufferParams().use_bibtopic)
|
|
|
|
features.require("bibtopic");
|
|
|
|
}
|