]> git.lyx.org Git - lyx.git/blob - src/mathed/MathStream.h
df9d61088f45b87d9d7ad018114babe6389569db
[lyx.git] / src / mathed / MathStream.h
1 // -*- C++ -*-
2 /**
3  * \file MathStream.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author André Pönitz
8  *
9  * Full author contact details are available in file CREDITS.
10  */
11
12 #ifndef MATH_MATHMLSTREAM_H
13 #define MATH_MATHMLSTREAM_H
14
15 #include "InsetMath.h"
16
17 #include "TexRow.h"
18 #include "texstream.h"
19
20 #include "support/Changer.h"
21 #include "support/strfwd.h"
22 #include "support/unique_ptr.h"
23
24
25 namespace lyx {
26
27 class Encoding;
28 class InsetMath;
29 class MathAtom;
30 class MathData;
31
32 //
33 // LaTeX/LyX
34 //
35
36 class WriteStream {
37 public:
38         ///
39         enum OutputType {
40                 wsDefault,
41                 wsDryrun,
42                 wsPreview
43         };
44         ///
45         enum UlemCmdType {
46                 NONE,
47                 UNDERLINE,
48                 STRIKEOUT
49         };
50         ///
51         explicit WriteStream(otexrowstream & os, bool fragile = false,
52                              bool latex = false, OutputType output = wsDefault,
53                              Encoding const * encoding = 0);
54         ///
55         ~WriteStream();
56         ///
57         int line() const { return line_; }
58         ///
59         bool fragile() const { return fragile_; }
60         ///
61         bool latex() const { return latex_; }
62         ///
63         OutputType output() const { return output_; }
64         ///
65         otexrowstream & os() { return os_; }
66         ///
67         TexRow & texrow() { return os_.texrow(); }
68         ///
69         bool & firstitem() { return firstitem_; }
70         ///
71         void addlines(unsigned int);
72         /// record whether we can write an immediately following newline char
73         void canBreakLine(bool breakline) { canbreakline_ = breakline; }
74         /// tell whether we can write an immediately following newline char
75         bool canBreakLine() const { return canbreakline_; }
76         /// record whether we have to take care for striking out display math
77         void strikeoutMath(bool mathsout) { mathsout_ = mathsout; }
78         /// tell whether we have to take care for striking out display math
79         bool strikeoutMath() const { return mathsout_; }
80         /// record which ulem command type we are inside
81         void ulemCmd(UlemCmdType ulemcmd) { ulemcmd_ = ulemcmd; }
82         /// tell which ulem command type we are inside
83         UlemCmdType ulemCmd() const { return ulemcmd_; }
84         /// writes space if next thing is isalpha()
85         void pendingSpace(bool how);
86         /// writes space if next thing is isalpha()
87         bool pendingSpace() const { return pendingspace_; }
88         /// tell whether to write the closing brace of \ensuremath
89         void pendingBrace(bool brace);
90         /// tell whether to write the closing brace of \ensuremath
91         bool pendingBrace() const { return pendingbrace_; }
92         /// tell whether we are in text mode or not when producing latex code
93         void textMode(bool textmode);
94         /// tell whether we are in text mode or not when producing latex code
95         bool textMode() const { return textmode_; }
96         /// tell whether we are allowed to switch mode when producing latex code
97         void lockedMode(bool locked);
98         /// tell whether we are allowed to switch mode when producing latex code
99         bool lockedMode() const { return locked_; }
100         /// tell whether to use only ascii chars when producing latex code
101         void asciiOnly(bool ascii);
102         /// tell whether to use only ascii chars when producing latex code
103         bool asciiOnly() const { return ascii_; }
104         /// LaTeX encoding
105         Encoding const * encoding() const { return encoding_; }
106
107         /// Temporarily change the TexRow information about the outer row entry.
108         Changer changeRowEntry(TexRow::RowEntry entry);
109         /// TexRow::starts the innermost outer math inset
110         /// returns true if the outer row entry will appear at this line
111         bool startOuterRow();
112 private:
113         ///
114         otexrowstream & os_;
115         /// do we have to write \\protect sometimes
116         bool fragile_;
117         /// are we at the beginning of an MathData?
118         bool firstitem_;
119         /// are we writing to .tex?
120         int latex_;
121         /// output type (default, source preview, instant preview)?
122         OutputType output_;
123         /// do we have a space pending?
124         bool pendingspace_;
125         /// do we have a brace pending?
126         bool pendingbrace_;
127         /// are we in text mode when producing latex code?
128         bool textmode_;
129         /// are we allowed to switch mode when producing latex code?
130         bool locked_;
131         /// should we use only ascii chars when producing latex code?
132         bool ascii_;
133         /// are we allowed to output an immediately following newline?
134         bool canbreakline_;
135         /// should we take care for striking out display math?
136         bool mathsout_;
137         /// what ulem command are we inside (none, underline, strikeout)?
138         UlemCmdType ulemcmd_;
139         ///
140         int line_;
141         ///
142         Encoding const * encoding_;
143         /// Row entry we are in
144         TexRow::RowEntry row_entry_;
145 };
146
147 ///
148 WriteStream & operator<<(WriteStream &, MathAtom const &);
149 ///
150 WriteStream & operator<<(WriteStream &, MathData const &);
151 ///
152 WriteStream & operator<<(WriteStream &, docstring const &);
153 ///
154 WriteStream & operator<<(WriteStream &, char const * const);
155 ///
156 WriteStream & operator<<(WriteStream &, char);
157 ///
158 WriteStream & operator<<(WriteStream &, int);
159 ///
160 WriteStream & operator<<(WriteStream &, unsigned int);
161
162 /// ensure correct mode, possibly by opening \ensuremath or \lyxmathsym
163 bool ensureMath(WriteStream & os, bool needs_mathmode = true,
164                 bool macro = false, bool textmode_macro = false);
165
166 /// ensure the requested mode, possibly by closing \ensuremath or \lyxmathsym
167 int ensureMode(WriteStream & os, InsetMath::mode_type mode, bool locked, bool ascii);
168
169
170 /**
171  * MathEnsurer - utility class for ensuring math mode
172  *
173  * A local variable of this type can be used to either ensure math mode
174  * or delay the writing of a pending brace when outputting LaTeX.
175  * A LyX InsetMathMacro is always assumed needing a math mode environment, while
176  * no assumption is made for macros defined through \newcommand or \def.
177  *
178  * Example 1:
179  *
180  *      MathEnsurer ensurer(os);
181  *
182  * If not already in math mode, inserts an \ensuremath command followed
183  * by an open brace. This brace will be automatically closed when exiting
184  * math mode. Math mode is automatically exited when writing something
185  * that doesn't explicitly require math mode.
186  *
187  * Example 2:
188  *
189  *      MathEnsurer ensurer(os, false);
190  *
191  * Simply suspend writing a closing brace until the end of ensurer's scope.
192  *
193  * Example 3:
194  *
195  *      MathEnsurer ensurer(os, needs_mathmode, true, textmode_macro);
196  *
197  * This form is mainly used for math macros as they are treated specially.
198  * In essence, the macros defined in the lib/symbols file and tagged as
199  * textmode will be enclosed in \lyxmathsym if they appear in a math mode
200  * environment, while macros defined in the preamble or ERT are left as is.
201  * The third parameter must be set to true and the fourth parameter has also
202  * to be specified. Only the following 3 different cases are handled.
203  *
204  * When the needs_mathmode parameter is true the behavior is as in Example 1.
205  * This is the case for a LyX InsetMathMacro or a macro not tagged as textmode.
206  *
207  * When the needs_mathmode and textmode_macro parameters are both false the
208  * macro is left in the same (text or math mode) environment it was entered.
209  * This is because it is assumed that the macro was designed for that mode
210  * and we have no way to tell the contrary.
211  * This is the case for macros defined by using \newcommand or \def in ERT.
212  *
213  * When the needs_mathmode parameter is false while textmode_macro is true the
214  * macro will be enclosed in \lyxmathsym if it appears in a math mode environment.
215  * This is the case for the macros tagged as textmode in lib/symbols.
216  */
217 class MathEnsurer
218 {
219 public:
220         ///
221         explicit MathEnsurer(WriteStream & os, bool needs_mathmode = true,
222                              bool macro = false, bool textmode_macro = false)
223                 : os_(os), brace_(ensureMath(os, needs_mathmode, macro, textmode_macro)) {}
224         ///
225         ~MathEnsurer() { os_.pendingBrace(brace_); }
226 private:
227         ///
228         WriteStream & os_;
229         ///
230         bool brace_;
231 };
232
233
234 /**
235  * ModeSpecifier - utility class for specifying a given mode (math or text)
236  *
237  * A local variable of this type can be used to specify that a command or
238  * environment works in a given mode. For example, \mbox works in text
239  * mode, but \boxed works in math mode. Note that no mode changing commands
240  * are needed, but we have to track the current mode, hence this class.
241  * This is only used when exporting to latex and helps determining whether
242  * the mode needs being temporarily switched when a command would not work
243  * in the current mode. As there are cases where this switching is to be
244  * avoided, the optional third parameter can be used to lock the mode.
245  * When the mode is locked, the optional fourth parameter specifies whether
246  * strings are to be output by using a suitable ascii representation.
247  *
248  * Example 1:
249  *
250  *      ModeSpecifier specifier(os, TEXT_MODE);
251  *
252  * Sets the current mode to text mode and allows mode switching.
253  *
254  * Example 2:
255  *
256  *      ModeSpecifier specifier(os, TEXT_MODE, true);
257  *
258  * Sets the current mode to text mode and disallows mode switching.
259  *
260  * Example 3:
261  *
262  *      ModeSpecifier specifier(os, TEXT_MODE, true, true);
263  *
264  * Sets the current mode to text mode, disallows mode switching, and outputs
265  * strings as ascii only.
266  *
267  * At the end of specifier's scope the mode is reset to its previous value.
268  */
269 class ModeSpecifier
270 {
271 public:
272         ///
273         explicit ModeSpecifier(WriteStream & os, InsetMath::mode_type mode,
274                                 bool locked = false, bool ascii = false)
275                 : os_(os), oldmodes_(ensureMode(os, mode, locked, ascii)) {}
276         ///
277         ~ModeSpecifier()
278         {
279                 os_.textMode(oldmodes_ & 0x01);
280                 os_.lockedMode(oldmodes_ & 0x02);
281                 os_.asciiOnly(oldmodes_ & 0x04);
282         }
283 private:
284         ///
285         WriteStream & os_;
286         ///
287         int oldmodes_;
288 };
289
290
291
292 //
293 //  MathML
294 //
295
296 class MTag {
297 public:
298         ///
299         MTag(char const * const tag, std::string const & attr = std::string())
300                 : tag_(tag), attr_(attr) {}
301         ///
302         char const * const tag_;
303         ///
304         std::string attr_;
305 };
306
307 class ETag {
308 public:
309         ///
310         explicit ETag(char const * const tag) : tag_(tag) {}
311         ///
312         char const * const tag_;
313 };
314
315
316 /// Throw MathExportException to signal that the attempt to export
317 /// some math in the current format did not succeed. E.g., we can't
318 /// export xymatrix as MathML, so that will throw, and we'll fall back
319 /// to images.
320 class MathExportException : public std::exception {};
321
322
323 class MathStream {
324 public:
325         ///
326         explicit MathStream(odocstream & os);
327         ///
328         void cr();
329         ///
330         odocstream & os() { return os_; }
331         ///
332         int line() const { return line_; }
333         ///
334         int & tab() { return tab_; }
335         ///
336         friend MathStream & operator<<(MathStream &, char const *);
337         ///
338         void defer(docstring const &);
339         ///
340         void defer(std::string const &);
341         ///
342         docstring deferred() const;
343         ///
344         bool inText() const { return in_text_; }
345 private:
346         ///
347         void setTextMode(bool t) { in_text_ = t; }
348         ///
349         odocstream & os_;
350         ///
351         int tab_;
352         ///
353         int line_;
354         ///
355         bool in_text_;
356         ///
357         odocstringstream deferred_;
358         ///
359         friend class SetMode;
360 };
361
362 ///
363 MathStream & operator<<(MathStream &, MathAtom const &);
364 ///
365 MathStream & operator<<(MathStream &, MathData const &);
366 ///
367 MathStream & operator<<(MathStream &, docstring const &);
368 ///
369 MathStream & operator<<(MathStream &, char const *);
370 ///
371 MathStream & operator<<(MathStream &, char);
372 ///
373 MathStream & operator<<(MathStream &, char_type);
374 ///
375 MathStream & operator<<(MathStream &, MTag const &);
376 ///
377 MathStream & operator<<(MathStream &, ETag const &);
378
379
380 /// A simpler version of ModeSpecifier, for MathML
381 class SetMode {
382 public:
383         ///
384         explicit SetMode(MathStream & os, bool text);
385         ///
386         ~SetMode();
387 private:
388         ///
389         MathStream & os_;
390         ///
391         bool was_text_;
392 };
393
394
395 class HtmlStream {
396 public:
397         ///
398         explicit HtmlStream(odocstream & os);
399         ///
400         void cr();
401         ///
402         odocstream & os() { return os_; }
403         ///
404         int line() const { return line_; }
405         ///
406         int & tab() { return tab_; }
407         ///
408         friend HtmlStream & operator<<(HtmlStream &, char const *);
409         ///
410         void defer(docstring const &);
411         ///
412         void defer(std::string const &);
413         ///
414         docstring deferred() const;
415         ///
416         bool inText() const { return in_text_; }
417 private:
418         ///
419         void setTextMode(bool t) { in_text_ = t; }
420         ///
421         odocstream & os_;
422         ///
423         int tab_;
424         ///
425         int line_;
426         ///
427         bool in_text_;
428         ///
429         odocstringstream deferred_;
430         ///
431         friend class SetHTMLMode;
432 };
433
434 ///
435 HtmlStream & operator<<(HtmlStream &, MathAtom const &);
436 ///
437 HtmlStream & operator<<(HtmlStream &, MathData const &);
438 ///
439 HtmlStream & operator<<(HtmlStream &, docstring const &);
440 ///
441 HtmlStream & operator<<(HtmlStream &, char const *);
442 ///
443 HtmlStream & operator<<(HtmlStream &, char);
444 ///
445 HtmlStream & operator<<(HtmlStream &, char_type);
446 ///
447 HtmlStream & operator<<(HtmlStream &, MTag const &);
448 ///
449 HtmlStream & operator<<(HtmlStream &, ETag const &);
450
451
452 class SetHTMLMode {
453 public:
454         ///
455         explicit SetHTMLMode(HtmlStream & os, bool text);
456         ///
457         ~SetHTMLMode();
458 private:
459         ///
460         HtmlStream & os_;
461         ///
462         bool was_text_;
463 };
464
465
466 //
467 // Debugging
468 //
469
470 class NormalStream {
471 public:
472         ///
473         explicit NormalStream(odocstream & os) : os_(os) {}
474         ///
475         odocstream & os() { return os_; }
476 private:
477         ///
478         odocstream & os_;
479 };
480
481 ///
482 NormalStream & operator<<(NormalStream &, MathAtom const &);
483 ///
484 NormalStream & operator<<(NormalStream &, MathData const &);
485 ///
486 NormalStream & operator<<(NormalStream &, docstring const &);
487 ///
488 NormalStream & operator<<(NormalStream &, char const *);
489 ///
490 NormalStream & operator<<(NormalStream &, char);
491 ///
492 NormalStream & operator<<(NormalStream &, int);
493
494
495 //
496 // Maple
497 //
498
499
500 class MapleStream {
501 public:
502         ///
503         explicit MapleStream(odocstream & os) : os_(os) {}
504         ///
505         odocstream & os() { return os_; }
506 private:
507         ///
508         odocstream & os_;
509 };
510
511
512 ///
513 MapleStream & operator<<(MapleStream &, MathAtom const &);
514 ///
515 MapleStream & operator<<(MapleStream &, MathData const &);
516 ///
517 MapleStream & operator<<(MapleStream &, docstring const &);
518 ///
519 MapleStream & operator<<(MapleStream &, char_type);
520 ///
521 MapleStream & operator<<(MapleStream &, char const *);
522 ///
523 MapleStream & operator<<(MapleStream &, char);
524 ///
525 MapleStream & operator<<(MapleStream &, int);
526
527
528 //
529 // Maxima
530 //
531
532
533 class MaximaStream {
534 public:
535         ///
536         explicit MaximaStream(odocstream & os) : os_(os) {}
537         ///
538         odocstream & os() { return os_; }
539 private:
540         ///
541         odocstream & os_;
542 };
543
544
545 ///
546 MaximaStream & operator<<(MaximaStream &, MathAtom const &);
547 ///
548 MaximaStream & operator<<(MaximaStream &, MathData const &);
549 ///
550 MaximaStream & operator<<(MaximaStream &, docstring const &);
551 ///
552 MaximaStream & operator<<(MaximaStream &, char_type);
553 ///
554 MaximaStream & operator<<(MaximaStream &, char const *);
555 ///
556 MaximaStream & operator<<(MaximaStream &, char);
557 ///
558 MaximaStream & operator<<(MaximaStream &, int);
559
560
561 //
562 // Mathematica
563 //
564
565
566 class MathematicaStream {
567 public:
568         ///
569         explicit MathematicaStream(odocstream & os) : os_(os) {}
570         ///
571         odocstream & os() { return os_; }
572 private:
573         ///
574         odocstream & os_;
575 };
576
577
578 ///
579 MathematicaStream & operator<<(MathematicaStream &, MathAtom const &);
580 ///
581 MathematicaStream & operator<<(MathematicaStream &, MathData const &);
582 ///
583 MathematicaStream & operator<<(MathematicaStream &, docstring const &);
584 ///
585 MathematicaStream & operator<<(MathematicaStream &, char const *);
586 ///
587 MathematicaStream & operator<<(MathematicaStream &, char);
588 ///
589 MathematicaStream & operator<<(MathematicaStream &, int);
590
591
592 //
593 // Octave
594 //
595
596
597 class OctaveStream {
598 public:
599         ///
600         explicit OctaveStream(odocstream & os) : os_(os) {}
601         ///
602         odocstream & os() { return os_; }
603 private:
604         ///
605         odocstream & os_;
606 };
607
608 ///
609 OctaveStream & operator<<(OctaveStream &, MathAtom const &);
610 ///
611 OctaveStream & operator<<(OctaveStream &, MathData const &);
612 ///
613 OctaveStream & operator<<(OctaveStream &, docstring const &);
614 ///
615 OctaveStream & operator<<(OctaveStream &, char_type);
616 ///
617 OctaveStream & operator<<(OctaveStream &, char const *);
618 ///
619 OctaveStream & operator<<(OctaveStream &, char);
620 ///
621 OctaveStream & operator<<(OctaveStream &, int);
622
623
624 docstring convertDelimToXMLEscape(docstring const & name);
625
626 } // namespace lyx
627
628 #endif