]> git.lyx.org Git - lyx.git/blobdiff - src/insets/ExternalSupport.C
The speed patch: redraw only rows that have changed
[lyx.git] / src / insets / ExternalSupport.C
index a1964592346af3ceb0f927fbd0a7ee15e65d96ea..6a64f2867557eddf363ccf46b4fdfe5a4ad5fc9a 100644 (file)
 #include "buffer.h"
 #include "converter.h"
 #include "debug.h"
+#include "exporter.h"
+#include "format.h"
+#include "mover.h"
 
 #include "support/filetools.h"
 #include "support/forkedcall.h"
 #include "support/lstrings.h"
 #include "support/lyxalgo.h"
 #include "support/lyxlib.h"
+#include "support/os.h"
+#include "support/package.h"
 #include "support/path.h"
-#include "support/path_defines.h"
 
 #include "support/std_ostream.h"
 
@@ -51,75 +55,114 @@ Template const * getTemplatePtr(InsetExternalParams const & params)
 
 void editExternal(InsetExternalParams const & params, Buffer const & buffer)
 {
-       Template const * const et_ptr = getTemplatePtr(params);
-       if (!et_ptr)
-               return;
-       Template const & et = *et_ptr;
+       string const file_with_path = params.filename.absFilename();
+       formats.edit(buffer, file_with_path,
+                    formats.getFormatFromFile(file_with_path));
+}
 
-       if (et.editCommand.empty())
-               return;
 
-       string const command = doSubstitution(params, buffer, et.editCommand);
+namespace {
 
-       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);
+string const subst_path(string const & input,
+                       string const & placeholder,
+                       string const & path,
+                        bool use_latex_path,
+                        support::latex_path_extension ext = support::PROTECT_EXTENSION,
+                        support::latex_path_dots dots = support::LEAVE_DOTS)
+{
+       if (input.find(placeholder) == string::npos)
+               return input;
+       string const path2 = use_latex_path ?
+               support::latex_path(path, ext, dots) :
+               support::os::external_path(path);
+       return support::subst(input, placeholder, path2);
 }
 
+} // namespace anon
 
-namespace {
 
-/** Substitute meta-variables in the string \p s.
-    \p filename has to be the filename as read from the .lyx file (this
-    can be an absolute path or a path relative to the parent document).
-    Otherwise, the $$AbsOrRelPath* variables would not work.
-    If we are using a temporary directory, \p filename is the mangled name.
-*/
 string const doSubstitution(InsetExternalParams const & params,
                            Buffer const & buffer, string const & s,
-                           string const & filename)
+                            bool use_latex_path,
+                           bool external_in_tmpdir,
+                            Substitute what)
 {
-       string result;
+       Buffer const * m_buffer = buffer.getMasterBuffer();
+       string const parentpath = external_in_tmpdir ?
+               m_buffer->temppath() :
+               buffer.filePath();
+       string const filename = external_in_tmpdir ?
+               params.filename.mangledFilename() :
+               params.filename.outputFilename(parentpath);
        string const basename = support::ChangeExtension(
                        support::OnlyFilename(filename), string());
-       string const absname = support::MakeAbsPath(filename, buffer.filePath());
-       string const filepath = support::OnlyPath(filename);
-       string const abspath = support::OnlyPath(absname);
-       Buffer const * m_buffer = buffer.getMasterBuffer();
-       string relToMasterPath = support::OnlyPath(
-                       support::MakeRelPath(absname, m_buffer->filePath()));
-       if (relToMasterPath == "./")
-               relToMasterPath.clear();
-       string relToParentPath = support::OnlyPath(
-                       support::MakeRelPath(absname, buffer.filePath()));
-       if (relToParentPath == "./")
-               relToParentPath.clear();
-
-       result = support::subst(s, "$$FName", filename);
-       result = support::subst(result, "$$Basename", basename);
-       result = support::subst(result, "$$Extension",
-                       '.' + support::GetExtension(filename));
-       result = support::subst(result, "$$FPath", filepath);
-       result = support::subst(result, "$$AbsPath", abspath);
-       result = support::subst(result, "$$RelPathMaster", relToMasterPath);
-       result = support::subst(result, "$$RelPathParent", relToParentPath);
-       if (support::AbsolutePath(filename)) {
-               result = support::subst(result, "$$AbsOrRelPathMaster",
-                                       abspath);
-               result = support::subst(result, "$$AbsOrRelPathParent",
-                                       abspath);
-       } else {
-               result = support::subst(result, "$$AbsOrRelPathMaster",
-                                       relToMasterPath);
-               result = support::subst(result, "$$AbsOrRelPathParent",
-                                       relToParentPath);
+       string const absname = support::MakeAbsPath(filename, parentpath);
+
+       string result = s;
+       if (what != ALL_BUT_PATHS) {
+               string const filepath = support::OnlyPath(filename);
+               string const abspath = support::OnlyPath(absname);
+               string const masterpath = external_in_tmpdir ?
+                       m_buffer->temppath() :
+                       m_buffer->filePath();
+               string relToMasterPath = support::OnlyPath(
+                               support::MakeRelPath(absname, masterpath));
+               if (relToMasterPath == "./")
+                       relToMasterPath.clear();
+               string relToParentPath = support::OnlyPath(
+                               support::MakeRelPath(absname, parentpath));
+               if (relToParentPath == "./")
+                       relToParentPath.clear();
+
+               result = subst_path(result, "$$FPath", filepath,
+                                   use_latex_path,
+                                   support::PROTECT_EXTENSION,
+                                   support::ESCAPE_DOTS);
+               result = subst_path(result, "$$AbsPath", abspath,
+                                   use_latex_path,
+                                   support::PROTECT_EXTENSION,
+                                   support::ESCAPE_DOTS);
+               result = subst_path(result, "$$RelPathMaster",
+                                   relToMasterPath, use_latex_path,
+                                   support::PROTECT_EXTENSION,
+                                   support::ESCAPE_DOTS);
+               result = subst_path(result, "$$RelPathParent",
+                                   relToParentPath, use_latex_path,
+                                   support::PROTECT_EXTENSION,
+                                   support::ESCAPE_DOTS);
+               if (support::AbsolutePath(filename)) {
+                       result = subst_path(result, "$$AbsOrRelPathMaster",
+                                           abspath, use_latex_path,
+                                           support::PROTECT_EXTENSION,
+                                           support::ESCAPE_DOTS);
+                       result = subst_path(result, "$$AbsOrRelPathParent",
+                                           abspath, use_latex_path,
+                                           support::PROTECT_EXTENSION,
+                                           support::ESCAPE_DOTS);
+               } else {
+                       result = subst_path(result, "$$AbsOrRelPathMaster",
+                                           relToMasterPath, use_latex_path,
+                                           support::PROTECT_EXTENSION,
+                                           support::ESCAPE_DOTS);
+                       result = subst_path(result, "$$AbsOrRelPathParent",
+                                           relToParentPath, use_latex_path,
+                                           support::PROTECT_EXTENSION,
+                                           support::ESCAPE_DOTS);
+               }
        }
-       result = support::subst(result, "$$Tempname", params.tempname());
-       result = support::subst(result, "$$Sysdir", support::system_lyxdir());
+
+       if (what == PATHS)
+               return result;
+
+       result = subst_path(result, "$$FName", filename, use_latex_path,
+                           support::EXCLUDE_EXTENSION);
+       result = subst_path(result, "$$Basename", basename, use_latex_path,
+                           support::PROTECT_EXTENSION, support::ESCAPE_DOTS);
+       result = subst_path(result, "$$Extension",
+                       '.' + support::GetExtension(filename), use_latex_path);
+       result = subst_path(result, "$$Tempname", params.tempname(), use_latex_path);
+       result = subst_path(result, "$$Sysdir",
+                               support::package().system_support(), use_latex_path);
 
        // Handle the $$Contents(filename) syntax
        if (support::contains(result, "$$Contents(\"")) {
@@ -144,13 +187,17 @@ string const doSubstitution(InsetExternalParams const & params,
        return result;
 }
 
+
+namespace {
+
 /** 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.
+    If \p external_in_tmpdir == true, then the generated file is
+    placed in the buffer's temporary directory.
 */
 void updateExternal(InsetExternalParams const & params,
                    string const & format,
                    Buffer const & buffer,
+                    ExportData & exportdata,
                    bool external_in_tmpdir)
 {
        Template const * const et_ptr = getTemplatePtr(params);
@@ -180,7 +227,7 @@ void updateExternal(InsetExternalParams const & params,
                        return; // NOT_NEEDED
 
                // Try and ascertain the file format from its contents.
-               from_format = support::getExtFromContents(abs_from_file);
+               from_format = formats.getFormatFromFile(abs_from_file);
                if (from_format.empty())
                        return; // FAILURE
 
@@ -198,22 +245,22 @@ void updateExternal(InsetExternalParams const & params,
                return; // FAILURE
        }
 
-       string from_file = params.filename.outputFilename(buffer.filePath());
-
        // The master buffer. This is useful when there are multiple levels
        // of include files
        Buffer const * m_buffer = buffer.getMasterBuffer();
 
-       if (external_in_tmpdir && !abs_from_file.empty()) {
-               // We are running stuff through LaTeX
-               string const temp_file =
-                       support::MakeAbsPath(params.filename.mangledFilename(),
-                                            m_buffer->temppath());
+       // We copy the source file to the temp dir and do the conversion
+       // there if necessary
+       string const temp_file =
+               support::MakeAbsPath(params.filename.mangledFilename(),
+                                    m_buffer->temppath());
+       if (!abs_from_file.empty()) {
                unsigned long const from_checksum = support::sum(abs_from_file);
                unsigned long const temp_checksum = support::sum(temp_file);
 
                if (from_checksum != temp_checksum) {
-                       if (!support::copy(abs_from_file, temp_file)) {
+                       Mover const & mover = movers(from_format);
+                       if (!mover.copy(abs_from_file, temp_file)) {
                                lyxerr[Debug::EXTERNAL]
                                        << "external::updateExternal. "
                                        << "Unable to copy "
@@ -221,30 +268,54 @@ void updateExternal(InsetExternalParams const & params,
                                return; // FAILURE
                        }
                }
-
-               from_file = temp_file;
-               abs_from_file = temp_file;
        }
 
+       // the generated file (always in the temp dir)
        string const to_file = doSubstitution(params, buffer,
                                              outputFormat.updateResult,
-                                             from_file);
-
+                                             false, true);
        string const abs_to_file =
-               support::MakeAbsPath(to_file, external_in_tmpdir
-                       ? m_buffer->temppath()
-                       : buffer.filePath());
+               support::MakeAbsPath(to_file, m_buffer->temppath());
+
+       // Record the referenced files for the exporter.
+       // The exporter will copy them to the export dir.
+       typedef Template::Format::FileMap FileMap;
+       FileMap::const_iterator rit  = outputFormat.referencedFiles.begin();
+       FileMap::const_iterator rend = outputFormat.referencedFiles.end();
+       for (; rit != rend; ++rit) {
+               vector<string>::const_iterator fit  = rit->second.begin();
+               vector<string>::const_iterator fend = rit->second.end();
+               for (; fit != fend; ++fit) {
+                       string const source = support::MakeAbsPath(
+                                       doSubstitution(params, buffer, *fit,
+                                                      false, true),
+                                       m_buffer->temppath());
+                       // The path of the referenced file is never the
+                       // temp path, but the filename may be the mangled
+                       // or the real name. Therefore we substitute the
+                       // paths and names separately.
+                       string file = support::subst(*fit, "$$FName",
+                                       "$$FPath$$Basename$$Extension");
+                       file = doSubstitution(params, buffer, file, false, false,
+                                             PATHS);
+                       file = doSubstitution(params, buffer, file,
+                                             false, external_in_tmpdir,
+                                             ALL_BUT_PATHS);
+                       // if file is a relative name, it is interpreted
+                       // relative to the master document.
+                       exportdata.addExternalFile(rit->first, source, file);
+               }
+       }
 
        // 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(abs_from_file, abs_to_file) < 0)
+       if (support::compare_timestamps(temp_file, abs_to_file) < 0)
                return; // SUCCESS
-
        string const to_file_base =
                support::ChangeExtension(to_file, string());
        /* bool const success = */
-               converters.convert(&buffer, abs_from_file, to_file_base,
-                                  from_format, to_format);
+               converters.convert(&buffer, temp_file, to_file_base,
+                                  from_format, to_format, true);
        // return success
 }
 
@@ -261,6 +332,7 @@ string const substituteOptions(InsetExternalParams const & params,
 int writeExternal(InsetExternalParams const & params,
                  string const & format,
                  Buffer const & buffer, ostream & os,
+                  ExportData & exportdata,
                  bool external_in_tmpdir)
 {
        Template const * const et_ptr = getTemplatePtr(params);
@@ -277,32 +349,15 @@ int writeExternal(InsetExternalParams const & params,
                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.getMasterBuffer()->temppath());
-       }
+       updateExternal(params, format, buffer, exportdata, external_in_tmpdir);
 
+       bool const use_latex_path = format == "LaTeX";
        string str = doSubstitution(params, buffer, cit->second.product,
-                                   from_file);
+                                   use_latex_path, external_in_tmpdir);
        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);
+       return int(lyx::count(str.begin(), str.end(),'\n'));
 }
 
 namespace {