]> git.lyx.org Git - features.git/blob - src/Counters.cpp
1e865c73d4b3dd4859a8ef8915c2d36f83cffeff
[features.git] / src / Counters.cpp
1 /**
2  * \file Counters.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 Martin Vermeer
8  * \author André Pönitz
9  * \author Richard Heck (roman numerals)
10  *
11  * Full author contact details are available in file CREDITS.
12  */
13
14 #include <config.h>
15
16 #include "Counters.h"
17 #include "Layout.h"
18 #include "Lexer.h"
19
20 #include "support/convert.h"
21 #include "support/debug.h"
22 #include "support/gettext.h"
23 #include "support/lassert.h"
24 #include "support/lstrings.h"
25
26 #include <algorithm>
27 #include <sstream>
28
29 using namespace std;
30 using namespace lyx::support;
31
32 namespace lyx {
33
34
35 Counter::Counter()
36 {
37         reset();
38 }
39
40
41 Counter::Counter(docstring const & mc, docstring const & ls,  
42                 docstring const & lsa)
43         : master_(mc), labelstring_(ls), labelstringappendix_(lsa)
44 {
45         reset();
46 }
47
48
49 bool Counter::read(Lexer & lex)
50 {
51         enum {
52                 CT_WITHIN = 1,
53                 CT_LABELSTRING,
54                 CT_LABELSTRING_APPENDIX,
55                 CT_PRETTYFORMAT,
56                 CT_END
57         };
58
59         LexerKeyword counterTags[] = {
60                 { "end", CT_END },
61                 { "labelstring", CT_LABELSTRING },
62                 { "labelstringappendix", CT_LABELSTRING_APPENDIX },
63                 { "prettyformat", CT_PRETTYFORMAT },
64                 { "within", CT_WITHIN }
65         };
66
67         lex.pushTable(counterTags);
68
69         bool getout = false;
70         while (!getout && lex.isOK()) {
71                 int le = lex.lex();
72                 switch (le) {
73                         case Lexer::LEX_UNDEF:
74                                 lex.printError("Unknown counter tag `$$Token'");
75                                 continue;
76                         default: 
77                                 break;
78                 }
79                 switch (le) {
80                         case CT_WITHIN:
81                                 lex.next();
82                                 master_ = lex.getDocString();
83                                 if (master_ == "none")
84                                         master_.erase();
85                                 break;
86                         case CT_PRETTYFORMAT:
87                                 lex.next();
88                                 prettyformat_ = lex.getDocString();
89                                 break;
90                         case CT_LABELSTRING:
91                                 lex.next();
92                                 labelstring_ = lex.getDocString();
93                                 labelstringappendix_ = labelstring_;
94                                 break;
95                         case CT_LABELSTRING_APPENDIX:
96                                 lex.next();
97                                 labelstringappendix_ = lex.getDocString();
98                                 break;
99                         case CT_END:
100                                 getout = true;
101                                 break;
102                 }
103         }
104
105         // Here if have a full counter if getout == true
106         if (!getout)
107                 LYXERR0("No End tag found for counter!");
108         lex.popTable();
109         return getout;
110 }
111
112 void Counter::set(int v)
113 {
114         value_ = v;
115 }
116
117
118 void Counter::addto(int v)
119 {
120         value_ += v;
121 }
122
123
124 int Counter::value() const
125 {
126         return value_;
127 }
128
129
130 void Counter::step()
131 {
132         ++value_;
133 }
134
135
136 void Counter::reset()
137 {
138         value_ = 0;
139 }
140
141
142 docstring const & Counter::master() const
143 {
144         return master_;
145 }
146
147
148 docstring const & Counter::labelString(bool in_appendix) const
149 {
150         return in_appendix ? labelstringappendix_ : labelstring_;
151 }
152
153
154 Counter::StringMap & Counter::flatLabelStrings(bool in_appendix) const
155 {
156         return in_appendix ? flatlabelstringappendix_ : flatlabelstring_;
157 }
158
159
160 Counters::Counters() : appendix_(false), subfloat_(false)
161 {
162         layout_stack_.push_back(0);
163         counter_stack_.push_back(from_ascii(""));
164 }
165
166
167 void Counters::newCounter(docstring const & newc,
168                           docstring const & masterc, 
169                           docstring const & ls,
170                           docstring const & lsa)
171 {
172         if (!masterc.empty() && !hasCounter(masterc)) {
173                 lyxerr << "Master counter does not exist: "
174                        << to_utf8(masterc)
175                        << endl;
176                 return;
177         }
178         counterList_[newc] = Counter(masterc, ls, lsa);
179 }
180
181
182 bool Counters::hasCounter(docstring const & c) const
183 {
184         return counterList_.find(c) != counterList_.end();
185 }
186
187
188 bool Counters::read(Lexer & lex, docstring const & name, bool makenew)
189 {
190         if (hasCounter(name)) {
191                 LYXERR(Debug::TCLASS, "Reading existing counter " << to_utf8(name));
192                 return counterList_[name].read(lex);
193         }
194
195         LYXERR(Debug::TCLASS, "Reading new counter " << to_utf8(name));
196         Counter cnt;
197         bool success = cnt.read(lex);
198         // if makenew is false, we will just discard what we read
199         if (success && makenew)
200                 counterList_[name] = cnt;
201         else if (!success)
202                 LYXERR0("Error reading counter `" << name << "'!");
203         return success;
204 }
205
206
207 void Counters::set(docstring const & ctr, int const val)
208 {
209         CounterList::iterator const it = counterList_.find(ctr);
210         if (it == counterList_.end()) {
211                 lyxerr << "set: Counter does not exist: "
212                        << to_utf8(ctr) << endl;
213                 return;
214         }
215         it->second.set(val);
216 }
217
218
219 void Counters::addto(docstring const & ctr, int const val)
220 {
221         CounterList::iterator const it = counterList_.find(ctr);
222         if (it == counterList_.end()) {
223                 lyxerr << "addto: Counter does not exist: "
224                        << to_utf8(ctr) << endl;
225                 return;
226         }
227         it->second.addto(val);
228 }
229
230
231 int Counters::value(docstring const & ctr) const
232 {
233         CounterList::const_iterator const cit = counterList_.find(ctr);
234         if (cit == counterList_.end()) {
235                 lyxerr << "value: Counter does not exist: "
236                        << to_utf8(ctr) << endl;
237                 return 0;
238         }
239         return cit->second.value();
240 }
241
242
243 void Counters::step(docstring const & ctr, UpdateType utype)
244 {
245         CounterList::iterator it = counterList_.find(ctr);
246         if (it == counterList_.end()) {
247                 lyxerr << "step: Counter does not exist: "
248                        << to_utf8(ctr) << endl;
249                 return;
250         }
251
252         it->second.step();
253         if (utype == OutputUpdate) {
254                 LASSERT(!counter_stack_.empty(), /* */);
255                 counter_stack_.pop_back();
256                 counter_stack_.push_back(ctr);
257         }
258         it = counterList_.begin();
259         CounterList::iterator const end = counterList_.end();
260         for (; it != end; ++it) {
261                 if (it->second.master() == ctr) {
262                         it->second.reset();
263                 }
264         }
265 }
266
267
268 void Counters::reset()
269 {
270         appendix_ = false;
271         subfloat_ = false;
272         current_float_.erase();
273         CounterList::iterator it = counterList_.begin();
274         CounterList::iterator const end = counterList_.end();
275         for (; it != end; ++it)
276                 it->second.reset();
277         counter_stack_.clear();
278         counter_stack_.push_back(from_ascii(""));
279         layout_stack_.clear();
280         layout_stack_.push_back(0);
281 }
282
283
284 void Counters::reset(docstring const & match)
285 {
286         LASSERT(!match.empty(), /**/);
287
288         CounterList::iterator it = counterList_.begin();
289         CounterList::iterator end = counterList_.end();
290         for (; it != end; ++it) {
291                 if (it->first.find(match) != string::npos)
292                         it->second.reset();
293         }
294 }
295
296
297 bool Counters::remove(docstring const & cnt)
298 {
299         return counterList_.erase(cnt);
300 }
301
302
303 void Counters::copy(Counters & from, Counters & to, docstring const & match)
304 {
305         CounterList::iterator it = counterList_.begin();
306         CounterList::iterator end = counterList_.end();
307         for (; it != end; ++it) {
308                 if (it->first.find(match) != string::npos || match == "") {
309                         to.set(it->first, from.value(it->first));
310                 }
311         }
312 }
313
314
315 namespace {
316
317 char loweralphaCounter(int const n)
318 {
319         if (n < 1 || n > 26)
320                 return '?';
321         return 'a' + n - 1;
322 }
323
324
325 char alphaCounter(int const n)
326 {
327         if (n < 1 || n > 26)
328                 return '?';
329         return 'A' + n - 1;
330 }
331
332
333 char hebrewCounter(int const n)
334 {
335         static const char hebrew[22] = {
336                 '\xe0', '\xe1', '\xe2', '\xe3', '\xe4', '\xe5', '\xe6', '\xe7', '\xe8',
337                 '\xe9', '\xeb', '\xec', '\xee', '\xf0', '\xf1', '\xf2', '\xf4', '\xf6',
338                 '\xf7', '\xf8', '\xf9', '\xfa'
339         };
340
341         if (n < 1 || n > 22)
342                 return '?';
343         return hebrew[n - 1];
344 }
345
346
347
348 // On the special cases, see http://mathworld.wolfram.com/RomanNumerals.html
349 // and for a list of roman numerals up to and including 3999, see 
350 // http://www.research.att.com/~njas/sequences/a006968.txt. (Thanks to Joost
351 // for this info.)
352 docstring const romanCounter(int const n)
353 {
354         static char const * const ones[9] = {
355                 "I",   "II",  "III", "IV", "V",
356                 "VI",  "VII", "VIII", "IX"
357         };
358         
359         static char const * const tens[9] = {
360                 "X", "XX", "XXX", "XL", "L",
361                 "LX", "LXX", "LXXX", "XC"
362         };
363         
364         static char const * const hunds[9] = {
365                 "C", "CC", "CCC", "CD", "D",
366                 "DC", "DCC", "DCCC", "CM"
367         };
368         
369         if (n > 1000 || n < 1) 
370                 return from_ascii("??");
371         
372         int val = n;
373         string roman;
374         switch (n) {
375         //special cases
376         case 900: 
377                 roman = "CM";
378                 break;
379         case 400:
380                 roman = "CD";
381                 break;
382         default:
383                 if (val >= 100) {
384                         int hundreds = val / 100;
385                         roman = hunds[hundreds - 1];
386                         val = val % 100;
387                 }
388                 if (val >= 10) {
389                         switch (val) {
390                         //special case
391                         case 90:
392                                 roman = roman + "XC";
393                                 val = 0; //skip next
394                                 break;
395                         default:
396                                 int tensnum = val / 10;
397                                 roman = roman + tens[tensnum - 1];
398                                 val = val % 10;
399                         } // end switch
400                 } // end tens
401                 if (val > 0)
402                         roman = roman + ones[val -1];
403         }
404         return from_ascii(roman);
405 }
406
407
408 docstring const lowerromanCounter(int const n)
409 {
410         return lowercase(romanCounter(n));
411 }
412
413 } // namespace anon
414
415
416 docstring Counters::labelItem(docstring const & ctr,
417                               docstring const & numbertype) const
418 {
419         CounterList::const_iterator const cit = counterList_.find(ctr);
420         if (cit == counterList_.end()) {
421                 lyxerr << "Counter "
422                        << to_utf8(ctr)
423                        << " does not exist." << endl;
424                 return docstring();
425         }
426
427         int val = cit->second.value();
428
429         if (numbertype == "hebrew")
430                 return docstring(1, hebrewCounter(val));
431
432         if (numbertype == "alph")
433                 return docstring(1, loweralphaCounter(val));
434
435         if (numbertype == "Alph")
436                 return docstring(1, alphaCounter(val));
437
438         if (numbertype == "roman")
439                 return lowerromanCounter(val);
440
441         if (numbertype == "Roman")
442                 return romanCounter(val);
443
444         return convert<docstring>(val);
445 }
446
447
448 docstring Counters::theCounter(docstring const & counter,
449                                string const & lang) const
450 {
451         CounterList::const_iterator it = counterList_.find(counter); 
452         if (it == counterList_.end())
453                 return from_ascii("#");
454         Counter const & ctr = it->second;
455         Counter::StringMap & sm = ctr.flatLabelStrings(appendix());
456         Counter::StringMap::iterator smit = sm.find(lang);
457         if (smit != sm.end())
458                 return counterLabel(smit->second, lang);
459
460         vector<docstring> callers;
461         docstring const & fls = flattenLabelString(counter, appendix(),
462                                                    lang, callers);
463         sm[lang] = fls;
464         return counterLabel(fls, lang);
465 }
466
467
468 docstring Counters::flattenLabelString(docstring const & counter, 
469                                        bool in_appendix,
470                                        string const & lang,
471                                        vector<docstring> & callers) const
472 {
473         docstring label;
474
475         if (find(callers.begin(), callers.end(), counter) != callers.end()) {
476                 // recursion detected
477                 lyxerr << "Warning: Recursion in label for counter `"
478                        << counter << "' detected"
479                        << endl;
480                 return from_ascii("??");
481         }
482                 
483         CounterList::const_iterator it = counterList_.find(counter); 
484         if (it == counterList_.end())
485                 return from_ascii("#");
486         Counter const & c = it->second;
487
488         docstring ls = translateIfPossible(c.labelString(in_appendix), lang);
489
490         callers.push_back(counter);
491         if (ls.empty()) {
492                 if (!c.master().empty())
493                         ls = flattenLabelString(c.master(), in_appendix, lang, callers) 
494                                 + from_ascii(".");
495                 callers.pop_back();
496                 return ls + from_ascii("\\arabic{") + counter + "}";
497         }
498
499         while (true) {
500                 //lyxerr << "ls=" << to_utf8(ls) << endl;
501                 size_t const i = ls.find(from_ascii("\\the"), 0);
502                 if (i == docstring::npos)
503                         break;
504                 size_t const j = i + 4;
505                 size_t k = j;
506                 while (k < ls.size() && lowercase(ls[k]) >= 'a' 
507                        && lowercase(ls[k]) <= 'z')
508                         ++k;
509                 docstring const newc = ls.substr(j, k - j);
510                 docstring const repl = flattenLabelString(newc, in_appendix,
511                                                           lang, callers);
512                 ls.replace(i, k - j + 4, repl);
513         }
514         callers.pop_back();
515
516         return ls;
517 }
518
519
520 docstring Counters::counterLabel(docstring const & format,
521                                  string const & lang) const
522 {
523         docstring label = format;
524
525         // FIXME: Using regexps would be better, but we compile boost without
526         // wide regexps currently.
527         docstring const the = from_ascii("\\the");
528         while (true) {
529                 //lyxerr << "label=" << label << endl;
530                 size_t const i = label.find(the, 0);
531                 if (i == docstring::npos)
532                         break;
533                 size_t const j = i + 4;
534                 size_t k = j;
535                 while (k < label.size() && lowercase(label[k]) >= 'a' 
536                        && lowercase(label[k]) <= 'z')
537                         ++k;
538                 docstring const newc(label, j, k - j);
539                 label.replace(i, k - i, theCounter(newc, lang));
540         }
541         while (true) {
542                 //lyxerr << "label=" << label << endl;
543
544                 size_t const i = label.find('\\', 0);
545                 if (i == docstring::npos)
546                         break;
547                 size_t const j = label.find('{', i + 1);
548                 if (j == docstring::npos)
549                         break;
550                 size_t const k = label.find('}', j + 1);
551                 if (k == docstring::npos)
552                         break;
553                 docstring const numbertype(label, i + 1, j - i - 1);
554                 docstring const counter(label, j + 1, k - j - 1);
555                 label.replace(i, k + 1 - i, labelItem(counter, numbertype));
556         }
557         //lyxerr << "DONE! label=" << label << endl;
558         return label;
559 }
560
561
562 docstring Counters::prettyCounter(docstring const & name,
563                                string const & lang) const
564 {
565         CounterList::const_iterator it = counterList_.find(name); 
566         if (it == counterList_.end())
567                 return from_ascii("#");
568         Counter const & ctr = it->second;
569
570         docstring const value = theCounter(name, lang);
571         docstring const & format = ctr.prettyFormat();
572         if (format.empty())
573                 return value;
574         return subst(format, from_ascii("##"), value);
575 }
576
577
578 docstring Counters::currentCounter() const
579
580         LASSERT(!counter_stack_.empty(), /* */);
581         return counter_stack_.back(); 
582 }
583
584
585 void Counters::setActiveLayout(Layout const & lay)
586 {
587         LASSERT(!layout_stack_.empty(), return);
588         Layout const * const lastlay = layout_stack_.back();
589         // we want to check whether the layout has changed and, if so,
590         // whether we are coming out of or going into an environment.
591         if (!lastlay) { 
592                 layout_stack_.pop_back();
593                 layout_stack_.push_back(&lay);
594                 if (lay.isEnvironment())
595                         beginEnvironment();
596         } else if (lastlay->name() != lay.name()) {
597                 layout_stack_.pop_back();
598                 layout_stack_.push_back(&lay);
599                 if (lastlay->isEnvironment()) {
600                         // we are coming out of an environment
601                         // LYXERR0("Out: " << lastlay->name());
602                         endEnvironment();
603                 }
604                 if (lay.isEnvironment()) {
605                         // we are going into a new environment
606                         // LYXERR0("In: " << lay.name());
607                         beginEnvironment();
608                 }
609         } 
610 }
611
612
613 void Counters::beginEnvironment()
614 {
615         counter_stack_.push_back(counter_stack_.back());
616 }
617
618
619 void Counters::endEnvironment()
620 {
621         LASSERT(!counter_stack_.empty(), return);
622         counter_stack_.pop_back();
623 }
624
625
626 } // namespace lyx