]> git.lyx.org Git - lyx.git/blob - src/Mover.cpp
Avoid full metrics computation with Update:FitCursor
[lyx.git] / src / Mover.cpp
1 /**
2  * \file Mover.cpp
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * \author Angus Leeming
7  *
8  * Full author contact details are available in file CREDITS.
9  */
10
11 #include <config.h>
12
13 #include "Mover.h"
14
15 #include "support/FileName.h"
16 #include "support/filetools.h"
17 #include "support/lstrings.h"
18 #include "support/Systemcall.h"
19
20 #include <fstream>
21 #include <sstream>
22
23 using namespace std;
24 using namespace lyx::support;
25
26 namespace lyx {
27
28
29 bool Mover::copy(FileName const & from, FileName const & to) const
30 {
31         return do_copy(from, to, to.absFileName());
32 }
33
34
35 bool Mover::do_copy(FileName const & from, FileName const & to,
36                     string const &) const
37 {
38         return from.copyTo(to);
39 }
40
41
42 bool Mover::rename(FileName const & from,
43                    FileName const & to) const
44 {
45         return do_rename(from, to, to.absFileName());
46 }
47
48
49 bool Mover::do_rename(FileName const & from, FileName const & to,
50                       string const &) const
51 {
52         return from.moveTo(to);
53 }
54
55
56 bool SpecialisedMover::do_copy(FileName const & from, FileName const & to,
57                                string const & latex) const
58 {
59         if (command_.empty())
60                 return Mover::do_copy(from, to, latex);
61
62         string command = command_;
63         command = subst(command, "$$i", quoteName(from.toFilesystemEncoding()));
64         command = subst(command, "$$o", quoteName(to.toFilesystemEncoding()));
65         command = subst(command, "$$l", quoteName(latex));
66         command = subst(command, "$${python}", os::python());
67
68         Systemcall one;
69         return one.startscript(Systemcall::Wait, command) == 0;
70 }
71
72
73 bool SpecialisedMover::do_rename(FileName const & from, FileName const & to,
74                                  string const & latex) const
75 {
76         if (command_.empty())
77                 return Mover::do_rename(from, to, latex);
78
79         if (!do_copy(from, to, latex))
80                 return false;
81         return from.removeFile();
82 }
83
84
85 void Movers::set(string const & fmt, string const & command)
86 {
87         specials_[fmt] = SpecialisedMover(command);
88 }
89
90
91 Mover const & Movers::operator()(string const & fmt) const
92 {
93         SpecialsMap::const_iterator const it = specials_.find(fmt);
94         if (it == specials_.end())
95                 return default_;
96         return  it->second;
97 }
98
99
100 string const Movers::command(string  const & fmt) const
101 {
102         SpecialsMap::const_iterator const it = specials_.find(fmt);
103         return (it == specials_.end()) ? string() : it->second.command();
104 }
105
106
107 } // namespace lyx