]> git.lyx.org Git - lyx.git/blob - src/session.C
* src/CutAndPaste.C:
[lyx.git] / src / session.C
1 /**
2  * \file session.C
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 Bo Peng
8  *
9  * Full author contact details are available in file CREDITS.
10  */
11
12 #include <config.h>
13
14 #include "session.h"
15 #include "debug.h"
16 #include "support/package.h"
17 #include "support/filetools.h"
18
19 #include <boost/filesystem/operations.hpp>
20
21 #include <fstream>
22 #include <sstream>
23 #include <algorithm>
24 #include <iterator>
25
26 using lyx::support::absolutePath;
27 using lyx::support::addName;
28 using lyx::support::FileName;
29 using lyx::support::package;
30
31 namespace fs = boost::filesystem;
32
33 using std::vector;
34 using std::getline;
35 using std::string;
36 using std::ifstream;
37 using std::ofstream;
38 using std::istream;
39 using std::ostream;
40 using std::endl;
41 using std::istringstream;
42 using std::copy;
43 using std::find;
44 using std::ostream_iterator;
45
46 namespace {
47
48 string const sec_lastfiles = "[recent files]";
49 string const sec_lastfilepos = "[cursor positions]";
50 string const sec_lastopened = "[last opened files]";
51 string const sec_bookmarks = "[bookmarks]";
52 string const sec_session = "[session info]";
53 string const sec_toolbars = "[toolbars]";
54
55 } // anon namespace
56
57
58 namespace lyx {
59
60 LastFilesSection::LastFilesSection(unsigned int num) :
61         default_num_last_files(4),
62         absolute_max_last_files(100)
63 {
64         setNumberOfLastFiles(num);
65 }
66
67
68 void LastFilesSection::read(istream & is)
69 {
70         string tmp;
71         do {
72                 char c = is.peek();
73                 if (c == '[')
74                         break;
75                 getline(is, tmp);
76                 if (tmp == "" || tmp[0] == '#' || tmp[0] == ' ' || !absolutePath(tmp))
77                         continue;
78                 
79                 // read lastfiles
80                 FileName const file(tmp);
81                 if (fs::exists(file.toFilesystemEncoding()) &&
82                     !fs::is_directory(file.toFilesystemEncoding()) &&
83                     lastfiles.size() < num_lastfiles)
84                         lastfiles.push_back(file);
85                 else 
86                         lyxerr[Debug::INIT] << "LyX: Warning: Ignore last file: " << tmp << endl;
87         } while (is.good());
88 }
89
90
91 void LastFilesSection::write(ostream & os) const
92 {
93         os << '\n' << sec_lastfiles << '\n';
94         copy(lastfiles.begin(), lastfiles.end(),
95              ostream_iterator<FileName>(os, "\n"));
96 }
97
98
99 void LastFilesSection::add(FileName const & file)
100 {
101         // If file already exist, delete it and reinsert at front.
102         LastFiles::iterator it = find(lastfiles.begin(), lastfiles.end(), file);
103         if (it != lastfiles.end())
104                 lastfiles.erase(it);
105         lastfiles.push_front(file);
106         if (lastfiles.size() > num_lastfiles)
107                 lastfiles.pop_back();
108 }
109
110
111 void LastFilesSection::setNumberOfLastFiles(unsigned int no)
112 {
113         if (0 < no && no <= absolute_max_last_files)
114                 num_lastfiles = no;
115         else {
116                 lyxerr[Debug::INIT] << "LyX: session: too many last files\n"
117                        << "\tdefault (=" << default_num_last_files
118                        << ") used." << endl;
119                 num_lastfiles = default_num_last_files;
120         }
121 }
122
123
124 void LastOpenedSection::read(istream & is)
125 {
126         string tmp;
127         do {
128                 char c = is.peek();
129                 if (c == '[')
130                         break;
131                 getline(is, tmp);
132                 if (tmp == "" || tmp[0] == '#' || tmp[0] == ' ' || !absolutePath(tmp))
133                         continue;
134
135                 FileName const file(tmp);
136                 if (fs::exists(file.toFilesystemEncoding()) &&
137                     !fs::is_directory(file.toFilesystemEncoding()))
138                         lastopened.push_back(file);
139                 else
140                         lyxerr[Debug::INIT] << "LyX: Warning: Ignore last opened file: " << tmp << endl;
141         } while (is.good());
142 }
143
144
145 void LastOpenedSection::write(ostream & os) const
146 {
147         os << '\n' << sec_lastopened << '\n';
148         copy(lastopened.begin(), lastopened.end(),
149              ostream_iterator<FileName>(os, "\n"));
150 }
151
152
153 void LastOpenedSection::add(FileName const & file)
154 {
155         lastopened.push_back(file);
156 }
157
158
159 void LastOpenedSection::clear()
160 {
161         lastopened.clear();
162 }
163
164
165 void LastFilePosSection::read(istream & is)
166 {
167         string tmp;
168         do {
169                 char c = is.peek();
170                 if (c == '[')
171                         break;
172                 getline(is, tmp);
173                 if (tmp == "" || tmp[0] == '#' || tmp[0] == ' ')
174                         continue;
175
176                 try {
177                         // read lastfilepos
178                         // pos, file\n
179                         pit_type pit;
180                         pos_type pos;
181                         string fname;
182                         istringstream itmp(tmp);
183                         itmp >> pit;
184                         itmp.ignore(2);  // ignore ", "
185                         itmp >> pos;
186                         itmp.ignore(2);  // ignore ", "
187                         itmp >> fname;
188                         if (!absolutePath(fname))
189                                 continue;
190                         FileName const file(fname);
191                         if (fs::exists(file.toFilesystemEncoding()) &&
192                             !fs::is_directory(file.toFilesystemEncoding()) &&
193                             lastfilepos.size() < num_lastfilepos)
194                                 lastfilepos[file] = boost::tie(pit, pos);
195                         else
196                                 lyxerr[Debug::INIT] << "LyX: Warning: Ignore pos of last file: " << fname << endl;
197                 } catch (...) {
198                         lyxerr[Debug::INIT] << "LyX: Warning: unknown pos of last file: " << tmp << endl;
199                 }
200         } while (is.good());
201 }
202
203
204 void LastFilePosSection::write(ostream & os) const
205 {
206         os << '\n' << sec_lastfilepos << '\n';
207         for (FilePosMap::const_iterator file = lastfilepos.begin();
208                 file != lastfilepos.end(); ++file) {
209                 os << file->second.get<0>() << ", "
210                     << file->second.get<1>() << ", "
211                     << file->first << '\n';
212         }
213 }
214
215
216 void LastFilePosSection::save(FileName const & fname, FilePos pos)
217 {
218         lastfilepos[fname] = pos;
219 }
220
221
222 LastFilePosSection::FilePos LastFilePosSection::load(FileName const & fname) const
223 {
224         FilePosMap::const_iterator entry = lastfilepos.find(fname);
225         // Has position information, return it.
226         if (entry != lastfilepos.end())
227                 return entry->second;
228         // Not found, return the first paragraph
229         else
230                 return 0;
231 }
232
233
234 void BookmarksSection::read(istream & is)
235 {
236         string tmp;
237         do {
238                 char c = is.peek();
239                 if (c == '[')
240                         break;
241                 getline(is, tmp);
242                 if (tmp == "" || tmp[0] == '#' || tmp[0] == ' ')
243                         continue;
244
245                 try {
246                         // read bookmarks
247                         // pit, pos, file\n
248                         pit_type pit;
249                         pos_type pos;
250                         string fname;
251                         istringstream itmp(tmp);
252                         itmp >> pit;
253                         itmp.ignore(2);  // ignore ", "
254                         itmp >> pos;
255                         itmp.ignore(2);  // ignore ", "
256                         itmp >> fname;
257                         if (!absolutePath(fname))
258                                 continue;
259                         FileName const file(fname);
260                         // only load valid bookmarks
261                         if (fs::exists(file.toFilesystemEncoding()) &&
262                             !fs::is_directory(file.toFilesystemEncoding()) &&
263                             bookmarks.size() < max_bookmarks)
264                                 bookmarks.push_back(Bookmark(file, pit, 0, pos));
265                         else
266                                 lyxerr[Debug::INIT] << "LyX: Warning: Ignore bookmark of file: " << fname << endl;
267                 } catch (...) {
268                         lyxerr[Debug::INIT] << "LyX: Warning: unknown Bookmark info: " << tmp << endl;
269                 }
270         } while (is.good());
271 }
272
273
274 void BookmarksSection::write(ostream & os) const
275 {
276         os << '\n' << sec_bookmarks << '\n';
277         for (size_t i = 0; i < bookmarks.size(); ++i) {
278                 os << bookmarks[i].par_pit << ", "
279                    << bookmarks[i].par_pos << ", "
280                    << bookmarks[i].filename << '\n';
281         }
282 }
283
284
285 void BookmarksSection::save(FileName const & fname, pit_type par_pit, int par_id, pos_type par_pos, bool persistent)
286 {
287         if (persistent) {
288                 bookmarks.push_back(Bookmark(fname, par_pit, par_id, par_pos));
289                 if (bookmarks.size() > max_bookmarks)
290                         bookmarks.pop_back();
291                 }
292         else
293                 temp_bookmark = Bookmark(fname, par_pit, par_id, par_pos);
294 }
295
296
297 bool BookmarksSection::isValid(unsigned int i) const
298 {
299         if (i == 0)
300                 return !temp_bookmark.filename.empty();
301         else
302                 return i <= bookmarks.size() && !bookmarks[i-1].filename.empty();
303 }
304
305
306 BookmarksSection::Bookmark const & BookmarksSection::bookmark(unsigned int i) const
307 {
308         if (i == 0)
309                 return temp_bookmark;
310         else
311                 return bookmarks[i-1];
312 }
313
314
315 void ToolbarSection::read(istream & is)
316 {
317         string tmp;
318         do {
319                 char c = is.peek();
320                 if (c == '[')
321                         break;
322                 getline(is, tmp);
323                 if (tmp == "" || tmp[0] == '#' || tmp[0] == ' ')
324                         continue;
325
326                 try {
327                         // Read session info, saved as key/value pairs
328                         // would better yell if pos returns npos
329                         string::size_type pos = tmp.find_first_of(" = ");
330                         // silently ignore lines without " = "
331                         if (pos != string::npos) {
332                                 string key = tmp.substr(0, pos);
333                                 int state;
334                                 int location;
335                                 istringstream value(tmp.substr(pos + 3));
336                                 value >> state;
337                                 value.ignore(1); // ignore " "
338                                 value >> location;
339                                 toolbars[key] = ToolbarInfo(state, location);
340                         } else 
341                                 lyxerr[Debug::INIT] << "LyX: Warning: Ignore toolbar info: " << tmp << endl;
342                 } catch (...) {
343                         lyxerr[Debug::INIT] << "LyX: Warning: unknown Toolbar info: " << tmp << endl;
344                 }
345         } while (is.good());
346 }
347
348
349 void ToolbarSection::write(ostream & os) const
350 {
351         os << '\n' << sec_toolbars << '\n';
352         for (ToolbarMap::const_iterator tb = toolbars.begin();
353                 tb != toolbars.end(); ++tb) {
354                 os << tb->first << " = "
355                   << static_cast<int>(tb->second.state) << " "
356                   << static_cast<int>(tb->second.location) << '\n';
357         }
358 }
359
360
361 ToolbarSection::ToolbarInfo & ToolbarSection::load(string const & name)
362 {
363         return toolbars[name];
364 }
365
366
367 void SessionInfoSection::read(istream & is)
368 {
369         string tmp;
370         do {
371                 char c = is.peek();
372                 if (c == '[')
373                         break;
374                 getline(is, tmp);
375                 if (tmp == "" || tmp[0] == '#' || tmp[0] == ' ')
376                         continue;
377
378                 try {
379                         // Read session info, saved as key/value pairs
380                         // would better yell if pos returns npos
381                         string::size_type pos = tmp.find_first_of(" = ");
382                         // silently ignore lines without " = "
383                         if (pos != string::npos) {
384                                 string key = tmp.substr(0, pos);
385                                 string value = tmp.substr(pos + 3);
386                                 sessioninfo[key] = value;
387                         } else
388                                 lyxerr[Debug::INIT] << "LyX: Warning: Ignore session info: " << tmp << endl;
389                 } catch (...) {
390                         lyxerr[Debug::INIT] << "LyX: Warning: unknown Session info: " << tmp << endl;
391                 }
392         } while (is.good());
393 }
394
395
396 void SessionInfoSection::write(ostream & os) const
397 {
398         os << '\n' << sec_session << '\n';
399         for (MiscInfo::const_iterator val = sessioninfo.begin();
400                 val != sessioninfo.end(); ++val) {
401                 os << val->first << " = " << val->second << '\n';
402         }
403 }
404
405
406 void SessionInfoSection::save(string const & key, string const & value)
407 {
408         sessioninfo[key] = value;
409 }
410
411
412 string const SessionInfoSection::load(string const & key, bool release)
413 {
414         MiscInfo::const_iterator pos = sessioninfo.find(key);
415         string value;
416         if (pos != sessioninfo.end())
417                 value = pos->second;
418         if (release)
419                 sessioninfo.erase(key);
420         return value;
421 }
422
423
424 Session::Session(unsigned int num) :
425         last_files(num)
426 {
427         // locate the session file
428         // note that the session file name 'session' is hard-coded
429         session_file = FileName(addName(package().user_support(), "session"));
430         //
431         readFile();
432 }
433
434
435 void Session::readFile()
436 {
437         // we will not complain if we can't find session_file nor will
438         // we issue a warning. (Lgb)
439         ifstream is(session_file.toFilesystemEncoding().c_str());
440         string tmp;
441
442         while (getline(is, tmp)) {
443                 // Ignore comments, empty line or line stats with ' '
444                 if (tmp == "" || tmp[0] == '#' || tmp[0] == ' ')
445                         continue;
446
447                 // Determine section id
448                 if (tmp == sec_lastfiles)
449                         lastFiles().read(is);
450                 else if (tmp == sec_lastopened)
451                         lastOpened().read(is);
452                 else if (tmp == sec_lastfilepos)
453                         lastFilePos().read(is);
454                 else if (tmp == sec_bookmarks)
455                         bookmarks().read(is);
456                 else if (tmp == sec_toolbars)
457                         toolbars().read(is);
458                 else if (tmp == sec_session)
459                         sessionInfo().read(is);
460                 else
461                         lyxerr[Debug::INIT] << "LyX: Warning: unknown Session section: " << tmp << endl;
462         }
463 }
464
465
466 void Session::writeFile() const
467 {
468         ofstream os(session_file.toFilesystemEncoding().c_str());
469         if (os) {
470                 os << "## Automatically generated lyx session file \n"
471                     << "## Editing this file manually may cause lyx to crash.\n";
472
473                 lastFiles().write(os);
474                 lastOpened().write(os);
475                 lastFilePos().write(os);
476                 bookmarks().write(os);
477                 toolbars().write(os);
478                 sessionInfo().write(os);
479         } else
480                 lyxerr[Debug::INIT] << "LyX: Warning: unable to save Session: "
481                        << session_file << endl;
482 }
483
484 }