2000-06-12 11:27:15 +00:00
|
|
|
/* This file is part of
|
|
|
|
* ======================================================
|
2001-03-12 11:22:26 +00:00
|
|
|
*
|
2000-06-12 11:27:15 +00:00
|
|
|
* LyX, The Document Processor
|
2002-03-21 17:09:55 +00:00
|
|
|
*
|
2000-06-12 11:27:15 +00:00
|
|
|
* Copyright 1995 Matthias Ettrich
|
2001-05-30 13:53:44 +00:00
|
|
|
* Copyright 1995-2001 The LyX Team.
|
2000-06-12 11:27:15 +00:00
|
|
|
*
|
|
|
|
* ====================================================== */
|
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
|
|
|
|
#ifdef __GNUG__
|
|
|
|
#pragma implementation
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "insetexternal.h"
|
|
|
|
#include "ExternalTemplate.h"
|
|
|
|
#include "BufferView.h"
|
|
|
|
#include "buffer.h"
|
2001-03-12 11:22:26 +00:00
|
|
|
#include "LyXView.h"
|
2000-06-12 11:27:15 +00:00
|
|
|
#include "lyx_main.h"
|
|
|
|
#include "LaTeXFeatures.h"
|
2002-02-16 15:59:55 +00:00
|
|
|
#include "gettext.h"
|
|
|
|
#include "debug.h"
|
|
|
|
|
|
|
|
#include "frontends/Dialogs.h"
|
|
|
|
|
2000-06-12 11:27:15 +00:00
|
|
|
#include "support/filetools.h"
|
|
|
|
#include "support/lstrings.h"
|
|
|
|
#include "support/path.h"
|
2002-02-18 19:13:48 +00:00
|
|
|
#include "support/systemcall.h"
|
2001-11-02 16:18:07 +00:00
|
|
|
#include "support/FileInfo.h"
|
2000-11-28 06:46:06 +00:00
|
|
|
|
2002-02-16 15:59:55 +00:00
|
|
|
#include <cstdio>
|
|
|
|
#include <utility>
|
|
|
|
|
|
|
|
|
|
|
|
using std::ostream;
|
2000-06-12 11:27:15 +00:00
|
|
|
using std::endl;
|
2000-06-15 15:44:39 +00:00
|
|
|
|
2002-02-16 15:59:55 +00:00
|
|
|
|
2002-03-21 17:09:55 +00:00
|
|
|
InsetExternal::InsetExternal()
|
2001-04-11 17:14:20 +00:00
|
|
|
: view_(0)
|
2000-06-12 11:27:15 +00:00
|
|
|
{
|
2001-04-11 17:14:20 +00:00
|
|
|
tempname_ = lyx::tempName(string(), "lyxext");
|
2001-03-14 14:53:55 +00:00
|
|
|
//ExternalTemplateManager::Templates::const_iterator i1;
|
2001-03-12 11:22:26 +00:00
|
|
|
params_.templ = ExternalTemplateManager::get().getTemplates().begin()->second;
|
2000-06-12 11:27:15 +00:00
|
|
|
}
|
|
|
|
|
2000-06-15 15:44:39 +00:00
|
|
|
|
|
|
|
InsetExternal::~InsetExternal()
|
|
|
|
{
|
2001-04-11 17:14:20 +00:00
|
|
|
lyx::unlink(tempname_);
|
2001-03-12 11:22:26 +00:00
|
|
|
hideDialog();
|
2000-06-12 11:27:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-03-30 09:51:46 +00:00
|
|
|
InsetExternal::Params InsetExternal::params() const
|
2000-06-12 11:27:15 +00:00
|
|
|
{
|
2001-03-12 11:22:26 +00:00
|
|
|
return params_;
|
2000-06-12 11:27:15 +00:00
|
|
|
}
|
2002-03-21 17:09:55 +00:00
|
|
|
|
|
|
|
|
2001-03-30 09:51:46 +00:00
|
|
|
void InsetExternal::setFromParams(Params const & p)
|
2000-06-12 11:27:15 +00:00
|
|
|
{
|
2001-03-12 11:22:26 +00:00
|
|
|
params_.filename = p.filename;
|
|
|
|
params_.parameters = p.parameters;
|
|
|
|
params_.templ = p.templ;
|
2002-03-21 17:09:55 +00:00
|
|
|
}
|
2000-06-12 11:27:15 +00:00
|
|
|
|
|
|
|
|
2001-06-28 10:25:20 +00:00
|
|
|
string const InsetExternal::editMessage() const
|
2000-06-12 11:27:15 +00:00
|
|
|
{
|
2001-03-12 11:22:26 +00:00
|
|
|
return doSubstitution(0, params_.templ.guiName);
|
2000-06-12 11:27:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-06-28 10:25:20 +00:00
|
|
|
void InsetExternal::edit(BufferView * bv,
|
2000-06-12 11:27:15 +00:00
|
|
|
int /*x*/, int /*y*/, unsigned int /*button*/)
|
|
|
|
{
|
2001-04-11 17:14:20 +00:00
|
|
|
view_ = bv;
|
|
|
|
view_->owner()->getDialogs()->showExternal(this);
|
2000-06-12 11:27:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-07-20 14:18:48 +00:00
|
|
|
void InsetExternal::edit(BufferView * bv, bool)
|
|
|
|
{
|
|
|
|
edit(bv, 0, 0, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-02-16 15:59:55 +00:00
|
|
|
void InsetExternal::write(Buffer const *, ostream & os) const
|
2000-06-12 11:27:15 +00:00
|
|
|
{
|
2002-02-16 15:59:55 +00:00
|
|
|
os << "External " << params_.templ.lyxName << ",\""
|
|
|
|
<< params_.filename << "\",\"" << params_.parameters << "\"\n";
|
2000-06-12 11:27:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-06-28 10:25:20 +00:00
|
|
|
void InsetExternal::read(Buffer const *, LyXLex & lex)
|
2000-06-12 11:27:15 +00:00
|
|
|
{
|
2001-03-12 11:22:26 +00:00
|
|
|
string format;
|
|
|
|
string token;
|
|
|
|
|
|
|
|
// Read inset data from lex and store in format
|
2001-08-06 19:13:25 +00:00
|
|
|
if (lex.eatLine()) {
|
|
|
|
format = lex.getString();
|
|
|
|
} else {
|
2001-03-12 11:22:26 +00:00
|
|
|
lex.printError("InsetExternal: Parse error: `$$Token'");
|
2001-08-06 19:13:25 +00:00
|
|
|
}
|
2002-03-21 17:09:55 +00:00
|
|
|
|
2001-08-06 19:13:25 +00:00
|
|
|
while (lex.isOK()) {
|
2001-03-12 11:22:26 +00:00
|
|
|
lex.nextToken();
|
2001-08-06 19:13:25 +00:00
|
|
|
token = lex.getString();
|
2001-03-12 11:22:26 +00:00
|
|
|
if (token == "\\end_inset")
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (token != "\\end_inset") {
|
|
|
|
lex.printError("Missing \\end_inset at this point. "
|
|
|
|
"Read: `$$Token'");
|
|
|
|
}
|
|
|
|
|
|
|
|
// Parse string format...
|
2000-09-27 18:13:30 +00:00
|
|
|
string::size_type const pos1 = format.find(",");
|
2001-03-12 11:22:26 +00:00
|
|
|
params_.templ = ExternalTemplateManager::get().getTemplateByName(format.substr(0, pos1));
|
2000-09-27 18:13:30 +00:00
|
|
|
string::size_type const pos2 = format.find("\",\"", pos1);
|
2001-03-12 11:22:26 +00:00
|
|
|
params_.filename = format.substr(pos1 + 2, pos2 - (pos1 + 2));
|
|
|
|
params_.parameters = format.substr(pos2 + 3, format.length() - (pos2 + 4));
|
2000-06-12 11:27:15 +00:00
|
|
|
|
2001-03-12 11:22:26 +00:00
|
|
|
lyxerr[Debug::INFO] << "InsetExternal::Read: " << params_.templ.lyxName
|
|
|
|
<< " " << params_.filename
|
|
|
|
<< " " << params_.parameters << endl;
|
2000-06-12 11:27:15 +00:00
|
|
|
}
|
|
|
|
|
2000-06-15 15:44:39 +00:00
|
|
|
|
|
|
|
int InsetExternal::write(string const & format,
|
2002-02-16 15:59:55 +00:00
|
|
|
Buffer const * buf, ostream & os) const
|
2000-06-15 15:44:39 +00:00
|
|
|
{
|
2001-03-12 11:22:26 +00:00
|
|
|
ExternalTemplate const & et = params_.templ;
|
2000-06-12 11:27:15 +00:00
|
|
|
ExternalTemplate::Formats::const_iterator cit =
|
|
|
|
et.formats.find(format);
|
2000-06-15 15:44:39 +00:00
|
|
|
if (cit == et.formats.end()) {
|
|
|
|
lyxerr << "External template format '" << format
|
2002-02-16 15:59:55 +00:00
|
|
|
<< "' not specified in template "
|
|
|
|
<< params_.templ.lyxName << endl;
|
2000-06-15 15:44:39 +00:00
|
|
|
return 0;
|
|
|
|
}
|
2002-03-21 17:09:55 +00:00
|
|
|
|
2001-11-02 16:18:07 +00:00
|
|
|
updateExternal(format, buf);
|
2001-07-12 11:11:10 +00:00
|
|
|
os << doSubstitution(buf, cit->second.product);
|
2001-03-12 11:22:26 +00:00
|
|
|
return 0; // CHECK (FIXME check what ? - jbl)
|
2000-06-12 11:27:15 +00:00
|
|
|
}
|
|
|
|
|
2000-06-15 15:44:39 +00:00
|
|
|
|
2001-06-28 10:25:20 +00:00
|
|
|
int InsetExternal::latex(Buffer const * buf,
|
2002-02-16 15:59:55 +00:00
|
|
|
ostream & os, bool, bool) const
|
2000-06-12 11:27:15 +00:00
|
|
|
{
|
|
|
|
return write("LaTeX", buf, os);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-02-16 15:59:55 +00:00
|
|
|
int InsetExternal::ascii(Buffer const * buf, ostream & os, int) const
|
2000-06-12 11:27:15 +00:00
|
|
|
{
|
|
|
|
return write("Ascii", buf, os);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-02-16 15:59:55 +00:00
|
|
|
int InsetExternal::linuxdoc(Buffer const * buf, ostream & os) const
|
2000-06-12 11:27:15 +00:00
|
|
|
{
|
|
|
|
return write("LinuxDoc", buf, os);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-02-16 15:59:55 +00:00
|
|
|
int InsetExternal::docbook(Buffer const * buf, ostream & os) const
|
2000-06-12 11:27:15 +00:00
|
|
|
{
|
|
|
|
return write("DocBook", buf, os);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-06-28 10:25:20 +00:00
|
|
|
void InsetExternal::validate(LaTeXFeatures & features) const
|
2000-06-12 11:27:15 +00:00
|
|
|
{
|
2001-03-12 11:22:26 +00:00
|
|
|
ExternalTemplate const & et = params_.templ;
|
2000-06-12 11:27:15 +00:00
|
|
|
ExternalTemplate::Formats::const_iterator cit =
|
|
|
|
et.formats.find("LaTeX");
|
2001-03-12 11:22:26 +00:00
|
|
|
|
|
|
|
if (cit == et.formats.end())
|
2000-06-15 15:44:39 +00:00
|
|
|
return;
|
2002-03-21 17:09:55 +00:00
|
|
|
|
2001-07-12 11:11:10 +00:00
|
|
|
if (!cit->second.requirement.empty()) {
|
|
|
|
features.require(cit->second.requirement);
|
2000-06-12 11:27:15 +00:00
|
|
|
}
|
2001-07-12 11:11:10 +00:00
|
|
|
if (!cit->second.preamble.empty()) {
|
2001-11-19 15:34:11 +00:00
|
|
|
features.addExternalPreamble(cit->second.preamble + "\n");
|
2000-06-12 11:27:15 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-07-06 15:57:54 +00:00
|
|
|
Inset * InsetExternal::clone(Buffer const &, bool same_id) const
|
2000-06-12 11:27:15 +00:00
|
|
|
{
|
|
|
|
InsetExternal * inset = new InsetExternal();
|
2001-03-12 11:22:26 +00:00
|
|
|
inset->params_ = params_;
|
2001-04-11 17:14:20 +00:00
|
|
|
inset->view_ = view_;
|
2001-07-06 15:57:54 +00:00
|
|
|
if (same_id)
|
|
|
|
inset->id_ = id_;
|
2000-06-12 11:27:15 +00:00
|
|
|
return inset;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-07-28 12:24:16 +00:00
|
|
|
string const InsetExternal::getScreenLabel(Buffer const *) const
|
2000-06-12 11:27:15 +00:00
|
|
|
{
|
2001-03-12 11:22:26 +00:00
|
|
|
ExternalTemplate const & et = params_.templ;
|
|
|
|
if (et.guiName.empty())
|
2000-06-12 11:27:15 +00:00
|
|
|
return _("External");
|
2001-03-12 11:22:26 +00:00
|
|
|
else
|
|
|
|
return doSubstitution(0, et.guiName);
|
2000-06-12 11:27:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-06-15 15:44:39 +00:00
|
|
|
void InsetExternal::executeCommand(string const & s,
|
|
|
|
Buffer const * buffer) const
|
2000-06-12 11:27:15 +00:00
|
|
|
{
|
2002-01-14 23:31:23 +00:00
|
|
|
Path p(buffer->filePath());
|
2002-02-18 19:13:48 +00:00
|
|
|
Systemcall one;
|
2000-06-12 11:27:15 +00:00
|
|
|
if (lyxerr.debugging()) {
|
2000-06-15 15:44:39 +00:00
|
|
|
lyxerr << "Executing '" << s << "' in '"
|
2002-01-14 23:31:23 +00:00
|
|
|
<< buffer->filePath() << "'" << endl;
|
2000-06-12 11:27:15 +00:00
|
|
|
}
|
2002-02-18 19:13:48 +00:00
|
|
|
one.startscript(Systemcall::Wait, s);
|
2000-06-12 11:27:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-09-14 17:53:12 +00:00
|
|
|
string const InsetExternal::doSubstitution(Buffer const * buffer,
|
2002-02-16 15:59:55 +00:00
|
|
|
string const & s) const
|
2000-06-12 11:27:15 +00:00
|
|
|
{
|
|
|
|
string result;
|
2001-03-12 11:22:26 +00:00
|
|
|
string const basename = ChangeExtension(params_.filename, string());
|
2002-01-14 23:31:23 +00:00
|
|
|
string filepath;
|
2002-03-07 16:03:36 +00:00
|
|
|
if (buffer && !buffer->tmppath.empty() && !buffer->niceFile) {
|
2002-01-14 23:31:23 +00:00
|
|
|
filepath = buffer->filePath();
|
2001-10-31 17:16:35 +00:00
|
|
|
}
|
2001-03-12 11:22:26 +00:00
|
|
|
result = subst(s, "$$FName", params_.filename);
|
2000-06-12 11:27:15 +00:00
|
|
|
result = subst(result, "$$Basename", basename);
|
2001-03-12 11:22:26 +00:00
|
|
|
result = subst(result, "$$Parameters", params_.parameters);
|
2001-10-31 15:19:49 +00:00
|
|
|
result = subst(result, "$$FPath", filepath);
|
2000-06-12 11:27:15 +00:00
|
|
|
result = ReplaceEnvironmentPath(result);
|
2001-04-11 17:14:20 +00:00
|
|
|
result = subst(result, "$$Tempname", tempname_);
|
2000-06-12 11:27:15 +00:00
|
|
|
result = subst(result, "$$Sysdir", system_lyxdir);
|
2002-03-21 17:09:55 +00:00
|
|
|
|
2000-06-12 11:27:15 +00:00
|
|
|
// Handle the $$Contents(filename) syntax
|
|
|
|
if (contains(result, "$$Contents(\"")) {
|
|
|
|
|
2000-09-27 18:13:30 +00:00
|
|
|
string::size_type const pos = result.find("$$Contents(\"");
|
|
|
|
string::size_type const end = result.find("\")", pos);
|
2000-09-26 13:54:57 +00:00
|
|
|
string const file = result.substr(pos + 12, end - (pos + 12));
|
2000-06-12 11:27:15 +00:00
|
|
|
string contents;
|
|
|
|
if (buffer) {
|
|
|
|
// Make sure we are in the directory of the buffer
|
2002-01-14 23:31:23 +00:00
|
|
|
Path p(buffer->filePath());
|
2000-06-12 11:27:15 +00:00
|
|
|
contents = GetFileContents(file);
|
|
|
|
} else {
|
|
|
|
contents = GetFileContents(file);
|
|
|
|
}
|
2000-06-15 15:44:39 +00:00
|
|
|
result = subst(result,
|
|
|
|
("$$Contents(\"" + file + "\")").c_str(),
|
|
|
|
contents);
|
2000-06-12 11:27:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-03-12 11:22:26 +00:00
|
|
|
void InsetExternal::updateExternal() const
|
2001-11-02 16:18:07 +00:00
|
|
|
{
|
2002-03-21 17:09:55 +00:00
|
|
|
updateExternal("LaTeX", view_->buffer());
|
2001-11-02 16:18:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void InsetExternal::updateExternal(string const & format,
|
|
|
|
Buffer const * buf) const
|
2000-06-12 11:27:15 +00:00
|
|
|
{
|
2001-03-12 11:22:26 +00:00
|
|
|
ExternalTemplate const & et = params_.templ;
|
|
|
|
ExternalTemplate::Formats::const_iterator cit =
|
2001-11-02 16:18:07 +00:00
|
|
|
et.formats.find(format);
|
|
|
|
|
|
|
|
if (cit == et.formats.end() ||
|
|
|
|
cit->second.updateCommand.empty() ||
|
|
|
|
!et.automaticProduction)
|
2001-03-12 11:22:26 +00:00
|
|
|
return;
|
2002-03-21 17:09:55 +00:00
|
|
|
|
2001-11-02 16:18:07 +00:00
|
|
|
if (!cit->second.updateResult.empty()) {
|
|
|
|
string const resultfile = doSubstitution(buf,
|
|
|
|
cit->second.updateResult);
|
|
|
|
FileInfo fi(params_.filename);
|
|
|
|
FileInfo fi2(resultfile);
|
|
|
|
if (fi2.exist() && fi.exist() &&
|
|
|
|
::difftime(fi2.getModificationTime(),
|
|
|
|
fi.getModificationTime()) >= 0) {
|
2002-03-21 17:09:55 +00:00
|
|
|
lyxerr[Debug::FILES] << resultfile
|
2001-11-02 16:18:07 +00:00
|
|
|
<< " is up to date" << endl;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
executeCommand(doSubstitution(buf, cit->second.updateCommand), buf);
|
2000-06-12 11:27:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-03-12 11:22:26 +00:00
|
|
|
void InsetExternal::viewExternal() const
|
2000-06-12 11:27:15 +00:00
|
|
|
{
|
2001-03-12 11:22:26 +00:00
|
|
|
ExternalTemplate const & et = params_.templ;
|
2001-11-02 16:18:07 +00:00
|
|
|
if (et.viewCommand.empty())
|
|
|
|
return;
|
2000-06-12 11:27:15 +00:00
|
|
|
|
2001-11-02 16:18:07 +00:00
|
|
|
updateExternal();
|
2001-04-11 17:14:20 +00:00
|
|
|
executeCommand(doSubstitution(view_->buffer(),
|
2001-03-30 13:47:39 +00:00
|
|
|
et.viewCommand),
|
2001-04-11 17:14:20 +00:00
|
|
|
view_->buffer());
|
2000-06-12 11:27:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-03-12 11:22:26 +00:00
|
|
|
void InsetExternal::editExternal() const
|
2000-06-12 11:27:15 +00:00
|
|
|
{
|
2001-03-12 11:22:26 +00:00
|
|
|
ExternalTemplate const & et = params_.templ;
|
2001-11-02 16:18:07 +00:00
|
|
|
if (et.editCommand.empty())
|
|
|
|
return;
|
2000-06-12 11:27:15 +00:00
|
|
|
|
2001-11-02 16:18:07 +00:00
|
|
|
updateExternal();
|
2001-04-11 17:14:20 +00:00
|
|
|
executeCommand(doSubstitution(view_->buffer(),
|
2001-03-30 13:47:39 +00:00
|
|
|
et.editCommand),
|
2001-04-11 17:14:20 +00:00
|
|
|
view_->buffer());
|
2000-06-12 11:27:15 +00:00
|
|
|
}
|
2001-03-30 09:51:46 +00:00
|
|
|
|
|
|
|
|
|
|
|
bool operator==(InsetExternal::Params const & left,
|
|
|
|
InsetExternal::Params const & right)
|
|
|
|
{
|
|
|
|
return ((left.filename == right.filename) &&
|
|
|
|
(left.parameters == right.parameters) &&
|
|
|
|
(left.templ.lyxName == right.templ.lyxName));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool operator!=(InsetExternal::Params const & left,
|
|
|
|
InsetExternal::Params const & right)
|
|
|
|
{
|
2002-03-21 17:09:55 +00:00
|
|
|
return !(left == right);
|
2001-03-30 09:51:46 +00:00
|
|
|
}
|