]> git.lyx.org Git - lyx.git/blob - src/mathed/math_factory.C
Fix event loop to no longer eat CPU
[lyx.git] / src / mathed / math_factory.C
1 /**
2  * \file math_factory.C
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 "math_factory.h"
14 #include "math_parser.h"
15 #include "math_arrayinset.h"
16 #include "math_amsarrayinset.h"
17 #include "math_binominset.h"
18 #include "math_boxinset.h"
19 #include "math_boxedinset.h"
20 #include "math_boldsymbolinset.h"
21 #include "math_casesinset.h"
22 #include "math_colorinset.h"
23 #include "math_decorationinset.h"
24 #include "math_dfracinset.h"
25 #include "math_dotsinset.h"
26 #include "math_fboxinset.h"
27 #include "math_frameboxinset.h"
28 #include "math_fontinset.h"
29 #include "math_fontoldinset.h"
30 #include "math_fracinset.h"
31 #include "math_kerninset.h"
32 #include "math_lefteqninset.h"
33 #include "math_macro.h"
34 #include "math_macroarg.h"
35 #include "math_macrotable.h"
36 #include "math_macrotemplate.h"
37 #include "math_makeboxinset.h"
38 #include "math_oversetinset.h"
39 #include "math_parser.h"
40 #include "math_rootinset.h"
41 #include "math_sizeinset.h"
42 #include "math_spaceinset.h"
43 #include "math_splitinset.h"
44 #include "math_sqrtinset.h"
45 #include "math_stackrelinset.h"
46 #include "math_substackinset.h"
47 #include "math_symbolinset.h"
48 #include "math_tabularinset.h"
49 #include "math_tfracinset.h"
50 #include "math_undersetinset.h"
51 #include "math_unknowninset.h"
52 #include "math_xarrowinset.h"
53
54 //#include "insets/insetref.h"
55 #include "ref_inset.h"
56
57 #include "debug.h"
58 #include "math_support.h"
59
60 #include "support/filetools.h" // LibFileSearch
61 #include "support/lstrings.h"
62
63 #include "frontends/lyx_gui.h"
64
65 #include <fstream>
66 #include <sstream>
67
68 using lyx::support::LibFileSearch;
69 using lyx::support::split;
70
71 using std::string;
72 using std::endl;
73 using std::istringstream;
74
75 bool has_math_fonts;
76
77
78 namespace {
79
80 // file scope
81 typedef std::map<string, latexkeys> WordList;
82 WordList theWordList;
83
84
85 bool math_font_available(string & name)
86 {
87         LyXFont f;
88         augmentFont(f, name);
89
90         // Do we have the font proper?
91         if (lyx_gui::font_available(f))
92                 return true;
93
94         // can we fake it?
95         if (name == "eufrak") {
96                 name = "lyxfakefrak";
97                 return true;
98         }
99
100         lyxerr[Debug::MATHED]
101                 << "font " << name << " not available and I can't fake it"
102                 << endl;
103         return false;
104 }
105
106
107 void initSymbols()
108 {
109         string const filename = LibFileSearch(string(), "symbols");
110         lyxerr[Debug::MATHED] << "read symbols from " << filename << endl;
111         if (filename.empty()) {
112                 lyxerr << "Could not find symbols file" << endl;
113                 return;
114         }
115
116         std::ifstream fs(filename.c_str());
117         string line;
118         bool skip = false;
119         while (getline(fs, line)) {
120                 int charid     = 0;
121                 int fallbackid = 0;
122                 if (!line.empty() && line[0] == '#')
123                         continue;
124
125                 // special case of iffont/else/endif
126                 if (line.size() >= 7 && line.substr(0, 6) == "iffont") {
127                         istringstream is(line);
128                         string tmp;
129                         is >> tmp;
130                         is >> tmp;
131                         skip = !math_font_available(tmp);
132                         continue;
133                 } else if (line.size() >= 4 && line.substr(0, 4) == "else") {
134                         skip = !skip;
135                 } else if (line.size() >= 5 && line.substr(0, 5) == "endif") {
136                         skip = false;
137                         continue;
138                 } else if (skip)
139                         continue;
140
141                 // special case of pre-defined macros
142                 if (line.size() > 8 && line.substr(0, 5) == "\\def\\") {
143                         //lyxerr << "macro definition: '" << line << '\'' << endl;
144                         MacroTable::globalMacros().insert(line);
145                         continue;
146                 }
147
148                 istringstream is(line);
149                 latexkeys tmp;
150                 is >> tmp.name >> tmp.inset;
151                 if (isFontName(tmp.inset))
152                         is >> charid >> fallbackid >> tmp.extra >> tmp.xmlname;
153                 else
154                         is >> tmp.extra;
155                 if (!is) {
156                         lyxerr[Debug::MATHED] << "skipping line '" << line << '\'' << endl;
157                         lyxerr[Debug::MATHED]
158                                 << tmp.name << ' ' << tmp.inset << ' ' << tmp.extra << endl;
159                         continue;
160                 }
161
162                 if (isFontName(tmp.inset)) {
163                         // tmp.inset _is_ the fontname here.
164                         // create fallbacks if necessary
165
166                         // store requirements as long as we can
167                         if (tmp.inset == "msa" || tmp.inset == "msb")
168                                 tmp.requires = "amssymb";
169                         // See http://bugzilla.lyx.org/show_bug.cgi?id=1942
170                         // else if (tmp.inset == "wasy")
171                         //      tmp.requires = "wasysym";
172
173                         // symbol font is not available sometimes
174                         string symbol_font = "lyxsymbol";
175
176                         if (tmp.extra == "func" || tmp.extra == "funclim" || tmp.extra == "special") {
177                                 lyxerr[Debug::MATHED] << "symbol abuse for " << tmp.name << endl;
178                                 tmp.draw = tmp.name;
179                         } else if (math_font_available(tmp.inset)) {
180                                 lyxerr[Debug::MATHED] << "symbol available for " << tmp.name << endl;
181                                 tmp.draw += char(charid);
182                         } else if (fallbackid && math_font_available(symbol_font)) {
183                                 if (tmp.inset == "cmex")
184                                         tmp.inset  = "lyxsymbol";
185                                 else
186                                         tmp.inset  = "lyxboldsymbol";
187                                 lyxerr[Debug::MATHED] << "symbol fallback for " << tmp.name << endl;
188                                 tmp.draw += char(fallbackid);
189                         } else {
190                                 lyxerr[Debug::MATHED] << "faking " << tmp.name << endl;
191                                 tmp.draw = tmp.name;
192                                 tmp.inset = "lyxtex";
193                         }
194                 } else {
195                         // it's a proper inset
196                         lyxerr[Debug::MATHED] << "inset " << tmp.inset
197                                               << " used for " << tmp.name
198                                               << endl;
199                 }
200
201                 if (theWordList.find(tmp.name) != theWordList.end())
202                         lyxerr[Debug::MATHED]
203                                 << "readSymbols: inset " << tmp.name
204                                 << " already exists." << endl;
205                 else
206                         theWordList[tmp.name] = tmp;
207
208                 lyxerr[Debug::MATHED]
209                         << "read symbol '" << tmp.name
210                         << "  inset: " << tmp.inset
211                         << "  draw: " << int(tmp.draw.empty() ? 0 : tmp.draw[0])
212                         << "  extra: " << tmp.extra
213                         << '\'' << endl;
214         }
215         string tmp = "cmm";
216         string tmp2 = "cmsy";
217         has_math_fonts = math_font_available(tmp) && math_font_available(tmp2);
218 }
219
220
221 } // namespace anon
222
223
224 void initMath()
225 {
226         static bool initialized = false;
227         if (!initialized) {
228                 initialized = true;
229                 initParser();
230                 initSymbols();
231         }
232 }
233
234
235 latexkeys const * in_word_set(string const & str)
236 {
237         WordList::iterator it = theWordList.find(str);
238         return it != theWordList.end() ? &(it->second) : 0;
239 }
240
241
242 MathAtom createMathInset(string const & s)
243 {
244         //lyxerr << "creating inset with name: '" << s << '\'' << endl;
245         latexkeys const * l = in_word_set(s);
246         if (l) {
247                 string const & inset = l->inset;
248                 //lyxerr << " found inset: '" << inset << '\'' << endl;
249                 if (inset == "ref")
250                         return MathAtom(new RefInset(l->name));
251                 if (inset == "overset")
252                         return MathAtom(new MathOversetInset);
253                 if (inset == "underset")
254                         return MathAtom(new MathUndersetInset);
255                 if (inset == "decoration")
256                         return MathAtom(new MathDecorationInset(l));
257                 if (inset == "space")
258                         return MathAtom(new MathSpaceInset(l->name));
259                 if (inset == "dots")
260                         return MathAtom(new MathDotsInset(l));
261                 if (inset == "mbox")
262                         // return MathAtom(new MathMBoxInset);
263                         // MathMBoxInset is proposed to replace MathBoxInset,
264                         // but is not ready yet (it needs a BufferView for
265                         // construction)
266                         return MathAtom(new MathBoxInset(l->name));
267 //              if (inset == "fbox")
268 //                      return MathAtom(new MathFboxInset(l));
269                 if (inset == "style")
270                         return MathAtom(new MathSizeInset(l));
271                 if (inset == "font")
272                         return MathAtom(new MathFontInset(l));
273                 if (inset == "oldfont")
274                         return MathAtom(new MathFontOldInset(l));
275                 if (inset == "matrix")
276                         return MathAtom(new MathAMSArrayInset(s));
277                 return MathAtom(new MathSymbolInset(l));
278         }
279
280         if (s.size() == 2 && s[0] == '#' && s[1] >= '1' && s[1] <= '9')
281                 return MathAtom(new MathMacroArgument(s[1] - '0'));
282         if (s.size() == 3 && s[0] == '\\' && s[1] == '#'
283                         && s[2] >= '1' && s[2] <= '9')
284                 return MathAtom(new MathMacroArgument(s[2] - '0'));
285         if (s == "boxed")
286                 return MathAtom(new MathBoxedInset());
287         if (s == "fbox")
288                 return MathAtom(new MathFboxInset());
289         if (s == "framebox")
290                 return MathAtom(new MathFrameboxInset);
291         if (s == "makebox")
292                 return MathAtom(new MathMakeboxInset);
293         if (s == "kern")
294                 return MathAtom(new MathKernInset);
295         if (s == "xrightarrow" || s == "xleftarrow")
296                 return MathAtom(new MathXArrowInset(s));
297         if (s == "split" || s == "gathered" || s == "aligned" || s == "alignedat")
298                 return MathAtom(new MathSplitInset(s));
299         if (s == "cases")
300                 return MathAtom(new MathCasesInset);
301         if (s == "substack")
302                 return MathAtom(new MathSubstackInset);
303         if (s == "subarray" || s == "array")
304                 return MathAtom(new MathArrayInset(s, 1, 1));
305         if (s == "sqrt")
306                 return MathAtom(new MathSqrtInset);
307         if (s == "root")
308                 return MathAtom(new MathRootInset);
309         if (s == "tabular")
310                 return MathAtom(new MathTabularInset(s, 1, 1));
311         if (s == "stackrel")
312                 return MathAtom(new MathStackrelInset);
313         if (s == "binom" || s == "choose")
314                 return MathAtom(new MathBinomInset(s == "choose"));
315         if (s == "over" || s == "frac")
316                 return MathAtom(new MathFracInset);
317         //if (s == "infer")
318         //      return MathAtom(new MathInferInset);
319         if (s == "atop")
320                 return MathAtom(new MathFracInset(true));
321         if (s == "lefteqn")
322                 return MathAtom(new MathLefteqnInset);
323         if (s == "boldsymbol")
324                 return MathAtom(new MathBoldsymbolInset);
325         if (s == "color" || s == "normalcolor")
326                 return MathAtom(new MathColorInset(true));
327         if (s == "textcolor")
328                 return MathAtom(new MathColorInset(false));
329         if (s == "dfrac")
330                 return MathAtom(new MathDfracInset);
331         if (s == "tfrac")
332                 return MathAtom(new MathTfracInset);
333
334         if (MacroTable::globalMacros().has(s))
335                 return MathAtom(new MathMacro(s,
336                         MacroTable::globalMacros().get(s).numargs()));
337         //if (MacroTable::localMacros().has(s))
338         //      return MathAtom(new MathMacro(s,
339         //              MacroTable::localMacros().get(s).numargs()));
340
341         //lyxerr << "creating unknown inset '" << s << "'" << endl;
342         return MathAtom(new MathUnknownInset(s));
343 }
344
345
346 bool createMathInset_fromDialogStr(string const & str, MathArray & ar)
347 {
348         // An example str:
349         // "ref LatexCommand \\ref{sec:Title}\n\\end_inset\n\n";
350         string name;
351         string body = split(str, name, ' ');
352
353         if (name != "ref" )
354                 return false;
355
356         // body comes with a head "LatexCommand " and a
357         // tail "\nend_inset\n\n". Strip them off.
358         string trimmed;
359         body = split(body, trimmed, ' ');
360         split(body, trimmed, '\n');
361
362         mathed_parse_cell(ar, trimmed);
363         if (ar.size() != 1)
364                 return false;
365
366         return ar[0].nucleus();
367 }
368