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.
|
|
|
|
|
|
|
|
|
|
|
|
#include "math_charinset.h"
|
|
|
|
#include "math_deliminset.h"
|
|
|
|
#include "math_exfuncinset.h"
|
2001-11-09 14:48:57 +00:00
|
|
|
#include "math_exintinset.h"
|
2001-11-09 10:44:24 +00:00
|
|
|
#include "math_funcinset.h"
|
|
|
|
#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"
|
2001-11-09 10:44:24 +00:00
|
|
|
#include "debug.h"
|
|
|
|
|
|
|
|
|
2001-11-09 12:01:10 +00:00
|
|
|
std::ostream & operator<<(std::ostream & os, MathArray const & ar)
|
2001-11-09 10:44:24 +00:00
|
|
|
{
|
2001-11-09 12:01:10 +00:00
|
|
|
NormalStream ns(os);
|
|
|
|
ns << ar;
|
2001-11-09 10:44:24 +00:00
|
|
|
return os;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
MathScriptInset const * asScript(MathArray::const_iterator it)
|
|
|
|
{
|
|
|
|
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...
|
|
|
|
string charSequence(MathArray::const_iterator it, MathArray::const_iterator end)
|
|
|
|
{
|
|
|
|
string s;
|
|
|
|
MathCharInset const * p = it->nucleus()->asCharInset();
|
|
|
|
if (p) {
|
|
|
|
for (MathTextCodes c = p->code(); it != end; ++it) {
|
|
|
|
p = it->nucleus()->asCharInset();
|
|
|
|
if (!p || p->code() != c)
|
|
|
|
break;
|
|
|
|
s += p->getChar();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return s;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-11-09 12:01:10 +00:00
|
|
|
void extractStrings(MathArray & dat)
|
2001-11-09 10:44:24 +00:00
|
|
|
{
|
2001-11-09 12:01:10 +00:00
|
|
|
//lyxerr << "\nStrings from: " << ar << "\n";
|
2001-11-09 10:44:24 +00:00
|
|
|
MathArray ar;
|
|
|
|
MathArray::const_iterator it = dat.begin();
|
|
|
|
while (it != dat.end()) {
|
|
|
|
if (it->nucleus() && it->nucleus()->asCharInset()) {
|
|
|
|
string s = charSequence(it, dat.end());
|
|
|
|
MathTextCodes c = it->nucleus()->asCharInset()->code();
|
|
|
|
ar.push_back(MathAtom(new MathStringInset(s, c)));
|
|
|
|
it += s.size();
|
|
|
|
} else {
|
|
|
|
ar.push_back(*it);
|
|
|
|
++it;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
ar.swap(dat);
|
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)
|
|
|
|
{
|
2001-11-09 12:01:10 +00:00
|
|
|
lyxerr << "\nMatrices from: " << ar << "\n";
|
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));
|
|
|
|
if (!arr || !arr->asArrayInset())
|
|
|
|
continue;
|
|
|
|
*it = MathAtom(new MathMatrixInset(*(arr->asArrayInset())));
|
2001-11-09 12:01:10 +00:00
|
|
|
lyxerr << "\nMatrices to: " << ar << "\n";
|
2001-11-09 10:44:24 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2001-11-09 12:01:10 +00:00
|
|
|
// convert this inset somehow to a string
|
|
|
|
string extractString(MathInset * p)
|
|
|
|
{
|
|
|
|
if (p && p->getChar())
|
|
|
|
return string(1, p->getChar());
|
|
|
|
if (p && p->asStringInset())
|
|
|
|
return p->asStringInset()->str();
|
|
|
|
return string();
|
|
|
|
}
|
2001-11-09 10:44:24 +00:00
|
|
|
|
2001-11-09 12:01:10 +00:00
|
|
|
|
2001-11-09 14:23:44 +00:00
|
|
|
// define a function for tests
|
|
|
|
typedef bool TestItemFunc(MathInset *);
|
|
|
|
|
|
|
|
// define a function for replacing pa
|
|
|
|
typedef MathInset * ReplaceArgumentFunc(const MathArray & ar);
|
|
|
|
|
|
|
|
// 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
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-11-09 14:48:57 +00:00
|
|
|
//
|
|
|
|
// search deliminiters
|
|
|
|
//
|
|
|
|
|
|
|
|
bool openParanTest(MathInset * p)
|
2001-11-09 14:23:44 +00:00
|
|
|
{
|
|
|
|
return extractString(p) == "(";
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-11-09 14:48:57 +00:00
|
|
|
bool closeParanTest(MathInset * p)
|
2001-11-09 14:23:44 +00:00
|
|
|
{
|
|
|
|
return extractString(p) == ")";
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-11-09 14:48:57 +00:00
|
|
|
MathInset * delimReplacement(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
|
|
|
|
void extractDelims(MathArray & ar) {
|
|
|
|
lyxerr << "\nDelims from: " << ar << "\n";
|
2001-11-09 14:48:57 +00:00
|
|
|
replaceNested(ar, openParanTest, closeParanTest, delimReplacement);
|
2001-11-09 14:23:44 +00:00
|
|
|
lyxerr << "\nDelims to: " << ar << "\n";
|
|
|
|
}
|
|
|
|
|
|
|
|
|
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;
|
|
|
|
|
2001-11-09 12:01:10 +00:00
|
|
|
lyxerr << "\nFunctions from: " << ar << "\n";
|
2001-11-09 10:44:24 +00:00
|
|
|
for (MathArray::size_type i = 0; i < ar.size() - 1; ++i) {
|
|
|
|
MathArray::iterator it = ar.begin() + i;
|
|
|
|
|
|
|
|
// is this a function name?
|
|
|
|
MathFuncInset * func = (*it)->asFuncInset();
|
|
|
|
if (!func)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
// do we have an exponent?
|
|
|
|
// simply skippping the postion does the right thing:
|
|
|
|
// 'sin' '^2' 'x' -> 'sin(x)' '^2'
|
|
|
|
MathArray::iterator jt = it + 1;
|
|
|
|
if (MathScriptInset * script = (*jt)->asScriptInset()) {
|
|
|
|
// allow superscripts only
|
|
|
|
if (script->hasDown())
|
|
|
|
continue;
|
|
|
|
++jt;
|
|
|
|
if (jt == ar.end())
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
// jt points now to the "argument". Since we had run "extractDelims"
|
|
|
|
// before, this could be a single argument only. Get hold of this.
|
|
|
|
MathArray arg;
|
|
|
|
MathDelimInset * del = (*jt)->asDelimInset();
|
|
|
|
if (del && del->isParanthesis())
|
|
|
|
arg = del->cell(0);
|
|
|
|
else
|
|
|
|
arg.push_back(*jt);
|
|
|
|
|
|
|
|
// replace the function name by a real function inset
|
|
|
|
(*it).reset(new MathExFuncInset(func->name(), arg));
|
|
|
|
|
|
|
|
// remove the source of the argument from the array
|
|
|
|
ar.erase(jt);
|
2001-11-09 12:01:10 +00:00
|
|
|
lyxerr << "\nFunctions to: " << ar << "\n";
|
2001-11-09 10:44:24 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-11-09 14:48:57 +00:00
|
|
|
//
|
|
|
|
// search integrals
|
|
|
|
//
|
|
|
|
|
|
|
|
bool intSymbolTest(MathInset * p)
|
2001-11-09 14:23:44 +00:00
|
|
|
{
|
|
|
|
return p->asSymbolInset() && p->asSymbolInset()->name() == "int";
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-11-09 14:48:57 +00:00
|
|
|
bool differentialTest(MathInset * p)
|
2001-11-09 14:23:44 +00:00
|
|
|
{
|
|
|
|
string s = extractString(p);
|
|
|
|
return s.size() && s[0] == 'd';
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// 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;
|
|
|
|
|
|
|
|
lyxerr << "\nIntegrals from: " << ar << "\n";
|
|
|
|
for (MathArray::size_type i = 0; i < ar.size() - 1; ++i) {
|
|
|
|
MathArray::iterator it = ar.begin() + i;
|
|
|
|
|
|
|
|
// is this a integral name?
|
2001-11-09 14:48:57 +00:00
|
|
|
if (!intSymbolTest(it->nucleus()))
|
2001-11-09 14:23:44 +00:00
|
|
|
continue;
|
|
|
|
|
|
|
|
// search 'd'
|
|
|
|
MathArray::iterator jt =
|
2001-11-09 14:48:57 +00:00
|
|
|
endNestSearch(it, ar.end(), intSymbolTest, differentialTest);
|
2001-11-09 14:23:44 +00:00
|
|
|
|
|
|
|
// create a proper inset as replacement
|
2001-11-09 16:27:44 +00:00
|
|
|
MathExIntInset * p = new MathExIntInset;
|
2001-11-09 14:23:44 +00:00
|
|
|
|
2001-11-09 16:27:44 +00:00
|
|
|
// collect scripts
|
|
|
|
MathArray::iterator st = it + 1;
|
|
|
|
if ((*st)->asScriptInset()) {
|
|
|
|
p->scripts(*st);
|
|
|
|
p->core(MathArray(st + 1, jt));
|
|
|
|
} else {
|
|
|
|
p->core(MathArray(st, jt));
|
|
|
|
}
|
|
|
|
|
|
|
|
// is the differential just 'd' oder 'dsomething'?
|
|
|
|
// and replace the original stuff by the new inset
|
|
|
|
string s = extractString(jt->nucleus());
|
|
|
|
MathArray diff;
|
|
|
|
if (s.size() == 1 && jt + 1 != ar.end()) {
|
|
|
|
// use the next atom as differential
|
|
|
|
diff.push_back(*(jt + 1));
|
|
|
|
ar.erase(it + 1, jt + 2);
|
|
|
|
} else {
|
|
|
|
diff.push_back(MathAtom(new MathStringInset(s.substr(1))));
|
|
|
|
ar.erase(it + 1, jt + 1);
|
|
|
|
}
|
|
|
|
p->differential(diff);
|
2001-11-09 14:48:57 +00:00
|
|
|
(*it).reset(p);
|
2001-11-09 14:23:44 +00:00
|
|
|
}
|
2001-11-09 16:27:44 +00:00
|
|
|
lyxerr << "\nIntegrals to: " << ar << "\n";
|
2001-11-09 14:23:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-11-09 10:44:24 +00:00
|
|
|
void extractStructure(MathArray & ar)
|
|
|
|
{
|
2001-11-09 12:01:10 +00:00
|
|
|
extractStrings(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-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) {
|
|
|
|
MathInset const * p = it->nucleus();
|
|
|
|
if (it + 1 != ar.end()) {
|
|
|
|
if (MathScriptInset const * q = asScript(it)) {
|
|
|
|
q->write(p, wi);
|
|
|
|
++it;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
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)) {
|
|
|
|
q->octavize(p, os);
|
|
|
|
++it;
|
|
|
|
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)) {
|
|
|
|
q->maplize(p, os);
|
|
|
|
++it;
|
|
|
|
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)) {
|
|
|
|
q->mathmlize(p, os);
|
|
|
|
++it;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
p->mathmlize(os);
|
|
|
|
}
|
|
|
|
os << ETag("mrow");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|