2011-11-18 11:09:43 -06:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
|
|
|
/*
|
|
|
|
* Version: MPL 1.1 / GPLv3+ / LGPLv3+
|
|
|
|
*
|
|
|
|
* The contents of this file are subject to the Mozilla Public License Version
|
|
|
|
* 1.1 (the "License"); you may not use this file except in compliance with
|
|
|
|
* the License or as specified alternatively below. You may obtain a copy of
|
|
|
|
* the License at http://www.mozilla.org/MPL/
|
|
|
|
*
|
|
|
|
* Software distributed under the License is distributed on an "AS IS" basis,
|
|
|
|
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
|
|
|
* for the specific language governing rights and limitations under the
|
|
|
|
* License.
|
|
|
|
*
|
|
|
|
* Major Contributor(s):
|
|
|
|
* Copyright (C) 2011 Lubos Lunak <l.lunak@suse.cz> (initial developer)
|
|
|
|
*
|
|
|
|
* All Rights Reserved.
|
|
|
|
*
|
|
|
|
* For minor contributions see the git repository.
|
|
|
|
*
|
|
|
|
* Alternatively, the contents of this file may be used under the terms of
|
|
|
|
* either the GNU General Public License Version 3 or later (the "GPLv3+"), or
|
|
|
|
* the GNU Lesser General Public License Version 3 or later (the "LGPLv3+"),
|
|
|
|
* in which case the provisions of the GPLv3+ or the LGPLv3+ are applicable
|
|
|
|
* instead of those above.
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#include "ooxmlimport.hxx"
|
|
|
|
|
|
|
|
#include <oox/token/tokens.hxx>
|
|
|
|
#include <oox/token/namespaces.hxx>
|
|
|
|
|
|
|
|
using namespace oox;
|
2011-11-18 14:06:54 -06:00
|
|
|
using namespace oox::formulaimport;
|
2011-11-18 11:09:43 -06:00
|
|
|
using rtl::OUString;
|
2011-11-29 09:19:53 -06:00
|
|
|
using rtl::OUStringBuffer;
|
2011-11-18 11:09:43 -06:00
|
|
|
|
|
|
|
/*
|
|
|
|
The primary internal data structure for the formula is the text representation
|
|
|
|
(the SmNode tree is built from it), so read data must be converted into this format.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#define M_TOKEN( token ) OOX_TOKEN( officeMath, token )
|
|
|
|
#define OPENING_TAG( token ) OPENING( token )
|
|
|
|
#define CLOSING_TAG( token ) CLOSING( token )
|
|
|
|
|
|
|
|
// *sigh*
|
|
|
|
#define STR( str ) OUString( RTL_CONSTASCII_USTRINGPARAM( str ))
|
|
|
|
|
|
|
|
// TODO create IS_OPENING(), IS_CLOSING() instead of doing 'next == OPENING( next )' ?
|
|
|
|
|
2011-11-18 14:06:54 -06:00
|
|
|
SmOoxmlImport::SmOoxmlImport( oox::formulaimport::XmlStream& s )
|
2011-11-18 11:09:43 -06:00
|
|
|
: stream( s )
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
OUString SmOoxmlImport::ConvertToStarMath()
|
|
|
|
{
|
|
|
|
return handleStream();
|
|
|
|
}
|
|
|
|
|
|
|
|
// "toplevel" of reading, there will be oMath (if there was oMathPara, that was
|
|
|
|
// up to the parent component to handle)
|
|
|
|
|
|
|
|
// NOT complete
|
|
|
|
OUString SmOoxmlImport::handleStream()
|
|
|
|
{
|
2011-11-24 06:19:57 -06:00
|
|
|
stream.ensureOpeningTag( M_TOKEN( oMath ));
|
2011-11-18 11:09:43 -06:00
|
|
|
OUString ret;
|
2011-11-21 10:32:09 -06:00
|
|
|
while( !stream.atEnd())
|
2011-11-18 11:09:43 -06:00
|
|
|
{
|
2011-11-21 10:32:09 -06:00
|
|
|
XmlStream::Tag tag = stream.currentTag();
|
|
|
|
if( tag.token == CLOSING( M_TOKEN( oMath )))
|
|
|
|
break;
|
2011-11-29 09:22:13 -06:00
|
|
|
if( !ret.isEmpty())
|
|
|
|
ret += STR( " " );
|
2011-11-21 10:32:09 -06:00
|
|
|
switch( tag.token )
|
2011-11-18 11:09:43 -06:00
|
|
|
{
|
2011-11-24 07:39:13 -06:00
|
|
|
case OPENING( M_TOKEN( acc )):
|
2011-11-29 09:22:13 -06:00
|
|
|
ret += handleAcc();
|
2011-11-24 07:39:13 -06:00
|
|
|
break;
|
2011-11-24 11:00:47 -06:00
|
|
|
case OPENING( M_TOKEN( bar )):
|
2011-11-29 09:22:13 -06:00
|
|
|
ret += handleBar();
|
2011-11-24 11:00:47 -06:00
|
|
|
break;
|
2011-11-24 11:13:44 -06:00
|
|
|
case OPENING( M_TOKEN( borderBox )):
|
2011-11-29 09:22:13 -06:00
|
|
|
ret += handleBorderBox();
|
2011-11-24 11:13:44 -06:00
|
|
|
break;
|
2011-11-29 09:19:53 -06:00
|
|
|
case OPENING( M_TOKEN( d )):
|
2011-11-29 09:22:13 -06:00
|
|
|
ret += handleD();
|
2011-11-29 09:19:53 -06:00
|
|
|
break;
|
2011-11-18 11:09:43 -06:00
|
|
|
case OPENING( M_TOKEN( f )):
|
2011-11-29 09:22:13 -06:00
|
|
|
ret += handleF();
|
2011-11-18 11:09:43 -06:00
|
|
|
break;
|
|
|
|
default:
|
2011-11-24 06:19:57 -06:00
|
|
|
stream.handleUnexpectedTag();
|
2011-11-18 11:09:43 -06:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2011-11-24 06:19:57 -06:00
|
|
|
stream.ensureClosingTag( M_TOKEN( oMath ));
|
2011-11-29 09:19:53 -06:00
|
|
|
fprintf(stderr, "FORMULA: %s\n", rtl::OUStringToOString( ret, RTL_TEXTENCODING_UTF8 ).getStr());
|
2011-11-18 11:09:43 -06:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2011-11-24 07:39:13 -06:00
|
|
|
OUString SmOoxmlImport::handleAcc()
|
|
|
|
{
|
|
|
|
stream.ensureOpeningTag( M_TOKEN( acc ));
|
|
|
|
OUString acc;
|
|
|
|
if( XmlStream::Tag accPr = stream.checkOpeningTag( M_TOKEN( accPr )))
|
|
|
|
{
|
|
|
|
if( XmlStream::Tag chr = stream.checkOpeningTag( M_TOKEN( chr )))
|
|
|
|
{
|
2011-11-25 06:16:04 -06:00
|
|
|
acc = chr.attribute( M_TOKEN( val ));
|
2011-11-24 07:39:13 -06:00
|
|
|
stream.ensureClosingTag( M_TOKEN( chr ));
|
|
|
|
}
|
|
|
|
stream.ensureClosingTag( M_TOKEN( accPr ));
|
|
|
|
}
|
|
|
|
// see aTokenTable in parse.cxx
|
|
|
|
switch( acc.isEmpty() ? sal_Unicode( MS_ACUTE ) : acc[ 0 ] )
|
|
|
|
{
|
|
|
|
case MS_CHECK:
|
|
|
|
acc = STR( "check" );
|
|
|
|
break;
|
|
|
|
case MS_ACUTE:
|
|
|
|
acc = STR( "acute" );
|
|
|
|
break;
|
|
|
|
case MS_GRAVE:
|
|
|
|
acc = STR( "grave" );
|
|
|
|
break;
|
|
|
|
case MS_BREVE:
|
|
|
|
acc = STR( "breve" );
|
|
|
|
break;
|
|
|
|
case MS_CIRCLE:
|
|
|
|
acc = STR( "circle" );
|
|
|
|
break;
|
|
|
|
case MS_VEC:
|
2011-11-24 11:02:51 -06:00
|
|
|
// prefer wide variants for these 3, .docx can't seem to differentiate
|
|
|
|
// between e.g. 'vec' and 'widevec', if whatever the accent is above is short, this
|
|
|
|
// shouldn't matter, but short above a longer expression doesn't look right
|
|
|
|
acc = STR( "widevec" );
|
2011-11-24 07:39:13 -06:00
|
|
|
break;
|
|
|
|
case MS_TILDE:
|
2011-11-24 11:02:51 -06:00
|
|
|
acc = STR( "widetilde" );
|
2011-11-24 07:39:13 -06:00
|
|
|
break;
|
|
|
|
case MS_HAT:
|
2011-11-24 11:02:51 -06:00
|
|
|
acc = STR( "widehat" );
|
2011-11-24 07:39:13 -06:00
|
|
|
break;
|
|
|
|
case MS_DOT:
|
|
|
|
acc = STR( "dot" );
|
|
|
|
break;
|
|
|
|
case MS_DDOT:
|
|
|
|
acc = STR( "ddot" );
|
|
|
|
break;
|
|
|
|
case MS_DDDOT:
|
|
|
|
acc = STR( "dddot" );
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
acc = STR( "acute" );
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
OUString e = handleE();
|
|
|
|
stream.ensureClosingTag( M_TOKEN( acc ));
|
|
|
|
return acc + STR( " { " ) + e + STR( " }" );
|
|
|
|
}
|
|
|
|
|
2011-11-24 11:00:47 -06:00
|
|
|
OUString SmOoxmlImport::handleBar()
|
|
|
|
{
|
|
|
|
stream.ensureOpeningTag( M_TOKEN( bar ));
|
|
|
|
enum pos_t { top, bot } topbot = bot;
|
|
|
|
if( stream.checkOpeningTag( M_TOKEN( barPr )))
|
|
|
|
{
|
|
|
|
if( XmlStream::Tag pos = stream.checkOpeningTag( M_TOKEN( pos )))
|
|
|
|
{
|
2011-11-25 06:16:04 -06:00
|
|
|
if( pos.attribute( M_TOKEN( val )) == STR( "top" ))
|
2011-11-24 11:00:47 -06:00
|
|
|
topbot = top;
|
2011-11-25 06:16:04 -06:00
|
|
|
else if( pos.attribute( M_TOKEN( val )) == STR( "bot" ))
|
2011-11-24 11:00:47 -06:00
|
|
|
topbot = bot;
|
|
|
|
stream.ensureClosingTag( M_TOKEN( pos ));
|
|
|
|
}
|
|
|
|
stream.ensureClosingTag( M_TOKEN( barPr ));
|
|
|
|
}
|
|
|
|
OUString e = handleE();
|
|
|
|
stream.ensureClosingTag( M_TOKEN( bar ));
|
|
|
|
if( topbot == top )
|
|
|
|
return STR( "bar { " ) + e + STR( " }" );
|
|
|
|
else
|
|
|
|
return STR( "underline { " ) + e + STR( " }" );
|
|
|
|
}
|
|
|
|
|
2011-11-24 11:13:44 -06:00
|
|
|
OUString SmOoxmlImport::handleBorderBox()
|
|
|
|
{
|
|
|
|
stream.ensureOpeningTag( M_TOKEN( borderBox ));
|
|
|
|
bool isStrikeH = false;
|
|
|
|
if( stream.checkOpeningTag( M_TOKEN( borderBoxPr )))
|
|
|
|
{
|
|
|
|
if( XmlStream::Tag strikeH = stream.checkOpeningTag( M_TOKEN( strikeH )))
|
|
|
|
{
|
2011-11-25 06:16:04 -06:00
|
|
|
if( strikeH.attribute( M_TOKEN( val ), false ))
|
2011-11-24 11:13:44 -06:00
|
|
|
isStrikeH = true;
|
|
|
|
stream.ensureClosingTag( M_TOKEN( strikeH ));
|
|
|
|
}
|
|
|
|
stream.ensureClosingTag( M_TOKEN( borderBoxPr ));
|
|
|
|
}
|
|
|
|
OUString e = handleE();
|
|
|
|
stream.ensureClosingTag( M_TOKEN( borderBox ));
|
|
|
|
if( isStrikeH )
|
|
|
|
return STR( "overstrike { " ) + e + STR( " }" );
|
|
|
|
// LO does not seem to implement anything for handling the other cases
|
|
|
|
return e;
|
|
|
|
}
|
|
|
|
|
2011-11-29 09:19:53 -06:00
|
|
|
OUString SmOoxmlImport::handleD()
|
|
|
|
{
|
|
|
|
stream.ensureOpeningTag( M_TOKEN( d ));
|
|
|
|
sal_Unicode opening = '(';
|
|
|
|
sal_Unicode closing = ')';
|
|
|
|
sal_Unicode separator = '|';
|
|
|
|
if( XmlStream::Tag dPr = stream.checkOpeningTag( M_TOKEN( dPr )))
|
|
|
|
{
|
|
|
|
if( XmlStream::Tag begChr = stream.checkOpeningTag( M_TOKEN( begChr )))
|
|
|
|
{
|
|
|
|
opening = begChr.attribute( M_TOKEN( val ), opening );
|
|
|
|
stream.ensureClosingTag( M_TOKEN( begChr ));
|
|
|
|
}
|
|
|
|
if( XmlStream::Tag sepChr = stream.checkOpeningTag( M_TOKEN( sepChr )))
|
|
|
|
{
|
|
|
|
separator = sepChr.attribute( M_TOKEN( val ), separator );
|
|
|
|
stream.ensureClosingTag( M_TOKEN( sepChr ));
|
|
|
|
}
|
|
|
|
if( XmlStream::Tag endChr = stream.checkOpeningTag( M_TOKEN( endChr )))
|
|
|
|
{
|
|
|
|
closing = endChr.attribute( M_TOKEN( val ), closing );
|
|
|
|
stream.ensureClosingTag( M_TOKEN( endChr ));
|
|
|
|
}
|
|
|
|
stream.ensureClosingTag( M_TOKEN( dPr ));
|
|
|
|
}
|
|
|
|
OUStringBuffer ret;
|
|
|
|
ret.append( opening );
|
|
|
|
bool first = true;
|
|
|
|
while( stream.currentToken() == OPENING( M_TOKEN( e )))
|
|
|
|
{
|
|
|
|
if( !first )
|
|
|
|
{ // plain "|" would be actually "V" (logical or)
|
|
|
|
ret.append( separator == '|' ? STR( " mline " ) : STR( "|" ));
|
|
|
|
}
|
|
|
|
first = false;
|
|
|
|
ret.append( handleE());
|
|
|
|
}
|
|
|
|
ret.append( closing );
|
|
|
|
stream.ensureClosingTag( M_TOKEN( d ));
|
|
|
|
return ret.makeStringAndClear();
|
|
|
|
}
|
|
|
|
|
2011-11-24 07:39:13 -06:00
|
|
|
OUString SmOoxmlImport::handleE()
|
|
|
|
{
|
2011-11-24 09:10:30 -06:00
|
|
|
stream.ensureOpeningTag( M_TOKEN( e ));
|
2011-11-24 10:14:21 -06:00
|
|
|
OUString ret = readOMathArg( M_TOKEN( e ));
|
|
|
|
stream.ensureClosingTag( M_TOKEN( e ));
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
OUString SmOoxmlImport::readOMathArg( int endtoken )
|
|
|
|
{
|
|
|
|
OUString ret;
|
2011-11-24 09:10:30 -06:00
|
|
|
while( !stream.atEnd())
|
|
|
|
{ // TODO can there really be more or just one sub-elements?
|
|
|
|
XmlStream::Tag tag = stream.currentTag();
|
2011-11-24 10:14:21 -06:00
|
|
|
if( tag.token == CLOSING( endtoken ))
|
2011-11-24 09:10:30 -06:00
|
|
|
break;
|
2011-11-29 09:22:13 -06:00
|
|
|
if( !ret.isEmpty())
|
|
|
|
ret += STR( " " );
|
2011-11-24 09:10:30 -06:00
|
|
|
switch( tag.token )
|
|
|
|
{
|
|
|
|
case OPENING( M_TOKEN( acc )):
|
2011-11-29 09:22:13 -06:00
|
|
|
ret += handleAcc();
|
2011-11-24 09:10:30 -06:00
|
|
|
break;
|
|
|
|
case OPENING( M_TOKEN( f )):
|
2011-11-29 09:22:13 -06:00
|
|
|
ret += handleF();
|
2011-11-24 09:10:30 -06:00
|
|
|
break;
|
|
|
|
case OPENING( M_TOKEN( r )):
|
2011-11-29 09:22:13 -06:00
|
|
|
ret += handleR();
|
2011-11-24 09:10:30 -06:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
stream.handleUnexpectedTag();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return ret;
|
2011-11-24 07:39:13 -06:00
|
|
|
}
|
|
|
|
|
2011-11-18 11:09:43 -06:00
|
|
|
OUString SmOoxmlImport::handleF()
|
|
|
|
{
|
2011-11-24 06:19:57 -06:00
|
|
|
stream.ensureOpeningTag( M_TOKEN( f ));
|
2011-11-24 10:14:21 -06:00
|
|
|
enum operation_t { bar, lin, noBar } operation = bar;
|
|
|
|
OUString oper = STR( "over" );
|
|
|
|
if( stream.checkOpeningTag( M_TOKEN( fPr )))
|
2011-11-18 11:09:43 -06:00
|
|
|
{
|
2011-11-24 10:14:21 -06:00
|
|
|
if( XmlStream::Tag type = stream.checkOpeningTag( M_TOKEN( type )))
|
|
|
|
{
|
2011-11-25 06:16:04 -06:00
|
|
|
if( type.attribute( M_TOKEN( val )) == STR( "bar" ))
|
2011-11-24 10:14:21 -06:00
|
|
|
operation = bar;
|
2011-11-25 06:16:04 -06:00
|
|
|
else if( type.attribute( M_TOKEN( val )) == STR( "lin" ))
|
2011-11-24 10:14:21 -06:00
|
|
|
operation = lin;
|
2011-11-25 06:16:04 -06:00
|
|
|
else if( type.attribute( M_TOKEN( val )) == STR( "noBar" ))
|
2011-11-24 10:14:21 -06:00
|
|
|
operation = noBar;
|
|
|
|
stream.ensureClosingTag( M_TOKEN( type ));
|
|
|
|
}
|
|
|
|
stream.ensureClosingTag( M_TOKEN( fPr ));
|
2011-11-18 11:09:43 -06:00
|
|
|
}
|
2011-11-24 06:19:57 -06:00
|
|
|
stream.ensureOpeningTag( M_TOKEN( num ));
|
2011-11-24 10:14:21 -06:00
|
|
|
OUString num = readOMathArg( M_TOKEN( num ));
|
2011-11-24 06:19:57 -06:00
|
|
|
stream.ensureClosingTag( M_TOKEN( num ));
|
|
|
|
stream.ensureOpeningTag( M_TOKEN( den ));
|
2011-11-24 10:14:21 -06:00
|
|
|
OUString den = readOMathArg( M_TOKEN( den ));
|
2011-11-24 06:19:57 -06:00
|
|
|
stream.ensureClosingTag( M_TOKEN( den ));
|
|
|
|
stream.ensureClosingTag( M_TOKEN( f ));
|
2011-11-24 10:14:21 -06:00
|
|
|
if( operation == bar )
|
|
|
|
return STR( "{" ) + num + STR( "} over {" ) + den + STR( "}" );
|
|
|
|
else if( operation == lin )
|
|
|
|
return STR( "{" ) + num + STR( "} / {" ) + den + STR( "}" );
|
|
|
|
else // noBar
|
|
|
|
{ // TODO we write out stack of 3 items as recursive m:f, so merge here back
|
|
|
|
// to 'stack { x # y # z }'
|
|
|
|
return STR( "binom { " ) + num + STR( " } { " ) + den + STR( " }" );
|
|
|
|
}
|
2011-11-18 11:09:43 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
// NOT complete
|
2011-11-24 09:10:30 -06:00
|
|
|
OUString SmOoxmlImport::handleR()
|
2011-11-18 11:09:43 -06:00
|
|
|
{
|
2011-11-24 06:19:57 -06:00
|
|
|
stream.ensureOpeningTag( M_TOKEN( r ));
|
|
|
|
if( XmlStream::Tag rPr = stream.checkOpeningTag( OOX_TOKEN( doc, rPr )))
|
|
|
|
{ // TODO
|
|
|
|
// stream.checkOpeningTag( OOX_TOKEN( doc, rFonts ));
|
|
|
|
// stream.ensureClosingTag( OOX_TOKEN( doc, rFonts ));
|
|
|
|
stream.ensureClosingTag( OOX_TOKEN( doc, rPr ));
|
|
|
|
}
|
2011-11-18 11:09:43 -06:00
|
|
|
// TODO can there be more t's ?
|
2011-11-24 06:19:57 -06:00
|
|
|
XmlStream::Tag rtag = stream.ensureOpeningTag( M_TOKEN( t ));
|
|
|
|
// TODO bail out if failure?
|
2011-11-21 10:32:09 -06:00
|
|
|
OUString text = rtag.text;
|
2011-11-25 06:16:04 -06:00
|
|
|
if( rtag.attribute( OOX_TOKEN( xml, space )) != STR( "preserve" ))
|
2011-11-18 11:09:43 -06:00
|
|
|
text = text.trim();
|
2011-11-24 06:19:57 -06:00
|
|
|
stream.ensureClosingTag( M_TOKEN( t ));
|
|
|
|
stream.ensureClosingTag( M_TOKEN( r ));
|
2011-11-18 11:09:43 -06:00
|
|
|
return text;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|