]> git.lyx.org Git - features.git/blob - src/buffer_funcs.cpp
dc51c93835c394dd24fa8d272b2450cf2b8afe45
[features.git] / src / buffer_funcs.cpp
1 /**
2  * \file buffer_funcs.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 Alfredo Braunstein
8  *
9  * Full author contact details are available in file CREDITS.
10  *
11  */
12
13 #include <config.h>
14
15 #include "buffer_funcs.h"
16 #include "Buffer.h"
17 #include "BufferList.h"
18 #include "BufferParams.h"
19 #include "DocIterator.h"
20 #include "Counters.h"
21 #include "ErrorList.h"
22 #include "Floating.h"
23 #include "FloatList.h"
24 #include "InsetList.h"
25 #include "Language.h"
26 #include "LaTeX.h"
27 #include "Layout.h"
28 #include "LyX.h"
29 #include "TextClass.h"
30 #include "Paragraph.h"
31 #include "ParagraphList.h"
32 #include "ParagraphParameters.h"
33 #include "ParIterator.h"
34 #include "TexRow.h"
35 #include "Text.h"
36 #include "TocBackend.h"
37
38 #include "frontends/alert.h"
39
40 #include "insets/InsetBibitem.h"
41 #include "insets/InsetInclude.h"
42
43 #include "support/lassert.h"
44 #include "support/convert.h"
45 #include "support/debug.h"
46 #include "support/filetools.h"
47 #include "support/gettext.h"
48 #include "support/lstrings.h"
49 #include "support/textutils.h"
50
51 using namespace std;
52 using namespace lyx::support;
53
54 namespace lyx {
55
56 namespace Alert = frontend::Alert;
57
58
59 Buffer * checkAndLoadLyXFile(FileName const & filename, bool const acceptDirty)
60 {
61         // File already open?
62         Buffer * checkBuffer = theBufferList().getBuffer(filename);
63         if (checkBuffer) {
64                 // Sometimes (when setting the master buffer from a child)
65                 // we accept a dirty buffer right away (otherwise we'd get
66                 // an infinite loop (bug 5514).
67                 // We also accept a dirty buffer when the document has not
68                 // yet been saved to disk.
69                 if (checkBuffer->isClean() || acceptDirty || !filename.exists())
70                         return checkBuffer;
71                 docstring const file = makeDisplayPath(filename.absFilename(), 20);
72                 docstring const text = bformat(_(
73                                 "The document %1$s is already loaded and has unsaved changes.\n"
74                                 "Do you want to abandon your changes and reload the version on disk?"), file);
75                 if (!Alert::prompt(_("Reload saved document?"),
76                           text, 0, 1,  _("&Reload"), _("&Keep Changes"))) {
77                         // reload the document
78                         if (!checkBuffer->reload())
79                                 return 0;
80                 }
81                 return checkBuffer;
82         }
83
84         if (filename.exists()) {
85                 if (!filename.isReadableFile()) {
86                         docstring text = bformat(_("The file %1$s exists but is not "
87                                 "readable by the current user."),
88                                 from_utf8(filename.absFilename()));
89                         Alert::error(_("File not readable!"), text);
90                         return 0;
91                 }
92                 Buffer * b = theBufferList().newBuffer(filename.absFilename());
93                 if (!b) {
94                         // Buffer creation is not possible.
95                         return 0;
96                 }
97                 if (!b->loadLyXFile(filename)) {
98                         // do not save an emergency file when releasing the buffer
99                         b->markClean();
100                         theBufferList().release(b);
101                         return 0;
102                 }
103                 return b;
104         }
105
106         docstring text = bformat(_("The document %1$s does not yet "
107                 "exist.\n\nDo you want to create a new document?"),
108                 from_utf8(filename.absFilename()));
109         if (!Alert::prompt(_("Create new document?"),
110                         text, 0, 1, _("&Create"), _("Cancel")))
111                 return newFile(filename.absFilename(), string(), true);
112
113         return 0;
114 }
115
116
117 // FIXME newFile() should probably be a member method of Application...
118 Buffer * newFile(string const & filename, string const & templatename,
119                  bool const isNamed)
120 {
121         // get a free buffer
122         Buffer * b = theBufferList().newBuffer(filename);
123         if (!b)
124                 // Buffer creation is not possible.
125                 return 0;
126
127         FileName tname;
128         // use defaults.lyx as a default template if it exists.
129         if (templatename.empty())
130                 tname = libFileSearch("templates", "defaults.lyx");
131         else
132                 tname = makeAbsPath(templatename);
133
134         if (!tname.empty()) {
135                 if (!b->readFile(tname)) {
136                         docstring const file = makeDisplayPath(tname.absFilename(), 50);
137                         docstring const text  = bformat(
138                                 _("The specified document template\n%1$s\ncould not be read."),
139                                 file);
140                         Alert::error(_("Could not read template"), text);
141                         theBufferList().release(b);
142                         return 0;
143                 }
144         }
145
146         if (!isNamed) {
147                 b->setUnnamed();
148                 b->setFileName(filename);
149         }
150
151         b->setReadonly(false);
152         b->setFullyLoaded(true);
153
154         return b;
155 }
156
157
158 Buffer * newUnnamedFile(FileName const & path, string const & prefix,
159                                                 string const & templatename)
160 {
161         static map<string, int> file_number;
162
163         FileName filename;
164
165         do {
166                 filename.set(path, 
167                         prefix + convert<string>(++file_number[prefix]) + ".lyx");
168         }
169         while (theBufferList().exists(filename) || filename.isReadableFile());
170                 
171         return newFile(filename.absFilename(), templatename, false);
172 }
173
174
175 /* 
176  * FIXME : merge with countChars. The structures of the two functions
177  * are similar but, unfortunately, they seem to have a different
178  * notion of what to count. Since nobody ever complained about that,
179  * this proves (again) that any number beats no number ! (JMarc)
180  */
181 int countWords(DocIterator const & from, DocIterator const & to)
182 {
183         int count = 0;
184         bool inword = false;
185         for (DocIterator dit = from ; dit != to ; ) {
186                 if (!dit.inTexted()) {
187                         dit.forwardPos();
188                         continue;
189                 }
190                 
191                 Paragraph const & par = dit.paragraph();
192                 pos_type const pos = dit.pos();
193                 
194                 // Copied and adapted from isWordSeparator() in Paragraph
195                 if (pos != dit.lastpos() && !par.isDeleted(pos)) {
196                         Inset const * ins = par.getInset(pos);
197                         if (ins && !ins->producesOutput()) {
198                                 //skip this inset
199                                 ++dit.top().pos();
200                                 continue;
201                         }
202                         if (par.isWordSeparator(pos)) 
203                                 inword = false;
204                         else if (!inword) {
205                                 ++count;
206                                 inword = true;
207                         }
208                 }
209                 dit.forwardPos();
210         }
211
212         return count;
213 }
214
215
216 int countChars(DocIterator const & from, DocIterator const & to, 
217                bool with_blanks)
218 {
219         int chars = 0;
220         int blanks = 0;
221         for (DocIterator dit = from ; dit != to ; ) {
222                 if (!dit.inTexted()) {
223                         dit.forwardPos();
224                         continue;
225                 }
226                 
227                 Paragraph const & par = dit.paragraph();
228                 pos_type const pos = dit.pos();
229                 
230                 if (pos != dit.lastpos() && !par.isDeleted(pos)) {
231                         if (Inset const * ins = par.getInset(pos)) {
232                                 if (!ins->producesOutput()) {
233                                         //skip this inset
234                                         ++dit.top().pos();
235                                         continue;
236                                 }
237                                 if (ins->isLetter())
238                                         ++chars;
239                                 else if (with_blanks && ins->isSpace())
240                                         ++blanks;
241                         } else {
242                                 char_type const c = par.getChar(pos);
243                                 if (isPrintableNonspace(c))
244                                         ++chars;
245                                 else if (isSpace(c) && with_blanks)
246                                         ++blanks;
247                         }
248                 }
249                 dit.forwardPos();
250         }
251
252         return chars + blanks;
253 }
254
255
256 Buffer * loadIfNeeded(FileName const & fname)
257 {
258         Buffer * buffer = theBufferList().getBuffer(fname);
259         if (!buffer) {
260                 if (!fname.exists())
261                         return 0;
262
263                 buffer = theBufferList().newBuffer(fname.absFilename());
264                 if (!buffer)
265                         // Buffer creation is not possible.
266                         return 0;
267
268                 if (!buffer->loadLyXFile(fname)) {
269                         //close the buffer we just opened
270                         theBufferList().release(buffer);
271                         return 0;
272                 }
273         }
274         return buffer;
275 }
276
277
278 } // namespace lyx