]> git.lyx.org Git - lyx.git/blob - src/mathed/MacroTable.cpp
Fix html export of \ne (second part of bug #9372)
[lyx.git] / src / mathed / MacroTable.cpp
1 /**
2  * \file MacroTable.cpp
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * \author André Pönitz
7  *
8  * Full author contact details are available in file CREDITS.
9  */
10
11 #include <config.h>
12
13 #include "InsetMathSqrt.h"
14 #include "MacroTable.h"
15 #include "MathMacroTemplate.h"
16 #include "MathMacroArgument.h"
17 #include "MathParser.h"
18 #include "MathStream.h"
19 #include "MathSupport.h"
20 #include "InsetMathNest.h"
21
22 #include "Buffer.h"
23 #include "DocIterator.h"
24 #include "InsetList.h"
25 #include "Text.h"
26
27 #include "support/debug.h"
28 #include "support/gettext.h"
29 #include "support/lassert.h"
30
31 #include <sstream>
32
33 using namespace std;
34
35 namespace lyx {
36
37
38 /////////////////////////////////////////////////////////////////////
39 //
40 // MacroData
41 //
42 /////////////////////////////////////////////////////////////////////
43
44 MacroData::MacroData(Buffer * buf)
45         : buffer_(buf), queried_(true), numargs_(0), sym_(0), optionals_(0),
46           lockCount_(0), redefinition_(false), type_(MacroTypeNewcommand)
47 {}
48
49
50 MacroData::MacroData(Buffer * buf, DocIterator const & pos)
51         : buffer_(buf), pos_(pos), queried_(false), numargs_(0), sym_(0),
52           optionals_(0), lockCount_(0), redefinition_(false),
53           type_(MacroTypeNewcommand)
54 {
55 }
56
57
58 MacroData::MacroData(Buffer * buf, MathMacroTemplate const & macro)
59         : buffer_(buf), queried_(false), numargs_(0), sym_(0), optionals_(0),
60           lockCount_(0), redefinition_(false), type_(MacroTypeNewcommand)
61 {
62         queryData(macro);
63 }
64
65
66 bool MacroData::expand(vector<MathData> const & args, MathData & to) const
67 {
68         updateData();
69
70         // Hack. Any inset with a cell would do.
71         static InsetMathSqrt inset(0);
72         inset.setBuffer(const_cast<Buffer &>(*buffer_));
73
74         docstring const & definition(display_.empty() ? definition_ : display_);
75         asArray(definition, inset.cell(0));
76         //lyxerr << "MathData::expand: args: " << args << endl;
77         //LYXERR0("MathData::expand: ar: " << inset.cell(0));
78         for (DocIterator it = doc_iterator_begin(buffer_, &inset); it; it.forwardChar()) {
79                 if (!it.nextInset())
80                         continue;
81                 if (it.nextInset()->lyxCode() != MATH_MACROARG_CODE)
82                         continue;
83                 //it.cell().erase(it.pos());
84                 //it.cell().insert(it.pos(), it.nextInset()->asInsetMath()
85                 size_t n = static_cast<MathMacroArgument*>(it.nextInset())->number();
86                 if (n <= args.size()) {
87                         it.cell().erase(it.pos());
88                         it.cell().insert(it.pos(), args[n - 1]);
89                 }
90         }
91         //LYXERR0("MathData::expand: res: " << inset.cell(0));
92         to = inset.cell(0);
93         // If the result is equal to the definition then we either have a
94         // recursive loop, or the definition did not contain any macro in the
95         // first place.
96         return asString(to) != definition;
97 }
98
99
100 size_t MacroData::optionals() const
101 {
102         updateData();
103         return optionals_;
104 }
105
106
107 vector<docstring> const & MacroData::defaults() const
108 {
109         updateData();
110         return defaults_;
111 }
112
113
114 string const MacroData::requires() const
115 {
116         if (sym_)
117                 return to_utf8(sym_->requires);
118         return string();
119 }
120
121
122 void MacroData::unlock() const
123 {
124         --lockCount_;
125         LASSERT(lockCount_ >= 0, lockCount_ = 0);
126 }
127
128
129 void MacroData::queryData(MathMacroTemplate const & macro) const
130 {
131         if (queried_)
132                 return;
133
134         queried_ = true;
135         definition_ = macro.definition();
136         numargs_ = macro.numArgs();
137         display_ = macro.displayDefinition();
138         redefinition_ = macro.redefinition();
139         type_ = macro.type();
140         optionals_ = macro.numOptionals();
141
142         macro.getDefaults(defaults_);
143 }
144
145
146 void MacroData::updateData() const
147 {
148         if (queried_)
149                 return;
150
151         LBUFERR(buffer_);
152
153         // Try to fix position DocIterator. Should not do anything in theory.
154         pos_.fixIfBroken();
155
156         // find macro template
157         Inset * inset = pos_.nextInset();
158         if (inset == 0 || inset->lyxCode() != MATHMACRO_CODE) {
159                 lyxerr << "BUG: No macro template found by MacroData" << endl;
160                 return;
161         }
162
163         // query the data from the macro template
164         queryData(static_cast<MathMacroTemplate const &>(*inset));
165 }
166
167
168 int MacroData::write(odocstream & os, bool overwriteRedefinition) const
169 {
170         updateData();
171
172         // find macro template
173         Inset * inset = pos_.nextInset();
174         if (inset == 0 || inset->lyxCode() != MATHMACRO_CODE) {
175                 lyxerr << "BUG: No macro template found by MacroData" << endl;
176                 return 0;
177         }
178
179         // output template
180         MathMacroTemplate const & tmpl =
181                 static_cast<MathMacroTemplate const &>(*inset);
182         WriteStream wi(os, false, true, WriteStream::wsDefault);
183         return tmpl.write(wi, overwriteRedefinition);
184 }
185
186
187 /////////////////////////////////////////////////////////////////////
188 //
189 // The global table of macros
190 //
191 /////////////////////////////////////////////////////////////////////
192
193 MacroTable & MacroTable::globalMacros()
194 {
195         static MacroTable theGlobalMacros;
196         return theGlobalMacros;
197 }
198
199
200 MacroData const * MacroTable::get(docstring const & name) const
201 {
202         const_iterator it = find(name);
203         return it == end() ? 0 : &it->second;
204 }
205
206
207 MacroTable::iterator
208 MacroTable::insert(docstring const & name, MacroData const & data)
209 {
210         //lyxerr << "MacroTable::insert: " << to_utf8(name) << endl;
211         iterator it = find(name);
212         if (it == end())
213                 it = map<docstring, MacroData>::insert(
214                                 make_pair(name, data)).first;
215         else
216                 it->second = data;
217         return it;
218 }
219
220
221 MacroTable::iterator
222 MacroTable::insert(Buffer * buf, docstring const & def)
223 {
224         //lyxerr << "MacroTable::insert, def: " << to_utf8(def) << endl;
225         MathMacroTemplate mac(buf, def);
226         MacroData data(buf, mac);
227         return insert(mac.name(), data);
228 }
229
230
231 void MacroTable::getMacroNames(std::set<docstring> & names) const
232 {
233         for (const_iterator it = begin(); it != end(); ++it)
234                 names.insert(it->first);
235 }
236
237
238 void MacroTable::dump()
239 {
240         lyxerr << "\n------------------------------------------" << endl;
241         for (const_iterator it = begin(); it != end(); ++it)
242                 lyxerr << to_utf8(it->first)
243                         << " [" << to_utf8(it->second.definition()) << "] : "
244                         << " [" << to_utf8(it->second.display()) << "] : "
245                         << endl;
246         lyxerr << "------------------------------------------" << endl;
247 }
248
249
250 /////////////////////////////////////////////////////////////////////
251 //
252 // MacroContext
253 //
254 /////////////////////////////////////////////////////////////////////
255
256 MacroContext::MacroContext(Buffer const * buf, DocIterator const & pos)
257         : buf_(buf), pos_(pos)
258 {
259 }
260
261
262 MacroData const * MacroContext::get(docstring const & name) const
263 {
264         return buf_->getMacro(name, pos_);
265 }
266
267 } // namespace lyx