mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 13:46:43 +00:00
16e1f90daa
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@7903 a592a061-630c-0410-9148-cb99ea01b6c8
414 lines
11 KiB
C
414 lines
11 KiB
C
/**
|
|
* \file ExternalSupport.C
|
|
* This file is part of LyX, the document processor.
|
|
* Licence details can be found in the file COPYING.
|
|
*
|
|
* \author Asger Alstrup Nielsen
|
|
* \author Angus Leeming
|
|
*
|
|
* Full author contact details are available in file CREDITS.
|
|
*/
|
|
|
|
#include <config.h>
|
|
|
|
#include "ExternalSupport.h"
|
|
#include "ExternalTemplate.h"
|
|
#include "ExternalTransforms.h"
|
|
#include "insetexternal.h"
|
|
|
|
#include "buffer.h"
|
|
#include "converter.h"
|
|
#include "debug.h"
|
|
|
|
#include "support/filetools.h"
|
|
#include "support/forkedcall.h"
|
|
#include "support/lstrings.h"
|
|
#include "support/lyxalgo.h"
|
|
#include "support/lyxlib.h"
|
|
#include "support/path.h"
|
|
#include "support/path_defines.h"
|
|
|
|
#include "support/std_ostream.h"
|
|
|
|
namespace support = lyx::support;
|
|
|
|
using std::endl;
|
|
|
|
using std::ostream;
|
|
using std::string;
|
|
using std::vector;
|
|
|
|
|
|
namespace lyx {
|
|
namespace external {
|
|
|
|
Template const * getTemplatePtr(InsetExternalParams const & params)
|
|
{
|
|
TemplateManager const & etm = TemplateManager::get();
|
|
return etm.getTemplateByName(params.templatename());
|
|
}
|
|
|
|
|
|
void editExternal(InsetExternalParams const & params, Buffer const & buffer)
|
|
{
|
|
Template const * const et_ptr = getTemplatePtr(params);
|
|
if (!et_ptr)
|
|
return;
|
|
Template const & et = *et_ptr;
|
|
|
|
if (et.editCommand.empty())
|
|
return;
|
|
|
|
string const command = doSubstitution(params, buffer, et.editCommand);
|
|
|
|
support::Path p(buffer.filePath());
|
|
support::Forkedcall call;
|
|
if (lyxerr.debugging(Debug::EXTERNAL)) {
|
|
lyxerr << "Executing '" << command << "' in '"
|
|
<< buffer.filePath() << '\'' << endl;
|
|
}
|
|
call.startscript(support::Forkedcall::DontWait, command);
|
|
}
|
|
|
|
|
|
namespace {
|
|
|
|
string const doSubstitution(InsetExternalParams const & params,
|
|
Buffer const & buffer, string const & s,
|
|
string const & filename)
|
|
{
|
|
string result;
|
|
string const basename = support::ChangeExtension(filename, string());
|
|
string const filepath = support::OnlyPath(filename);
|
|
|
|
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());
|
|
|
|
// Handle the $$Contents(filename) syntax
|
|
if (support::contains(result, "$$Contents(\"")) {
|
|
|
|
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;
|
|
|
|
string const filepath = support::IsFileReadable(file) ?
|
|
buffer.filePath() : buffer.temppath();
|
|
support::Path p(filepath);
|
|
|
|
if (support::IsFileReadable(file))
|
|
contents = support::GetFileContents(file);
|
|
|
|
result = support::subst(result,
|
|
("$$Contents(\"" + file + "\")").c_str(),
|
|
contents);
|
|
}
|
|
|
|
return result;
|
|
}
|
|
|
|
/** update the file represented by the template.
|
|
If \param external_in_tmpdir == true, then the generated file is
|
|
place in the buffer's temporary directory.
|
|
*/
|
|
void updateExternal(InsetExternalParams const & params,
|
|
string const & format,
|
|
Buffer const & buffer,
|
|
bool external_in_tmpdir)
|
|
{
|
|
Template const * const et_ptr = getTemplatePtr(params);
|
|
if (!et_ptr)
|
|
return; // FAILURE
|
|
Template const & et = *et_ptr;
|
|
|
|
if (!et.automaticProduction)
|
|
return; // NOT_NEEDED
|
|
|
|
Template::Formats::const_iterator cit = et.formats.find(format);
|
|
if (cit == et.formats.end())
|
|
return; // FAILURE
|
|
|
|
Template::Format const & outputFormat = cit->second;
|
|
if (outputFormat.updateResult.empty())
|
|
return; // NOT_NEEDED
|
|
|
|
string from_format = et.inputFormat;
|
|
if (from_format.empty())
|
|
return; // NOT_NEEDED
|
|
|
|
string from_file = params.filename.absFilename();
|
|
|
|
if (from_format == "*") {
|
|
if (from_file.empty())
|
|
return; // NOT_NEEDED
|
|
|
|
// Try and ascertain the file format from its contents.
|
|
from_format = support::getExtFromContents(from_file);
|
|
if (from_format.empty())
|
|
return; // FAILURE
|
|
}
|
|
|
|
string const to_format = outputFormat.updateFormat;
|
|
if (to_format.empty())
|
|
return; // NOT_NEEDED
|
|
|
|
if (!converters.isReachable(from_format, to_format)) {
|
|
lyxerr[Debug::EXTERNAL]
|
|
<< "external::updateExternal. "
|
|
<< "Unable to convert from "
|
|
<< from_format << " to " << to_format << endl;
|
|
return; // FAILURE
|
|
}
|
|
|
|
if (external_in_tmpdir && !from_file.empty()) {
|
|
// We are running stuff through LaTeX
|
|
string const temp_file =
|
|
support::MakeAbsPath(params.filename.mangledFilename(),
|
|
buffer.temppath());
|
|
unsigned long const from_checksum = support::sum(from_file);
|
|
unsigned long const temp_checksum = support::sum(temp_file);
|
|
|
|
if (from_checksum != temp_checksum) {
|
|
if (!support::copy(from_file, temp_file))
|
|
return; // FAILURE
|
|
}
|
|
|
|
from_file = temp_file;
|
|
}
|
|
|
|
string const to_file = doSubstitution(params, buffer,
|
|
outputFormat.updateResult,
|
|
from_file);
|
|
|
|
string const abs_to_file =
|
|
support::MakeAbsPath(to_file, buffer.filePath());
|
|
|
|
// Do we need to perform the conversion?
|
|
// Yes if to_file does not exist or if from_file is newer than to_file
|
|
if (support::compare_timestamps(from_file, abs_to_file) < 0)
|
|
return; // SUCCESS
|
|
|
|
string const to_file_base =
|
|
support::ChangeExtension(to_file, string());
|
|
/* bool const success = */
|
|
converters.convert(&buffer, from_file, to_file_base,
|
|
from_format, to_format);
|
|
// return success
|
|
}
|
|
|
|
|
|
string const substituteCommands(InsetExternalParams const & params,
|
|
string const & input, string const & format);
|
|
|
|
string const substituteOptions(InsetExternalParams const & params,
|
|
string const & input, string const & format);
|
|
|
|
} // namespace anon
|
|
|
|
|
|
int writeExternal(InsetExternalParams const & params,
|
|
string const & format,
|
|
Buffer const & buffer, ostream & os,
|
|
bool external_in_tmpdir)
|
|
{
|
|
Template const * const et_ptr = getTemplatePtr(params);
|
|
if (!et_ptr)
|
|
return 0;
|
|
Template const & et = *et_ptr;
|
|
|
|
Template::Formats::const_iterator cit = et.formats.find(format);
|
|
if (cit == et.formats.end()) {
|
|
lyxerr[Debug::EXTERNAL]
|
|
<< "External template format '" << format
|
|
<< "' not specified in template "
|
|
<< params.templatename() << endl;
|
|
return 0;
|
|
}
|
|
|
|
updateExternal(params, format, buffer, external_in_tmpdir);
|
|
|
|
string from_file = params.filename.outputFilename(buffer.filePath());
|
|
if (external_in_tmpdir && !from_file.empty()) {
|
|
// We are running stuff through LaTeX
|
|
from_file =
|
|
support::MakeAbsPath(params.filename.mangledFilename(),
|
|
buffer.temppath());
|
|
}
|
|
|
|
string str = doSubstitution(params, buffer, cit->second.product,
|
|
from_file);
|
|
str = substituteCommands(params, str, format);
|
|
str = substituteOptions(params, str, format);
|
|
os << str;
|
|
return int(lyx::count(str.begin(), str.end(),'\n') + 1);
|
|
}
|
|
|
|
|
|
/// Substitute meta-variables in this string
|
|
string const doSubstitution(InsetExternalParams const & params,
|
|
Buffer const & buffer, string const & s)
|
|
{
|
|
string const buffer_path = buffer.filePath();
|
|
string const filename = params.filename.outputFilename(buffer_path);
|
|
return doSubstitution(params, buffer, s, filename);
|
|
}
|
|
|
|
namespace {
|
|
|
|
// Empty template, specialised below.
|
|
template <typename TransformType>
|
|
string const substituteIt(string const &,
|
|
TransformID,
|
|
string const &,
|
|
Template::Format const &,
|
|
InsetExternalParams const &);
|
|
|
|
|
|
template <>
|
|
string const substituteIt<TransformCommand>(string const & input,
|
|
TransformID id,
|
|
string const & /* formatname */,
|
|
Template::Format const & format,
|
|
InsetExternalParams const & params)
|
|
{
|
|
typedef std::map<TransformID, TransformStore> Transformers;
|
|
Transformers::const_iterator it = format.command_transformers.find(id);
|
|
if (it == format.command_transformers.end())
|
|
return input;
|
|
|
|
TransformStore const & store = it->second;
|
|
|
|
TransformCommand::ptr_type ptr;
|
|
if (id == Rotate)
|
|
ptr = store.getCommandTransformer(params.rotationdata);
|
|
else if (id == Resize)
|
|
ptr = store.getCommandTransformer(params.resizedata);
|
|
|
|
if (!ptr.get())
|
|
return input;
|
|
|
|
string result =
|
|
support::subst(input, ptr->front_placeholder(), ptr->front());
|
|
return support::subst(result, ptr->back_placeholder(), ptr->back());
|
|
}
|
|
|
|
|
|
template <>
|
|
string const substituteIt<TransformOption>(string const & input,
|
|
TransformID id,
|
|
string const & fname,
|
|
Template::Format const & format,
|
|
InsetExternalParams const & params)
|
|
{
|
|
typedef std::map<TransformID, TransformStore> Transformers;
|
|
Transformers::const_iterator it = format.option_transformers.find(id);
|
|
if (it == format.option_transformers.end())
|
|
return input;
|
|
|
|
TransformStore const & store = it->second;
|
|
|
|
TransformOption::ptr_type ptr;
|
|
switch (id) {
|
|
case Clip:
|
|
ptr = store.getOptionTransformer(params.clipdata);
|
|
break;
|
|
case Extra:
|
|
ptr = store.getOptionTransformer(params.extradata.get(fname));
|
|
break;
|
|
case Rotate:
|
|
ptr = store.getOptionTransformer(params.rotationdata);
|
|
break;
|
|
case Resize:
|
|
ptr = store.getOptionTransformer(params.resizedata);
|
|
break;
|
|
}
|
|
|
|
if (!ptr.get())
|
|
return input;
|
|
|
|
return support::subst(input, ptr->placeholder(), ptr->option());
|
|
}
|
|
|
|
|
|
template <typename TransformerType>
|
|
string const transformIt(InsetExternalParams const & params,
|
|
string const & s, string const & formatname)
|
|
{
|
|
Template const * const et = getTemplatePtr(params);
|
|
if (!et || et->transformIds.empty())
|
|
return s;
|
|
|
|
Template::Formats::const_iterator fit = et->formats.find(formatname);
|
|
if (fit == et->formats.end())
|
|
return s;
|
|
|
|
string result = s;
|
|
Template::Format const & format = fit->second;
|
|
|
|
typedef vector<TransformID> TransformsIDs;
|
|
TransformsIDs::const_iterator it = et->transformIds.begin();
|
|
TransformsIDs::const_iterator end = et->transformIds.end();
|
|
for (; it != end; ++it) {
|
|
result = substituteIt<TransformerType>(result, *it, formatname,
|
|
format, params);
|
|
}
|
|
return result;
|
|
}
|
|
|
|
|
|
string const substituteCommands(InsetExternalParams const & params,
|
|
string const & input, string const & format)
|
|
{
|
|
return transformIt<TransformCommand>(params, input, format);
|
|
}
|
|
|
|
|
|
string const substituteOption(InsetExternalParams const & params,
|
|
string const & input, string const & format)
|
|
{
|
|
string opt = transformIt<TransformOption>(params, input, format);
|
|
|
|
if (format == "LaTeX" || format == "PDFLaTeX")
|
|
return sanitizeLatexOption(opt);
|
|
if (format == "DocBook")
|
|
return sanitizeDocBookOption(opt);
|
|
if (format == "LinuxDoc")
|
|
return sanitizeLinuxDocOption(opt);
|
|
return opt;
|
|
}
|
|
|
|
|
|
string const substituteOptions(InsetExternalParams const & params,
|
|
string const & input, string const & format)
|
|
{
|
|
string output = input;
|
|
|
|
Template const * const et = getTemplatePtr(params);
|
|
if (!et || et->transformIds.empty())
|
|
return output;
|
|
|
|
Template::Formats::const_iterator fit = et->formats.find(format);
|
|
if (fit == et->formats.end() || fit->second.options.empty())
|
|
return output;
|
|
|
|
typedef vector<Template::Option> Options;
|
|
Options const & options = fit->second.options;
|
|
Options::const_iterator it = options.begin();
|
|
Options::const_iterator end = options.end();
|
|
for (; it != end; ++it) {
|
|
string const opt = substituteOption(params, it->option, format);
|
|
string const placeholder = "$$" + it->name;
|
|
output = support::subst(output, placeholder, opt);
|
|
}
|
|
|
|
return output;
|
|
}
|
|
|
|
} // namespace anon
|
|
|
|
} // namespace external
|
|
} // namespace lyx
|