]> git.lyx.org Git - lyx.git/blob - src/callback.cpp
Streamlining CollapseStatus stuff
[lyx.git] / src / callback.cpp
1 /**
2  * \file callback.cpp
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * \author Lars Gullik Bjønnes
7  * \author Angus Leeming
8  * \author John Levon
9  * \author André Pönitz
10  * \author Jürgen Vigna
11  *
12  * Full author contact details are available in file CREDITS.
13  */
14
15 #include <config.h>
16
17 #include "callback.h"
18
19 #include "Buffer.h"
20 #include "BufferList.h"
21 #include "BufferView.h"
22 #include "buffer_funcs.h"
23 #include "Cursor.h"
24 #include "CutAndPaste.h"
25 #include "debug.h"
26 #include "gettext.h"
27 #include "Session.h"
28 #include "LaTeXFeatures.h"
29 #include "LyX.h"
30 #include "Layout.h"
31 #include "LyXRC.h"
32 #include "Text.h"
33 #include "Undo.h"
34
35 #include "frontends/alert.h"
36 #include "frontends/Application.h"
37 #include "frontends/FileDialog.h"
38 #include "frontends/LyXView.h"
39
40 #include "support/FileFilterList.h"
41 #include "support/filetools.h"
42 #include "support/Forkedcall.h"
43 #include "support/fs_extras.h"
44 #include "support/lyxlib.h"
45 #include "support/Package.h"
46 #include "support/Path.h"
47 #include "support/Systemcall.h"
48
49 #if !defined (HAVE_FORK)
50 # define fork() -1
51 #endif
52
53 #include <boost/shared_ptr.hpp>
54 #include <boost/filesystem/operations.hpp>
55
56 #include <cerrno>
57 #include <fstream>
58
59 using std::back_inserter;
60 using std::copy;
61 using std::endl;
62 using std::make_pair;
63 using std::string;
64 using std::ifstream;
65 using std::ios;
66 using std::istream_iterator;
67
68 using boost::shared_ptr;
69 namespace fs = boost::filesystem;
70
71 namespace lyx {
72
73 using support::bformat;
74 using support::FileFilterList;
75 using support::FileName;
76 using support::ForkedProcess;
77 using support::isLyXFilename;
78 using support::libFileSearch;
79 using support::makeAbsPath;
80 using support::makeDisplayPath;
81 using support::onlyFilename;
82 using support::onlyPath;
83 using support::package;
84 using support::removeAutosaveFile;
85 using support::rename;
86 using support::split;
87 using support::Systemcall;
88 using support::tempName;
89 using support::unlink;
90 using frontend::LyXView;
91
92 namespace Alert = frontend::Alert;
93
94 // this should be static, but I need it in Buffer.cpp
95 bool quitting;  // flag, that we are quitting the program
96
97 //
98 // Menu callbacks
99 //
100
101 bool menuWrite(Buffer * buffer)
102 {
103         if (buffer->save()) {
104                 LyX::ref().session().lastFiles().add(FileName(buffer->fileName()));
105                 return true;
106         }
107
108         // FIXME: we don't tell the user *WHY* the save failed !!
109
110         docstring const file = makeDisplayPath(buffer->fileName(), 30);
111
112         docstring text = bformat(_("The document %1$s could not be saved.\n\n"
113                                    "Do you want to rename the document and "
114                                    "try again?"), file);
115         int const ret = Alert::prompt(_("Rename and save?"),
116                 text, 0, 1, _("&Rename"), _("&Cancel"));
117
118         if (ret == 0)
119                 return writeAs(buffer);
120         return false;
121 }
122
123
124
125 /** Write a buffer to a new file name and rename the buffer
126     according to the new file name.
127
128     This function is e.g. used by menu callbacks and
129     LFUN_BUFFER_WRITE_AS.
130
131     If 'newname' is empty (the default), the user is asked via a
132     dialog for the buffer's new name and location.
133
134     If 'newname' is non-empty and has an absolute path, that is used.
135     Otherwise the base directory of the buffer is used as the base
136     for any relative path in 'newname'.
137 */
138
139 bool writeAs(Buffer * buffer, string const & newname)
140 {
141         string fname = buffer->fileName();
142         string const oldname = fname;
143
144         if (newname.empty()) {  /// No argument? Ask user through dialog
145
146                 // FIXME UNICODE
147                 FileDialog fileDlg(_("Choose a filename to save document as"),
148                                    LFUN_BUFFER_WRITE_AS,
149                                    make_pair(_("Documents|#o#O"), 
150                                              from_utf8(lyxrc.document_path)),
151                                    make_pair(_("Templates|#T#t"), 
152                                              from_utf8(lyxrc.template_path)));
153
154                 if (!isLyXFilename(fname))
155                         fname += ".lyx";
156
157                 FileFilterList const filter (_("LyX Documents (*.lyx)"));
158
159                 FileDialog::Result result =
160                         fileDlg.save(from_utf8(onlyPath(fname)),
161                                      filter,
162                                      from_utf8(onlyFilename(fname)));
163
164                 if (result.first == FileDialog::Later)
165                         return false;
166
167                 fname = to_utf8(result.second);
168
169                 if (fname.empty())
170                         return false;
171
172                 // Make sure the absolute filename ends with appropriate suffix
173                 fname = makeAbsPath(fname).absFilename();
174                 if (!isLyXFilename(fname))
175                         fname += ".lyx";
176
177         } else 
178                 fname = makeAbsPath(newname, onlyPath(oldname)).absFilename();
179
180         if (fs::exists(FileName(fname).toFilesystemEncoding())) {
181                 docstring const file = makeDisplayPath(fname, 30);
182                 docstring text = bformat(_("The document %1$s already "
183                                            "exists.\n\nDo you want to "
184                                            "overwrite that document?"), 
185                                          file);
186                 int const ret = Alert::prompt(_("Overwrite document?"),
187                         text, 0, 1, _("&Overwrite"), _("&Cancel"));
188
189                 if (ret == 1)
190                         return false;
191         }
192
193         // Ok, change the name of the buffer
194         buffer->setFileName(fname);
195         buffer->markDirty();
196         bool unnamed = buffer->isUnnamed();
197         buffer->setUnnamed(false);
198
199         if (!menuWrite(buffer)) {
200                 buffer->setFileName(oldname);
201                 buffer->setUnnamed(unnamed);
202                 return false;
203         }
204
205         removeAutosaveFile(oldname);
206         return true;
207 }
208
209
210 namespace {
211
212 class AutoSaveBuffer : public ForkedProcess {
213 public:
214         ///
215         AutoSaveBuffer(BufferView & bv, FileName const & fname)
216                 : bv_(bv), fname_(fname) {}
217         ///
218         virtual shared_ptr<ForkedProcess> clone() const
219         {
220                 return shared_ptr<ForkedProcess>(new AutoSaveBuffer(*this));
221         }
222         ///
223         int start();
224 private:
225         ///
226         virtual int generateChild();
227         ///
228         BufferView & bv_;
229         FileName fname_;
230 };
231
232
233 int AutoSaveBuffer::start()
234 {
235         command_ = to_utf8(bformat(_("Auto-saving %1$s"), 
236                                    from_utf8(fname_.absFilename())));
237         return run(DontWait);
238 }
239
240
241 int AutoSaveBuffer::generateChild()
242 {
243         // tmp_ret will be located (usually) in /tmp
244         // will that be a problem?
245         pid_t const pid = fork(); // If you want to debug the autosave
246         // you should set pid to -1, and comment out the
247         // fork.
248         if (pid == 0 || pid == -1) {
249                 // pid = -1 signifies that lyx was unable
250                 // to fork. But we will do the save
251                 // anyway.
252                 bool failed = false;
253
254                 FileName const tmp_ret(tempName(FileName(), "lyxauto"));
255                 if (!tmp_ret.empty()) {
256                         bv_.buffer()->writeFile(tmp_ret);
257                         // assume successful write of tmp_ret
258                         if (!rename(tmp_ret, fname_)) {
259                                 failed = true;
260                                 // most likely couldn't move between
261                                 // filesystems unless write of tmp_ret
262                                 // failed so remove tmp file (if it
263                                 // exists)
264                                 unlink(tmp_ret);
265                         }
266                 } else {
267                         failed = true;
268                 }
269
270                 if (failed) {
271                         // failed to write/rename tmp_ret so try writing direct
272                         if (!bv_.buffer()->writeFile(fname_)) {
273                                 // It is dangerous to do this in the child,
274                                 // but safe in the parent, so...
275                                 if (pid == -1) // emit message signal.
276                                         bv_.buffer()
277                                           ->message(_("Autosave failed!"));
278                         }
279                 }
280                 if (pid == 0) { // we are the child so...
281                         _exit(0);
282                 }
283         }
284         return pid;
285 }
286
287 } // namespace anon
288
289
290 void autoSave(BufferView * bv)
291         // should probably be moved into BufferList (Lgb)
292         // Perfect target for a thread...
293 {
294         if (!bv->buffer())
295                 return;
296
297         if (bv->buffer()->isBakClean() || bv->buffer()->isReadonly()) {
298                 // We don't save now, but we'll try again later
299                 bv->buffer()->resetAutosaveTimers();
300                 return;
301         }
302
303         // emit message signal.
304         bv->buffer()->message(_("Autosaving current document..."));
305
306         // create autosave filename
307         string fname = bv->buffer()->filePath();
308         fname += '#';
309         fname += onlyFilename(bv->buffer()->fileName());
310         fname += '#';
311
312         AutoSaveBuffer autosave(*bv, FileName(fname));
313         autosave.start();
314
315         bv->buffer()->markBakClean();
316         bv->buffer()->resetAutosaveTimers();
317 }
318
319
320 //
321 // Copyright CHT Software Service GmbH
322 // Uwe C. Schroeder
323 //
324 // create new file with template
325 // SERVERCMD !
326 //
327 void newFile(LyXView & lv, string const & filename)
328 {
329         // Split argument by :
330         string name;
331         string tmpname = split(filename, name, ':');
332         LYXERR(Debug::INFO) << "Arg is " << filename
333                             << "\nName is " << name
334                             << "\nTemplate is " << tmpname << endl;
335
336         Buffer * const b = newFile(name, tmpname);
337         if (b)
338                 lv.setBuffer(b);
339 }
340
341
342 // Insert plain text file (if filename is empty, prompt for one)
343 void insertPlaintextFile(BufferView * bv, string const & f, bool asParagraph)
344 {
345         if (!bv->buffer())
346                 return;
347
348         docstring const tmpstr =
349           getContentsOfPlaintextFile(bv, f, asParagraph);
350
351         if (tmpstr.empty())
352                 return;
353
354         Cursor & cur = bv->cursor();
355         cap::replaceSelection(cur);
356         recordUndo(cur);
357         if (asParagraph)
358                 cur.innerText()->insertStringAsParagraphs(cur, tmpstr);
359         else
360                 cur.innerText()->insertStringAsLines(cur, tmpstr);
361 }
362
363
364 docstring const getContentsOfPlaintextFile(BufferView * bv, string const & f,
365                                            bool asParagraph)
366 {
367         FileName fname(f);
368
369         if (fname.empty()) {
370                 FileDialog fileDlg(_("Select file to insert"),
371                                    ( (asParagraph)
372                                      ? LFUN_FILE_INSERT_PLAINTEXT_PARA 
373                                      : LFUN_FILE_INSERT_PLAINTEXT) );
374
375                 FileDialog::Result result =
376                         fileDlg.open(from_utf8(bv->buffer()->filePath()),
377                                      FileFilterList(), docstring());
378
379                 if (result.first == FileDialog::Later)
380                         return docstring();
381
382                 fname = makeAbsPath(to_utf8(result.second));
383
384                 if (fname.empty())
385                         return docstring();
386         }
387
388         if (!fs::is_readable(fname.toFilesystemEncoding())) {
389                 docstring const error = from_ascii(strerror(errno));
390                 docstring const file = makeDisplayPath(fname.absFilename(), 50);
391                 docstring const text =
392                   bformat(_("Could not read the specified document\n"
393                             "%1$s\ndue to the error: %2$s"), file, error);
394                 Alert::error(_("Could not read file"), text);
395                 return docstring();
396         }
397
398         ifstream ifs(fname.toFilesystemEncoding().c_str());
399         if (!ifs) {
400                 docstring const error = from_ascii(strerror(errno));
401                 docstring const file = makeDisplayPath(fname.absFilename(), 50);
402                 docstring const text =
403                   bformat(_("Could not open the specified document\n"
404                             "%1$s\ndue to the error: %2$s"), file, error);
405                 Alert::error(_("Could not open file"), text);
406                 return docstring();
407         }
408
409         ifs.unsetf(ios::skipws);
410         istream_iterator<char> ii(ifs);
411         istream_iterator<char> end;
412 #if !defined(USE_INCLUDED_STRING) && !defined(STD_STRING_IS_GOOD)
413         // We use this until the compilers get better...
414         std::vector<char> tmp;
415         copy(ii, end, back_inserter(tmp));
416         string const tmpstr(tmp.begin(), tmp.end());
417 #else
418         // This is what we want to use and what we will use once the
419         // compilers get good enough.
420         //string tmpstr(ii, end); // yet a reason for using std::string
421         // alternate approach to get the file into a string:
422         string tmpstr;
423         copy(ii, end, back_inserter(tmpstr));
424 #endif
425
426         // FIXME UNICODE: We don't know the encoding of the file
427         docstring file_content = from_utf8(tmpstr);
428         if (file_content.empty()) {
429                 Alert::error(_("Reading not UTF-8 encoded file"),
430                              _("The file is not UTF-8 encoded.\n"
431                                "It will be read as local 8Bit-encoded.\n"
432                                "If this does not give the correct result\n"
433                                "then please change the encoding of the file\n"
434                                "to UTF-8 with a program other than LyX.\n"));
435                 file_content = from_local8bit(tmpstr);
436         }
437
438         return normalize_c(file_content);
439 }
440
441
442 // This function runs "configure" and then rereads lyx.defaults to
443 // reconfigure the automatic settings.
444 void reconfigure(LyXView & lv)
445 {
446         // emit message signal.
447         lv.message(_("Running configure..."));
448
449         // Run configure in user lyx directory
450         support::Path p(package().user_support());
451         string const configure_command = package().configure_command();
452         Systemcall one;
453         one.startscript(Systemcall::Wait, configure_command);
454         p.pop();
455         // emit message signal.
456         lv.message(_("Reloading configuration..."));
457         lyxrc.read(libFileSearch(string(), "lyxrc.defaults"));
458         // Re-read packages.lst
459         LaTeXFeatures::getAvailable();
460
461         Alert::information(_("System reconfigured"),
462                            _("The system has been reconfigured.\n"
463                              "You need to restart LyX to make use of any\n"
464                              "updated document class specifications."));
465 }
466
467
468 } // namespace lyx