2002-09-25 14:26:13 +00:00
|
|
|
/**
|
|
|
|
* \file insetexternal.C
|
|
|
|
* This file is part of LyX, the document processor.
|
|
|
|
* Licence details can be found in the file COPYING.
|
2001-03-12 11:22:26 +00:00
|
|
|
*
|
2002-09-25 14:26:13 +00:00
|
|
|
* \author Asger Alstrup Nielsen
|
2002-03-21 17:09:55 +00:00
|
|
|
*
|
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
|
|
|
*/
|
2000-06-12 11:27:15 +00:00
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
|
|
|
|
#include "insetexternal.h"
|
2003-06-12 08:52:36 +00:00
|
|
|
#include "insets/renderers.h"
|
2003-05-23 14:36:26 +00:00
|
|
|
|
2000-06-12 11:27:15 +00:00
|
|
|
#include "buffer.h"
|
2003-05-23 14:36:26 +00:00
|
|
|
#include "BufferView.h"
|
2003-06-04 09:16:29 +00:00
|
|
|
#include "converter.h"
|
2003-05-23 14:36:26 +00:00
|
|
|
#include "debug.h"
|
|
|
|
#include "ExternalTemplate.h"
|
2003-03-05 11:30:35 +00:00
|
|
|
#include "funcrequest.h"
|
2002-02-16 15:59:55 +00:00
|
|
|
#include "gettext.h"
|
2003-05-23 14:36:26 +00:00
|
|
|
#include "LaTeXFeatures.h"
|
|
|
|
#include "latexrunparams.h"
|
|
|
|
#include "lyx_main.h"
|
2002-07-21 21:21:06 +00:00
|
|
|
#include "lyxlex.h"
|
2003-06-04 09:16:29 +00:00
|
|
|
#include "lyxrc.h"
|
2003-05-13 09:48:57 +00:00
|
|
|
#include "Lsstream.h"
|
2002-02-16 15:59:55 +00:00
|
|
|
|
2003-06-04 09:16:29 +00:00
|
|
|
#include "frontends/lyx_gui.h"
|
2003-03-05 11:30:35 +00:00
|
|
|
#include "frontends/LyXView.h"
|
2002-02-16 15:59:55 +00:00
|
|
|
#include "frontends/Dialogs.h"
|
|
|
|
|
2003-06-05 22:46:49 +00:00
|
|
|
#include "support/FileInfo.h"
|
2000-06-12 11:27:15 +00:00
|
|
|
#include "support/filetools.h"
|
2003-06-05 22:46:49 +00:00
|
|
|
#include "support/forkedcall.h"
|
2000-06-12 11:27:15 +00:00
|
|
|
#include "support/lstrings.h"
|
2003-05-23 14:36:26 +00:00
|
|
|
#include "support/lyxalgo.h"
|
2000-06-12 11:27:15 +00:00
|
|
|
#include "support/path.h"
|
2003-07-27 21:04:02 +00:00
|
|
|
#include "support/path_defines.h"
|
2003-06-05 22:46:49 +00:00
|
|
|
#include "support/tostr.h"
|
2003-07-26 23:04:39 +00:00
|
|
|
#include "support/LAssert.h"
|
|
|
|
#include "support/translator.h"
|
2000-11-28 06:46:06 +00:00
|
|
|
|
2003-06-04 09:16:29 +00:00
|
|
|
#include <boost/bind.hpp>
|
|
|
|
|
2002-02-16 15:59:55 +00:00
|
|
|
#include <cstdio>
|
|
|
|
#include <utility>
|
|
|
|
|
2003-09-03 12:56:52 +00:00
|
|
|
namespace support = lyx::support;
|
2003-06-30 23:56:22 +00:00
|
|
|
|
2002-02-16 15:59:55 +00:00
|
|
|
using std::ostream;
|
2000-06-12 11:27:15 +00:00
|
|
|
using std::endl;
|
2003-07-25 17:11:25 +00:00
|
|
|
using std::auto_ptr;
|
2000-06-15 15:44:39 +00:00
|
|
|
|
2003-07-26 23:04:39 +00:00
|
|
|
namespace lyx {
|
|
|
|
namespace graphics {
|
|
|
|
/// The translator between the DisplayType and the corresponding lyx string.
|
|
|
|
extern Translator<DisplayType, string> displayTranslator;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2003-06-05 22:46:49 +00:00
|
|
|
namespace {
|
|
|
|
|
2003-07-21 21:30:57 +00:00
|
|
|
lyx::graphics::DisplayType const defaultDisplayType = lyx::graphics::NoDisplay;
|
2003-06-05 22:46:49 +00:00
|
|
|
|
|
|
|
unsigned int defaultLyxScale = 100;
|
|
|
|
|
2003-06-11 11:01:34 +00:00
|
|
|
/// Substitute meta-variables in string s, makeing use of params and buffer.
|
|
|
|
string const doSubstitution(InsetExternal::Params const & params,
|
2003-08-28 07:41:31 +00:00
|
|
|
Buffer const & buffer, string const & s);
|
2003-06-11 11:01:34 +00:00
|
|
|
|
|
|
|
/// Invoke the external editor.
|
2003-08-28 07:41:31 +00:00
|
|
|
void editExternal(InsetExternal::Params const & params, Buffer const & buffer);
|
2003-06-11 11:01:34 +00:00
|
|
|
|
2003-06-05 22:46:49 +00:00
|
|
|
} // namespace anon
|
|
|
|
|
|
|
|
|
|
|
|
InsetExternal::Params::Params()
|
|
|
|
: display(defaultDisplayType),
|
|
|
|
lyxscale(defaultLyxScale)
|
2003-06-11 11:01:34 +00:00
|
|
|
{
|
2003-09-03 12:56:52 +00:00
|
|
|
tempname = support::tempName(string(), "lyxext");
|
|
|
|
support::unlink(tempname);
|
2003-06-11 11:01:34 +00:00
|
|
|
// must have an extension for the converter code to work correctly.
|
|
|
|
tempname += ".tmp";
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
InsetExternal::Params::~Params()
|
|
|
|
{
|
2003-09-03 12:56:52 +00:00
|
|
|
support::unlink(tempname);
|
2003-06-11 11:01:34 +00:00
|
|
|
}
|
2003-06-05 22:46:49 +00:00
|
|
|
|
|
|
|
|
2002-03-21 17:09:55 +00:00
|
|
|
InsetExternal::InsetExternal()
|
2003-06-12 08:52:36 +00:00
|
|
|
: renderer_(new ButtonRenderer)
|
|
|
|
{}
|
2000-06-12 11:27:15 +00:00
|
|
|
|
2000-06-15 15:44:39 +00:00
|
|
|
|
2003-06-04 09:16:29 +00:00
|
|
|
InsetExternal::InsetExternal(InsetExternal const & other)
|
2003-07-25 21:20:24 +00:00
|
|
|
: InsetOld(other),
|
2003-06-04 09:16:29 +00:00
|
|
|
boost::signals::trackable(),
|
|
|
|
params_(other.params_),
|
2003-06-12 08:52:36 +00:00
|
|
|
renderer_(other.renderer_->clone())
|
2003-06-04 09:16:29 +00:00
|
|
|
{
|
2003-06-12 08:52:36 +00:00
|
|
|
GraphicRenderer * ptr = dynamic_cast<GraphicRenderer *>(renderer_.get());
|
|
|
|
if (ptr) {
|
|
|
|
ptr->connect(boost::bind(&InsetExternal::statusChanged, this));
|
|
|
|
}
|
2003-06-04 09:16:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-07-25 17:11:25 +00:00
|
|
|
auto_ptr<InsetBase> InsetExternal::clone() const
|
2003-06-04 09:16:29 +00:00
|
|
|
{
|
2003-07-25 17:11:25 +00:00
|
|
|
return auto_ptr<InsetBase>(new InsetExternal(*this));
|
2003-06-04 09:16:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-06-15 15:44:39 +00:00
|
|
|
InsetExternal::~InsetExternal()
|
|
|
|
{
|
2003-06-05 22:46:49 +00:00
|
|
|
InsetExternalMailer(*this).hideDialog();
|
2000-06-12 11:27:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-06-04 09:16:29 +00:00
|
|
|
void InsetExternal::statusChanged()
|
|
|
|
{
|
2003-06-10 11:54:31 +00:00
|
|
|
BufferView * bv = renderer_->view();
|
2003-06-04 09:16:29 +00:00
|
|
|
if (bv)
|
2003-08-27 13:51:18 +00:00
|
|
|
bv->updateInset(this);
|
2003-06-04 09:16:29 +00:00
|
|
|
}
|
2003-06-30 23:56:22 +00:00
|
|
|
|
2003-06-04 09:16:29 +00:00
|
|
|
|
2003-03-05 11:30:35 +00:00
|
|
|
dispatch_result InsetExternal::localDispatch(FuncRequest const & cmd)
|
|
|
|
{
|
2003-03-07 15:58:02 +00:00
|
|
|
switch (cmd.action) {
|
2003-05-16 07:44:00 +00:00
|
|
|
|
2003-06-11 11:01:34 +00:00
|
|
|
case LFUN_EXTERNAL_EDIT: {
|
2003-09-03 12:56:52 +00:00
|
|
|
support::Assert(cmd.view());
|
2003-06-11 11:01:34 +00:00
|
|
|
|
2003-07-23 09:54:21 +00:00
|
|
|
Buffer const & buffer = *cmd.view()->buffer();
|
2003-06-11 11:01:34 +00:00
|
|
|
InsetExternal::Params p;
|
2003-07-23 09:17:04 +00:00
|
|
|
InsetExternalMailer::string2params(cmd.argument, buffer, p);
|
2003-08-28 07:41:31 +00:00
|
|
|
editExternal(p, buffer);
|
2003-06-11 11:01:34 +00:00
|
|
|
return DISPATCHED_NOUPDATE;
|
|
|
|
}
|
2003-06-30 23:56:22 +00:00
|
|
|
|
2003-03-07 15:58:02 +00:00
|
|
|
case LFUN_INSET_MODIFY: {
|
2003-09-03 12:56:52 +00:00
|
|
|
support::Assert(cmd.view());
|
2003-06-11 11:01:34 +00:00
|
|
|
|
2003-08-28 07:41:31 +00:00
|
|
|
Buffer const & buffer = *cmd.view()->buffer();
|
2003-03-07 15:58:02 +00:00
|
|
|
InsetExternal::Params p;
|
2003-08-28 07:41:31 +00:00
|
|
|
InsetExternalMailer::string2params(cmd.argument, buffer, p);
|
2003-07-23 16:48:04 +00:00
|
|
|
setParams(p, buffer);
|
2003-08-27 13:51:18 +00:00
|
|
|
cmd.view()->updateInset(this);
|
2003-05-16 07:44:00 +00:00
|
|
|
return DISPATCHED;
|
2003-03-07 15:58:02 +00:00
|
|
|
}
|
|
|
|
|
2003-05-16 07:44:00 +00:00
|
|
|
case LFUN_INSET_DIALOG_UPDATE:
|
|
|
|
InsetExternalMailer(*this).updateDialog(cmd.view());
|
|
|
|
return DISPATCHED;
|
2003-03-07 15:58:02 +00:00
|
|
|
|
2003-03-09 09:38:47 +00:00
|
|
|
case LFUN_MOUSE_RELEASE:
|
2003-05-16 07:44:00 +00:00
|
|
|
case LFUN_INSET_EDIT:
|
|
|
|
InsetExternalMailer(*this).showDialog(cmd.view());
|
|
|
|
return DISPATCHED;
|
2003-03-09 09:38:47 +00:00
|
|
|
|
2003-03-07 15:58:02 +00:00
|
|
|
default:
|
2003-05-16 07:44:00 +00:00
|
|
|
return UNDISPATCHED;
|
2003-03-07 15:58:02 +00:00
|
|
|
}
|
2003-03-05 11:30:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-06-04 09:16:29 +00:00
|
|
|
void InsetExternal::metrics(MetricsInfo & mi, Dimension & dim) const
|
|
|
|
{
|
2003-06-10 11:54:31 +00:00
|
|
|
renderer_->metrics(mi, dim);
|
2003-07-18 07:47:07 +00:00
|
|
|
dim_ = dim;
|
2003-06-04 09:16:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void InsetExternal::draw(PainterInfo & pi, int x, int y) const
|
|
|
|
{
|
2003-06-10 11:54:31 +00:00
|
|
|
renderer_->draw(pi, x, y);
|
2003-06-04 09:16:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
|
2003-07-23 09:17:04 +00:00
|
|
|
lyx::graphics::Params get_grfx_params(InsetExternal::Params const & eparams)
|
2003-06-04 09:16:29 +00:00
|
|
|
{
|
2003-07-21 21:30:57 +00:00
|
|
|
lyx::graphics::Params gparams;
|
2003-06-04 09:16:29 +00:00
|
|
|
|
2003-07-23 09:17:04 +00:00
|
|
|
gparams.filename = eparams.filename.absFilename();
|
2003-06-04 09:16:29 +00:00
|
|
|
gparams.scale = eparams.lyxscale;
|
|
|
|
gparams.display = eparams.display;
|
|
|
|
|
2003-07-21 21:30:57 +00:00
|
|
|
if (gparams.display == lyx::graphics::DefaultDisplay)
|
2003-06-04 09:16:29 +00:00
|
|
|
gparams.display = lyxrc.display_graphics;
|
|
|
|
|
|
|
|
// Override the above if we're not using a gui
|
|
|
|
if (!lyx_gui::use_gui)
|
2003-07-21 21:30:57 +00:00
|
|
|
gparams.display = lyx::graphics::NoDisplay;
|
2003-06-04 09:16:29 +00:00
|
|
|
|
|
|
|
return gparams;
|
|
|
|
}
|
|
|
|
|
2003-06-11 14:30:04 +00:00
|
|
|
|
|
|
|
ExternalTemplate const * getTemplatePtr(InsetExternal::Params const & params)
|
|
|
|
{
|
|
|
|
ExternalTemplateManager & etm = ExternalTemplateManager::get();
|
|
|
|
ExternalTemplate const & templ = etm.getTemplateByName(params.templatename);
|
|
|
|
if (templ.lyxName.empty())
|
|
|
|
return 0;
|
|
|
|
return &templ;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-07-23 16:48:04 +00:00
|
|
|
string const getScreenLabel(InsetExternal::Params const & params,
|
2003-08-28 07:41:31 +00:00
|
|
|
Buffer const & buffer)
|
2003-06-11 14:30:04 +00:00
|
|
|
{
|
|
|
|
ExternalTemplate const * const ptr = getTemplatePtr(params);
|
|
|
|
if (!ptr)
|
2003-09-03 12:56:52 +00:00
|
|
|
return support::bformat(_("External template %1$s is not installed"),
|
|
|
|
params.templatename);
|
2003-07-23 16:48:04 +00:00
|
|
|
return doSubstitution(params, buffer, ptr->guiName);
|
2003-06-11 14:30:04 +00:00
|
|
|
}
|
|
|
|
|
2003-06-04 09:16:29 +00:00
|
|
|
} // namespace anon
|
|
|
|
|
|
|
|
|
2003-07-23 09:17:04 +00:00
|
|
|
InsetExternal::Params const & InsetExternal::params() const
|
|
|
|
{
|
|
|
|
return params_;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-08-28 07:41:31 +00:00
|
|
|
void InsetExternal::setParams(Params const & p, Buffer const & buffer)
|
2000-06-12 11:27:15 +00:00
|
|
|
{
|
2003-06-11 14:30:04 +00:00
|
|
|
// The stored params; what we would like to happen in an ideal world.
|
2001-03-12 11:22:26 +00:00
|
|
|
params_.filename = p.filename;
|
2003-06-11 14:30:04 +00:00
|
|
|
params_.templatename = p.templatename;
|
2003-06-04 09:16:29 +00:00
|
|
|
params_.display = p.display;
|
|
|
|
params_.lyxscale = p.lyxscale;
|
|
|
|
|
2003-06-12 08:52:36 +00:00
|
|
|
// We display the inset as a button by default.
|
|
|
|
bool display_button = (!getTemplatePtr(params_) ||
|
|
|
|
params_.filename.empty() ||
|
2003-07-21 21:30:57 +00:00
|
|
|
params_.display == lyx::graphics::NoDisplay);
|
2003-06-12 08:52:36 +00:00
|
|
|
|
|
|
|
if (display_button) {
|
|
|
|
ButtonRenderer * button_ptr =
|
|
|
|
dynamic_cast<ButtonRenderer *>(renderer_.get());
|
|
|
|
if (!button_ptr) {
|
|
|
|
button_ptr = new ButtonRenderer;
|
|
|
|
renderer_.reset(button_ptr);
|
|
|
|
}
|
|
|
|
|
2003-07-23 16:48:04 +00:00
|
|
|
button_ptr->update(getScreenLabel(params_, buffer), true);
|
2003-06-12 08:52:36 +00:00
|
|
|
|
|
|
|
} else {
|
|
|
|
GraphicRenderer * graphic_ptr =
|
|
|
|
dynamic_cast<GraphicRenderer *>(renderer_.get());
|
|
|
|
if (!graphic_ptr) {
|
|
|
|
graphic_ptr = new GraphicRenderer;
|
|
|
|
graphic_ptr->connect(
|
|
|
|
boost::bind(&InsetExternal::statusChanged, this));
|
|
|
|
renderer_.reset(graphic_ptr);
|
|
|
|
}
|
|
|
|
|
2003-07-23 09:17:04 +00:00
|
|
|
graphic_ptr->update(get_grfx_params(params_));
|
2003-06-12 08:52:36 +00:00
|
|
|
}
|
2002-03-21 17:09:55 +00:00
|
|
|
}
|
2000-06-12 11:27:15 +00:00
|
|
|
|
|
|
|
|
2003-08-28 07:41:31 +00:00
|
|
|
void InsetExternal::write(Buffer const & buffer, ostream & os) const
|
2000-06-12 11:27:15 +00:00
|
|
|
{
|
2003-06-05 22:46:49 +00:00
|
|
|
os << "External\n"
|
2003-06-11 14:30:04 +00:00
|
|
|
<< "\ttemplate " << params_.templatename << '\n';
|
2003-06-05 22:46:49 +00:00
|
|
|
|
|
|
|
if (!params_.filename.empty())
|
2003-07-23 09:17:04 +00:00
|
|
|
os << "\tfilename "
|
2003-08-28 07:41:31 +00:00
|
|
|
<< params_.filename.outputFilename(buffer.filePath())
|
2003-07-23 09:17:04 +00:00
|
|
|
<< '\n';
|
2003-06-05 22:46:49 +00:00
|
|
|
|
|
|
|
if (params_.display != defaultDisplayType)
|
2003-07-21 21:30:57 +00:00
|
|
|
os << "\tdisplay " << lyx::graphics::displayTranslator.find(params_.display)
|
2003-06-05 22:46:49 +00:00
|
|
|
<< '\n';
|
|
|
|
|
|
|
|
if (params_.lyxscale != defaultLyxScale)
|
|
|
|
os << "\tlyxscale " << tostr(params_.lyxscale) << '\n';
|
2000-06-12 11:27:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-08-28 07:41:31 +00:00
|
|
|
void InsetExternal::read(Buffer const & buffer, LyXLex & lex)
|
2000-06-12 11:27:15 +00:00
|
|
|
{
|
2003-06-05 22:46:49 +00:00
|
|
|
enum ExternalTags {
|
|
|
|
EX_TEMPLATE = 1,
|
|
|
|
EX_FILENAME,
|
|
|
|
EX_DISPLAY,
|
|
|
|
EX_LYXSCALE,
|
|
|
|
EX_END
|
|
|
|
};
|
|
|
|
|
|
|
|
keyword_item external_tags[] = {
|
|
|
|
{ "\\end_inset", EX_END },
|
|
|
|
{ "display", EX_DISPLAY},
|
|
|
|
{ "filename", EX_FILENAME},
|
|
|
|
{ "lyxscale", EX_LYXSCALE},
|
|
|
|
{ "template", EX_TEMPLATE }
|
|
|
|
};
|
|
|
|
|
2003-07-29 08:57:51 +00:00
|
|
|
pushpophelper pph(lex, external_tags, EX_END);
|
2003-06-05 22:46:49 +00:00
|
|
|
|
|
|
|
bool found_end = false;
|
|
|
|
bool read_error = false;
|
|
|
|
|
|
|
|
InsetExternal::Params params;
|
2001-08-06 19:13:25 +00:00
|
|
|
while (lex.isOK()) {
|
2003-06-05 22:46:49 +00:00
|
|
|
switch (lex.lex()) {
|
|
|
|
case EX_TEMPLATE: {
|
|
|
|
lex.next();
|
2003-06-11 14:30:04 +00:00
|
|
|
params.templatename = lex.getString();
|
2001-03-12 11:22:26 +00:00
|
|
|
break;
|
2003-06-05 22:46:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
case EX_FILENAME: {
|
|
|
|
lex.next();
|
|
|
|
string const name = lex.getString();
|
2003-08-28 07:41:31 +00:00
|
|
|
params.filename.set(name, buffer.filePath());
|
2003-06-05 22:46:49 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case EX_DISPLAY: {
|
|
|
|
lex.next();
|
|
|
|
string const name = lex.getString();
|
2003-07-21 21:30:57 +00:00
|
|
|
params.display = lyx::graphics::displayTranslator.find(name);
|
2003-06-05 22:46:49 +00:00
|
|
|
break;
|
|
|
|
}
|
2001-03-12 11:22:26 +00:00
|
|
|
|
2003-06-05 22:46:49 +00:00
|
|
|
case EX_LYXSCALE: {
|
|
|
|
lex.next();
|
|
|
|
params.lyxscale = lex.getInteger();
|
|
|
|
break;
|
2003-06-04 09:16:29 +00:00
|
|
|
}
|
2000-06-12 11:27:15 +00:00
|
|
|
|
2003-06-05 22:46:49 +00:00
|
|
|
case EX_END:
|
|
|
|
found_end = true;
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
lex.printError("ExternalInset::read: "
|
|
|
|
"Wrong tag: $$Token");
|
|
|
|
read_error = true;
|
|
|
|
break;
|
2003-06-04 09:16:29 +00:00
|
|
|
}
|
2003-06-05 22:46:49 +00:00
|
|
|
|
|
|
|
if (found_end || read_error)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!found_end) {
|
|
|
|
lex.printError("ExternalInset::read: "
|
|
|
|
"Missing \\end_inset.");
|
2003-06-04 09:16:29 +00:00
|
|
|
}
|
|
|
|
|
2003-06-05 22:46:49 +00:00
|
|
|
// Replace the inset's store
|
2003-07-23 16:48:04 +00:00
|
|
|
setParams(params, buffer);
|
2003-06-05 22:46:49 +00:00
|
|
|
|
2003-06-04 09:16:29 +00:00
|
|
|
lyxerr[Debug::INFO] << "InsetExternal::Read: "
|
2003-07-23 09:17:04 +00:00
|
|
|
<< "template: '" << params_.templatename
|
|
|
|
<< "' filename: '" << params_.filename.absFilename()
|
|
|
|
<< "' display: '" << params_.display
|
|
|
|
<< "' scale: '" << params_.lyxscale
|
|
|
|
<< '\'' << endl;
|
2000-06-12 11:27:15 +00:00
|
|
|
}
|
|
|
|
|
2000-06-15 15:44:39 +00:00
|
|
|
|
|
|
|
int InsetExternal::write(string const & format,
|
2003-08-28 07:41:31 +00:00
|
|
|
Buffer const & buf, ostream & os,
|
2003-06-04 09:16:29 +00:00
|
|
|
bool external_in_tmpdir) const
|
2000-06-15 15:44:39 +00:00
|
|
|
{
|
2003-06-11 14:30:04 +00:00
|
|
|
ExternalTemplate const * const et_ptr = getTemplatePtr(params_);
|
|
|
|
if (!et_ptr)
|
|
|
|
return 0;
|
|
|
|
ExternalTemplate const & et = *et_ptr;
|
|
|
|
|
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 "
|
2003-06-11 14:30:04 +00:00
|
|
|
<< params_.templatename << endl;
|
2000-06-15 15:44:39 +00:00
|
|
|
return 0;
|
|
|
|
}
|
2002-03-21 17:09:55 +00:00
|
|
|
|
2003-06-04 09:16:29 +00:00
|
|
|
updateExternal(format, buf, external_in_tmpdir);
|
2003-06-11 11:01:34 +00:00
|
|
|
string const str = doSubstitution(params_, buf, cit->second.product);
|
2003-05-23 14:36:26 +00:00
|
|
|
os << str;
|
|
|
|
return int(lyx::count(str.begin(), str.end(),'\n') + 1);
|
2000-06-12 11:27:15 +00:00
|
|
|
}
|
|
|
|
|
2000-06-15 15:44:39 +00:00
|
|
|
|
2003-08-28 07:41:31 +00:00
|
|
|
int InsetExternal::latex(Buffer const & buf, ostream & os,
|
2003-05-23 14:36:26 +00:00
|
|
|
LatexRunParams const & runparams) const
|
2000-06-12 11:27:15 +00:00
|
|
|
{
|
2003-06-04 09:16:29 +00:00
|
|
|
// "nice" means that the buffer is exported to LaTeX format but not
|
|
|
|
// run through the LaTeX compiler.
|
|
|
|
// If we're running through the LaTeX compiler, we should write the
|
|
|
|
// generated files in the bufer's temporary directory.
|
|
|
|
bool const external_in_tmpdir =
|
2003-08-28 07:41:31 +00:00
|
|
|
lyxrc.use_tempdir && !buf.tmppath.empty() && !runparams.nice;
|
2003-06-04 09:16:29 +00:00
|
|
|
|
2003-05-23 14:36:26 +00:00
|
|
|
// If the template has specified a PDFLaTeX output, then we try and
|
|
|
|
// use that.
|
|
|
|
if (runparams.flavor == LatexRunParams::PDFLATEX) {
|
2003-06-11 14:30:04 +00:00
|
|
|
ExternalTemplate const * const et_ptr = getTemplatePtr(params_);
|
|
|
|
if (!et_ptr)
|
|
|
|
return 0;
|
|
|
|
ExternalTemplate const & et = *et_ptr;
|
|
|
|
|
2003-05-23 14:36:26 +00:00
|
|
|
ExternalTemplate::Formats::const_iterator cit =
|
|
|
|
et.formats.find("PDFLaTeX");
|
|
|
|
if (cit != et.formats.end())
|
2003-06-04 09:16:29 +00:00
|
|
|
return write("PDFLaTeX", buf, os, external_in_tmpdir);
|
2003-05-23 14:36:26 +00:00
|
|
|
}
|
|
|
|
|
2003-06-04 09:16:29 +00:00
|
|
|
return write("LaTeX", buf, os, external_in_tmpdir);
|
2000-06-12 11:27:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-08-28 07:41:31 +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);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-08-28 07:41:31 +00:00
|
|
|
int InsetExternal::linuxdoc(Buffer const & buf, ostream & os) const
|
2000-06-12 11:27:15 +00:00
|
|
|
{
|
|
|
|
return write("LinuxDoc", buf, os);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-08-28 07:41:31 +00:00
|
|
|
int InsetExternal::docbook(Buffer const & buf, ostream & os, bool) 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
|
|
|
{
|
2003-06-11 14:30:04 +00:00
|
|
|
ExternalTemplate const * const et_ptr = getTemplatePtr(params_);
|
|
|
|
if (!et_ptr)
|
|
|
|
return;
|
|
|
|
ExternalTemplate const & et = *et_ptr;
|
|
|
|
|
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-11-02 16:18:07 +00:00
|
|
|
void InsetExternal::updateExternal(string const & format,
|
2003-08-28 07:41:31 +00:00
|
|
|
Buffer const & buf,
|
2003-06-04 09:16:29 +00:00
|
|
|
bool external_in_tmpdir) const
|
2000-06-12 11:27:15 +00:00
|
|
|
{
|
2003-06-11 14:30:04 +00:00
|
|
|
ExternalTemplate const * const et_ptr = getTemplatePtr(params_);
|
|
|
|
if (!et_ptr)
|
|
|
|
return;
|
|
|
|
ExternalTemplate const & et = *et_ptr;
|
|
|
|
|
2003-06-04 09:16:29 +00:00
|
|
|
if (!et.automaticProduction)
|
|
|
|
return;
|
|
|
|
|
2001-03-12 11:22:26 +00:00
|
|
|
ExternalTemplate::Formats::const_iterator cit =
|
2001-11-02 16:18:07 +00:00
|
|
|
et.formats.find(format);
|
2003-06-04 09:16:29 +00:00
|
|
|
if (cit == et.formats.end())
|
|
|
|
return;
|
2001-11-02 16:18:07 +00:00
|
|
|
|
2003-06-04 09:16:29 +00:00
|
|
|
ExternalTemplate::FormatTemplate const & outputFormat = cit->second;
|
|
|
|
if (outputFormat.updateResult.empty())
|
2001-03-12 11:22:26 +00:00
|
|
|
return;
|
2002-03-21 17:09:55 +00:00
|
|
|
|
2003-06-04 09:16:29 +00:00
|
|
|
string from_format = et.inputFormat;
|
|
|
|
if (from_format.empty())
|
|
|
|
return;
|
|
|
|
|
2003-07-23 09:17:04 +00:00
|
|
|
string from_file = params_.filename.absFilename();
|
2003-06-04 09:16:29 +00:00
|
|
|
|
|
|
|
if (from_format == "*") {
|
|
|
|
if (from_file.empty())
|
2001-11-02 16:18:07 +00:00
|
|
|
return;
|
|
|
|
|
2003-06-04 09:16:29 +00:00
|
|
|
// Try and ascertain the file format from its contents.
|
2003-09-03 12:56:52 +00:00
|
|
|
from_format = support::getExtFromContents(from_file);
|
2003-06-04 09:16:29 +00:00
|
|
|
if (from_format.empty())
|
|
|
|
return;
|
|
|
|
}
|
2000-06-12 11:27:15 +00:00
|
|
|
|
2003-06-04 09:16:29 +00:00
|
|
|
string const to_format = outputFormat.updateFormat;
|
|
|
|
if (to_format.empty())
|
|
|
|
return;
|
2000-06-12 11:27:15 +00:00
|
|
|
|
2003-06-04 09:16:29 +00:00
|
|
|
if (!converters.isReachable(from_format, to_format)) {
|
|
|
|
lyxerr << "InsetExternal::updateExternal. "
|
|
|
|
"Unable to convert from "
|
|
|
|
<< from_format << " to " << to_format << endl;
|
2001-11-02 16:18:07 +00:00
|
|
|
return;
|
2003-06-04 09:16:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (external_in_tmpdir && !from_file.empty()) {
|
|
|
|
// We are running stuff through LaTeX
|
2003-09-03 12:56:52 +00:00
|
|
|
from_file = support::copyFileToDir(buf.tmppath, from_file);
|
2003-06-04 09:16:29 +00:00
|
|
|
if (from_file.empty())
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2003-06-11 11:01:34 +00:00
|
|
|
string const to_file = doSubstitution(params_, buf,
|
|
|
|
outputFormat.updateResult);
|
2000-06-12 11:27:15 +00:00
|
|
|
|
2003-09-03 12:56:52 +00:00
|
|
|
support::FileInfo fi(from_file);
|
2003-06-04 09:16:29 +00:00
|
|
|
string abs_to_file = to_file;
|
2003-09-03 12:56:52 +00:00
|
|
|
if (!support::AbsolutePath(to_file))
|
|
|
|
abs_to_file = support::MakeAbsPath(to_file,
|
|
|
|
support::OnlyPath(from_file));
|
|
|
|
support::FileInfo fi2(abs_to_file);
|
2003-06-04 09:16:29 +00:00
|
|
|
if (fi2.exist() && fi.exist() &&
|
|
|
|
difftime(fi2.getModificationTime(),
|
|
|
|
fi.getModificationTime()) >= 0) {
|
|
|
|
} else {
|
2003-09-03 12:56:52 +00:00
|
|
|
string const to_filebase = support::ChangeExtension(to_file, string());
|
2003-08-28 07:41:31 +00:00
|
|
|
converters.convert(&buf, from_file, to_filebase,
|
2003-06-04 09:16:29 +00:00
|
|
|
from_format, to_format);
|
|
|
|
}
|
2000-06-12 11:27:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-06-11 11:01:34 +00:00
|
|
|
namespace {
|
|
|
|
|
|
|
|
/// Substitute meta-variables in this string
|
|
|
|
string const doSubstitution(InsetExternal::Params const & params,
|
2003-08-28 07:41:31 +00:00
|
|
|
Buffer const & buffer, string const & s)
|
2000-06-12 11:27:15 +00:00
|
|
|
{
|
2003-06-11 11:01:34 +00:00
|
|
|
string result;
|
2003-08-28 07:41:31 +00:00
|
|
|
string const buffer_path = buffer.filePath();
|
2003-07-23 16:48:04 +00:00
|
|
|
string const filename = params.filename.outputFilename(buffer_path);
|
2003-09-03 12:56:52 +00:00
|
|
|
string const basename = support::ChangeExtension(filename, string());
|
|
|
|
string const filepath = support::OnlyPath(filename);
|
2003-06-11 11:01:34 +00:00
|
|
|
|
2003-09-03 12:56:52 +00:00
|
|
|
result = support::subst(s, "$$FName", filename);
|
|
|
|
result = support::subst(result, "$$Basename", basename);
|
|
|
|
result = support::subst(result, "$$FPath", filepath);
|
|
|
|
result = support::subst(result, "$$Tempname", params.tempname);
|
|
|
|
result = support::subst(result, "$$Sysdir", support::system_lyxdir());
|
2003-06-11 11:01:34 +00:00
|
|
|
|
|
|
|
// Handle the $$Contents(filename) syntax
|
2003-09-03 12:56:52 +00:00
|
|
|
if (support::contains(result, "$$Contents(\"")) {
|
2000-06-12 11:27:15 +00:00
|
|
|
|
2003-06-11 11:01:34 +00:00
|
|
|
string::size_type const pos = result.find("$$Contents(\"");
|
|
|
|
string::size_type const end = result.find("\")", pos);
|
|
|
|
string const file = result.substr(pos + 12, end - (pos + 12));
|
|
|
|
string contents;
|
2003-08-28 07:41:31 +00:00
|
|
|
|
2003-09-03 12:56:52 +00:00
|
|
|
string const filepath = support::IsFileReadable(file) ?
|
|
|
|
buffer.filePath() : buffer.tmppath;
|
|
|
|
support::Path p(filepath);
|
|
|
|
|
|
|
|
if (support::IsFileReadable(file))
|
|
|
|
contents = support::GetFileContents(file);
|
2003-08-28 07:41:31 +00:00
|
|
|
|
2003-09-03 12:56:52 +00:00
|
|
|
result = support::subst(result,
|
|
|
|
("$$Contents(\"" + file + "\")").c_str(),
|
|
|
|
contents);
|
2003-06-11 11:01:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-08-28 07:41:31 +00:00
|
|
|
void editExternal(InsetExternal::Params const & params, Buffer const & buffer)
|
2003-06-11 11:01:34 +00:00
|
|
|
{
|
2003-06-11 14:30:04 +00:00
|
|
|
ExternalTemplate const * const et_ptr = getTemplatePtr(params);
|
|
|
|
if (!et_ptr)
|
|
|
|
return;
|
|
|
|
ExternalTemplate const & et = *et_ptr;
|
|
|
|
|
2003-06-11 11:01:34 +00:00
|
|
|
if (et.editCommand.empty())
|
|
|
|
return;
|
|
|
|
|
|
|
|
string const command = doSubstitution(params, buffer, et.editCommand);
|
2003-06-04 09:16:29 +00:00
|
|
|
|
2003-09-03 12:56:52 +00:00
|
|
|
support::Path p(buffer.filePath());
|
|
|
|
support::Forkedcall call;
|
2003-06-04 09:16:29 +00:00
|
|
|
if (lyxerr.debugging()) {
|
|
|
|
lyxerr << "Executing '" << command << "' in '"
|
2003-08-28 07:41:31 +00:00
|
|
|
<< buffer.filePath() << '\'' << endl;
|
2003-06-04 09:16:29 +00:00
|
|
|
}
|
2003-09-03 12:56:52 +00:00
|
|
|
call.startscript(support::Forkedcall::DontWait, command);
|
2000-06-12 11:27:15 +00:00
|
|
|
}
|
2001-03-30 09:51:46 +00:00
|
|
|
|
2003-06-11 11:01:34 +00:00
|
|
|
} // namespace anon
|
2001-03-30 09:51:46 +00:00
|
|
|
|
2003-03-07 14:08:10 +00:00
|
|
|
string const InsetExternalMailer::name_("external");
|
|
|
|
|
2003-03-05 11:30:35 +00:00
|
|
|
InsetExternalMailer::InsetExternalMailer(InsetExternal & inset)
|
2003-03-07 14:08:10 +00:00
|
|
|
: inset_(inset)
|
2003-03-05 11:30:35 +00:00
|
|
|
{}
|
|
|
|
|
|
|
|
|
2003-07-23 09:54:21 +00:00
|
|
|
string const InsetExternalMailer::inset2string(Buffer const & buffer) const
|
2003-03-05 11:30:35 +00:00
|
|
|
{
|
2003-07-23 09:54:21 +00:00
|
|
|
return params2string(inset_.params(), buffer);
|
2003-03-05 11:30:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void InsetExternalMailer::string2params(string const & in,
|
2003-07-23 09:54:21 +00:00
|
|
|
Buffer const & buffer,
|
2003-03-05 11:30:35 +00:00
|
|
|
InsetExternal::Params & params)
|
|
|
|
{
|
|
|
|
params = InsetExternal::Params();
|
|
|
|
|
2003-04-24 20:02:49 +00:00
|
|
|
if (in.empty())
|
|
|
|
return;
|
|
|
|
|
2003-05-13 16:24:49 +00:00
|
|
|
istringstream data(STRCONV(in));
|
2003-03-07 14:08:10 +00:00
|
|
|
LyXLex lex(0,0);
|
|
|
|
lex.setStream(data);
|
2003-03-05 11:30:35 +00:00
|
|
|
|
2003-03-07 14:08:10 +00:00
|
|
|
if (lex.isOK()) {
|
|
|
|
lex.next();
|
|
|
|
string const token = lex.getString();
|
|
|
|
if (token != name_)
|
|
|
|
return;
|
|
|
|
}
|
2003-03-05 11:30:35 +00:00
|
|
|
|
|
|
|
// This is part of the inset proper that is usually swallowed
|
|
|
|
// by Buffer::readInset
|
2003-03-07 14:08:10 +00:00
|
|
|
if (lex.isOK()) {
|
|
|
|
lex.next();
|
|
|
|
string const token = lex.getString();
|
|
|
|
if (token != "External")
|
|
|
|
return;
|
|
|
|
}
|
2003-03-05 11:30:35 +00:00
|
|
|
|
2003-03-10 03:11:54 +00:00
|
|
|
if (lex.isOK()) {
|
2003-04-24 20:02:49 +00:00
|
|
|
InsetExternal inset;
|
2003-08-28 07:41:31 +00:00
|
|
|
inset.read(buffer, lex);
|
2003-03-10 03:11:54 +00:00
|
|
|
params = inset.params();
|
|
|
|
}
|
2003-03-05 11:30:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
string const
|
2003-07-23 09:17:04 +00:00
|
|
|
InsetExternalMailer::params2string(InsetExternal::Params const & params,
|
2003-07-23 09:54:21 +00:00
|
|
|
Buffer const & buffer)
|
2003-03-05 11:30:35 +00:00
|
|
|
{
|
|
|
|
InsetExternal inset;
|
2003-08-28 07:41:31 +00:00
|
|
|
inset.setParams(params, buffer);
|
2003-03-05 11:30:35 +00:00
|
|
|
ostringstream data;
|
2003-03-07 14:08:10 +00:00
|
|
|
data << name_ << ' ';
|
2003-08-28 07:41:31 +00:00
|
|
|
inset.write(buffer, data);
|
2003-03-05 11:30:35 +00:00
|
|
|
data << "\\end_inset\n";
|
2003-05-13 16:24:49 +00:00
|
|
|
return STRCONV(data.str());
|
2003-03-05 11:30:35 +00:00
|
|
|
}
|