]> git.lyx.org Git - lyx.git/blob - src/format.C
cleanup after svn hang-up, #undef CursorShape. Should be compilable ganin now.
[lyx.git] / src / format.C
1 /**
2  * \file format.C
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * \author Dekel Tsur
7  *
8  * Full author contact details are available in file CREDITS.
9  */
10
11 #include <config.h>
12
13 #include "format.h"
14 #include "buffer.h"
15 #include "bufferparams.h"
16 #include "lyxrc.h"
17 #include "debug.h"
18 #include "gettext.h"
19 #include "lyxsocket.h"
20
21 #include "frontends/Alert.h" //to be removed?
22
23 #include "support/filetools.h"
24 #include "support/lstrings.h"
25 #include "support/os.h"
26 #include "support/systemcall.h"
27
28 #include <boost/filesystem/operations.hpp>
29
30 using lyx::docstring;
31 using lyx::support::absolutePath;
32 using lyx::support::bformat;
33 using lyx::support::compare_ascii_no_case;
34 using lyx::support::contains;
35 using lyx::support::libScriptSearch;
36 using lyx::support::makeDisplayPath;
37 using lyx::support::onlyPath;
38 using lyx::support::quoteName;
39 using lyx::support::subst;
40 using lyx::support::Systemcall;
41 using lyx::support::token;
42
43 using std::string;
44 using std::distance;
45
46 namespace fs = boost::filesystem;
47 namespace os = lyx::support::os;
48
49 extern LyXServerSocket * lyxsocket;
50
51 namespace {
52
53 string const token_from("$$i");
54 string const token_path("$$p");
55 string const token_socket("$$a");
56
57
58 class FormatNamesEqual : public std::unary_function<Format, bool> {
59 public:
60         FormatNamesEqual(string const & name)
61                 : name_(name) {}
62         bool operator()(Format const & f) const
63         {
64                 return f.name() == name_;
65         }
66 private:
67         string name_;
68 };
69
70
71 class FormatExtensionsEqual : public std::unary_function<Format, bool> {
72 public:
73         FormatExtensionsEqual(string const & extension)
74                 : extension_(extension) {}
75         bool operator()(Format const & f) const
76         {
77                 return f.extension() == extension_;
78         }
79 private:
80         string extension_;
81 };
82
83 } //namespace anon
84
85 bool operator<(Format const & a, Format const & b)
86 {
87         // use the compare_ascii_no_case instead of compare_no_case,
88         // because in turkish, 'i' is not the lowercase version of 'I',
89         // and thus turkish locale breaks parsing of tags.
90
91         return compare_ascii_no_case(a.prettyname(), b.prettyname()) < 0;
92 }
93
94
95 Format::Format(string const & n, string const & e, string const & p,
96                string const & s, string const & v, string const & ed,
97                bool d)
98         : name_(n), extension_(e), prettyname_(p), shortcut_(s), viewer_(v),
99           editor_(ed), document_(d)
100 {}
101
102
103 bool Format::dummy() const
104 {
105         return extension().empty();
106 }
107
108
109 bool Format::isChildFormat() const
110 {
111         if (name_.empty())
112                 return false;
113         return isdigit(name_[name_.length() - 1]);
114 }
115
116
117 string const Format::parentFormat() const
118 {
119         return name_.substr(0, name_.length() - 1);
120 }
121
122
123 // This method should return a reference, and throw an exception
124 // if the format named name cannot be found (Lgb)
125 Format const * Formats::getFormat(string const & name) const
126 {
127         FormatList::const_iterator cit =
128                 find_if(formatlist.begin(), formatlist.end(),
129                         FormatNamesEqual(name));
130         if (cit != formatlist.end())
131                 return &(*cit);
132         else
133                 return 0;
134 }
135
136
137 string Formats::getFormatFromFile(string const & filename) const
138 {
139         if (filename.empty())
140                 return string();
141
142         string const format = lyx::support::getFormatFromContents(filename);
143         if (!format.empty())
144                 return format;
145
146         // try to find a format from the file extension.
147         string const ext(lyx::support::getExtension(filename));
148         if (!ext.empty()) {
149                 // this is ambigous if two formats have the same extension,
150                 // but better than nothing
151                 Formats::const_iterator cit =
152                         find_if(formatlist.begin(), formatlist.end(),
153                                 FormatExtensionsEqual(ext));
154                 if (cit != formats.end()) {
155                         lyxerr[Debug::GRAPHICS]
156                                 << "\twill guess format from file extension: "
157                                 << ext << " -> " << cit->name() << std::endl;
158                         return cit->name();
159                 }
160         }
161         return string();
162 }
163
164 namespace {
165
166 string fixCommand(string const & cmd, string const & ext,
167                   os::auto_open_mode mode)
168 {
169         // configure.py says we do not want a viewer/editor
170         if (cmd.empty())
171                 return cmd;
172
173         // Does the OS manage this format?
174         if (os::canAutoOpenFile(ext, mode))
175                 return "auto";
176
177         // if configure.py found nothing, clear the command
178         if (token(cmd, ' ', 0) == "auto")
179                 return string();
180
181         // use the command found by configure.py
182         return cmd;
183 }
184
185 }
186
187 void Formats::setAutoOpen()
188 {
189         FormatList::iterator fit = formatlist.begin();
190         FormatList::iterator const fend = formatlist.end();
191         for ( ; fit != fend ; ++fit) {
192                 fit->setViewer(fixCommand(fit->viewer(), fit->extension(), os::VIEW));
193                 fit->setEditor(fixCommand(fit->editor(), fit->extension(), os::EDIT));
194         }
195 }
196
197
198 int Formats::getNumber(string const & name) const
199 {
200         FormatList::const_iterator cit =
201                 find_if(formatlist.begin(), formatlist.end(),
202                         FormatNamesEqual(name));
203         if (cit != formatlist.end())
204                 return distance(formatlist.begin(), cit);
205         else
206                 return -1;
207 }
208
209
210 void Formats::add(string const & name)
211 {
212         if (!getFormat(name))
213                 add(name, name, name, string(), string(), string(), true);
214 }
215
216
217 void Formats::add(string const & name, string const & extension,
218                   string const & prettyname, string const & shortcut,
219                   string const & viewer, string const & editor, bool document)
220 {
221         FormatList::iterator it =
222                 find_if(formatlist.begin(), formatlist.end(),
223                         FormatNamesEqual(name));
224         if (it == formatlist.end())
225                 formatlist.push_back(Format(name, extension, prettyname,
226                                             shortcut, viewer, editor,
227                                             document));
228         else
229                 *it = Format(name, extension, prettyname, shortcut, viewer,
230                              editor, document);
231 }
232
233
234 void Formats::erase(string const & name)
235 {
236         FormatList::iterator it =
237                 find_if(formatlist.begin(), formatlist.end(),
238                         FormatNamesEqual(name));
239         if (it != formatlist.end())
240                 formatlist.erase(it);
241 }
242
243
244 void Formats::sort()
245 {
246         std::sort(formatlist.begin(), formatlist.end());
247 }
248
249
250 void Formats::setViewer(string const & name, string const & command)
251 {
252         add(name);
253         FormatList::iterator it =
254                 find_if(formatlist.begin(), formatlist.end(),
255                         FormatNamesEqual(name));
256         if (it != formatlist.end())
257                 it->setViewer(command);
258 }
259
260
261 bool Formats::view(Buffer const & buffer, string const & filename,
262                    string const & format_name) const
263 {
264         BOOST_ASSERT(absolutePath(filename));
265         if (filename.empty() || !fs::exists(filename)) {
266                 Alert::error(_("Cannot view file"),
267                         bformat(_("File does not exist: %1$s"),
268                                 lyx::from_utf8(filename)));
269                 return false;
270         }
271
272         Format const * format = getFormat(format_name);
273         if (format && format->viewer().empty() &&
274             format->isChildFormat())
275                 format = getFormat(format->parentFormat());
276         if (!format || format->viewer().empty()) {
277 // FIXME: I believe this is the wrong place to show alerts, it should be done
278 // by the caller (this should be "utility" code)
279                 Alert::error(_("Cannot view file"),
280                         bformat(_("No information for viewing %1$s"),
281                                 prettyName(format_name)));
282                 return false;
283         }
284         // viewer is 'auto'
285         if (format->viewer() == "auto") {
286                 if (os::autoOpenFile(filename, os::VIEW))
287                         return true;
288                 else {
289                         Alert::error(_("Cannot view file"),
290                                 bformat(_("Auto-view file %1$s failed"),
291                                         lyx::from_utf8(filename)));
292                         return false;
293                 }
294         }
295
296         string command = libScriptSearch(format->viewer());
297
298         if (format_name == "dvi" &&
299             !lyxrc.view_dvi_paper_option.empty()) {
300                 command += ' ' + lyxrc.view_dvi_paper_option;
301                 string paper_size = buffer.params().paperSizeName();
302                 if (paper_size == "letter")
303                         paper_size = "us";
304                 command += ' ' + paper_size;
305                 if (buffer.params().orientation == ORIENTATION_LANDSCAPE)
306                         command += 'r';
307         }
308
309         if (!contains(command, token_from))
310                 command += ' ' + token_from;
311
312         command = subst(command, token_from, quoteName(filename));
313         command = subst(command, token_path, quoteName(onlyPath(filename)));
314         command = subst(command, token_socket, quoteName(lyxsocket->address()));
315         lyxerr[Debug::FILES] << "Executing command: " << command << std::endl;
316         buffer.message(_("Executing command: ") + lyx::from_utf8(command));
317
318         Systemcall one;
319         int const res = one.startscript(Systemcall::DontWait, command);
320
321         if (res) {
322                 Alert::error(_("Cannot view file"),
323                              bformat(_("An error occurred whilst running %1$s"),
324                                makeDisplayPath(command, 50)));
325                 return false;
326         }
327         return true;
328 }
329
330
331 bool Formats::edit(Buffer const & buffer, string const & filename,
332                          string const & format_name) const
333 {
334         BOOST_ASSERT(absolutePath(filename));
335         if (filename.empty() || !fs::exists(filename)) {
336                 Alert::error(_("Cannot edit file"),
337                         bformat(_("File does not exist: %1$s"),
338                                 lyx::from_utf8(filename)));
339                 return false;
340         }
341
342         Format const * format = getFormat(format_name);
343         if (format && format->editor().empty() &&
344             format->isChildFormat())
345                 format = getFormat(format->parentFormat());
346         if (!format || format->editor().empty()) {
347 // FIXME: I believe this is the wrong place to show alerts, it should
348 // be done by the caller (this should be "utility" code)
349                 Alert::error(_("Cannot edit file"),
350                         bformat(_("No information for editing %1$s"),
351                                 prettyName(format_name)));
352                 return false;
353         }
354         // editor is 'auto'
355         if (format->editor() == "auto") {
356                 if (os::autoOpenFile(filename, os::EDIT))
357                         return true;
358                 else {
359                         Alert::error(_("Cannot edit file"),
360                                 bformat(_("Auto-edit file %1$s failed"),
361                                         lyx::from_utf8(filename)));
362                         return false;
363                 }
364         }
365
366         string command = format->editor();
367
368         if (!contains(command, token_from))
369                 command += ' ' + token_from;
370
371         command = subst(command, token_from, quoteName(filename));
372         command = subst(command, token_path, quoteName(onlyPath(filename)));
373         command = subst(command, token_socket, quoteName(lyxsocket->address()));
374         lyxerr[Debug::FILES] << "Executing command: " << command << std::endl;
375         buffer.message(_("Executing command: ") + lyx::from_utf8(command));
376
377         Systemcall one;
378         int const res = one.startscript(Systemcall::DontWait, command);
379
380         if (res) {
381                 Alert::error(_("Cannot edit file"),
382                              bformat(_("An error occurred whilst running %1$s"),
383                                makeDisplayPath(command, 50)));
384                 return false;
385         }
386         return true;
387 }
388
389
390 docstring const Formats::prettyName(string const & name) const
391 {
392         Format const * format = getFormat(name);
393         if (format)
394                 return lyx::from_utf8(format->prettyname());
395         else
396                 return lyx::from_utf8(name);
397 }
398
399
400 string const Formats::extension(string const & name) const
401 {
402         Format const * format = getFormat(name);
403         if (format)
404                 return format->extension();
405         else
406                 return name;
407 }
408
409
410
411
412 Formats formats;
413
414 Formats system_formats;