]> git.lyx.org Git - lyx.git/blob - src/bufferlist.C
55bbcb650db14663b430db0c4038360382709803
[lyx.git] / src / bufferlist.C
1 /* This file is part of
2  * ====================================================== 
3  * 
4  *           LyX, The Document Word Processor
5  *
6  *          Copyright 1995 Matthias Ettrich
7  *          Copyright 1995-1999 The LyX Team. 
8  *
9  *           This file is Copyright 1996-1999
10  *           Lars Gullik Bjønnes
11  *
12  * ====================================================== 
13  */
14
15 #ifdef __GNUG__
16 #pragma implementation
17 #endif
18
19 #include <config.h>
20 #include <sys/types.h>
21 #include <utime.h>
22 #include "bufferlist.h"
23 #include "lyx_main.h"
24 #include "minibuffer.h"
25 #include "support/FileInfo.h"
26 #include "support/filetools.h"
27 #include "lyx_gui_misc.h"
28 #include "lastfiles.h"
29 #include "debug.h"
30 #include "lyxrc.h"
31 #include "lyxscreen.h"
32 #include "lyxtext.h"
33 #include "lyx_cb.h"
34 #include "gettext.h"
35
36 extern BufferView * current_view;
37 extern MiniBuffer * minibuffer;
38 extern void SmallUpdate(signed char);
39 extern void BeforeChange();
40 extern int RunLinuxDoc(int, string const &);
41
42 //
43 // Class BufferStorage
44 //
45
46 void BufferStorage::release(Buffer * buf)
47 {
48         for(Container::iterator it = container.begin();
49             it != container.end(); ++it) {
50                 if ((*it) == buf) {
51                         Buffer * tmpbuf = (*it);
52                         container.erase(it);
53                         delete tmpbuf;
54                         break;
55                 }
56         }
57 }
58
59
60 Buffer * BufferStorage::newBuffer(string const & s,
61                                  LyXRC * lyxrc,
62                                  bool ronly)
63 {
64         Buffer * tmpbuf = new Buffer(s, lyxrc, ronly);
65         tmpbuf->params.useClassDefaults();
66         lyxerr.debug() << "Assigning to buffer "
67                        << container.size() + 1 << endl;
68         container.push_back(tmpbuf);
69         return tmpbuf;
70 }
71
72
73 //
74 // Class BufferList
75 //
76
77 BufferList::BufferList()
78 {
79         _state = BufferList::OK;
80 }
81
82
83 bool BufferList::empty()
84 {
85         return bstore.empty();
86 }
87
88
89 extern void MenuWrite(Buffer *);
90
91 bool BufferList::QwriteAll()
92 {
93         bool askMoreConfirmation = false;
94         string unsaved;
95         for(BufferStorage::iterator it = bstore.begin();
96             it != bstore.end(); ++it) {
97                 if (!(*it)->isLyxClean()) {
98                         switch(AskConfirmation(_("Changes in document:"),
99                                                MakeDisplayPath((*it)->fileName(),
100                                                                50),
101                                                _("Save document?"))) {
102                         case 1: // Yes
103                                 MenuWrite((*it));
104                                 break;
105                         case 2: // No
106                                 askMoreConfirmation = true;
107                                 unsaved += MakeDisplayPath((*it)->fileName(), 50);
108                                 unsaved += "\n";
109                                 break;
110                         case 3: // Cancel
111                                 return false;
112                         }
113                 }
114         }
115         if (askMoreConfirmation &&
116             lyxrc->exit_confirmation &&
117             !AskQuestion(_("Some documents were not saved:"),
118                          unsaved, _("Exit anyway?"))) {
119                 return false;
120         }
121
122         return true;
123 }
124
125
126 // Should probably be moved to somewhere else: BufferView? LyXView?
127 bool BufferList::write(Buffer * buf, bool makeBackup)
128 {
129         minibuffer->Set(_("Saving document"),
130                         MakeDisplayPath(buf->fileName()), "...");
131
132         // We don't need autosaves in the immediate future. (Asger)
133         buf->resetAutosaveTimers();
134
135         // make a backup
136         if (makeBackup) {
137                 string s = buf->fileName() + '~';
138                 // Rename is the wrong way of making a backup,
139                 // this is the correct way.
140                 /* truss cp fil fil2:
141                    lstat("LyXVC3.lyx", 0xEFFFF898)                 Err#2 ENOENT
142                    stat("LyXVC.lyx", 0xEFFFF688)                   = 0
143                    open("LyXVC.lyx", O_RDONLY)                     = 3
144                    open("LyXVC3.lyx", O_WRONLY|O_CREAT|O_TRUNC, 0600) = 4
145                    fstat(4, 0xEFFFF508)                            = 0
146                    fstat(3, 0xEFFFF508)                            = 0
147                    read(3, " # T h i s   f i l e   w".., 8192)     = 5579
148                    write(4, " # T h i s   f i l e   w".., 5579)    = 5579
149                    read(3, 0xEFFFD4A0, 8192)                       = 0
150                    close(4)                                        = 0
151                    close(3)                                        = 0
152                    chmod("LyXVC3.lyx", 0100644)                    = 0
153                    lseek(0, 0, SEEK_CUR)                           = 46440
154                    _exit(0)
155                  */
156
157                 // Should proabaly have some more error checking here.
158                 // Should be cleaned up in 0.13, at least a bit.
159                 // Doing it this way, also makes the inodes stay the same.
160                 // This is still not a very good solution, in particular we
161                 // might loose the owner of the backup.
162                 FileInfo finfo(buf->fileName());
163                 if (finfo.exist()) {
164                         mode_t fmode = finfo.getMode();
165
166                         struct utimbuf *times = 
167                                 (struct utimbuf*)new char[sizeof(struct utimbuf)];
168                         times->actime = finfo.getAccessTime();
169                         times->modtime = finfo.getModificationTime();
170                         long blksize = finfo.getBlockSize();
171                         lyxerr.debug() << "BlockSize: " << blksize << endl;
172                         FilePtr fin(buf->fileName(), FilePtr::read);
173                         FilePtr fout(s, FilePtr::truncate);
174                         if (fin() && fout()) {
175                                 char * cbuf = new char[blksize+1];
176                                 size_t c_read = 0;
177                                 size_t c_write = 0;
178                                 do {
179                                         c_read = fread(cbuf, 1, blksize, fin);
180                                         if (c_read != 0)
181                                                 c_write = 
182                                                         fwrite(cbuf, 1, c_read, fout);
183                                 } while (c_read);
184                                 fin.close();
185                                 fout.close();
186                                 chmod(s.c_str(), fmode);
187                                 
188                                 if (utime(s.c_str(), times)) {
189                                         lyxerr << "utime error." << endl;
190                                 }
191                                 delete [] cbuf;
192                         } else {
193                                 lyxerr << "LyX was not able to make backupcopy. Beware." << endl;
194                         }
195                         delete[] times;
196                 }
197         }
198         
199         if (buf->writeFile(buf->fileName(), false)) {
200                 buf->markLyxClean();
201
202                 minibuffer->Set(_("Document saved as"),
203                                 MakeDisplayPath(buf->fileName()));
204
205                 // now delete the autosavefile
206                 string a = OnlyPath(buf->fileName());
207                 a += '#';
208                 a += OnlyFilename(buf->fileName());
209                 a += '#';
210                 FileInfo fileinfo(a);
211                 if (fileinfo.exist()) {
212                         if (remove(a.c_str()) != 0) {
213                                 WriteFSAlert(_("Could not delete "
214                                                "auto-save file!"), a);
215                         }
216                 }
217         } else {
218                 // Saving failed, so backup is not backup
219                 if (makeBackup) {
220                         string s = buf->fileName() + '~';
221                         rename(s.c_str(), buf->fileName().c_str());
222                 }
223                 minibuffer->Set(_("Save failed!"));
224                 return false;
225         }
226
227         return true;
228 }
229
230
231 void BufferList::closeAll()
232 {
233         _state = BufferList::CLOSING;
234         while (!bstore.empty()) {
235                 close(bstore.front());
236         }
237         _state = BufferList::OK;
238 }
239
240
241 void BufferList::resize()
242 {
243         for(BufferStorage::iterator it = bstore.begin();
244             it != bstore.end(); ++it) {
245                 (*it)->resize();
246         }
247 }
248
249
250 bool BufferList::close(Buffer * buf)
251 {
252         buf->InsetUnlock();
253         
254         if (buf->paragraph && !buf->isLyxClean() && !quitting) {
255                 ProhibitInput();
256                 switch(AskConfirmation(_("Changes in document:"),
257                               MakeDisplayPath(buf->fileName(), 50),
258                                       _("Save document?"))){
259                 case 1: // Yes
260                         if (write(buf)) {
261                                 lastfiles->newFile(buf->fileName());
262                         } else {
263                                 AllowInput();
264                                 return false;
265                         }
266                         break;
267                 case 3: // Cancel
268                         AllowInput();
269                         return false;
270                 }
271                 AllowInput();
272         }
273
274         bstore.release(buf);
275         return true;
276 }
277
278
279 void BufferList::makePup(int pup)
280         /* This should be changed to return a char const *const
281            in the same way as for lastfiles.[hC]
282            */
283 {
284         int ant = 0;
285         for(BufferStorage::iterator it = bstore.begin();
286             it != bstore.end(); ++it) {
287                 string relbuf = MakeDisplayPath((*it)->fileName(), 30);
288                 fl_addtopup(pup, relbuf.c_str());
289                 ++ant;
290         }
291         if (ant == 0) fl_addtopup(pup, _("No Documents Open!%t"));
292 }
293
294
295 Buffer * BufferList::first()
296 {
297         if (bstore.empty()) return 0;
298         return bstore.front();
299 }
300
301
302 Buffer * BufferList::getBuffer(int choice)
303 {
304         if (choice >= bstore.size()) return 0;
305         return bstore[choice];
306 }
307
308
309 void BufferList::updateInset(Inset * inset, bool mark_dirty)
310 {
311         for (BufferStorage::iterator it = bstore.begin();
312              it != bstore.end(); ++it) {
313 #ifdef MOVE_TEXT
314                 if ((*it)->getUser() && (*it)->getUser()->text->UpdateInset(inset)) {
315                         if (mark_dirty)
316                                 (*it)->markDirty();
317                         break;
318                 }
319 #else
320                 if ((*it)->text && (*it)->text->UpdateInset(inset)) {
321                         if (mark_dirty)
322                                 (*it)->markDirty();
323                         break;
324                 }
325 #endif
326         }
327 }
328
329
330 int BufferList::unlockInset(UpdatableInset * inset)
331 {
332         if (!inset) return 1;
333         for(BufferStorage::iterator it = bstore.begin();
334             it != bstore.end(); ++it) {
335                 if ((*it)->the_locking_inset == inset) {
336                         (*it)->InsetUnlock();
337                         return 0;
338                 }
339         }
340         return 1;
341 }
342
343
344 void BufferList::updateIncludedTeXfiles(string const & mastertmpdir)
345 {
346         for(BufferStorage::iterator it = bstore.begin();
347             it != bstore.end(); ++it) {
348                 if (!(*it)->isDepClean(mastertmpdir)) {
349                         string writefile = mastertmpdir;
350                         writefile += '/';
351                         writefile += ChangeExtension((*it)->fileName(),
352                                                      ".tex", true);
353                         (*it)->makeLaTeXFile(writefile, mastertmpdir,
354                                              false, true);
355                         (*it)->markDepClean(mastertmpdir);
356                                                      
357                 }
358         }
359 }
360
361
362 void BufferList::emergencyWriteAll()
363 {
364         for (BufferStorage::iterator it = bstore.begin();
365              it != bstore.end(); ++it) {
366                 if (!(*it)->isLyxClean()) {
367                         bool madeit = false;
368                         
369                         lyxerr <<_("lyx: Attempting to save"
370                                       " document ")
371                                << (*it)->fileName()
372                                << _(" as...") << endl;
373                         
374                         for (int i = 0; i < 3 && !madeit; ++i) {
375                                 string s;
376                                 
377                                 // We try to save three places:
378                                 // 1) Same place as document.
379                                 // 2) In HOME directory.
380                                 // 3) In "/tmp" directory.
381                                 if (i == 0) {
382                                         s = (*it)->fileName();
383                                 } else if (i == 1) {
384                                         s = AddName(GetEnvPath("HOME"),
385                                                     (*it)->fileName());
386                                 } else { // MakeAbsPath to prepend the current drive letter on OS/2
387                                         s = AddName(MakeAbsPath("/tmp/"),
388                                                     (*it)->fileName());
389                                 }
390                                 s += ".emergency";
391                                 
392                                 lyxerr << "  " << i + 1 << ") " << s << endl;
393                                 
394                                 if ((*it)->writeFile(s, true)) {
395                                         (*it)->markLyxClean();
396                                         lyxerr << _("  Save seems successful. "
397                                                     "Phew.") << endl;
398                                         madeit = true;
399                                 } else if (i != 2) {
400                                         lyxerr << _("  Save failed! Trying...")
401                                                << endl;
402                                 } else {
403                                         lyxerr << _("  Save failed! Bummer. Document is lost.") << endl;
404                                 }
405                         }
406                 }
407         }
408 }
409
410
411 Buffer * BufferList::readFile(string const & s, bool ronly)
412 {
413         Buffer * b = bstore.newBuffer(s, lyxrc, ronly);
414
415         string ts = s;
416         string e = OnlyPath(s);
417         string a = e;
418         // File information about normal file
419         FileInfo fileInfo2(s);
420
421         // Check if emergency save file exists and is newer.
422         e += OnlyFilename(s) + ".emergency";
423         FileInfo fileInfoE(e);
424
425         bool use_emergency = false;
426
427         if (fileInfoE.exist() && fileInfo2.exist()) {
428                 if (fileInfoE.getModificationTime()
429                     > fileInfo2.getModificationTime()) {
430                         if (AskQuestion(_("An emergency save of this document exists!"),
431                                         MakeDisplayPath(s, 50),
432                                         _("Try to load that instead?"))) {
433                                 ts = e;
434                                 // the file is not saved if we load the
435                                 // emergency file.
436                                 b->markDirty();
437                                 use_emergency = true;
438                         } else {
439                                 // Here, we should delete the emergency save
440                                 unlink(e.c_str());
441                         }
442                 }
443         }
444
445         if (!use_emergency) {
446                 // Now check if autosave file is newer.
447                 a += '#';
448                 a += OnlyFilename(s);
449                 a += '#';
450                 FileInfo fileInfoA(a);
451                 if (fileInfoA.exist() && fileInfo2.exist()) {
452                         if (fileInfoA.getModificationTime()
453                             > fileInfo2.getModificationTime()) {
454                                 if (AskQuestion(_("Autosave file is newer."),
455                                                 MakeDisplayPath(s, 50),
456                                                 _("Load that one instead?"))) {
457                                         ts = a;
458                                         // the file is not saved if we load the
459                                         // autosave file.
460                                         b->markDirty();
461                                 } else {
462                                         // Here, we should delete the autosave
463                                         unlink(a.c_str());
464                                 }
465                         }
466                 }
467         }
468         // not sure if this is the correct place to begin LyXLex
469         LyXLex lex(0, 0);
470         lex.setFile(ts);
471         if (b->readFile(lex))
472                 return b;
473         else {
474                 bstore.release(b);
475                 return 0;
476         }
477 }
478
479
480 bool BufferList::exists(string const & s)
481 {
482         for (BufferStorage::iterator it = bstore.begin();
483              it != bstore.end(); ++it) {
484                 if ((*it)->fileName() == s)
485                         return true;
486         }
487         return false;
488 }
489
490
491 Buffer * BufferList::getBuffer(string const & s)
492 {
493         for(BufferStorage::iterator it = bstore.begin();
494             it != bstore.end(); ++it) {
495                 if ((*it)->fileName() == s)
496                         return (*it);
497         }
498         return 0;
499 }
500
501
502 Buffer * BufferList::newFile(string const & name, string tname)
503 {
504         /* get a free buffer */ 
505         Buffer * b = bstore.newBuffer(name, lyxrc);
506
507         // use defaults.lyx as a default template if it exists.
508         if (tname.empty()) {
509                 tname = LibFileSearch("templates", "defaults.lyx");
510         }
511         if (!tname.empty() && IsLyXFilename(tname)){
512                 bool templateok = false;
513                 LyXLex lex(0, 0);
514                 lex.setFile(tname);
515                 if (lex.IsOK()) {
516                         if (b->readFile(lex)) {
517                                 templateok = true;
518                         }
519                 }
520                 if (!templateok) {
521                         WriteAlert(_("Error!"), _("Unable to open template"), 
522                                    MakeDisplayPath(tname));
523                         // no template, start with empty buffer
524                         b->paragraph = new LyXParagraph;
525                 }
526         }
527         else {  // start with empty buffer
528                 b->paragraph = new LyXParagraph;
529         }
530
531         b->markDirty();
532         b->setReadonly(false);
533         
534         return b;
535 }
536
537
538 Buffer * BufferList::loadLyXFile(string const & filename, bool tolastfiles)
539 {
540         // make sure our path is absolute
541         string s = MakeAbsPath(filename);
542
543         // Is this done too early?
544         // Is it LinuxDoc?
545         if (IsSGMLFilename(s)) {
546                 FileInfo fi(s);
547                 if (fi.exist() && fi.readable()) {
548                         if (!RunLinuxDoc(-1, s)) {
549                                 s = ChangeExtension (s, ".lyx", false);
550                         } else { // sgml2lyx failed
551                                 WriteAlert(_("Error!"),
552                                            _("Could not convert file"), s);
553                                 return 0;
554                         }
555                 } else {
556                         // just change the extension and it will be
557                         // handled like a regular lyx file that does
558                         // not exist.
559                         s = ChangeExtension(s, ".lyx", false);
560                 }
561         }
562         
563         // file already open?
564         if (exists(s)) {
565                 if (AskQuestion(_("Document is already open:"), 
566                                 MakeDisplayPath(s, 50),
567                                 _("Do you want to reload that document?"))) {
568                         // Reload is accomplished by closing and then loading
569                         if (!close(getBuffer(s))) {
570                                 return 0;
571                         }
572                         // Fall through to new load. (Asger)
573                 } else {
574                         // Here, we pretend that we just loaded the 
575                         // open document
576                         return getBuffer(s);
577                 }
578         }
579         Buffer * b = 0;
580         bool ro = false;
581         switch (IsFileWriteable(s)) {
582         case 0:
583                 minibuffer->Set(_("File `")+MakeDisplayPath(s, 50)+
584                                 _("' is read-only."));
585                 ro = true;
586                 // Fall through
587         case 1:
588                 b = readFile(s, ro);
589                 if (b) {
590                         b->lyxvc.file_found_hook(s);
591                 }
592                 break; //fine- it's r/w
593         case -1:
594                 // Here we probably should run
595                 if (LyXVC::file_not_found_hook(s)) {
596                         // Ask if the file should be checked out for
597                         // viewing/editing, if so: load it.
598                         lyxerr << "Do you want to checkout?" << endl;
599                 }
600                 if (AskQuestion(_("Cannot open specified file:"), 
601                                 MakeDisplayPath(s, 50),
602                                 _("Create new document with this name?")))
603                 {
604                         // Find a free buffer
605                         b = newFile(s, string());
606                 }
607                 break;
608         }
609
610         if (b && tolastfiles)
611                 lastfiles->newFile(b->fileName());
612
613         return b;
614 }