]> git.lyx.org Git - lyx.git/blob - src/bufferlist.C
more funcs to lowerchar, adjust
[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-2001 The LyX Team. 
8  *
9  *           This file is Copyright 1996-2001
10  *           Lars Gullik Bjønnes
11  *
12  * ====================================================== 
13  */
14
15 #ifdef __GNUG__
16 #pragma implementation
17 #endif
18
19 #include <config.h>
20
21 #include <assert.h>
22 #include <algorithm>
23 #include <functional>
24
25 #include "bufferlist.h"
26 #include "lyx_main.h"
27 #include "support/FileInfo.h"
28 #include "support/filetools.h"
29 #include "support/lyxmanip.h"
30 #include "support/lyxfunctional.h"
31 #include "support/LAssert.h"
32 #include "lyx_gui_misc.h"
33 #include "lastfiles.h"
34 #include "debug.h"
35 #include "lyxrc.h"
36 #include "lyxtext.h"
37 #include "lyx_cb.h"
38 #include "bufferview_funcs.h"
39 #include "BufferView.h"
40 #include "gettext.h"
41 #include "LyXView.h"
42 #include "vc-backend.h"
43 #include "TextCache.h"
44
45 using std::vector;
46 using std::find;
47 using std::endl;
48 using std::find_if;
49 using std::for_each;
50 using std::mem_fun;
51
52 extern BufferView * current_view;
53
54 //
55 // Class BufferStorage
56 //
57
58 void BufferStorage::release(Buffer * buf)
59 {
60         lyx::Assert(buf);
61         Container::iterator it = find(container.begin(), container.end(), buf);
62         if (it != container.end()) {
63                 // Make sure that we don't store a LyXText in
64                 // the textcache that points to the buffer
65                 // we just deleted.
66                 Buffer * tmp = (*it);
67                 container.erase(it);
68                 textcache.removeAllWithBuffer(tmp);
69                 delete tmp;
70         }
71 }
72
73
74 Buffer * BufferStorage::newBuffer(string const & s, bool ronly)
75 {
76         Buffer * tmpbuf = new Buffer(s, ronly);
77         tmpbuf->params.useClassDefaults();
78         lyxerr[Debug::INFO] << "Assigning to buffer "
79                             << container.size() << endl;
80         container.push_back(tmpbuf);
81         return tmpbuf;
82 }
83
84
85 //
86 // Class BufferList
87 //
88
89 BufferList::BufferList()
90         : state_(BufferList::OK)
91 {}
92
93
94 bool BufferList::empty() const
95 {
96         return bstore.empty();
97 }
98
99
100 bool BufferList::qwriteAll()
101 {
102         bool askMoreConfirmation = false;
103         string unsaved;
104         for (BufferStorage::iterator it = bstore.begin();
105             it != bstore.end(); ++it) {
106                 if (!(*it)->isLyxClean()) {
107                         string fname;
108                         if ((*it)->isUnnamed())
109                                 fname = OnlyFilename((*it)->fileName());
110                         else
111                                 fname = MakeDisplayPath((*it)->fileName(), 50);
112                         bool reask = true;
113                         while (reask) {
114                                 switch (AskConfirmation(_("Changes in document:"),
115                                                        fname,
116                                                        _("Save document?"))) {
117                                 case 1: // Yes
118                                         if ((*it)->isUnnamed())
119                                                 reask = !WriteAs(current_view, (*it));
120                                         else {
121                                                 reask = !MenuWrite(current_view, (*it));
122                                         }
123                                         break;
124                                 case 2: // No
125                                         // if we crash after this we could
126                                         // have no autosave file but I guess
127                                         // this is really inprobable (Jug)
128                                         if ((*it)->isUnnamed()) {
129                                                 removeAutosaveFile((*it)->fileName());
130                                         }
131                                         askMoreConfirmation = true;
132                                         unsaved += MakeDisplayPath(fname, 50);
133                                         unsaved += "\n";
134                                         reask = false;
135                                         break;
136                                 case 3: // Cancel
137                                         return false;
138                                 }
139                         }
140                 }
141         }
142         if (askMoreConfirmation &&
143             lyxrc.exit_confirmation &&
144             !AskQuestion(_("Some documents were not saved:"),
145                          unsaved, _("Exit anyway?"))) {
146                 return false;
147         }
148
149         return true;
150 }
151
152
153 void BufferList::closeAll()
154 {
155         state_ = BufferList::CLOSING;
156         // Since we are closing we can just as well delete all
157         // in the textcache this will also speed the closing/quiting up a bit.
158         textcache.clear();
159         
160         while (!bstore.empty()) {
161                 close(bstore.front());
162         }
163         state_ = BufferList::OK;
164 }
165
166
167 bool BufferList::close(Buffer * buf)
168 {
169         lyx::Assert(buf);
170         
171         // CHECK
172         // Trace back why we need to use buf->getUser here.
173         // Perhaps slight rewrite is in order? (Lgb)
174         
175         if (buf->getUser()) buf->getUser()->insetUnlock();
176         if (buf->paragraph && !buf->isLyxClean() && !quitting) {
177                 if (buf->getUser())
178                         buf->getUser()->owner()->prohibitInput();
179                 string fname;
180                 if (buf->isUnnamed())
181                         fname = OnlyFilename(buf->fileName());
182                 else
183                         fname = MakeDisplayPath(buf->fileName(), 50);
184                 bool reask = true;
185                 while (reask) {
186                         switch (AskConfirmation(_("Changes in document:"),
187                                                fname,
188                                                _("Save document?"))){
189                         case 1: // Yes
190                                 if (buf->isUnnamed())
191                                         reask = !WriteAs(current_view, buf);
192                                 else if (buf->save()) {
193                                         lastfiles->newFile(buf->fileName());
194                                         reask = false;
195                                 } else {
196                                         if (buf->getUser())
197                                                 buf->getUser()->owner()->allowInput();
198                                         return false;
199                                 }
200                                 break;
201                         case 2:
202                                 if (buf->isUnnamed()) {
203                                         removeAutosaveFile(buf->fileName());
204                                 }
205                                 reask = false;
206                                 break;
207                         case 3: // Cancel
208                                 if (buf->getUser())
209                                         buf->getUser()->owner()->allowInput();
210                                 return false;
211                         }
212                 }
213                 if (buf->getUser())
214                         buf->getUser()->owner()->allowInput();
215         }
216
217         bstore.release(buf);
218         return true;
219 }
220
221
222 vector<string> const BufferList::getFileNames() const
223 {
224         vector<string> nvec;
225         std::copy(bstore.begin(), bstore.end(),
226                   lyx::back_inserter_fun(nvec, &Buffer::fileName));
227         return nvec;
228 }
229
230
231 Buffer * BufferList::first()
232 {
233         if (bstore.empty()) return 0;
234         return bstore.front();
235 }
236
237
238 Buffer * BufferList::getBuffer(unsigned int choice)
239 {
240         if (choice >= bstore.size()) return 0;
241         return bstore[choice];
242 }
243
244
245 int BufferList::unlockInset(UpdatableInset * inset)
246 {
247         lyx::Assert(inset);
248         
249         //if (!inset) return 1;
250         for (BufferStorage::iterator it = bstore.begin();
251              it != bstore.end(); ++it) {
252                 if ((*it)->getUser()
253                     && (*it)->getUser()->theLockingInset() == inset) {
254                         (*it)->getUser()->insetUnlock();
255                         return 0;
256                 }
257         }
258         return 1;
259 }
260
261
262 void BufferList::updateIncludedTeXfiles(string const & mastertmpdir)
263 {
264         for (BufferStorage::iterator it = bstore.begin();
265              it != bstore.end(); ++it) {
266                 if (!(*it)->isDepClean(mastertmpdir)) {
267                         string writefile = mastertmpdir;
268                         writefile += '/';
269                         writefile += (*it)->getLatexName();
270                         (*it)->makeLaTeXFile(writefile, mastertmpdir,
271                                              false, true);
272                         (*it)->markDepClean(mastertmpdir);
273                 }
274         }
275 }
276
277
278 void BufferList::emergencyWriteAll()
279 {
280         for_each(bstore.begin(), bstore.end(),
281                  lyx::class_fun(*this, &BufferList::emergencyWrite));
282 }
283
284
285 void BufferList::emergencyWrite(Buffer * buf) 
286 {
287         // assert(buf) // this is not good since C assert takes an int
288                        // and a pointer is a long (JMarc)
289         assert(buf != 0); // use c assert to avoid a loop
290
291         
292         // No need to save if the buffer has not changed.
293         if (buf->isLyxClean()) return;
294         
295         lyxerr << fmt(_("lyx: Attempting to save document %s as..."),
296                       buf->isUnnamed() ? OnlyFilename(buf->fileName()).c_str()
297                       : buf->fileName().c_str()) << endl;
298         
299         // We try to save three places:
300
301         // 1) Same place as document. Unless it is an unnamed doc.
302         if (!buf->isUnnamed()) {
303                 string s = buf->fileName();
304                 s += ".emergency";
305                 lyxerr << "  " << s << endl;
306                 if (buf->writeFile(s, true)) {
307                         buf->markLyxClean();
308                         lyxerr << _("  Save seems successful. Phew.") << endl;
309                         return;
310                 } else {
311                         lyxerr << _("  Save failed! Trying...") << endl;
312                 }
313         }
314         
315         // 2) In HOME directory.
316         string s = AddName(GetEnvPath("HOME"), buf->fileName());
317         s += ".emergency";
318         lyxerr << " " << s << endl;
319         if (buf->writeFile(s, true)) {
320                 buf->markLyxClean();
321                 lyxerr << _("  Save seems successful. Phew.") << endl;
322                 return;
323         }
324         
325         lyxerr << _("  Save failed! Trying...") << endl;
326         
327         // 3) In "/tmp" directory.
328         // MakeAbsPath to prepend the current
329         // drive letter on OS/2
330         s = AddName(MakeAbsPath("/tmp/"), buf->fileName());
331         s += ".emergency";
332         lyxerr << " " << s << endl;
333         if (buf->writeFile(s, true)) {
334                 buf->markLyxClean();
335                 lyxerr << _("  Save seems successful. Phew.") << endl;
336                 return;
337         }
338         lyxerr << _("  Save failed! Bummer. Document is lost.") << endl;
339 }
340
341
342
343 Buffer * BufferList::readFile(string const & s, bool ronly)
344 {
345         Buffer * b = bstore.newBuffer(s, ronly);
346
347         string ts = s;
348         string e = OnlyPath(s);
349         string a = e;
350         // File information about normal file
351         FileInfo fileInfo2(s);
352
353         // Check if emergency save file exists and is newer.
354         e += OnlyFilename(s) + ".emergency";
355         FileInfo fileInfoE(e);
356
357         bool use_emergency = false;
358
359         if (fileInfoE.exist() && fileInfo2.exist()) {
360                 if (fileInfoE.getModificationTime()
361                     > fileInfo2.getModificationTime()) {
362                         if (AskQuestion(_("An emergency save of this document exists!"),
363                                         MakeDisplayPath(s, 50),
364                                         _("Try to load that instead?"))) {
365                                 ts = e;
366                                 // the file is not saved if we load the
367                                 // emergency file.
368                                 b->markDirty();
369                                 use_emergency = true;
370                         } else {
371                                 // Here, we should delete the emergency save
372                                 lyx::unlink(e);
373                         }
374                 }
375         }
376
377         if (!use_emergency) {
378                 // Now check if autosave file is newer.
379                 a += '#';
380                 a += OnlyFilename(s);
381                 a += '#';
382                 FileInfo fileInfoA(a);
383                 if (fileInfoA.exist() && fileInfo2.exist()) {
384                         if (fileInfoA.getModificationTime()
385                             > fileInfo2.getModificationTime()) {
386                                 if (AskQuestion(_("Autosave file is newer."),
387                                                 MakeDisplayPath(s, 50),
388                                                 _("Load that one instead?"))) {
389                                         ts = a;
390                                         // the file is not saved if we load the
391                                         // autosave file.
392                                         b->markDirty();
393                                 } else {
394                                         // Here, we should delete the autosave
395                                         lyx::unlink(a);
396                                 }
397                         }
398                 }
399         }
400         // not sure if this is the correct place to begin LyXLex
401         LyXLex lex(0, 0);
402         lex.setFile(ts);
403         if (b->readFile(lex))
404                 return b;
405         else {
406                 bstore.release(b);
407                 return 0;
408         }
409 }
410
411
412 bool BufferList::exists(string const & s) const
413 {
414         return find_if(bstore.begin(), bstore.end(),
415                        lyx::compare_memfun(&Buffer::fileName, s))
416                 != bstore.end();
417 }
418
419
420 bool BufferList::isLoaded(Buffer const * b) const
421 {
422         lyx::Assert(b);
423         
424         BufferStorage::const_iterator cit =
425                 find(bstore.begin(), bstore.end(), b);
426         return cit != bstore.end();
427 }
428
429
430 Buffer * BufferList::getBuffer(string const & s)
431 {
432         BufferStorage::iterator it =
433                 find_if(bstore.begin(), bstore.end(),
434                         lyx::compare_memfun(&Buffer::fileName, s));
435         return it != bstore.end() ? (*it) : 0;
436 }
437
438
439 Buffer * BufferList::newFile(string const & name, string tname, bool isNamed)
440 {
441         // get a free buffer
442         Buffer * b = bstore.newBuffer(name);
443
444         // use defaults.lyx as a default template if it exists.
445         if (tname.empty()) {
446                 tname = LibFileSearch("templates", "defaults.lyx");
447         }
448         if (!tname.empty()) {
449                 bool templateok = false;
450                 LyXLex lex(0, 0);
451                 lex.setFile(tname);
452                 if (lex.isOK()) {
453                         if (b->readFile(lex)) {
454                                 templateok = true;
455                         }
456                 }
457                 if (!templateok) {
458                         WriteAlert(_("Error!"), _("Unable to open template"), 
459                                    MakeDisplayPath(tname));
460                         // no template, start with empty buffer
461                         b->paragraph = new Paragraph;
462                 }
463         } else {  // start with empty buffer
464                 b->paragraph = new Paragraph;
465         }
466
467         if (!lyxrc.new_ask_filename && !isNamed) {
468                 b->setUnnamed();
469                 b->setFileName(name);
470         }
471
472         b->setReadonly(false);
473         
474         return b;
475 }
476
477
478 Buffer * BufferList::loadLyXFile(string const & filename, bool tolastfiles)
479 {
480         // get absolute path of file and add ".lyx" to the filename if
481         // necessary
482         string s = FileSearch(string(), filename, "lyx");
483         if (s.empty()) {
484                 s = filename;
485         }
486
487         // file already open?
488         if (exists(s)) {
489                 if (AskQuestion(_("Document is already open:"), 
490                                 MakeDisplayPath(s, 50),
491                                 _("Do you want to reload that document?"))) {
492                         // Reload is accomplished by closing and then loading
493                         if (!close(getBuffer(s))) {
494                                 return 0;
495                         }
496                         // Fall through to new load. (Asger)
497                 } else {
498                         // Here, we pretend that we just loaded the 
499                         // open document
500                         return getBuffer(s);
501                 }
502         }
503         Buffer * b = 0;
504         bool ro = false;
505         switch (IsFileWriteable(s)) {
506         case 0:
507                 ro = true;
508                 // Fall through
509         case 1:
510                 b = readFile(s, ro);
511                 if (b) {
512                         b->lyxvc.file_found_hook(s);
513                 }
514                 break; //fine- it's r/w
515         case -1:
516                 // Here we probably should run
517                 if (LyXVC::file_not_found_hook(s)) {
518                         // Ask if the file should be checked out for
519                         // viewing/editing, if so: load it.
520                         if (AskQuestion(_("Do you want to retrieve file under version control?"))) {
521                                 // How can we know _how_ to do the checkout?
522                                 // With the current VC support it has to be,
523                                 // a RCS file since CVS do not have special ,v files.
524                                 RCS::retrive(s);
525                                 return loadLyXFile(filename, tolastfiles);
526                         }
527                 }
528                 if (AskQuestion(_("Cannot open specified file:"), 
529                                 MakeDisplayPath(s, 50),
530                                 _("Create new document with this name?")))
531                         {
532                                 // Find a free buffer
533                                 b = newFile(s, string(), true);
534                         }
535                 break;
536         }
537
538         if (b && tolastfiles)
539                 lastfiles->newFile(b->fileName());
540
541         return b;
542 }