]> git.lyx.org Git - lyx.git/blob - src/mathed/formula.C
make operator<<(*stream, ...) free functions;
[lyx.git] / src / mathed / formula.C
1 /*
2 *  File:        formula.C
3 *  Purpose:     Implementation of formula inset
4 *  Author:      Alejandro Aguilar Sierra <asierra@servidor.unam.mx>
5 *  Created:     January 1996
6 *  Description: Allows the edition of math paragraphs inside Lyx.
7 *
8 *  Copyright: 1996-1998 Alejandro Aguilar Sierra
9 *
10 *  Version: 0.4, Lyx project.
11 *
12 *   You are free to use and modify this code under the terms of
13 *   the GNU General Public Licence version 2 or later.
14 */
15
16 #ifdef __GNUG__
17 #pragma implementation
18 #endif
19
20 #include <config.h>
21
22 #include "formula.h"
23 #include "commandtags.h"
24 #include "math_cursor.h"
25 #include "math_parser.h"
26 #include "math_charinset.h"
27 #include "math_arrayinset.h"
28 #include "math_deliminset.h"
29 #include "lyx_main.h"
30 #include "BufferView.h"
31 #include "gettext.h"
32 #include "debug.h"
33 #include "frontends/Alert.h"
34 #include "support/LOstream.h"
35 #include "support/LAssert.h"
36 #include "support/lyxlib.h"
37 #include "support/syscall.h"
38 #include "support/lstrings.h"
39 #include "support/filetools.h" // LibFileSearch
40 #include "LyXView.h"
41 #include "Painter.h"
42 #include "lyxrc.h"
43 #include "math_hullinset.h"
44 #include "math_support.h"
45 #include "math_mathmlstream.h"
46
47 using std::ostream;
48 using std::ifstream;
49 using std::istream;
50 using std::pair;
51 using std::endl;
52 using std::vector;
53 using std::getline;
54
55
56 namespace {
57
58         string captureOutput(string const & cmd, string const & data)
59         {
60                 string outfile = lyx::tempName(string(), "mathextern");
61                 string full =  "echo '" + data + "' | (" + cmd + ") > " + outfile;
62                 lyxerr << "calling: " << full << "\n";
63                 Systemcalls dummy(Systemcalls::System, full, 0);
64                 string out = GetFileContents(outfile);
65                 lyx::unlink(outfile);
66                 lyxerr << "result: '" << out << "'\n";
67                 return out;
68         }
69
70
71         MathArray pipeThroughMaple(string const & extra, MathArray const & ar)
72         {
73                 string header = "readlib(latex):\n";
74
75                 // remove the \\it for variable names
76                 //"#`latex/csname_font` := `\\it `:"
77                 header +=
78                         "`latex/csname_font` := ``:\n";
79
80                 // export matrices in (...) instead of [...]
81                 header +=
82                         "`latex/latex/matrix` := "
83                                 "subs(`[`=`(`, `]`=`)`,"
84                                         "eval(`latex/latex/matrix`)):\n";
85
86                 // replace \\cdots with proper '*'
87                 header +=
88                         "`latex/latex/*` := "
89                                 "subs(`\\,`=`\\cdot `,"
90                                         "eval(`latex/latex/*`)):\n";
91
92                 // remove spurious \\noalign{\\medskip} in matrix output
93                 header += 
94                         "`latex/latex/matrix`:= "
95                                 "subs(`\\\\\\\\\\\\noalign{\\\\medskip}` = `\\\\\\\\`,"
96                                         "eval(`latex/latex/matrix`)):\n";
97
98                 //"#`latex/latex/symbol` "
99                 //      " := subs((\\'_\\' = \\'`\\_`\\',eval(`latex/latex/symbol`)): ";
100
101                 string trailer = "quit;";
102                 ostringstream os;
103                 MapleStream ms(os);
104                 ms << ar;
105                 string expr = os.str().c_str();
106
107                 for (int i = 0; i < 100; ++i) { // at most 100 attempts
108                         // try to fix missing '*' the hard way by using mint
109                         //
110                         // ... > echo "1A;" | mint -i 1 -S -s -q
111                         // on line     1: 1A;
112                         //                 ^ syntax error - 
113                         //                   Probably missing an operator such as * p
114                         //
115                         lyxerr << "checking expr: '" << expr << "'\n";
116                         string out = captureOutput("mint -i 1 -S -s -q -q", expr + ";");
117                         if (out.empty())
118                                 break; // expression syntax is ok
119                         istringstream is(out.c_str());
120                         string line;
121                         getline(is, line);
122                         if (line.find("on line") != 0)
123                                 break; // error message not identified
124                         getline(is, line);
125                         string::size_type pos = line.find('^');
126                         if (pos == string::npos || pos < 15)
127                                 break; // caret position not found
128                         pos -= 15; // skip the "on line ..." part
129                         if (expr[pos] == '*' || (pos > 0 && expr[pos - 1] == '*'))
130                                 break; // two '*' in a row are definitely bad
131                         expr.insert(pos,  "*");
132                 }
133
134                 string full = "latex(" +  extra + '(' + expr + "));";
135                 string out = captureOutput("maple -q", header + full + trailer);
136
137                 // change \_ into _
138
139                 //
140                 MathArray res;
141                 mathed_parse_cell(res, out);
142                 return res;
143         }
144                 
145         
146         MathArray pipeThroughOctave(string const &, MathArray const & ar)
147         {
148                 ostringstream os;
149                 OctaveStream vs(os);
150                 vs << ar;
151                 string expr = os.str().c_str();
152                 string out;
153
154                 for (int i = 0; i < 100; ++i) { // at most 100 attempts
155                         //
156                         // try to fix missing '*' the hard way 
157                         // parse error:
158                         // >>> ([[1 2 3 ];[2 3 1 ];[3 1 2 ]])([[1 2 3 ];[2 3 1 ];[3 1 2 ]])
159                         //                                   ^
160                         //
161                         lyxerr << "checking expr: '" << expr << "'\n";
162                         out = captureOutput("octave -q 2>&1", expr);
163                         lyxerr << "checking out: '" << out << "'\n";
164
165                         // leave loop if expression syntax is probably ok
166                         if (out.find("parse error:") == string::npos)
167                                 break;
168
169                         // search line with single caret
170                         istringstream is(out.c_str());
171                         string line;
172                         while (is) {
173                                 getline(is, line);
174                                 lyxerr << "skipping line: '" << line << "'\n";
175                                 if (line.find(">>> ") != string::npos)
176                                         break;
177                         }
178
179                         // found line with error, next line is the one with caret
180                         getline(is, line);
181                         string::size_type pos = line.find('^');
182                         lyxerr << "caret line: '" << line << "'\n";
183                         lyxerr << "found caret at pos: '" << pos << "'\n";
184                         if (pos == string::npos || pos < 4)
185                                 break; // caret position not found
186                         pos -= 4; // skip the ">>> " part
187                         if (expr[pos] == '*')
188                                 break; // two '*' in a row are definitely bad
189                         expr.insert(pos,  "*");
190                 }
191
192                 if (out.size() < 6)
193                         return MathArray();
194
195                 // remove 'ans = '
196                 out = out.substr(6);
197
198                 // parse output as matrix or single number
199                 MathAtom at(new MathArrayInset(out));
200                 MathArrayInset const * mat = at.nucleus()->asArrayInset();
201                 MathArray res;
202                 if (mat->ncols() == 1 && mat->nrows() == 1)
203                         res.push_back(mat->cell(0));
204                 else {
205                         res.push_back(MathAtom(new MathDelimInset("(", ")")));
206                         res.back()->cell(0).push_back(at);
207                 }
208                 return res;
209         }
210
211
212         MathArray pipeThroughExtern(string const & lang, string const & extra,
213                 MathArray const & ar)
214         {
215                 if (lang == "octave")
216                         return pipeThroughOctave(extra, ar);
217
218                 if (lang == "maple")
219                         return pipeThroughMaple(extra, ar);
220
221                 // create normalized expression
222                 ostringstream os;
223                 NormalStream ns(os);
224                 os << "[" << extra << ' ';
225                 ns << ar;
226                 os << "]";
227                 string data = os.str().c_str();
228
229                 // search external script
230                 string file = LibFileSearch("mathed", "extern_" + lang);
231                 if (file.empty()) {
232                         lyxerr << "converter to '" << lang << "' not found\n";
233                         return MathArray();
234                 }
235                 
236                 // run external sript
237                 string out = captureOutput(file, data);
238                 MathArray res;
239                 mathed_parse_cell(res, out);
240                 return res;
241         }
242
243 }
244
245
246 InsetFormula::InsetFormula()
247         : par_(MathAtom(new MathHullInset))
248 {}
249
250
251 InsetFormula::InsetFormula(MathInsetTypes t)
252         : par_(MathAtom(new MathHullInset(t)))
253 {}
254
255
256 InsetFormula::InsetFormula(string const & s) 
257 {
258         if (s.size()) {
259                 bool res = mathed_parse_normal(par_, s);
260
261                 if (!res)
262                         res = mathed_parse_normal(par_, "$" + s + "$");
263
264                 if (!res) {
265                         lyxerr << "cannot interpret '" << s << "' as math\n";
266                         par_ = MathAtom(new MathHullInset(LM_OT_SIMPLE));
267                 }
268         }
269         metrics();
270 }
271
272
273 Inset * InsetFormula::clone(Buffer const &, bool) const
274 {
275         return new InsetFormula(*this);
276 }
277
278
279 void InsetFormula::write(Buffer const * buf, ostream & os) const
280 {
281         os << "Formula ";
282         latex(buf, os, false, false);
283 }
284
285
286 int InsetFormula::latex(Buffer const *, ostream & os, bool fragil, bool) const
287 {
288         WriteStream wi(os, fragil);
289         par_->write(wi);
290         return wi.line();
291 }
292
293
294 int InsetFormula::ascii(Buffer const *, ostream & os, int) const
295 {
296         WriteStream wi(os, false);
297         par_->write(wi);
298         return wi.line();
299 }
300
301
302 int InsetFormula::linuxdoc(Buffer const * buf, ostream & os) const
303 {
304         return docbook(buf, os);
305 }
306
307
308 int InsetFormula::docbook(Buffer const * buf, ostream & os) const
309 {
310         MathMLStream ms(os);
311         ms << MTag("equation") << MTag("alt");
312         int res = ascii(buf, ms.os(), 0);
313         ms << ETag("alt") << MTag("math");
314         ms << par_.nucleus();
315         ms << ETag("math") << ETag("equation");
316         return ms.line() + res;
317 }
318
319
320 void InsetFormula::read(Buffer const *, LyXLex & lex)
321 {
322         mathed_parse_normal(par_, lex);
323         metrics();
324 }
325
326
327 //std::ostream & operator<<(std::ostream & os, LyXCursor const & c)
328 //{
329 //      os << '[' << c.x() << ' ' << c.y() << ' ' << c.pos() << ']';
330 //      return os;
331 //}
332
333
334 void InsetFormula::draw(BufferView * bv, LyXFont const & font,
335                         int y, float & xx, bool) const
336 {
337         int x = int(xx);
338
339         Painter & pain = bv->painter();
340
341         metrics(bv, font);
342         int w = par_->width();
343         int h = par_->height();
344         int a = par_->ascent();
345
346         if (lcolor.getX11Name(LColor::mathbg)!=lcolor.getX11Name(LColor::background))
347                 pain.fillRectangle(x, y - a, w, h, LColor::mathbg);
348
349         if (mathcursor && mathcursor->formula() == this) {
350                 mathcursor->drawSelection(pain);
351                 pain.rectangle(x, y - a, w, h, LColor::mathframe);
352         }
353
354         par_->draw(pain, x, y);
355         xx += par_->width();
356         xo_ = x;
357         yo_ = y;
358
359         setCursorVisible(false);
360 }
361
362
363 vector<string> const InsetFormula::getLabelList() const
364 {
365         return mat()->getLabelList();
366 }
367
368
369 UpdatableInset::RESULT
370 InsetFormula::localDispatch(BufferView * bv, kb_action action,
371          string const & arg)
372 {
373         RESULT result = DISPATCHED;
374
375         switch (action) {
376
377                 case LFUN_BREAKLINE: 
378                         bv->lockedInsetStoreUndo(Undo::INSERT);
379                         mathcursor->breakLine();
380                         mathcursor->normalize();
381                         updateLocal(bv, true);
382                         break;
383
384                 case LFUN_MATH_NUMBER:
385                 {
386                         //lyxerr << "toggling all numbers\n";
387                         if (display()) {
388                                 bv->lockedInsetStoreUndo(Undo::INSERT);
389                                 bool old = mat()->numberedType();
390                                 for (MathInset::row_type row = 0; row < par_->nrows(); ++row)
391                                         mat()->numbered(row, !old);
392                                 bv->owner()->message(old ? _("No number") : _("Number"));
393                                 updateLocal(bv, true);
394                         }
395                         break;
396                 }
397
398                 case LFUN_MATH_NONUMBER:
399                 {
400                         //lyxerr << "toggling line number\n";
401                         if (display()) {
402                                 bv->lockedInsetStoreUndo(Undo::INSERT);
403                                 MathCursor::row_type row = mathcursor->row();
404                                 bool old = mat()->numbered(row);
405                                 bv->owner()->message(old ? _("No number") : _("Number"));
406                                 mat()->numbered(row, !old);
407                                 updateLocal(bv, true);
408                         }
409                         break;
410                 }
411
412                 case LFUN_INSERT_LABEL:
413                 {
414                         bv->lockedInsetStoreUndo(Undo::INSERT);
415
416                         MathCursor::row_type row = mathcursor->row();
417                         string old_label = mat()->label(row);
418                         string new_label = arg;
419
420                         if (new_label.empty()) {
421                                 string const default_label =
422                                         (lyxrc.label_init_length >= 0) ? "eq:" : "";
423                                 pair<bool, string> const res = old_label.empty()
424                                         ? Alert::askForText(_("Enter new label to insert:"), default_label)
425                                         : Alert::askForText(_("Enter label:"), old_label);
426                                 
427                                 lyxerr << "res: " << res.first << " - '" << res.second << "'\n";
428                                 if (!res.first)
429                                         break;
430                                 new_label = frontStrip(strip(res.second));
431                         }
432
433                         //if (new_label == old_label)
434                         //      break;  // Nothing to do
435
436                         if (!new_label.empty()) {
437                                 lyxerr << "setting label to '" << new_label << "'\n";
438                                 mat()->numbered(row, true);
439                         }
440
441                         if (!new_label.empty() && bv->ChangeRefsIfUnique(old_label, new_label))
442                                 bv->redraw();
443
444                         mat()->label(row, new_label);
445
446                         updateLocal(bv, true);
447                         break;
448                 }
449
450                 case LFUN_MATH_MUTATE:
451                 {
452                         bv->lockedInsetStoreUndo(Undo::EDIT);
453                         int x;
454                         int y;
455                         mathcursor->getPos(x, y);
456                         mat()->mutate(arg);
457                         mathcursor->setPos(x, y);
458                         mathcursor->normalize();
459                         updateLocal(bv, true);
460                         break;
461                 }
462
463                 case LFUN_MATH_EXTERN:
464                 {
465                         bv->lockedInsetStoreUndo(Undo::EDIT);
466                         handleExtern(arg);
467                         // re-compute inset dimension
468                         metrics(bv);
469                         updateLocal(bv, true);
470                         break;
471                 }
472
473                 case LFUN_MATH_DISPLAY:
474                 {
475                         int x = 0;
476                         int y = 0;
477                         mathcursor->getPos(x, y);
478                         if (mat()->getType() == LM_OT_SIMPLE)
479                                 mat()->mutate(LM_OT_EQUATION);
480                         else
481                                 mat()->mutate(LM_OT_SIMPLE);
482                         mathcursor->setPos(x, y);
483                         mathcursor->normalize();
484                         updateLocal(bv, true);
485                         break;
486                 }
487                 
488                 case LFUN_PASTESELECTION:
489                 {
490                         string const clip = bv->getClipboard();
491                 if (!clip.empty())
492                                 mathed_parse_normal(par_, clip);
493                         break;
494                 }
495
496                 case LFUN_MATH_COLUMN_INSERT:
497                 {
498                         if (mat()->getType() == LM_OT_ALIGN)
499                                 mat()->mutate(LM_OT_ALIGNAT);
500                         mat()->addCol(mat()->ncols());
501                         mathcursor->normalize();
502                         updateLocal(bv, true);
503                         break;
504                 }
505
506                 default:
507                         result = InsetFormulaBase::localDispatch(bv, action, arg);
508         }
509
510         return result;
511 }
512
513
514 bool needEqnArray(string const & extra)
515 {
516         return false;
517         return extra == "dsolve";
518 }
519
520
521 void InsetFormula::handleExtern(const string & arg)
522 {
523         // where are we?
524         if (!mathcursor)
525                 return; 
526
527         string lang;
528         string extra;
529         istringstream iss(arg.c_str());
530         iss >> lang >> extra;
531         if (extra.empty())
532                 extra = "noextra";      
533
534         bool selected = mathcursor->selection();
535
536         MathArray ar;
537         if (needEqnArray(extra)) {
538                 mathcursor->last();
539                 mathcursor->readLine(ar);
540                 mathcursor->breakLine();
541         } else if (selected) {
542                 mathcursor->selGet(ar);
543                 //lyxerr << "use selection: " << ar << "\n";
544         } else {
545                 mathcursor->last();
546                 mathcursor->stripFromLastEqualSign();
547                 ar = mathcursor->cursor().cell();
548                 mathcursor->insert(MathAtom(new MathCharInset('=', LM_TC_VAR)));
549                 //lyxerr << "use whole cell: " << ar << "\n";
550         }
551
552         mathcursor->insert(pipeThroughExtern(lang, extra, ar));
553 }
554
555
556 bool InsetFormula::display() const
557 {
558         return mat()->getType() != LM_OT_SIMPLE;
559 }
560
561
562 MathHullInset const * InsetFormula::mat() const
563 {
564         lyx::Assert(par_->asHullInset());
565         return par_->asHullInset();
566 }
567
568
569 MathHullInset * InsetFormula::mat()
570 {
571         lyx::Assert(par_->asHullInset());
572         return par_->asHullInset();
573 }
574
575
576 Inset::Code InsetFormula::lyxCode() const
577 {
578         return Inset::MATH_CODE;
579 }
580
581
582 void InsetFormula::validate(LaTeXFeatures & features) const
583 {
584         par_->validate(features);
585 }
586
587
588 bool InsetFormula::insetAllowed(Inset::Code code) const
589 {
590         return 
591                 (code == Inset::LABEL_CODE && display())
592                 || code == Inset::ERT_CODE; 
593 }
594
595
596 int InsetFormula::ascent(BufferView *, LyXFont const &) const
597 {
598         return par_->ascent() + 1;
599 }
600
601
602 int InsetFormula::descent(BufferView *, LyXFont const &) const
603 {
604         return par_->descent() + 1;
605 }
606
607
608 int InsetFormula::width(BufferView * bv, LyXFont const & font) const
609 {
610         metrics(bv, font);
611         return par_->width();
612 }
613
614
615 MathInsetTypes InsetFormula::getType() const
616 {
617         return mat()->getType();
618 }