2001-11-09 10:44:24 +00:00
|
|
|
// This file contains most of the magic that extracts "context
|
|
|
|
// information" from the unstructered layout-oriented stuff in an
|
|
|
|
// MathArray.
|
|
|
|
|
2001-11-12 14:37:43 +00:00
|
|
|
#include <algorithm>
|
2001-11-09 10:44:24 +00:00
|
|
|
|
2002-04-24 17:07:42 +00:00
|
|
|
#include "math_amsarrayinset.h"
|
2001-11-09 10:44:24 +00:00
|
|
|
#include "math_charinset.h"
|
|
|
|
#include "math_deliminset.h"
|
2001-11-13 18:33:48 +00:00
|
|
|
#include "math_diffinset.h"
|
2001-11-09 10:44:24 +00:00
|
|
|
#include "math_exfuncinset.h"
|
2001-11-09 14:48:57 +00:00
|
|
|
#include "math_exintinset.h"
|
2001-11-13 18:33:48 +00:00
|
|
|
#include "math_fracinset.h"
|
2001-11-09 10:44:24 +00:00
|
|
|
#include "math_matrixinset.h"
|
|
|
|
#include "math_mathmlstream.h"
|
|
|
|
#include "math_scriptinset.h"
|
|
|
|
#include "math_stringinset.h"
|
2001-11-09 14:23:44 +00:00
|
|
|
#include "math_symbolinset.h"
|
2002-05-30 07:09:54 +00:00
|
|
|
#include "math_unknowninset.h"
|
2001-11-15 14:14:37 +00:00
|
|
|
#include "Lsstream.h"
|
2001-11-09 10:44:24 +00:00
|
|
|
#include "debug.h"
|
|
|
|
|
|
|
|
|
2002-02-16 15:59:55 +00:00
|
|
|
using std::ostream;
|
|
|
|
using std::istringstream;
|
|
|
|
using std::find_if;
|
|
|
|
|
|
|
|
|
|
|
|
ostream & operator<<(ostream & os, MathArray const & ar)
|
2001-11-09 10:44:24 +00:00
|
|
|
{
|
2002-03-21 17:42:56 +00:00
|
|
|
NormalStream ns(os);
|
2001-11-09 12:01:10 +00:00
|
|
|
ns << ar;
|
2001-11-09 10:44:24 +00:00
|
|
|
return os;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-11-13 18:33:48 +00:00
|
|
|
// define a function for tests
|
|
|
|
typedef bool TestItemFunc(MathInset *);
|
|
|
|
|
|
|
|
// define a function for replacing subexpressions
|
|
|
|
typedef MathInset * ReplaceArgumentFunc(const MathArray & ar);
|
|
|
|
|
|
|
|
|
|
|
|
|
2002-03-21 17:42:56 +00:00
|
|
|
// try to extract a super/subscript
|
2001-11-15 14:14:37 +00:00
|
|
|
// modify iterator position to point behind the thing
|
|
|
|
bool extractScript(MathArray & ar,
|
|
|
|
MathArray::iterator & pos, MathArray::iterator last)
|
|
|
|
{
|
|
|
|
// nothing to get here
|
|
|
|
if (pos == last)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
// is this a scriptinset?
|
|
|
|
if (!(*pos)->asScriptInset())
|
|
|
|
return false;
|
|
|
|
|
|
|
|
// it is a scriptinset, use it.
|
|
|
|
ar.push_back(*pos);
|
|
|
|
++pos;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-11-13 18:33:48 +00:00
|
|
|
// try to extract an "argument" to some function.
|
|
|
|
// returns position behind the argument
|
|
|
|
MathArray::iterator extractArgument(MathArray & ar,
|
|
|
|
MathArray::iterator pos, MathArray::iterator last, string const & = "")
|
|
|
|
{
|
|
|
|
// nothing to get here
|
|
|
|
if (pos == last)
|
|
|
|
return pos;
|
|
|
|
|
|
|
|
// something deliminited _is_ an argument
|
|
|
|
if ((*pos)->asDelimInset()) {
|
|
|
|
ar.push_back(*pos);
|
|
|
|
return pos + 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
// always take the first thing, no matter what it is
|
|
|
|
ar.push_back(*pos);
|
|
|
|
|
|
|
|
// go ahead if possible
|
|
|
|
++pos;
|
|
|
|
if (pos == last)
|
|
|
|
return pos;
|
|
|
|
|
|
|
|
// if the next item is a subscript, it most certainly belongs to the
|
|
|
|
// thing we have
|
2001-11-15 14:14:37 +00:00
|
|
|
extractScript(ar, pos, last);
|
|
|
|
if (pos == last)
|
|
|
|
return pos;
|
2001-11-13 18:33:48 +00:00
|
|
|
|
|
|
|
// but it might be more than that.
|
|
|
|
// FIXME: not implemented
|
|
|
|
//for (MathArray::iterator it = pos + 1; it != last; ++it) {
|
|
|
|
// // always take the first thing, no matter
|
|
|
|
// if (it == pos) {
|
|
|
|
// ar.push_back(*it);
|
|
|
|
// continue;
|
|
|
|
// }
|
|
|
|
//}
|
|
|
|
return pos;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-11-09 10:44:24 +00:00
|
|
|
MathScriptInset const * asScript(MathArray::const_iterator it)
|
|
|
|
{
|
2002-04-12 13:30:14 +00:00
|
|
|
if (!it->nucleus())
|
|
|
|
return 0;
|
2001-11-09 10:44:24 +00:00
|
|
|
if (it->nucleus()->asScriptInset())
|
|
|
|
return 0;
|
|
|
|
++it;
|
|
|
|
if (!it->nucleus())
|
|
|
|
return 0;
|
|
|
|
return it->nucleus()->asScriptInset();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// returns sequence of char with same code starting at it up to end
|
|
|
|
// it might be less, though...
|
2001-11-15 14:14:37 +00:00
|
|
|
MathArray::const_iterator charSequence(MathArray::const_iterator it,
|
2002-05-30 07:09:54 +00:00
|
|
|
MathArray::const_iterator end, string & s)
|
2001-11-15 14:14:37 +00:00
|
|
|
{
|
2002-05-30 07:09:54 +00:00
|
|
|
for (; it != end && (*it)->asCharInset(); ++it)
|
|
|
|
s += (*it)->getChar();
|
2001-11-15 14:14:37 +00:00
|
|
|
return it;
|
2001-11-09 10:44:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-11-15 14:14:37 +00:00
|
|
|
void extractStrings(MathArray & ar)
|
2001-11-09 10:44:24 +00:00
|
|
|
{
|
2001-11-09 12:01:10 +00:00
|
|
|
//lyxerr << "\nStrings from: " << ar << "\n";
|
2001-11-15 14:14:37 +00:00
|
|
|
for (MathArray::size_type i = 0; i < ar.size(); ++i) {
|
|
|
|
MathArray::iterator it = ar.begin() + i;
|
|
|
|
if (!(*it)->asCharInset())
|
|
|
|
continue;
|
|
|
|
|
|
|
|
// create proper string inset
|
|
|
|
MathStringInset * p = new MathStringInset;
|
|
|
|
MathArray::const_iterator
|
2002-05-30 07:09:54 +00:00
|
|
|
jt = charSequence(it, ar.end(), p->str_);
|
2001-11-15 14:14:37 +00:00
|
|
|
|
|
|
|
// clean up
|
|
|
|
(*it).reset(p);
|
|
|
|
ar.erase(i + 1, jt - ar.begin());
|
2001-11-09 10:44:24 +00:00
|
|
|
}
|
2001-11-09 12:01:10 +00:00
|
|
|
//lyxerr << "\nStrings to: " << ar << "\n";
|
2001-11-09 10:44:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
MathInset * singleItem(MathArray & ar)
|
|
|
|
{
|
|
|
|
return ar.size() == 1 ? ar.begin()->nucleus() : 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void extractMatrices(MathArray & ar)
|
|
|
|
{
|
2002-02-15 14:07:09 +00:00
|
|
|
//lyxerr << "\nMatrices from: " << ar << "\n";
|
2002-04-24 17:07:42 +00:00
|
|
|
// first pass for explicitly delimited stuff
|
2001-11-09 10:44:24 +00:00
|
|
|
for (MathArray::iterator it = ar.begin(); it != ar.end(); ++it) {
|
2001-11-09 14:23:44 +00:00
|
|
|
MathDelimInset * del = (*it)->asDelimInset();
|
2001-11-09 10:44:24 +00:00
|
|
|
if (!del)
|
|
|
|
continue;
|
|
|
|
MathInset * arr = singleItem(del->cell(0));
|
2002-04-24 17:07:42 +00:00
|
|
|
if (!arr || !arr->asGridInset())
|
2001-11-09 10:44:24 +00:00
|
|
|
continue;
|
2002-04-24 17:07:42 +00:00
|
|
|
*it = MathAtom(new MathMatrixInset(*(arr->asGridInset())));
|
|
|
|
}
|
|
|
|
|
|
|
|
// second pass for AMS "pmatrix" etc
|
|
|
|
for (MathArray::iterator it = ar.begin(); it != ar.end(); ++it) {
|
|
|
|
MathAMSArrayInset * ams = (*it)->asAMSArrayInset();
|
|
|
|
if (!ams)
|
|
|
|
continue;
|
|
|
|
*it = MathAtom(new MathMatrixInset(*ams));
|
2001-11-09 10:44:24 +00:00
|
|
|
}
|
2002-02-15 14:07:09 +00:00
|
|
|
//lyxerr << "\nMatrices to: " << ar << "\n";
|
2001-11-13 18:33:48 +00:00
|
|
|
}
|
|
|
|
|
2001-11-09 10:44:24 +00:00
|
|
|
|
2001-11-09 12:01:10 +00:00
|
|
|
// convert this inset somehow to a string
|
2001-11-15 14:14:37 +00:00
|
|
|
bool extractString(MathInset * p, string & str)
|
2001-11-09 12:01:10 +00:00
|
|
|
{
|
2001-11-15 14:14:37 +00:00
|
|
|
if (!p)
|
|
|
|
return false;
|
|
|
|
if (p->getChar()) {
|
|
|
|
str = string(1, p->getChar());
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
if (p->asStringInset()) {
|
|
|
|
str = p->asStringInset()->str();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// convert this inset somehow to a number
|
|
|
|
bool extractNumber(MathArray const & ar, int & i)
|
2002-03-25 12:11:25 +00:00
|
|
|
{
|
|
|
|
string s;
|
2002-05-30 07:09:54 +00:00
|
|
|
charSequence(ar.begin(), ar.end(), s);
|
2002-03-25 12:11:25 +00:00
|
|
|
istringstream is(s.c_str());
|
|
|
|
is >> i;
|
|
|
|
return is;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool extractNumber(MathArray const & ar, double & i)
|
2001-11-15 14:14:37 +00:00
|
|
|
{
|
|
|
|
string s;
|
2002-05-30 07:09:54 +00:00
|
|
|
charSequence(ar.begin(), ar.end(), s);
|
2002-02-16 15:59:55 +00:00
|
|
|
istringstream is(s.c_str());
|
2001-11-15 14:14:37 +00:00
|
|
|
is >> i;
|
|
|
|
return is;
|
2001-11-09 12:01:10 +00:00
|
|
|
}
|
2001-11-09 10:44:24 +00:00
|
|
|
|
2001-11-09 12:01:10 +00:00
|
|
|
|
2001-11-15 14:14:37 +00:00
|
|
|
bool testString(MathInset * p, const string & str)
|
2001-11-13 18:33:48 +00:00
|
|
|
{
|
2001-11-15 14:14:37 +00:00
|
|
|
string s;
|
|
|
|
return extractString(p, s) && str == s;
|
2001-11-13 18:33:48 +00:00
|
|
|
}
|
2001-11-09 14:23:44 +00:00
|
|
|
|
2001-11-12 14:37:43 +00:00
|
|
|
|
2001-11-09 14:23:44 +00:00
|
|
|
// search end of nested sequence
|
2001-11-09 14:48:57 +00:00
|
|
|
MathArray::iterator endNestSearch(
|
2001-11-09 14:23:44 +00:00
|
|
|
MathArray::iterator it,
|
|
|
|
MathArray::iterator last,
|
|
|
|
TestItemFunc testOpen,
|
|
|
|
TestItemFunc testClose
|
|
|
|
)
|
|
|
|
{
|
|
|
|
for (int level = 0; it != last; ++it) {
|
|
|
|
if (testOpen(it->nucleus()))
|
|
|
|
++level;
|
|
|
|
if (testClose(it->nucleus()))
|
|
|
|
--level;
|
|
|
|
if (level == 0)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return it;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// replace nested sequences by a real Insets
|
|
|
|
void replaceNested(
|
|
|
|
MathArray & ar,
|
|
|
|
TestItemFunc testOpen,
|
|
|
|
TestItemFunc testClose,
|
|
|
|
ReplaceArgumentFunc replaceArg
|
|
|
|
)
|
|
|
|
{
|
2001-11-09 10:44:24 +00:00
|
|
|
// use indices rather than iterators for the loop because we are going
|
|
|
|
// to modify the array.
|
|
|
|
for (MathArray::size_type i = 0; i < ar.size(); ++i) {
|
2001-11-09 14:23:44 +00:00
|
|
|
// check whether this is the begin of the sequence
|
2001-11-09 10:44:24 +00:00
|
|
|
MathArray::iterator it = ar.begin() + i;
|
2001-11-09 14:23:44 +00:00
|
|
|
if (!testOpen(it->nucleus()))
|
2001-11-09 10:44:24 +00:00
|
|
|
continue;
|
|
|
|
|
2001-11-09 14:23:44 +00:00
|
|
|
// search end of sequence
|
2001-11-09 14:48:57 +00:00
|
|
|
MathArray::iterator jt = endNestSearch(it, ar.end(), testOpen, testClose);
|
2001-11-09 12:01:10 +00:00
|
|
|
if (jt == ar.end())
|
2001-11-09 10:44:24 +00:00
|
|
|
continue;
|
|
|
|
|
2001-11-09 14:23:44 +00:00
|
|
|
// create a proper inset as replacement
|
|
|
|
MathInset * p = replaceArg(MathArray(it + 1, jt));
|
2001-11-09 10:44:24 +00:00
|
|
|
|
|
|
|
// replace the original stuff by the new inset
|
2001-11-09 12:01:10 +00:00
|
|
|
ar.erase(it + 1, jt + 1);
|
2001-11-09 14:23:44 +00:00
|
|
|
(*it).reset(p);
|
2001-11-09 10:44:24 +00:00
|
|
|
}
|
2002-03-21 17:42:56 +00:00
|
|
|
}
|
2001-11-09 10:44:24 +00:00
|
|
|
|
|
|
|
|
2001-11-15 14:14:37 +00:00
|
|
|
|
|
|
|
//
|
|
|
|
// split scripts into seperate super- and subscript insets. sub goes in
|
2002-03-21 17:42:56 +00:00
|
|
|
// front of super...
|
2001-11-15 14:14:37 +00:00
|
|
|
//
|
|
|
|
|
|
|
|
void splitScripts(MathArray & ar)
|
|
|
|
{
|
2002-02-15 14:07:09 +00:00
|
|
|
//lyxerr << "\nScripts from: " << ar << "\n";
|
2001-11-15 14:14:37 +00:00
|
|
|
for (MathArray::size_type i = 0; i < ar.size(); ++i) {
|
|
|
|
MathArray::iterator it = ar.begin() + i;
|
|
|
|
|
|
|
|
// is this script inset?
|
|
|
|
MathScriptInset * p = (*it)->asScriptInset();
|
|
|
|
if (!p)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
// no problem if we don't have both...
|
|
|
|
if (!p->hasUp() || !p->hasDown())
|
|
|
|
continue;
|
|
|
|
|
|
|
|
// create extra script inset and move superscript over
|
|
|
|
MathScriptInset * q = new MathScriptInset;
|
2002-03-21 17:42:56 +00:00
|
|
|
q->ensure(true);
|
2001-11-15 14:14:37 +00:00
|
|
|
q->up().data_.swap(p->up().data_);
|
|
|
|
p->removeScript(true);
|
|
|
|
|
|
|
|
// insert new inset behind
|
|
|
|
++i;
|
2002-03-21 17:42:56 +00:00
|
|
|
ar.insert(i, MathAtom(q));
|
2001-11-15 14:14:37 +00:00
|
|
|
}
|
2002-02-15 14:07:09 +00:00
|
|
|
//lyxerr << "\nScripts to: " << ar << "\n";
|
2001-11-15 14:14:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-11-15 15:14:27 +00:00
|
|
|
//
|
|
|
|
// extract exp(...)
|
|
|
|
//
|
|
|
|
|
|
|
|
void extractExps(MathArray & ar)
|
|
|
|
{
|
2002-02-15 14:07:09 +00:00
|
|
|
//lyxerr << "\nExps from: " << ar << "\n";
|
2001-11-15 15:14:27 +00:00
|
|
|
|
|
|
|
for (MathArray::size_type i = 0; i + 1 < ar.size(); ++i) {
|
|
|
|
MathArray::iterator it = ar.begin() + i;
|
|
|
|
|
|
|
|
// is this 'e'?
|
|
|
|
MathCharInset const * p = (*it)->asCharInset();
|
|
|
|
if (!p || p->getChar() != 'e')
|
|
|
|
continue;
|
|
|
|
|
|
|
|
// we need an exponent but no subscript
|
|
|
|
MathScriptInset * sup = (*(it + 1))->asScriptInset();
|
|
|
|
if (!sup || sup->hasDown())
|
|
|
|
continue;
|
|
|
|
|
|
|
|
// create a proper exp-inset as replacement
|
|
|
|
MathExFuncInset * func = new MathExFuncInset("exp");
|
|
|
|
func->cell(0) = sup->cell(1);
|
|
|
|
|
|
|
|
// clean up
|
|
|
|
(*it).reset(func);
|
|
|
|
ar.erase(it + 1);
|
|
|
|
}
|
2002-02-15 14:07:09 +00:00
|
|
|
//lyxerr << "\nExps to: " << ar << "\n";
|
2001-11-15 15:14:27 +00:00
|
|
|
}
|
|
|
|
|
2001-11-15 14:14:37 +00:00
|
|
|
|
2001-11-09 14:48:57 +00:00
|
|
|
//
|
|
|
|
// search deliminiters
|
|
|
|
//
|
|
|
|
|
2001-11-15 14:14:37 +00:00
|
|
|
bool testOpenParan(MathInset * p)
|
2001-11-09 14:23:44 +00:00
|
|
|
{
|
2001-11-15 14:14:37 +00:00
|
|
|
return testString(p, "(");
|
2001-11-09 14:23:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-11-15 14:14:37 +00:00
|
|
|
bool testCloseParan(MathInset * p)
|
2001-11-09 14:23:44 +00:00
|
|
|
{
|
2001-11-15 14:14:37 +00:00
|
|
|
return testString(p, ")");
|
2001-11-09 14:23:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-11-15 14:14:37 +00:00
|
|
|
MathInset * replaceDelims(const MathArray & ar)
|
2001-11-09 14:23:44 +00:00
|
|
|
{
|
|
|
|
MathDelimInset * del = new MathDelimInset("(", ")");
|
|
|
|
del->cell(0) = ar;
|
|
|
|
return del;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// replace '('...')' sequences by a real MathDelimInset
|
2001-11-13 18:33:48 +00:00
|
|
|
void extractDelims(MathArray & ar)
|
|
|
|
{
|
2002-02-15 14:07:09 +00:00
|
|
|
//lyxerr << "\nDelims from: " << ar << "\n";
|
2001-11-15 14:14:37 +00:00
|
|
|
replaceNested(ar, testOpenParan, testCloseParan, replaceDelims);
|
2002-02-15 14:07:09 +00:00
|
|
|
//lyxerr << "\nDelims to: " << ar << "\n";
|
2001-11-09 14:23:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-11-09 14:48:57 +00:00
|
|
|
|
|
|
|
//
|
|
|
|
// search well-known functions
|
|
|
|
//
|
|
|
|
|
|
|
|
|
2001-11-09 12:01:10 +00:00
|
|
|
// replace 'f' '(...)' and 'f' '^n' '(...)' sequences by a real MathExFuncInset
|
2001-11-09 10:44:24 +00:00
|
|
|
// assume 'extractDelims' ran before
|
|
|
|
void extractFunctions(MathArray & ar)
|
|
|
|
{
|
|
|
|
// we need at least two items...
|
|
|
|
if (ar.size() <= 1)
|
|
|
|
return;
|
|
|
|
|
2002-02-15 14:07:09 +00:00
|
|
|
//lyxerr << "\nFunctions from: " << ar << "\n";
|
2001-11-15 09:51:57 +00:00
|
|
|
for (MathArray::size_type i = 0; i + 1 < ar.size(); ++i) {
|
2001-11-09 10:44:24 +00:00
|
|
|
MathArray::iterator it = ar.begin() + i;
|
2001-11-15 14:14:37 +00:00
|
|
|
MathArray::iterator jt = it + 1;
|
2001-11-09 10:44:24 +00:00
|
|
|
|
2001-11-15 09:51:57 +00:00
|
|
|
string name;
|
2001-11-15 14:14:37 +00:00
|
|
|
// is it a function?
|
2002-05-30 07:09:54 +00:00
|
|
|
if ((*it)->asUnknownInset()) {
|
2001-11-15 14:14:37 +00:00
|
|
|
// it certainly is if it is well known...
|
2002-05-30 07:09:54 +00:00
|
|
|
name = (*it)->asUnknownInset()->name();
|
2002-03-21 17:42:56 +00:00
|
|
|
} else {
|
2001-11-15 09:51:57 +00:00
|
|
|
// is this a user defined function?
|
2001-11-15 14:14:37 +00:00
|
|
|
// it it probably not, if it doesn't have a name.
|
|
|
|
if (!extractString((*it).nucleus(), name))
|
2001-11-09 10:44:24 +00:00
|
|
|
continue;
|
2001-11-15 14:14:37 +00:00
|
|
|
// it is not if it has no argument
|
2001-11-09 10:44:24 +00:00
|
|
|
if (jt == ar.end())
|
|
|
|
continue;
|
2001-11-15 14:14:37 +00:00
|
|
|
// guess so, if this is followed by
|
|
|
|
// a DelimInset with a single item in the cell
|
|
|
|
MathDelimInset * del = (*jt)->asDelimInset();
|
|
|
|
if (!del || del->cell(0).size() != 1)
|
|
|
|
continue;
|
|
|
|
// fall trough into main branch
|
2001-11-09 10:44:24 +00:00
|
|
|
}
|
2001-11-15 14:14:37 +00:00
|
|
|
|
|
|
|
// do we have an exponent like in
|
|
|
|
// 'sin' '^2' 'x' -> 'sin(x)' '^2'
|
|
|
|
MathArray exp;
|
|
|
|
extractScript(exp, jt, ar.end());
|
2002-03-21 17:42:56 +00:00
|
|
|
|
2001-11-13 18:33:48 +00:00
|
|
|
// create a proper inset as replacement
|
2001-11-15 09:51:57 +00:00
|
|
|
MathExFuncInset * p = new MathExFuncInset(name);
|
2001-11-09 10:44:24 +00:00
|
|
|
|
2001-11-13 18:33:48 +00:00
|
|
|
// jt points to the "argument". Get hold of this.
|
|
|
|
MathArray::iterator st = extractArgument(p->cell(0), jt, ar.end());
|
2001-11-09 10:44:24 +00:00
|
|
|
|
|
|
|
// replace the function name by a real function inset
|
2001-11-13 18:33:48 +00:00
|
|
|
(*it).reset(p);
|
2002-03-21 17:42:56 +00:00
|
|
|
|
2001-11-09 10:44:24 +00:00
|
|
|
// remove the source of the argument from the array
|
2001-11-15 14:14:37 +00:00
|
|
|
ar.erase(it + 1, st);
|
|
|
|
|
|
|
|
// re-insert exponent
|
|
|
|
ar.insert(i + 1, exp);
|
2002-02-15 14:07:09 +00:00
|
|
|
//lyxerr << "\nFunctions to: " << ar << "\n";
|
2001-11-09 10:44:24 +00:00
|
|
|
}
|
2002-03-21 17:42:56 +00:00
|
|
|
}
|
2001-11-09 10:44:24 +00:00
|
|
|
|
|
|
|
|
2001-11-09 14:48:57 +00:00
|
|
|
//
|
|
|
|
// search integrals
|
|
|
|
//
|
|
|
|
|
2001-11-15 14:14:37 +00:00
|
|
|
bool testSymbol(MathInset * p, string const & name)
|
2001-11-13 18:33:48 +00:00
|
|
|
{
|
|
|
|
return p->asSymbolInset() && p->asSymbolInset()->name() == name;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-11-15 14:14:37 +00:00
|
|
|
bool testIntSymbol(MathInset * p)
|
2001-11-09 14:23:44 +00:00
|
|
|
{
|
2001-11-15 14:14:37 +00:00
|
|
|
return testSymbol(p, "int");
|
2001-11-09 14:23:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-11-15 14:14:37 +00:00
|
|
|
bool testIntDiff(MathInset * p)
|
2001-11-09 14:23:44 +00:00
|
|
|
{
|
2001-11-15 14:14:37 +00:00
|
|
|
return testString(p, "d");
|
2001-11-09 14:23:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// replace '\int' ['_^'] x 'd''x'(...)' sequences by a real MathExIntInset
|
|
|
|
// assume 'extractDelims' ran before
|
|
|
|
void extractIntegrals(MathArray & ar)
|
|
|
|
{
|
|
|
|
// we need at least three items...
|
|
|
|
if (ar.size() <= 2)
|
|
|
|
return;
|
|
|
|
|
2002-02-15 14:07:09 +00:00
|
|
|
//lyxerr << "\nIntegrals from: " << ar << "\n";
|
2001-11-15 14:14:37 +00:00
|
|
|
for (MathArray::size_type i = 0; i + 1 < ar.size(); ++i) {
|
2001-11-09 14:23:44 +00:00
|
|
|
MathArray::iterator it = ar.begin() + i;
|
|
|
|
|
|
|
|
// is this a integral name?
|
2001-11-15 14:14:37 +00:00
|
|
|
if (!testIntSymbol(it->nucleus()))
|
2001-11-09 14:23:44 +00:00
|
|
|
continue;
|
|
|
|
|
|
|
|
// search 'd'
|
|
|
|
MathArray::iterator jt =
|
2001-11-15 14:14:37 +00:00
|
|
|
endNestSearch(it, ar.end(), testIntSymbol, testIntDiff);
|
2001-11-09 14:23:44 +00:00
|
|
|
|
2001-11-09 18:02:20 +00:00
|
|
|
// something sensible found?
|
|
|
|
if (jt == ar.end())
|
|
|
|
continue;
|
|
|
|
|
2001-11-09 14:23:44 +00:00
|
|
|
// create a proper inset as replacement
|
2001-11-12 14:37:43 +00:00
|
|
|
MathExIntInset * p = new MathExIntInset("int");
|
2001-11-09 14:23:44 +00:00
|
|
|
|
2001-11-15 14:14:37 +00:00
|
|
|
// collect subscript if any
|
2001-11-09 16:27:44 +00:00
|
|
|
MathArray::iterator st = it + 1;
|
2001-11-15 14:14:37 +00:00
|
|
|
if (st != ar.end())
|
2002-03-21 17:42:56 +00:00
|
|
|
if (MathScriptInset * sub = (*st)->asScriptInset())
|
2001-11-15 14:14:37 +00:00
|
|
|
if (sub->hasDown()) {
|
|
|
|
p->cell(2) = sub->down().data_;
|
|
|
|
++st;
|
|
|
|
}
|
|
|
|
|
|
|
|
// collect superscript if any
|
|
|
|
if (st != ar.end())
|
2002-03-21 17:42:56 +00:00
|
|
|
if (MathScriptInset * sup = (*st)->asScriptInset())
|
2001-11-15 14:14:37 +00:00
|
|
|
if (sup->hasUp()) {
|
|
|
|
p->cell(3) = sup->up().data_;
|
|
|
|
++st;
|
|
|
|
}
|
2001-11-09 16:27:44 +00:00
|
|
|
|
2001-11-15 14:14:37 +00:00
|
|
|
// core ist part from behind the scripts to the 'd'
|
|
|
|
p->cell(0) = MathArray(st, jt);
|
|
|
|
|
|
|
|
// use the "thing" behind the 'd' as differential
|
2001-11-13 18:33:48 +00:00
|
|
|
MathArray::iterator tt = extractArgument(p->cell(1), jt + 1, ar.end());
|
2002-03-21 17:42:56 +00:00
|
|
|
|
2001-11-13 18:33:48 +00:00
|
|
|
// remove used parts
|
|
|
|
ar.erase(it + 1, tt);
|
2001-11-09 14:48:57 +00:00
|
|
|
(*it).reset(p);
|
2001-11-09 14:23:44 +00:00
|
|
|
}
|
2002-02-15 14:07:09 +00:00
|
|
|
//lyxerr << "\nIntegrals to: " << ar << "\n";
|
2001-11-09 14:23:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-11-12 14:37:43 +00:00
|
|
|
//
|
|
|
|
// search sums
|
|
|
|
//
|
|
|
|
|
2001-11-15 14:14:37 +00:00
|
|
|
bool testSumSymbol(MathInset * p)
|
2001-11-12 14:37:43 +00:00
|
|
|
{
|
2001-11-15 14:14:37 +00:00
|
|
|
return testSymbol(p, "sum");
|
2001-11-12 14:37:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-11-15 14:14:37 +00:00
|
|
|
bool testEqualSign(MathAtom const & at)
|
2001-11-12 14:37:43 +00:00
|
|
|
{
|
2001-11-15 14:14:37 +00:00
|
|
|
return testString(at.nucleus(), "=");
|
2001-11-12 14:37:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// replace '\sum' ['_^'] f(x) sequences by a real MathExIntInset
|
|
|
|
// assume 'extractDelims' ran before
|
|
|
|
void extractSums(MathArray & ar)
|
|
|
|
{
|
|
|
|
// we need at least two items...
|
|
|
|
if (ar.size() <= 1)
|
|
|
|
return;
|
|
|
|
|
2002-02-15 14:07:09 +00:00
|
|
|
//lyxerr << "\nSums from: " << ar << "\n";
|
2001-11-15 09:51:57 +00:00
|
|
|
for (MathArray::size_type i = 0; i + 1< ar.size(); ++i) {
|
2001-11-12 14:37:43 +00:00
|
|
|
MathArray::iterator it = ar.begin() + i;
|
|
|
|
|
|
|
|
// is this a sum name?
|
2001-11-15 14:14:37 +00:00
|
|
|
if (!testSumSymbol(it->nucleus()))
|
2001-11-12 14:37:43 +00:00
|
|
|
continue;
|
|
|
|
|
|
|
|
// create a proper inset as replacement
|
|
|
|
MathExIntInset * p = new MathExIntInset("sum");
|
|
|
|
|
2001-11-15 14:14:37 +00:00
|
|
|
// collect lower bound and summation index
|
2001-11-12 14:37:43 +00:00
|
|
|
MathArray::iterator st = it + 1;
|
2001-11-15 14:14:37 +00:00
|
|
|
if (st != ar.end())
|
|
|
|
if (MathScriptInset * sub = (*st)->asScriptInset())
|
|
|
|
if (sub->hasDown()) {
|
|
|
|
// try to figure out the summation index from the subscript
|
|
|
|
MathArray & ar = sub->down().data_;
|
|
|
|
MathArray::iterator it =
|
2002-02-16 15:59:55 +00:00
|
|
|
find_if(ar.begin(), ar.end(), &testEqualSign);
|
2001-11-15 14:14:37 +00:00
|
|
|
if (it != ar.end()) {
|
|
|
|
// we found a '=', use everything in front of that as index,
|
|
|
|
// and everything behind as lower index
|
|
|
|
p->cell(1) = MathArray(ar.begin(), it);
|
|
|
|
p->cell(2) = MathArray(it + 1, ar.end());
|
|
|
|
} else {
|
|
|
|
// use everything as summation index, don't use scripts.
|
|
|
|
p->cell(1) = ar;
|
|
|
|
}
|
|
|
|
++st;
|
|
|
|
}
|
|
|
|
|
|
|
|
// collect upper bound
|
|
|
|
if (st != ar.end())
|
|
|
|
if (MathScriptInset * sup = (*st)->asScriptInset())
|
|
|
|
if (sup->hasUp()) {
|
|
|
|
p->cell(3) = sup->up().data_;
|
|
|
|
++st;
|
2001-11-12 14:37:43 +00:00
|
|
|
}
|
|
|
|
|
2001-11-13 18:33:48 +00:00
|
|
|
// use some behind the script as core
|
|
|
|
MathArray::iterator tt = extractArgument(p->cell(0), st, ar.end());
|
|
|
|
|
|
|
|
// cleanup
|
|
|
|
ar.erase(it + 1, tt);
|
2001-11-12 14:37:43 +00:00
|
|
|
(*it).reset(p);
|
|
|
|
}
|
2002-02-15 14:07:09 +00:00
|
|
|
//lyxerr << "\nSums to: " << ar << "\n";
|
2001-11-12 14:37:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-11-13 16:27:06 +00:00
|
|
|
//
|
|
|
|
// search differential stuff
|
|
|
|
//
|
|
|
|
|
2001-11-13 18:33:48 +00:00
|
|
|
// tests for 'd' or '\partial'
|
2001-11-15 14:14:37 +00:00
|
|
|
bool testDiffItem(MathAtom const & at)
|
2001-11-13 18:33:48 +00:00
|
|
|
{
|
2001-11-15 14:14:37 +00:00
|
|
|
return testString(at.nucleus(), "d");
|
2001-11-13 18:33:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-11-15 14:14:37 +00:00
|
|
|
bool testDiffArray(MathArray const & ar)
|
2001-11-13 18:33:48 +00:00
|
|
|
{
|
2001-11-15 14:14:37 +00:00
|
|
|
return ar.size() && testDiffItem(ar.front());
|
2001-11-13 18:33:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-11-15 14:14:37 +00:00
|
|
|
bool testDiffFrac(MathInset * p)
|
2001-11-13 18:33:48 +00:00
|
|
|
{
|
2001-11-15 14:14:37 +00:00
|
|
|
MathFracInset * f = p->asFracInset();
|
|
|
|
return f && testDiffArray(f->cell(0)) && testDiffArray(f->cell(1));
|
2001-11-13 18:33:48 +00:00
|
|
|
}
|
|
|
|
|
2001-11-15 14:14:37 +00:00
|
|
|
|
|
|
|
// is this something like ^number?
|
|
|
|
bool extractDiffExponent(MathArray::iterator it, int & i)
|
|
|
|
{
|
|
|
|
if (!(*it)->asScriptInset())
|
|
|
|
return false;
|
|
|
|
|
|
|
|
string s;
|
|
|
|
if (!extractString((*it).nucleus(), s))
|
|
|
|
return false;
|
2002-02-16 15:59:55 +00:00
|
|
|
istringstream is(s.c_str());
|
2001-11-15 14:14:37 +00:00
|
|
|
is >> i;
|
|
|
|
return is;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-11-13 16:27:06 +00:00
|
|
|
void extractDiff(MathArray & ar)
|
|
|
|
{
|
2002-02-15 14:07:09 +00:00
|
|
|
//lyxerr << "\nDiffs from: " << ar << "\n";
|
2001-11-15 09:51:57 +00:00
|
|
|
for (MathArray::size_type i = 0; i < ar.size(); ++i) {
|
2001-11-13 18:33:48 +00:00
|
|
|
MathArray::iterator it = ar.begin() + i;
|
|
|
|
|
|
|
|
// is this a "differential fraction"?
|
2001-11-15 14:14:37 +00:00
|
|
|
if (!testDiffFrac(it->nucleus()))
|
2001-11-13 18:33:48 +00:00
|
|
|
continue;
|
2002-03-21 17:42:56 +00:00
|
|
|
|
2001-11-13 18:33:48 +00:00
|
|
|
MathFracInset * f = (*it)->asFracInset();
|
|
|
|
if (!f) {
|
|
|
|
lyxerr << "should not happen\n";
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
// create a proper diff inset
|
2001-11-15 14:14:37 +00:00
|
|
|
MathDiffInset * diff = new MathDiffInset;
|
2001-11-13 18:33:48 +00:00
|
|
|
|
2001-11-15 09:51:57 +00:00
|
|
|
// collect function, let jt point behind last used item
|
2002-03-21 17:42:56 +00:00
|
|
|
MathArray::iterator jt = it + 1;
|
|
|
|
//int n = 1;
|
2001-11-15 09:51:57 +00:00
|
|
|
MathArray & numer = f->cell(0);
|
|
|
|
if (numer.size() > 1 && numer.at(1)->asScriptInset()) {
|
|
|
|
// this is something like d^n f(x) / d... or d^n / d...
|
2001-11-15 14:14:37 +00:00
|
|
|
// FIXME
|
2002-03-21 17:42:56 +00:00
|
|
|
//n = 1;
|
|
|
|
if (numer.size() > 2)
|
2001-11-15 14:14:37 +00:00
|
|
|
diff->cell(0) = MathArray(numer.begin() + 2, numer.end());
|
2001-11-15 09:51:57 +00:00
|
|
|
else
|
2001-11-15 14:14:37 +00:00
|
|
|
jt = extractArgument(diff->cell(0), jt, ar.end());
|
2001-11-15 09:51:57 +00:00
|
|
|
} else {
|
|
|
|
// simply d f(x) / d... or d/d...
|
2002-03-21 17:42:56 +00:00
|
|
|
if (numer.size() > 1)
|
2001-11-15 14:14:37 +00:00
|
|
|
diff->cell(0) = MathArray(numer.begin() + 1, numer.end());
|
2001-11-15 09:51:57 +00:00
|
|
|
else
|
2001-11-15 14:14:37 +00:00
|
|
|
jt = extractArgument(diff->cell(0), jt, ar.end());
|
2001-11-15 09:51:57 +00:00
|
|
|
}
|
|
|
|
|
2001-11-15 14:14:37 +00:00
|
|
|
// collect denominator parts
|
2001-11-15 09:51:57 +00:00
|
|
|
MathArray & denom = f->cell(1);
|
2002-02-16 15:59:55 +00:00
|
|
|
for (MathArray::iterator dt = denom.begin(); dt != denom.end();) {
|
2001-11-15 14:14:37 +00:00
|
|
|
// find the next 'd'
|
2002-02-16 15:59:55 +00:00
|
|
|
MathArray::iterator et = find_if(dt + 1, denom.end(), &testDiffItem);
|
2001-11-15 14:14:37 +00:00
|
|
|
|
|
|
|
// point before this
|
|
|
|
MathArray::iterator st = et - 1;
|
|
|
|
MathScriptInset * script = (*st)->asScriptInset();
|
|
|
|
if (script && script->hasUp()) {
|
|
|
|
// things like d.../dx^n
|
|
|
|
int mult = 1;
|
|
|
|
if (extractNumber(script->up().data_, mult)) {
|
2002-02-16 15:59:55 +00:00
|
|
|
//lyxerr << "mult: " << mult << endl;
|
2001-11-15 14:14:37 +00:00
|
|
|
for (int i = 0; i < mult; ++i)
|
|
|
|
diff->addDer(MathArray(dt + 1, st));
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
// just d.../dx
|
|
|
|
diff->addDer(MathArray(dt + 1, et));
|
2001-11-15 09:51:57 +00:00
|
|
|
}
|
2001-11-15 14:14:37 +00:00
|
|
|
dt = et;
|
2001-11-15 09:51:57 +00:00
|
|
|
}
|
2001-11-13 18:33:48 +00:00
|
|
|
|
|
|
|
// cleanup
|
|
|
|
ar.erase(it + 1, jt);
|
2001-11-15 14:14:37 +00:00
|
|
|
(*it).reset(diff);
|
2001-11-13 18:33:48 +00:00
|
|
|
}
|
2002-02-15 14:07:09 +00:00
|
|
|
//lyxerr << "\nDiffs to: " << ar << "\n";
|
2001-11-13 16:27:06 +00:00
|
|
|
}
|
|
|
|
|
2001-11-16 08:26:41 +00:00
|
|
|
|
|
|
|
|
2001-11-13 16:27:06 +00:00
|
|
|
//
|
|
|
|
// combine searches
|
|
|
|
//
|
|
|
|
|
2001-11-09 10:44:24 +00:00
|
|
|
void extractStructure(MathArray & ar)
|
|
|
|
{
|
2001-11-15 14:14:37 +00:00
|
|
|
splitScripts(ar);
|
2001-11-09 10:44:24 +00:00
|
|
|
extractMatrices(ar);
|
|
|
|
extractDelims(ar);
|
|
|
|
extractFunctions(ar);
|
2001-11-09 14:23:44 +00:00
|
|
|
extractIntegrals(ar);
|
2001-11-12 14:37:43 +00:00
|
|
|
extractSums(ar);
|
2001-11-13 16:27:06 +00:00
|
|
|
extractDiff(ar);
|
2001-11-15 15:14:27 +00:00
|
|
|
extractExps(ar);
|
2001-11-12 13:09:26 +00:00
|
|
|
extractStrings(ar);
|
2001-11-09 10:44:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void write(MathArray const & dat, WriteStream & wi)
|
|
|
|
{
|
|
|
|
MathArray ar = dat;
|
2001-11-09 12:01:10 +00:00
|
|
|
extractStrings(ar);
|
2001-11-09 10:44:24 +00:00
|
|
|
for (MathArray::const_iterator it = ar.begin(); it != ar.end(); ++it) {
|
2001-12-03 16:24:50 +00:00
|
|
|
wi.firstitem() = (it == ar.begin());
|
2001-11-09 10:44:24 +00:00
|
|
|
MathInset const * p = it->nucleus();
|
|
|
|
if (it + 1 != ar.end()) {
|
|
|
|
if (MathScriptInset const * q = asScript(it)) {
|
2001-11-20 16:05:17 +00:00
|
|
|
q->write2(p, wi);
|
2001-11-09 10:44:24 +00:00
|
|
|
++it;
|
|
|
|
continue;
|
2002-03-21 17:42:56 +00:00
|
|
|
}
|
2001-11-09 10:44:24 +00:00
|
|
|
}
|
|
|
|
p->write(wi);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-11-09 12:01:10 +00:00
|
|
|
void normalize(MathArray const & ar, NormalStream & os)
|
2001-11-09 10:44:24 +00:00
|
|
|
{
|
2001-11-09 12:01:10 +00:00
|
|
|
for (MathArray::const_iterator it = ar.begin(); it != ar.end(); ++it)
|
|
|
|
(*it)->normalize(os);
|
2001-11-09 10:44:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void octavize(MathArray const & dat, OctaveStream & os)
|
|
|
|
{
|
|
|
|
MathArray ar = dat;
|
|
|
|
extractStructure(ar);
|
|
|
|
for (MathArray::const_iterator it = ar.begin(); it != ar.end(); ++it) {
|
|
|
|
MathInset const * p = it->nucleus();
|
|
|
|
if (it + 1 != ar.end()) {
|
|
|
|
if (MathScriptInset const * q = asScript(it)) {
|
2001-11-20 16:05:17 +00:00
|
|
|
q->octavize2(p, os);
|
2002-03-21 17:42:56 +00:00
|
|
|
++it;
|
2001-11-09 10:44:24 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
p->octavize(os);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void maplize(MathArray const & dat, MapleStream & os)
|
|
|
|
{
|
|
|
|
MathArray ar = dat;
|
|
|
|
extractStructure(ar);
|
|
|
|
for (MathArray::const_iterator it = ar.begin(); it != ar.end(); ++it) {
|
|
|
|
MathInset const * p = it->nucleus();
|
|
|
|
if (it + 1 != ar.end()) {
|
|
|
|
if (MathScriptInset const * q = asScript(it)) {
|
2001-11-20 16:05:17 +00:00
|
|
|
q->maplize2(p, os);
|
2002-03-21 17:42:56 +00:00
|
|
|
++it;
|
2001-11-09 10:44:24 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
p->maplize(os);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void mathmlize(MathArray const & dat, MathMLStream & os)
|
|
|
|
{
|
|
|
|
MathArray ar = dat;
|
|
|
|
extractStructure(ar);
|
|
|
|
if (ar.size() == 0)
|
|
|
|
os << "<mrow/>";
|
|
|
|
else if (ar.size() == 1)
|
|
|
|
os << ar.begin()->nucleus();
|
|
|
|
else {
|
|
|
|
os << MTag("mrow");
|
|
|
|
for (MathArray::const_iterator it = ar.begin(); it != ar.end(); ++it) {
|
|
|
|
MathInset const * p = it->nucleus();
|
|
|
|
if (it + 1 != ar.end()) {
|
|
|
|
if (MathScriptInset const * q = asScript(it)) {
|
2001-11-20 16:05:17 +00:00
|
|
|
q->mathmlize2(p, os);
|
2002-03-21 17:42:56 +00:00
|
|
|
++it;
|
2001-11-09 10:44:24 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
p->mathmlize(os);
|
|
|
|
}
|
|
|
|
os << ETag("mrow");
|
|
|
|
}
|
|
|
|
}
|