]> git.lyx.org Git - lyx.git/blob - src/mathed/MacroTable.cpp
Linearize macros in box edit mode too.
[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         InsetMathSqrt inset(const_cast<Buffer *>(buffer_));
72
73         docstring const & definition(display_.empty() ? definition_ : display_);
74         asArray(definition, inset.cell(0), Parse::QUIET);
75         //lyxerr << "MathData::expand: args: " << args << endl;
76         //LYXERR0("MathData::expand: ar: " << inset.cell(0));
77         for (DocIterator it = doc_iterator_begin(buffer_, &inset); it; it.forwardChar()) {
78                 if (!it.nextInset())
79                         continue;
80                 if (it.nextInset()->lyxCode() != MATH_MACROARG_CODE)
81                         continue;
82                 //it.cell().erase(it.pos());
83                 //it.cell().insert(it.pos(), it.nextInset()->asInsetMath()
84                 size_t n = static_cast<MathMacroArgument*>(it.nextInset())->number();
85                 if (n <= args.size()) {
86                         it.cell().erase(it.pos());
87                         it.cell().insert(it.pos(), args[n - 1]);
88                 }
89         }
90         //LYXERR0("MathData::expand: res: " << inset.cell(0));
91         to = inset.cell(0);
92         // If the result is equal to the definition then we either have a
93         // recursive loop, or the definition did not contain any macro in the
94         // first place.
95         return asString(to) != definition;
96 }
97
98
99 size_t MacroData::optionals() const
100 {
101         updateData();
102         return optionals_;
103 }
104
105
106 vector<docstring> const & MacroData::defaults() const
107 {
108         updateData();
109         return defaults_;
110 }
111
112
113 string const MacroData::requires() const
114 {
115         if (sym_)
116                 return sym_->requires;
117         return string();
118 }
119
120
121 bool MacroData::hidden() const
122 {
123         if (sym_)
124                 return sym_->hidden;
125         return false;
126 }
127
128
129 docstring const MacroData::xmlname() const
130 {
131         if (sym_)
132                 return sym_->xmlname;
133         return docstring();
134 }
135
136
137 char const * MacroData::MathMLtype() const
138 {
139         return sym_ ? sym_->MathMLtype() : 0;
140 }
141
142
143 void MacroData::unlock() const
144 {
145         --lockCount_;
146         LASSERT(lockCount_ >= 0, lockCount_ = 0);
147 }
148
149
150 void MacroData::queryData(MathMacroTemplate const & macro) const
151 {
152         if (queried_)
153                 return;
154
155         queried_ = true;
156         definition_ = macro.definition();
157         numargs_ = macro.numArgs();
158         display_ = macro.displayDefinition();
159         redefinition_ = macro.redefinition();
160         type_ = macro.type();
161         optionals_ = macro.numOptionals();
162
163         macro.getDefaults(defaults_);
164 }
165
166
167 void MacroData::updateData() const
168 {
169         if (queried_)
170                 return;
171
172         LBUFERR(buffer_);
173
174         // Try to fix position DocIterator. Should not do anything in theory.
175         pos_.fixIfBroken();
176
177         // find macro template
178         Inset * inset = pos_.nextInset();
179         if (inset == 0 || inset->lyxCode() != MATHMACRO_CODE) {
180                 lyxerr << "BUG: No macro template found by MacroData" << endl;
181                 return;
182         }
183
184         // query the data from the macro template
185         queryData(static_cast<MathMacroTemplate const &>(*inset));
186 }
187
188
189 int MacroData::write(odocstream & os, bool overwriteRedefinition) const
190 {
191         updateData();
192
193         // find macro template
194         Inset * inset = pos_.nextInset();
195         if (inset == 0 || inset->lyxCode() != MATHMACRO_CODE) {
196                 lyxerr << "BUG: No macro template found by MacroData" << endl;
197                 return 0;
198         }
199
200         // output template
201         MathMacroTemplate const & tmpl =
202                 static_cast<MathMacroTemplate const &>(*inset);
203         otexrowstream ots(os);
204         WriteStream wi(ots, false, true, WriteStream::wsDefault);
205         return tmpl.write(wi, overwriteRedefinition);
206 }
207
208
209 /////////////////////////////////////////////////////////////////////
210 //
211 // The global table of macros
212 //
213 /////////////////////////////////////////////////////////////////////
214
215 MacroTable & MacroTable::globalMacros()
216 {
217         static MacroTable theGlobalMacros;
218         return theGlobalMacros;
219 }
220
221
222 MacroData const * MacroTable::get(docstring const & name) const
223 {
224         const_iterator it = find(name);
225         return it == end() ? 0 : &it->second;
226 }
227
228
229 MacroTable::iterator
230 MacroTable::insert(docstring const & name, MacroData const & data)
231 {
232         //lyxerr << "MacroTable::insert: " << to_utf8(name) << endl;
233         iterator it = find(name);
234         if (it == end())
235                 it = map<docstring, MacroData>::insert(
236                                 make_pair(name, data)).first;
237         else
238                 it->second = data;
239         return it;
240 }
241
242
243 MacroTable::iterator
244 MacroTable::insert(Buffer * buf, docstring const & def)
245 {
246         //lyxerr << "MacroTable::insert, def: " << to_utf8(def) << endl;
247         MathMacroTemplate mac(buf);
248         mac.fromString(def);
249         MacroData data(buf, mac);
250         return insert(mac.name(), data);
251 }
252
253
254 void MacroTable::getMacroNames(std::set<docstring> & names, bool gethidden) const
255 {
256         for (const_iterator it = begin(); it != end(); ++it)
257                 if (gethidden || !it->second.hidden())
258                         names.insert(it->first);
259 }
260
261
262 void MacroTable::dump()
263 {
264         lyxerr << "\n------------------------------------------" << endl;
265         for (const_iterator it = begin(); it != end(); ++it)
266                 lyxerr << to_utf8(it->first)
267                         << " [" << to_utf8(it->second.definition()) << "] : "
268                         << " [" << to_utf8(it->second.display()) << "] : "
269                         << endl;
270         lyxerr << "------------------------------------------" << endl;
271 }
272
273
274 /////////////////////////////////////////////////////////////////////
275 //
276 // MacroContext
277 //
278 /////////////////////////////////////////////////////////////////////
279
280 MacroContext::MacroContext(Buffer const * buf, DocIterator const & pos)
281         : buf_(buf), pos_(pos)
282 {
283 }
284
285
286 MacroData const * MacroContext::get(docstring const & name) const
287 {
288         return buf_->getMacro(name, pos_);
289 }
290
291 } // namespace lyx