]> git.lyx.org Git - lyx.git/blob - src/mathed/MathFactory.cpp
4c32281d83375238d12d1ead8e8923cbd8cc7ad8
[lyx.git] / src / mathed / MathFactory.cpp
1 /**
2  * \file MathFactory.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 "MathFactory.h"
14
15 #include "InsetMathAMSArray.h"
16 #include "InsetMathArray.h"
17 #include "InsetMathBoldSymbol.h"
18 #include "InsetMathBox.h"
19 #include "InsetMathCases.h"
20 #include "InsetMathColor.h"
21 #include "InsetMathDecoration.h"
22 #include "InsetMathDots.h"
23 #include "InsetMathEnsureMath.h"
24 #include "InsetMathFont.h"
25 #include "InsetMathFontOld.h"
26 #include "InsetMathFrac.h"
27 #include "InsetMathKern.h"
28 #include "InsetMathLefteqn.h"
29 #include "InsetMathOverset.h"
30 #include "InsetMathPhantom.h"
31 #include "InsetMathRef.h"
32 #include "InsetMathRoot.h"
33 #include "InsetMathSize.h"
34 #include "InsetMathSpace.h"
35 #include "InsetMathSpecialChar.h"
36 #include "InsetMathSplit.h"
37 #include "InsetMathSqrt.h"
38 #include "InsetMathStackrel.h"
39 #include "InsetMathSubstack.h"
40 #include "InsetMathSymbol.h"
41 #include "InsetMathTabular.h"
42 #include "InsetMathUnderset.h"
43 #include "InsetMathUnknown.h"
44 #include "InsetMathXArrow.h"
45 #include "InsetMathXYMatrix.h"
46 #include "MacroTable.h"
47 #include "MathMacro.h"
48 #include "MathMacroArgument.h"
49 #include "MathParser.h"
50 #include "MathStream.h"
51 #include "MathSupport.h"
52
53 #include "insets/InsetCommand.h"
54
55 #include "support/debug.h"
56 #include "support/docstream.h"
57 #include "support/FileName.h"
58 #include "support/filetools.h" // LibFileSearch
59 #include "support/lstrings.h"
60
61 #include "frontends/FontLoader.h"
62
63 #include "LyX.h" // use_gui
64
65 using namespace std;
66 using namespace lyx::support;
67
68 namespace lyx {
69
70 bool has_math_fonts;
71
72
73 namespace {
74
75 MathWordList theWordList;
76
77
78 bool isMathFontAvailable(docstring & name)
79 {
80         if (!use_gui)
81                 return false;
82
83         FontInfo f;
84         augmentFont(f, name);
85
86         // Do we have the font proper?
87         if (theFontLoader().available(f))
88                 return true;
89
90         // can we fake it?
91         if (name == "eufrak") {
92                 name = from_ascii("lyxfakefrak");
93                 return true;
94         }
95
96         LYXERR(Debug::MATHED,
97                 "font " << to_utf8(name) << " not available and I can't fake it");
98         return false;
99 }
100
101
102 void initSymbols()
103 {
104         FileName const filename = libFileSearch(string(), "symbols");
105         LYXERR(Debug::MATHED, "read symbols from " << filename);
106         if (filename.empty()) {
107                 lyxerr << "Could not find symbols file" << endl;
108                 return;
109         }
110
111         ifstream fs(filename.toFilesystemEncoding().c_str());
112         string line;
113         bool skip = false;
114         while (getline(fs, line)) {
115                 int charid     = 0;
116                 int fallbackid = 0;
117                 if (line.empty() || line[0] == '#')
118                         continue;
119
120                 // special case of iffont/else/endif
121                 if (line.size() >= 7 && line.substr(0, 6) == "iffont") {
122                         istringstream is(line);
123                         string tmp;
124                         is >> tmp;
125                         is >> tmp;
126                         docstring t = from_utf8(tmp);
127                         skip = !isMathFontAvailable(t);
128                         continue;
129                 } else if (line.size() >= 4 && line.substr(0, 4) == "else") {
130                         skip = !skip;
131                 } else if (line.size() >= 5 && line.substr(0, 5) == "endif") {
132                         skip = false;
133                         continue;
134                 } else if (skip)
135                         continue;
136
137                 // special case of pre-defined macros
138                 if (line.size() > 8 && line.substr(0, 5) == "\\def\\") {
139                         //lyxerr << "macro definition: '" << line << '\'' << endl;
140                         istringstream is(line);
141                         string macro;
142                         string requires;
143                         is >> macro >> requires;
144                         MacroTable::globalMacros().insert(from_utf8(macro), requires);
145                         continue;
146                 }
147
148                 idocstringstream is(from_utf8(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                 // requires is optional
156                 if (is)
157                         is >> tmp.requires;
158                 else {
159                         LYXERR(Debug::MATHED, "skipping line '" << line << "'\n"
160                                 << to_utf8(tmp.name) << ' ' << to_utf8(tmp.inset) << ' '
161                                 << to_utf8(tmp.extra));
162                         continue;
163                 }
164
165                 if (isFontName(tmp.inset)) {
166                         // tmp.inset _is_ the fontname here.
167                         // create fallbacks if necessary
168
169                         // store requirements as long as we can
170                         if (tmp.requires.empty()) {
171                                 if (tmp.inset == "msa" || tmp.inset == "msb")
172                                         tmp.requires = from_ascii("amssymb");
173                                 else if (tmp.inset == "wasy")
174                                         tmp.requires = from_ascii("wasysym");
175                         }
176
177                         // symbol font is not available sometimes
178                         docstring symbol_font = from_ascii("lyxsymbol");
179
180                         if (tmp.extra == "func" || tmp.extra == "funclim" || tmp.extra == "special") {
181                                 LYXERR(Debug::MATHED, "symbol abuse for " << to_utf8(tmp.name));
182                                 tmp.draw = tmp.name;
183                         } else if (isMathFontAvailable(tmp.inset)) {
184                                 LYXERR(Debug::MATHED, "symbol available for " << to_utf8(tmp.name));
185                                 tmp.draw.push_back(char_type(charid));
186                         } else if (fallbackid && isMathFontAvailable(symbol_font)) {
187                                 if (tmp.inset == "cmex")
188                                         tmp.inset = from_ascii("lyxsymbol");
189                                 else
190                                         tmp.inset = from_ascii("lyxboldsymbol");
191                                 LYXERR(Debug::MATHED, "symbol fallback for " << to_utf8(tmp.name));
192                                 tmp.draw.push_back(char_type(fallbackid));
193                         } else {
194                                 LYXERR(Debug::MATHED, "faking " << to_utf8(tmp.name));
195                                 tmp.draw = tmp.name;
196                                 tmp.inset = from_ascii("lyxtex");
197                         }
198                 } else {
199                         // it's a proper inset
200                         LYXERR(Debug::MATHED, "inset " << to_utf8(tmp.inset)
201                                               << " used for " << to_utf8(tmp.name));
202                 }
203
204                 if (theWordList.find(tmp.name) != theWordList.end())
205                         LYXERR(Debug::MATHED, "readSymbols: inset " << to_utf8(tmp.name)
206                                 << " already exists.");
207                 else
208                         theWordList[tmp.name] = tmp;
209
210                 LYXERR(Debug::MATHED, "read symbol '" << to_utf8(tmp.name)
211                         << "  inset: " << to_utf8(tmp.inset)
212                         << "  draw: " << int(tmp.draw.empty() ? 0 : tmp.draw[0])
213                         << "  extra: " << to_utf8(tmp.extra)
214                         << "  requires: " << to_utf8(tmp.requires) << '\'');
215         }
216         docstring tmp = from_ascii("cmm");
217         docstring tmp2 = from_ascii("cmsy");
218         has_math_fonts = isMathFontAvailable(tmp) && isMathFontAvailable(tmp2);
219 }
220
221
222 bool isSpecialChar(docstring const & name)
223 {
224         if (name.size() != 1)
225                 return  name == "textasciicircum" || name == "mathcircumflex" ||
226                         name == "textasciitilde"  || name == "textbackslash";
227
228         char_type const c = name.at(0);
229         return  c == '{' || c == '}' || c == '&' || c == '$' ||
230                 c == '#' || c == '%' || c == '_' || c == ' ';
231 }
232
233
234 } // namespace anon
235
236 MathWordList const & mathedWordList()
237 {
238         return theWordList;
239 }
240
241
242 void initMath()
243 {
244         static bool initialized = false;
245         if (!initialized) {
246                 initialized = true;
247                 initParser();
248                 initSymbols();
249         }
250 }
251
252
253 bool ensureMath(WriteStream & os, bool needs_math_mode, bool macro)
254 {
255         bool brace = os.pendingBrace();
256         os.pendingBrace(false);
257         if (!os.latex())
258                 return brace;
259         if (os.textMode() && needs_math_mode) {
260                 os << "\\ensuremath{";
261                 os.textMode(false);
262                 brace = true;
263         } else if (macro && brace && !needs_math_mode) {
264                 // This is a user defined macro, but not a MathMacro, so we
265                 // cannot be sure what mode is needed. As it was entered in
266                 // a text box, we restore the text mode.
267                 os << '}';
268                 os.textMode(true);
269                 brace = false;
270         }
271         return brace;
272 }
273
274
275 bool ensureMode(WriteStream & os, InsetMath::mode_type mode)
276 {
277         bool textmode = mode == InsetMath::TEXT_MODE;
278         if (os.latex() && textmode && os.pendingBrace()) {
279                 os.os() << '}';
280                 os.pendingBrace(false);
281                 os.pendingSpace(false);
282                 os.textMode(true);
283         }
284         bool oldmode = os.textMode();
285         os.textMode(textmode);
286         return oldmode;
287 }
288
289
290 latexkeys const * in_word_set(docstring const & str)
291 {
292         MathWordList::iterator it = theWordList.find(str);
293         return it != theWordList.end() ? &(it->second) : 0;
294 }
295
296
297 MathAtom createInsetMath(char const * const s)
298 {
299         return createInsetMath(from_utf8(s));
300 }
301
302
303 MathAtom createInsetMath(docstring const & s)
304 {
305         //lyxerr << "creating inset with name: '" << to_utf8(s) << '\'' << endl;
306         latexkeys const * l = in_word_set(s);
307         if (l) {
308                 docstring const & inset = l->inset;
309                 //lyxerr << " found inset: '" << inset << '\'' << endl;
310                 if (inset == "ref")
311                         return MathAtom(new InsetMathRef(l->name));
312                 if (inset == "overset")
313                         return MathAtom(new InsetMathOverset);
314                 if (inset == "underset")
315                         return MathAtom(new InsetMathUnderset);
316                 if (inset == "decoration")
317                         return MathAtom(new InsetMathDecoration(l));
318                 if (inset == "space")
319                         return MathAtom(new InsetMathSpace(l->name));
320                 if (inset == "dots")
321                         return MathAtom(new InsetMathDots(l));
322                 if (inset == "mbox")
323                         // return MathAtom(new InsetMathMBox);
324                         // InsetMathMBox is proposed to replace InsetMathBox,
325                         // but is not ready yet (it needs a BufferView for
326                         // construction)
327                         return MathAtom(new InsetMathBox(l->name));
328 //              if (inset == "fbox")
329 //                      return MathAtom(new InsetMathFBox(l));
330                 if (inset == "style")
331                         return MathAtom(new InsetMathSize(l));
332                 if (inset == "font")
333                         return MathAtom(new InsetMathFont(l));
334                 if (inset == "oldfont")
335                         return MathAtom(new InsetMathFontOld(l));
336                 if (inset == "matrix")
337                         return MathAtom(new InsetMathAMSArray(s));
338                 if (inset == "split")
339                         return MathAtom(new InsetMathSplit(s));
340                 if (inset == "big")
341                         // we can't create a InsetMathBig, since the argument
342                         // is missing.
343                         return MathAtom(new InsetMathUnknown(s));
344                 return MathAtom(new InsetMathSymbol(l));
345         }
346
347         if (s.size() == 2 && s[0] == '#' && s[1] >= '1' && s[1] <= '9')
348                 return MathAtom(new MathMacroArgument(s[1] - '0'));
349         if (s.size() == 3 && s[0] == '\\' && s[1] == '#'
350                         && s[2] >= '1' && s[2] <= '9')
351                 return MathAtom(new MathMacroArgument(s[2] - '0'));
352         if (s == "boxed")
353                 return MathAtom(new InsetMathBoxed());
354         if (s == "fbox")
355                 return MathAtom(new InsetMathFBox());
356         if (s == "framebox")
357                 return MathAtom(new InsetMathMakebox(true));
358         if (s == "makebox")
359                 return MathAtom(new InsetMathMakebox(false));
360         if (s == "kern")
361                 return MathAtom(new InsetMathKern);
362         if (s.substr(0, 8) == "xymatrix") {
363                 char spacing_code = '\0';
364                 Length spacing;
365                 size_t const len = s.length();
366                 size_t i = 8;
367                 if (i < len && s[i] == '@') {
368                         ++i;
369                         if (i < len) {
370                                 switch (s[i]) {
371                                 case 'R':
372                                 case 'C':
373                                 case 'M':
374                                 case 'W':
375                                 case 'H':
376                                 case 'L':
377                                         spacing_code = static_cast<char>(s[i]);
378                                         ++i;
379                                         break;
380                                 }
381                         }
382                         if (i < len && s[i] == '=') {
383                                 ++i;
384                                 spacing = Length(to_ascii(s.substr(i)));
385                         }
386                 }
387                 return MathAtom(new InsetMathXYMatrix(spacing, spacing_code));
388         }
389         if (s == "xrightarrow" || s == "xleftarrow")
390                 return MathAtom(new InsetMathXArrow(s));
391         if (s == "split" || s == "gathered" || s == "aligned" || s == "alignedat")
392                 return MathAtom(new InsetMathSplit(s));
393         if (s == "cases")
394                 return MathAtom(new InsetMathCases);
395         if (s == "substack")
396                 return MathAtom(new InsetMathSubstack);
397         if (s == "subarray" || s == "array")
398                 return MathAtom(new InsetMathArray(s, 1, 1));
399         if (s == "sqrt")
400                 return MathAtom(new InsetMathSqrt);
401         if (s == "root")
402                 return MathAtom(new InsetMathRoot);
403         if (s == "tabular")
404                 return MathAtom(new InsetMathTabular(s, 1, 1));
405         if (s == "stackrel")
406                 return MathAtom(new InsetMathStackrel);
407         if (s == "binom")
408                 return MathAtom(new InsetMathBinom(InsetMathBinom::BINOM));
409         if (s == "choose")
410                 return MathAtom(new InsetMathBinom(InsetMathBinom::CHOOSE));
411         if (s == "brace")
412                 return MathAtom(new InsetMathBinom(InsetMathBinom::BRACE));
413         if (s == "brack")
414                 return MathAtom(new InsetMathBinom(InsetMathBinom::BRACK));
415         if (s == "frac")
416                 return MathAtom(new InsetMathFrac);
417         if (s == "over")
418                 return MathAtom(new InsetMathFrac(InsetMathFrac::OVER));
419         if (s == "nicefrac")
420                 return MathAtom(new InsetMathFrac(InsetMathFrac::NICEFRAC));
421         if (s == "unitfrac")
422                 return MathAtom(new InsetMathFrac(InsetMathFrac::UNITFRAC));
423         // This string value is only for math toolbar use. Not a LaTeX name
424         if (s == "unitfracthree")
425                 return MathAtom(new InsetMathFrac(InsetMathFrac::UNITFRAC, 3));
426         if (s == "unitone")
427                 return MathAtom(new InsetMathFrac(InsetMathFrac::UNIT, 1));
428         if (s == "unittwo")
429                 return MathAtom(new InsetMathFrac(InsetMathFrac::UNIT));
430         //if (s == "infer")
431         //      return MathAtom(new MathInferInset);
432         if (s == "atop")
433                 return MathAtom(new InsetMathFrac(InsetMathFrac::ATOP));
434         if (s == "lefteqn")
435                 return MathAtom(new InsetMathLefteqn);
436         if (s == "boldsymbol")
437                 return MathAtom(new InsetMathBoldSymbol(InsetMathBoldSymbol::AMS_BOLD));
438         if (s == "bm")
439                 return MathAtom(new InsetMathBoldSymbol(InsetMathBoldSymbol::BM_BOLD));
440         if (s == "heavysymbol" || s == "hm")
441                 return MathAtom(new InsetMathBoldSymbol(InsetMathBoldSymbol::BM_HEAVY));
442         if (s == "color" || s == "normalcolor")
443                 return MathAtom(new InsetMathColor(true));
444         if (s == "textcolor")
445                 return MathAtom(new InsetMathColor(false));
446         if (s == "dfrac")
447                 return MathAtom(new InsetMathDFrac);
448         if (s == "tfrac")
449                 return MathAtom(new InsetMathTFrac);
450         if (s == "dbinom")
451                 return MathAtom(new InsetMathDBinom);
452         if (s == "tbinom")
453                 return MathAtom(new InsetMathTBinom);
454         if (s == "hphantom")
455                 return MathAtom(new InsetMathPhantom(InsetMathPhantom::hphantom));
456         if (s == "phantom")
457                 return MathAtom(new InsetMathPhantom(InsetMathPhantom::phantom));
458         if (s == "vphantom")
459                 return MathAtom(new InsetMathPhantom(InsetMathPhantom::vphantom));
460         if (s == "ensuremath")
461                 return MathAtom(new InsetMathEnsureMath);
462         if (isSpecialChar(s))
463                 return MathAtom(new InsetMathSpecialChar(s));
464
465         return MathAtom(new MathMacro(s));
466 }
467
468
469 bool createInsetMath_fromDialogStr(docstring const & str, MathData & ar)
470 {
471         // An example str:
472         // "ref LatexCommand ref\nreference \"sec:Title\"\n\\end_inset\n\n";
473         docstring name;
474         docstring body = split(str, name, ' ');
475
476         if (name != "ref" )
477                 return false;
478
479         InsetCommandParams icp(REF_CODE);
480         // FIXME UNICODE
481         InsetCommand::string2params("ref", to_utf8(str), icp);
482         mathed_parse_cell(ar, icp.getCommand());
483         if (ar.size() != 1)
484                 return false;
485
486         return ar[0].nucleus();
487 }
488
489
490 } // namespace lyx