2012-02-20 21:47:14 +00:00
|
|
|
/* This file is (c) 2008-2012 Konstantin Isakov <ikm@goldendict.org>
|
2009-01-28 20:55:45 +00:00
|
|
|
* Part of GoldenDict. Licensed under GPLv3 or later, see the LICENSE file */
|
|
|
|
|
|
|
|
#include "dsl_details.hh"
|
2009-04-17 22:34:45 +00:00
|
|
|
#include "folding.hh"
|
2009-04-23 11:43:20 +00:00
|
|
|
#include "langcoder.hh"
|
2009-01-28 20:55:45 +00:00
|
|
|
#include <wctype.h>
|
2009-04-04 23:02:58 +00:00
|
|
|
#include <stdio.h>
|
2011-06-19 20:29:11 +00:00
|
|
|
#include "dprintf.hh"
|
2011-09-09 12:05:28 +00:00
|
|
|
#include "ufile.hh"
|
2009-01-28 20:55:45 +00:00
|
|
|
|
|
|
|
namespace Dsl {
|
|
|
|
namespace Details {
|
|
|
|
|
2009-04-18 17:20:12 +00:00
|
|
|
using gd::wstring;
|
2009-01-28 20:55:45 +00:00
|
|
|
using std::list;
|
|
|
|
|
2011-08-08 01:04:53 +00:00
|
|
|
#ifndef __linux__
|
2009-02-02 01:10:16 +00:00
|
|
|
|
|
|
|
// wcscasecmp() function is a GNU extension, we need to reimplement it
|
|
|
|
// for non-GNU systems.
|
|
|
|
|
2009-04-18 17:20:12 +00:00
|
|
|
int wcscasecmp( const wchar *s1, const wchar *s2 )
|
2009-02-02 01:10:16 +00:00
|
|
|
{
|
|
|
|
for( ; ; ++s1, ++s2 )
|
|
|
|
{
|
|
|
|
if ( towlower( *s1 ) != towlower( *s2 ) )
|
|
|
|
return towlower( *s1 ) > towlower( *s2 ) ? 1 : -1;
|
|
|
|
|
|
|
|
if ( !*s1 )
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
2009-01-28 20:55:45 +00:00
|
|
|
/////////////// ArticleDom
|
|
|
|
|
|
|
|
wstring ArticleDom::Node::renderAsText() const
|
|
|
|
{
|
|
|
|
if ( !isTag )
|
|
|
|
return text;
|
|
|
|
|
|
|
|
wstring result;
|
|
|
|
|
|
|
|
for( list< Node >::const_iterator i = begin(); i != end(); ++i )
|
|
|
|
result += i->renderAsText();
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Returns true if src == 'm' and dest is 'mX', where X is a digit
|
|
|
|
static inline bool checkM( wstring const & dest, wstring const & src )
|
|
|
|
{
|
2009-04-18 17:20:12 +00:00
|
|
|
return ( src == GD_NATIVE_TO_WS( L"m" ) && dest.size() == 2 &&
|
2009-01-28 20:55:45 +00:00
|
|
|
dest[ 0 ] == L'm' && iswdigit( dest[ 1 ] ) );
|
|
|
|
}
|
|
|
|
|
|
|
|
ArticleDom::ArticleDom( wstring const & str ):
|
2009-05-07 12:30:36 +00:00
|
|
|
root( Node::Tag(), wstring(), wstring() ), stringPos( str.c_str() ),
|
|
|
|
transcriptionCount( 0 )
|
2009-01-28 20:55:45 +00:00
|
|
|
{
|
|
|
|
list< Node * > stack; // Currently opened tags
|
|
|
|
|
|
|
|
Node * textNode = 0; // A leaf node which currently accumulates text.
|
|
|
|
|
|
|
|
try
|
|
|
|
{
|
|
|
|
for( ;; )
|
|
|
|
{
|
|
|
|
nextChar();
|
2009-04-22 21:37:32 +00:00
|
|
|
|
2009-01-28 20:55:45 +00:00
|
|
|
if ( ch == L'[' && !escaped )
|
|
|
|
{
|
|
|
|
// Beginning of a tag.
|
|
|
|
do
|
|
|
|
{
|
|
|
|
nextChar();
|
2009-04-17 22:34:45 +00:00
|
|
|
} while( Folding::isWhitespace( ch ) );
|
2009-01-28 20:55:45 +00:00
|
|
|
|
|
|
|
bool isClosing;
|
|
|
|
|
|
|
|
if ( ch == L'/' && !escaped )
|
|
|
|
{
|
|
|
|
// A closing tag.
|
|
|
|
isClosing = true;
|
|
|
|
nextChar();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
isClosing = false;
|
|
|
|
|
|
|
|
// Read tag's name
|
|
|
|
wstring name;
|
|
|
|
|
2009-04-17 22:34:45 +00:00
|
|
|
while( ( ch != L']' || escaped ) && !Folding::isWhitespace( ch ) )
|
2009-01-28 20:55:45 +00:00
|
|
|
{
|
|
|
|
name.push_back( ch );
|
|
|
|
nextChar();
|
|
|
|
}
|
|
|
|
|
2009-04-17 22:34:45 +00:00
|
|
|
while( Folding::isWhitespace( ch ) )
|
2009-01-28 20:55:45 +00:00
|
|
|
nextChar();
|
|
|
|
|
|
|
|
// Read attrs
|
|
|
|
|
|
|
|
wstring attrs;
|
|
|
|
|
|
|
|
while( ch != L']' || escaped )
|
|
|
|
{
|
|
|
|
attrs.push_back( ch );
|
|
|
|
nextChar();
|
|
|
|
}
|
|
|
|
|
|
|
|
// Add the tag, or close it
|
|
|
|
|
|
|
|
if ( textNode )
|
|
|
|
{
|
|
|
|
// Close the currently opened text node
|
|
|
|
stack.pop_back();
|
|
|
|
textNode = 0;
|
|
|
|
}
|
|
|
|
|
2009-05-07 12:30:36 +00:00
|
|
|
// If the tag is [t], we update the transcriptionCount
|
|
|
|
if ( name == GD_NATIVE_TO_WS( L"t" ) )
|
|
|
|
{
|
|
|
|
if ( isClosing )
|
|
|
|
{
|
|
|
|
if ( transcriptionCount )
|
|
|
|
--transcriptionCount;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
++transcriptionCount;
|
|
|
|
}
|
|
|
|
|
2009-01-28 20:55:45 +00:00
|
|
|
if ( !isClosing )
|
|
|
|
{
|
2009-05-07 14:54:26 +00:00
|
|
|
if ( name.size() == 2 && name[ 0 ] == L'm' && iswdigit( name[ 1 ] ) )
|
|
|
|
{
|
|
|
|
// Opening an 'mX' tag closes any previous 'm' tag
|
|
|
|
closeTag( GD_NATIVE_TO_WS( L"m" ), stack, false );
|
|
|
|
}
|
|
|
|
|
2009-01-28 20:55:45 +00:00
|
|
|
Node node( Node::Tag(), name, attrs );
|
|
|
|
|
|
|
|
if ( stack.empty() )
|
|
|
|
{
|
|
|
|
root.push_back( node );
|
|
|
|
stack.push_back( &root.back() );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
stack.back()->push_back( node );
|
|
|
|
stack.push_back( &stack.back()->back() );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2009-05-07 14:54:26 +00:00
|
|
|
closeTag( name, stack );
|
2009-01-28 20:55:45 +00:00
|
|
|
} // if ( isClosing )
|
|
|
|
continue;
|
|
|
|
} // if ( ch == '[' )
|
|
|
|
|
|
|
|
if ( ch == L'<' && !escaped )
|
|
|
|
{
|
|
|
|
// Special case: the <<name>> link
|
|
|
|
|
|
|
|
nextChar();
|
|
|
|
|
|
|
|
if ( ch != L'<' || escaped )
|
|
|
|
{
|
|
|
|
// Ok, it's not it.
|
|
|
|
--stringPos;
|
|
|
|
|
|
|
|
if ( escaped )
|
|
|
|
{
|
|
|
|
--stringPos;
|
|
|
|
escaped = false;
|
|
|
|
}
|
|
|
|
ch = L'<';
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// Get the link's body
|
|
|
|
do
|
|
|
|
{
|
|
|
|
nextChar();
|
2009-04-17 22:34:45 +00:00
|
|
|
} while( Folding::isWhitespace( ch ) );
|
2009-01-28 20:55:45 +00:00
|
|
|
|
|
|
|
wstring linkTo;
|
|
|
|
|
|
|
|
for( ; ; nextChar() )
|
|
|
|
{
|
|
|
|
// Is it the end?
|
|
|
|
if ( ch == L'>' && !escaped )
|
|
|
|
{
|
|
|
|
nextChar();
|
|
|
|
|
|
|
|
if ( ch == L'>' && !escaped )
|
|
|
|
break;
|
|
|
|
else
|
|
|
|
{
|
|
|
|
linkTo.push_back( L'>' );
|
|
|
|
linkTo.push_back( ch );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
linkTo.push_back( ch );
|
|
|
|
}
|
|
|
|
|
|
|
|
// Add the corresponding node
|
|
|
|
|
|
|
|
if ( textNode )
|
|
|
|
{
|
|
|
|
// Close the currently opened text node
|
|
|
|
stack.pop_back();
|
|
|
|
textNode = 0;
|
|
|
|
}
|
|
|
|
|
2009-04-18 17:20:12 +00:00
|
|
|
Node link( Node::Tag(), GD_NATIVE_TO_WS( L"ref" ), wstring() );
|
2009-01-28 20:55:45 +00:00
|
|
|
link.push_back( Node( Node::Text(), linkTo ) );
|
|
|
|
|
|
|
|
if ( stack.empty() )
|
|
|
|
root.push_back( link );
|
|
|
|
else
|
|
|
|
stack.back()->push_back( link );
|
|
|
|
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
} // if ( ch == '<' )
|
|
|
|
|
2009-05-14 21:16:50 +00:00
|
|
|
if ( ch == L'{' && !escaped )
|
|
|
|
{
|
|
|
|
// Special case: {{comment}}
|
|
|
|
|
|
|
|
nextChar();
|
|
|
|
|
|
|
|
if ( ch != L'{' || escaped )
|
|
|
|
{
|
|
|
|
// Ok, it's not it.
|
|
|
|
--stringPos;
|
|
|
|
|
|
|
|
if ( escaped )
|
|
|
|
{
|
|
|
|
--stringPos;
|
|
|
|
escaped = false;
|
|
|
|
}
|
|
|
|
ch = L'{';
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// Skip the comment's body
|
|
|
|
for( ; ; )
|
|
|
|
{
|
|
|
|
nextChar();
|
|
|
|
|
|
|
|
// Is it the end?
|
|
|
|
if ( ch == L'}' && !escaped )
|
|
|
|
{
|
|
|
|
nextChar();
|
|
|
|
|
|
|
|
if ( ch == L'}' && !escaped )
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
} // if ( ch == '{' )
|
|
|
|
|
2009-01-28 20:55:45 +00:00
|
|
|
// If we're here, we've got a normal symbol, to be saved as text.
|
|
|
|
|
|
|
|
// If there's currently no text node, open one
|
|
|
|
if ( !textNode )
|
|
|
|
{
|
2009-04-18 17:20:12 +00:00
|
|
|
Node text = Node( Node::Text(), wstring() );
|
2009-01-28 20:55:45 +00:00
|
|
|
|
|
|
|
if ( stack.empty() )
|
|
|
|
{
|
|
|
|
root.push_back( text );
|
|
|
|
stack.push_back( &root.back() );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
stack.back()->push_back( text );
|
|
|
|
stack.push_back( &stack.back()->back() );
|
|
|
|
}
|
|
|
|
|
|
|
|
textNode = stack.back();
|
|
|
|
}
|
|
|
|
|
2009-05-07 12:30:36 +00:00
|
|
|
// If we're inside the transcription, do old-encoding conversion
|
|
|
|
if ( transcriptionCount )
|
|
|
|
{
|
|
|
|
switch ( ch )
|
|
|
|
{
|
|
|
|
case 0x2021: ch = 0xE6; break;
|
|
|
|
case 0x407: ch = 0x72; break;
|
|
|
|
case 0xB0: ch = 0x6B; break;
|
|
|
|
case 0x20AC: ch = 0x254; break;
|
|
|
|
case 0x404: ch = 0x7A; break;
|
|
|
|
case 0x40F: ch = 0x283; break;
|
|
|
|
case 0xAB: ch = 0x74; break;
|
|
|
|
case 0xAC: ch = 0x64; break;
|
|
|
|
case 0x2020: ch = 0x259; break;
|
|
|
|
case 0x490: ch = 0x6D; break;
|
|
|
|
case 0xA7: ch = 0x66; break;
|
|
|
|
case 0xAE: ch = 0x6C; break;
|
|
|
|
case 0xB1: ch = 0x67; break;
|
|
|
|
case 0x45E: ch = 0x65; break;
|
|
|
|
case 0xAD: ch = 0x6E; break;
|
|
|
|
case 0xA9: ch = 0x73; break;
|
|
|
|
case 0xA6: ch = 0x77; break;
|
|
|
|
case 0x2026: ch = 0x28C; break;
|
|
|
|
case 0x452: ch = 0x76; break;
|
|
|
|
case 0x408: ch = 0x70; break;
|
|
|
|
case 0x40C: ch = 0x75; break;
|
|
|
|
case 0x406: ch = 0x68; break;
|
|
|
|
case 0xB5: ch = 0x61; break;
|
|
|
|
case 0x491: ch = 0x25B; break;
|
|
|
|
case 0x40A: ch = 0x14B; break;
|
|
|
|
case 0x2030: ch = 0xF0; break;
|
|
|
|
case 0x456: ch = 0x6A; break;
|
|
|
|
case 0xA4: ch = 0x62; break;
|
|
|
|
case 0x409: ch = 0x292; break;
|
|
|
|
case 0x40E: ch = 0x69; break;
|
|
|
|
//case 0x44D: ch = 0x131; break;
|
|
|
|
case 0x40B: ch = 0x4E8; break;
|
|
|
|
case 0xB6: ch = 0x28A; break;
|
|
|
|
case 0x2018: ch = 0x251; break;
|
|
|
|
case 0x457: ch = 0x265; break;
|
|
|
|
case 0x458: ch = 0x153; break;
|
|
|
|
case 0x405: textNode->text.push_back( 0x153 ); ch = 0x303; break;
|
|
|
|
case 0x441: ch = 0x272; break;
|
|
|
|
case 0x442: textNode->text.push_back( 0x254 ); ch = 0x303; break;
|
|
|
|
case 0x443: ch = 0xF8; break;
|
|
|
|
case 0x445: textNode->text.push_back(0x25B ); ch = 0x303; break;
|
|
|
|
case 0x446: ch = 0xE7; break;
|
|
|
|
case 0x44C: textNode->text.push_back( 0x251 ); ch = 0x303; break;
|
|
|
|
case 0x44D: ch = 0x26A; break;
|
|
|
|
case 0x44F: ch = 0x252; break;
|
|
|
|
case 0x30: ch = 0x3B2; break;
|
|
|
|
case 0x31: textNode->text.push_back( 0x65 ); ch = 0x303; break;
|
|
|
|
case 0x32: ch = 0x25C; break;
|
|
|
|
case 0x33: ch = 0x129; break;
|
|
|
|
case 0x34: ch = 0xF5; break;
|
|
|
|
case 0x36: ch = 0x28E; break;
|
|
|
|
case 0x37: ch = 0x263; break;
|
|
|
|
case 0x38: ch = 0x1DD; break;
|
|
|
|
case 0x3A: ch = 0x2D0; break;
|
|
|
|
case 0x27: ch = 0x2C8; break;
|
|
|
|
case 0x455: ch = 0x1D0; break;
|
|
|
|
case 0xB7: ch = 0xE3; break;
|
|
|
|
|
|
|
|
case 0x00a0: ch = 0x02A7; break;
|
|
|
|
//case 0x00b1: ch = 0x0261; break;
|
|
|
|
case 0x0402: textNode->text.push_back( 0x0069 ); ch = L':'; break;
|
|
|
|
case 0x0403: textNode->text.push_back( 0x0251 ); ch = L':'; break;
|
|
|
|
//case 0x040b: ch = 0x03b8; break;
|
|
|
|
//case 0x040e: ch = 0x026a; break;
|
|
|
|
case 0x0428: ch = 0x0061; break;
|
|
|
|
case 0x0453: textNode->text.push_back( 0x0075 ); ch = L':'; break;
|
|
|
|
case 0x201a: ch = 0x0254; break;
|
|
|
|
case 0x201e: ch = 0x0259; break;
|
|
|
|
case 0x2039: textNode->text.push_back( 0x0064 ); ch = 0x0292; break;
|
|
|
|
}
|
|
|
|
}
|
2009-05-08 19:11:24 +00:00
|
|
|
|
|
|
|
if ( escaped && ch == L' ' )
|
|
|
|
ch = 0xA0; // Escaped spaces turn into non-breakable ones in Lingvo
|
2009-05-07 12:30:36 +00:00
|
|
|
|
2009-01-28 20:55:45 +00:00
|
|
|
textNode->text.push_back( ch );
|
|
|
|
} // for( ; ; )
|
|
|
|
}
|
|
|
|
catch( eot )
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( textNode )
|
|
|
|
stack.pop_back();
|
|
|
|
|
|
|
|
if ( stack.size() )
|
2011-06-19 20:29:11 +00:00
|
|
|
FDPRINTF( stderr, "Warning: %u tags were unclosed.\n", stack.size() );
|
2009-01-28 20:55:45 +00:00
|
|
|
}
|
|
|
|
|
2009-05-07 14:54:26 +00:00
|
|
|
void ArticleDom::closeTag( wstring const & name,
|
|
|
|
list< Node * > & stack,
|
|
|
|
bool warn )
|
|
|
|
{
|
|
|
|
// Find the tag which is to be closed
|
|
|
|
|
|
|
|
list< Node * >::reverse_iterator n;
|
|
|
|
|
|
|
|
for( n = stack.rbegin(); n != stack.rend(); ++n )
|
|
|
|
{
|
|
|
|
if ( (*n)->tagName == name || checkM( (*n)->tagName, name ) )
|
|
|
|
{
|
|
|
|
// Found it
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( n != stack.rend() )
|
|
|
|
{
|
|
|
|
// If there is a corresponding tag, close all tags above it,
|
|
|
|
// then close the tag itself, then reopen all the tags which got
|
|
|
|
// closed.
|
|
|
|
|
|
|
|
list< Node > nodesToReopen;
|
|
|
|
|
|
|
|
while( stack.size() )
|
|
|
|
{
|
|
|
|
bool found = stack.back()->tagName == name ||
|
|
|
|
checkM( stack.back()->tagName, name );
|
|
|
|
|
|
|
|
if ( !found )
|
|
|
|
nodesToReopen.push_back( Node( Node::Tag(), stack.back()->tagName,
|
|
|
|
stack.back()->tagAttrs ) );
|
|
|
|
|
|
|
|
if ( stack.back()->empty() )
|
|
|
|
{
|
|
|
|
// Empty nodes are deleted since they're no use
|
|
|
|
|
|
|
|
stack.pop_back();
|
|
|
|
|
|
|
|
Node * parent = stack.size() ? stack.back() : &root;
|
|
|
|
|
|
|
|
parent->pop_back();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
stack.pop_back();
|
|
|
|
|
|
|
|
if ( found )
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
while( nodesToReopen.size() )
|
|
|
|
{
|
|
|
|
if ( stack.empty() )
|
|
|
|
{
|
|
|
|
root.push_back( nodesToReopen.back() );
|
|
|
|
stack.push_back( &root.back() );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
stack.back()->push_back( nodesToReopen.back() );
|
|
|
|
stack.push_back( &stack.back()->back() );
|
|
|
|
}
|
|
|
|
|
|
|
|
nodesToReopen.pop_back();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
if ( warn )
|
|
|
|
{
|
2011-06-19 20:29:11 +00:00
|
|
|
FDPRINTF( stderr, "Warning: no corresponding opening tag for closing tag \"/%ls\" found.\n",
|
2009-05-07 14:54:26 +00:00
|
|
|
name.c_str() );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-01-28 20:55:45 +00:00
|
|
|
void ArticleDom::nextChar() throw( eot )
|
|
|
|
{
|
|
|
|
if ( !*stringPos )
|
|
|
|
throw eot();
|
|
|
|
|
|
|
|
ch = *stringPos++;
|
|
|
|
|
|
|
|
if ( ch == L'\\' )
|
|
|
|
{
|
|
|
|
if ( !*stringPos )
|
|
|
|
throw eot();
|
|
|
|
|
|
|
|
ch = *stringPos++;
|
|
|
|
|
|
|
|
escaped = true;
|
|
|
|
}
|
2009-06-06 12:01:59 +00:00
|
|
|
else
|
|
|
|
if ( ch == L'[' && *stringPos == L'[' )
|
|
|
|
{
|
|
|
|
++stringPos;
|
|
|
|
escaped = true;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
if ( ch == L']' && *stringPos == L']' )
|
|
|
|
{
|
|
|
|
++stringPos;
|
|
|
|
escaped = true;
|
|
|
|
}
|
2009-01-28 20:55:45 +00:00
|
|
|
else
|
|
|
|
escaped = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/////////////// DslScanner
|
|
|
|
|
|
|
|
DslScanner::DslScanner( string const & fileName ) throw( Ex, Iconv::Ex ):
|
|
|
|
encoding( Windows1252 ), iconv( encoding ), readBufferPtr( readBuffer ),
|
2009-08-01 10:05:24 +00:00
|
|
|
readBufferLeft( 0 ), linesRead( 0 )
|
2009-01-28 20:55:45 +00:00
|
|
|
{
|
|
|
|
// Since .dz is backwards-compatible with .gz, we use gz- functions to
|
|
|
|
// read it -- they are much nicer than the dict_data- ones.
|
2012-01-25 16:35:00 +00:00
|
|
|
|
|
|
|
f = gd_gzopen( fileName.c_str() );
|
2009-01-28 20:55:45 +00:00
|
|
|
if ( !f )
|
|
|
|
throw exCantOpen( fileName );
|
|
|
|
|
|
|
|
// Now try guessing the encoding by reading the first two bytes
|
|
|
|
|
|
|
|
unsigned char firstBytes[ 2 ];
|
|
|
|
|
|
|
|
if ( gzread( f, firstBytes, sizeof( firstBytes ) ) != sizeof( firstBytes ) )
|
|
|
|
{
|
|
|
|
// Apparently the file's too short
|
|
|
|
gzclose( f );
|
|
|
|
throw exMalformedDslFile( fileName );
|
|
|
|
}
|
|
|
|
|
|
|
|
bool needExactEncoding = false;
|
|
|
|
|
|
|
|
|
|
|
|
// If the file begins with the dedicated Unicode marker, we just consume
|
|
|
|
// it. If, on the other hand, it's not, we return the bytes back
|
|
|
|
if ( firstBytes[ 0 ] == 0xFF && firstBytes[ 1 ] == 0xFE )
|
|
|
|
encoding = Utf16LE;
|
|
|
|
else
|
|
|
|
if ( firstBytes[ 0 ] == 0xFE && firstBytes[ 1 ] == 0xFF )
|
|
|
|
encoding = Utf16BE;
|
|
|
|
else
|
2009-05-08 10:21:03 +00:00
|
|
|
if ( firstBytes[ 0 ] == 0xEF && firstBytes[ 1 ] == 0xBB )
|
|
|
|
{
|
|
|
|
// Looks like Utf8, read one more byte
|
|
|
|
if ( gzread( f, firstBytes, 1 ) != 1 || firstBytes[ 0 ] != 0xBF )
|
|
|
|
{
|
|
|
|
// Either the file's too short, or the BOM is weird
|
|
|
|
gzclose( f );
|
|
|
|
throw exMalformedDslFile( fileName );
|
|
|
|
}
|
|
|
|
|
|
|
|
encoding = Utf8;
|
|
|
|
}
|
|
|
|
else
|
2009-01-28 20:55:45 +00:00
|
|
|
{
|
|
|
|
if ( firstBytes[ 0 ] && !firstBytes[ 1 ] )
|
|
|
|
encoding = Utf16LE;
|
|
|
|
else
|
|
|
|
if ( !firstBytes[ 0 ] && firstBytes[ 1 ] )
|
|
|
|
encoding = Utf16BE;
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// Ok, this doesn't look like 16-bit Unicode. We will start with a
|
|
|
|
// 8-bit encoding with an intent to find out the exact one from
|
|
|
|
// the header.
|
|
|
|
needExactEncoding = true;
|
|
|
|
encoding = Windows1251;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( gzrewind( f ) )
|
|
|
|
{
|
|
|
|
gzclose( f );
|
|
|
|
throw exCantOpen( fileName );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
iconv.reinit( encoding );
|
|
|
|
|
|
|
|
// We now can use our own readNextLine() function
|
|
|
|
|
|
|
|
wstring str;
|
|
|
|
size_t offset;
|
|
|
|
|
|
|
|
for( ; ; )
|
|
|
|
{
|
|
|
|
if ( !readNextLine( str, offset ) )
|
|
|
|
{
|
|
|
|
gzclose( f );
|
|
|
|
throw exMalformedDslFile( fileName );
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( str.empty() || str[ 0 ] != L'#' )
|
|
|
|
break;
|
|
|
|
|
|
|
|
bool isName = false;
|
2009-04-22 21:37:32 +00:00
|
|
|
bool isLangFrom = false;
|
|
|
|
bool isLangTo = false;
|
2009-01-28 20:55:45 +00:00
|
|
|
|
2009-04-18 17:20:12 +00:00
|
|
|
if ( !str.compare( 0, 5, GD_NATIVE_TO_WS( L"#NAME" ), 5 ) )
|
2009-01-28 20:55:45 +00:00
|
|
|
isName = true;
|
|
|
|
else
|
2009-04-22 21:37:32 +00:00
|
|
|
if ( !str.compare( 0, 15, GD_NATIVE_TO_WS( L"#INDEX_LANGUAGE" ), 15 ) )
|
|
|
|
isLangFrom = true;
|
|
|
|
else
|
|
|
|
if ( !str.compare( 0, 18, GD_NATIVE_TO_WS( L"#CONTENTS_LANGUAGE" ), 18 ) )
|
|
|
|
isLangTo = true;
|
|
|
|
else
|
2009-04-18 17:20:12 +00:00
|
|
|
if ( str.compare( 0, 17, GD_NATIVE_TO_WS( L"#SOURCE_CODE_PAGE" ), 17 ) )
|
2009-01-28 20:55:45 +00:00
|
|
|
continue;
|
|
|
|
|
|
|
|
// Locate the argument
|
|
|
|
|
|
|
|
size_t beg = str.find_first_of( L'"' );
|
|
|
|
|
|
|
|
if ( beg == wstring::npos )
|
|
|
|
throw exMalformedDslFile( fileName );
|
|
|
|
|
|
|
|
size_t end = str.find_last_of( L'"' );
|
|
|
|
|
|
|
|
if ( end == beg )
|
|
|
|
throw exMalformedDslFile( fileName );
|
|
|
|
|
|
|
|
wstring arg( str, beg + 1, end - beg - 1 );
|
|
|
|
|
|
|
|
if ( isName )
|
|
|
|
dictionaryName = arg;
|
2009-04-22 21:37:32 +00:00
|
|
|
else if ( isLangFrom )
|
2009-04-23 11:43:20 +00:00
|
|
|
langFrom = arg;
|
2009-04-22 21:37:32 +00:00
|
|
|
else if ( isLangTo )
|
2009-04-23 11:43:20 +00:00
|
|
|
langTo = arg;
|
2009-01-28 20:55:45 +00:00
|
|
|
else
|
|
|
|
{
|
|
|
|
// The encoding
|
|
|
|
if ( !needExactEncoding )
|
|
|
|
{
|
|
|
|
// We don't need that!
|
2011-06-19 20:29:11 +00:00
|
|
|
FDPRINTF( stderr, "Warning: encoding was specified in a Unicode file, ignoring.\n" );
|
2009-01-28 20:55:45 +00:00
|
|
|
}
|
|
|
|
else
|
2009-04-18 17:20:12 +00:00
|
|
|
if ( !wcscasecmp( arg.c_str(), GD_NATIVE_TO_WS( L"Latin" ) ) )
|
2009-01-28 20:55:45 +00:00
|
|
|
encoding = Windows1252;
|
|
|
|
else
|
2009-04-18 17:20:12 +00:00
|
|
|
if ( !wcscasecmp( arg.c_str(), GD_NATIVE_TO_WS( L"Cyrillic" ) ) )
|
2009-01-28 20:55:45 +00:00
|
|
|
encoding = Windows1251;
|
|
|
|
else
|
2009-04-18 17:20:12 +00:00
|
|
|
if ( !wcscasecmp( arg.c_str(), GD_NATIVE_TO_WS( L"EasternEuropean" ) ) )
|
2009-01-28 20:55:45 +00:00
|
|
|
encoding = Windows1250;
|
|
|
|
else
|
|
|
|
{
|
|
|
|
gzclose( f );
|
|
|
|
throw exUnknownCodePage();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// The loop will always end up reading a line which was not a #-directive.
|
|
|
|
// We need to rewind to that line so readNextLine() would return it again
|
|
|
|
// next time it's called. To do that, we just use the slow gzseek() and
|
|
|
|
// empty the read buffer.
|
|
|
|
gzseek( f, offset, SEEK_SET );
|
|
|
|
readBufferPtr = readBuffer;
|
|
|
|
readBufferLeft = 0;
|
|
|
|
|
|
|
|
if ( needExactEncoding )
|
|
|
|
iconv.reinit( encoding );
|
|
|
|
}
|
|
|
|
|
|
|
|
DslScanner::~DslScanner() throw()
|
|
|
|
{
|
|
|
|
gzclose( f );
|
|
|
|
}
|
|
|
|
|
|
|
|
bool DslScanner::readNextLine( wstring & out, size_t & offset ) throw( Ex,
|
|
|
|
Iconv::Ex )
|
|
|
|
{
|
|
|
|
offset = (size_t)( gztell( f ) - readBufferLeft );
|
|
|
|
|
|
|
|
// For now we just read one char at a time
|
|
|
|
size_t readMultiple = distanceToBytes( 1 );
|
|
|
|
|
|
|
|
size_t leftInOut = wcharBuffer.size();
|
|
|
|
|
2009-04-18 17:20:12 +00:00
|
|
|
wchar * outPtr = &wcharBuffer.front();
|
2009-01-28 20:55:45 +00:00
|
|
|
|
|
|
|
for( ; ; )
|
|
|
|
{
|
|
|
|
// Check that we have bytes to read
|
2009-04-03 14:04:56 +00:00
|
|
|
if ( readBufferLeft < 4 ) // To convert one char, we need at most 4 bytes
|
2009-01-28 20:55:45 +00:00
|
|
|
{
|
2009-05-12 15:39:18 +00:00
|
|
|
if ( !gzeof( f ) )
|
2009-04-03 14:04:56 +00:00
|
|
|
{
|
|
|
|
// To avoid having to deal with ring logic, we move the remaining bytes
|
|
|
|
// to the beginning
|
|
|
|
memmove( readBuffer, readBufferPtr, readBufferLeft );
|
2009-04-22 21:37:32 +00:00
|
|
|
|
2009-04-03 14:04:56 +00:00
|
|
|
// Read some more bytes to readBuffer
|
|
|
|
int result = gzread( f, readBuffer + readBufferLeft,
|
|
|
|
sizeof( readBuffer ) - readBufferLeft );
|
2009-04-22 21:37:32 +00:00
|
|
|
|
2009-04-03 14:04:56 +00:00
|
|
|
if ( result == -1 )
|
|
|
|
throw exCantReadDslFile();
|
2009-04-22 21:37:32 +00:00
|
|
|
|
2009-04-03 14:04:56 +00:00
|
|
|
readBufferPtr = readBuffer;
|
|
|
|
readBufferLeft += (size_t) result;
|
|
|
|
}
|
2009-01-28 20:55:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if ( readBufferLeft < readMultiple )
|
|
|
|
{
|
|
|
|
// No more data. Return what we've got so far, forget the last byte if
|
|
|
|
// it was a 16-bit Unicode and a file had an odd number of bytes.
|
|
|
|
readBufferLeft = 0;
|
|
|
|
|
|
|
|
if ( outPtr != &wcharBuffer.front() )
|
|
|
|
{
|
|
|
|
// If there was a stray \r, remove it
|
|
|
|
if ( outPtr[ -1 ] == L'\r' )
|
|
|
|
--outPtr;
|
|
|
|
|
|
|
|
out = wstring( &wcharBuffer.front(), outPtr - &wcharBuffer.front() );
|
|
|
|
|
2009-08-01 10:05:24 +00:00
|
|
|
++linesRead;
|
|
|
|
|
2009-01-28 20:55:45 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check that we have chars to write
|
2009-04-03 14:04:56 +00:00
|
|
|
if ( leftInOut < 2 ) // With 16-bit wchars, 2 is needed for a surrogate pair
|
2009-01-28 20:55:45 +00:00
|
|
|
{
|
|
|
|
wcharBuffer.resize( wcharBuffer.size() + 64 );
|
2009-04-03 14:04:56 +00:00
|
|
|
outPtr = &wcharBuffer.front() + wcharBuffer.size() - 64 - leftInOut;
|
2009-01-28 20:55:45 +00:00
|
|
|
leftInOut += 64;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Ok, now convert one char
|
2009-04-18 17:20:12 +00:00
|
|
|
size_t outBytesLeft = sizeof( wchar );
|
2009-01-28 20:55:45 +00:00
|
|
|
|
2009-04-03 14:04:56 +00:00
|
|
|
Iconv::Result r =
|
|
|
|
iconv.convert( (void const *&)readBufferPtr, readBufferLeft,
|
|
|
|
(void *&)outPtr, outBytesLeft );
|
|
|
|
|
2009-04-18 17:20:12 +00:00
|
|
|
if ( r == Iconv::NeedMoreOut && outBytesLeft == sizeof( wchar ) )
|
2009-04-03 14:04:56 +00:00
|
|
|
{
|
|
|
|
// Seems to be a surrogate pair with a 16-bit target wchar
|
|
|
|
|
|
|
|
outBytesLeft *= 2;
|
|
|
|
r = iconv.convert( (void const *&)readBufferPtr, readBufferLeft,
|
|
|
|
(void *&)outPtr, outBytesLeft );
|
|
|
|
--leftInOut; // Complements the next decremention
|
|
|
|
}
|
|
|
|
|
Fix for #23: Failure to index a dictionary in UTF-8 format on Windows.
Here's what happens. At some moment during dictionary conversion,
in DslScanner::readNextLine(), whe call iconv(), when both buffers
are of size 4 (the conversion is from UTF-8 to UTF-16).
Now, the dictionary contains two em-dash symbols at that position,
one after another, each is encoded in 3 bytes in UTF-8. So, the
input buffer of size 4 contains entire first em-dash (3 bytes)
and the first byte from the second em-dash.
Calling iconv() on Linux leads to Iconv::NeedMoreOut (E2BIG),
which makes sense, since we converted the first char and there is
no more space in the output buffer.
Calling iconv() on Windows leads to Iconv::NeedMoreIn (EINVAL),
which *also* makes sense, since we converted the first char, started
to look at the second one and noticed that it is incomplete.
The difference is only what iconv() checks first, the state
of the input or the state of the output. And it seems that it
does different things on Windows and Linux.
The patch takes this into account and resolves the conversion
problem on Windows: the only error condition that requires
to throw an encoding error is when outBytesLeft is non-empty,
that means that iconv didn't convert anything.
2011-07-01 12:21:57 +00:00
|
|
|
if ( outBytesLeft )
|
2009-01-28 20:55:45 +00:00
|
|
|
throw exEncodingError();
|
|
|
|
|
|
|
|
--leftInOut;
|
|
|
|
|
|
|
|
// Have we got \n?
|
|
|
|
if ( outPtr[ -1 ] == L'\n' )
|
|
|
|
{
|
|
|
|
--outPtr;
|
|
|
|
|
|
|
|
// Now kill a \r if there is one, and return the result.
|
|
|
|
if ( outPtr != &wcharBuffer.front() && outPtr[ -1 ] == L'\r' )
|
|
|
|
--outPtr;
|
|
|
|
|
|
|
|
out = wstring( &wcharBuffer.front(), outPtr - &wcharBuffer.front() );
|
|
|
|
|
2009-08-01 10:05:24 +00:00
|
|
|
++linesRead;
|
|
|
|
|
2009-01-28 20:55:45 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/////////////// DslScanner
|
|
|
|
|
|
|
|
DslIconv::DslIconv( DslEncoding e ) throw( Iconv::Ex ):
|
2009-04-18 17:20:12 +00:00
|
|
|
Iconv( Iconv::GdWchar, getEncodingNameFor( e ) )
|
2009-01-28 20:55:45 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void DslIconv::reinit( DslEncoding e ) throw( Iconv::Ex )
|
|
|
|
{
|
2009-04-18 17:20:12 +00:00
|
|
|
Iconv::reinit( Iconv::GdWchar, getEncodingNameFor( e ) );
|
2009-01-28 20:55:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
char const * DslIconv::getEncodingNameFor( DslEncoding e )
|
|
|
|
{
|
|
|
|
switch( e )
|
|
|
|
{
|
|
|
|
case Utf16LE:
|
|
|
|
return "UTF-16LE";
|
|
|
|
case Utf16BE:
|
|
|
|
return "UTF-16BE";
|
|
|
|
case Windows1252:
|
|
|
|
return "WINDOWS-1252";
|
|
|
|
case Windows1251:
|
|
|
|
return "WINDOWS-1251";
|
2009-05-08 10:21:03 +00:00
|
|
|
case Details::Utf8:
|
|
|
|
return "UTF-8";
|
2009-01-28 20:55:45 +00:00
|
|
|
case Windows1250:
|
|
|
|
default:
|
|
|
|
return "WINDOWS-1250";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void processUnsortedParts( wstring & str, bool strip )
|
|
|
|
{
|
|
|
|
int refCount = 0;
|
|
|
|
|
|
|
|
size_t startPos = 0;
|
|
|
|
|
|
|
|
for( size_t x = 0; x < str.size(); )
|
|
|
|
{
|
2009-04-18 17:20:12 +00:00
|
|
|
wchar ch = str[ x ];
|
2009-01-28 20:55:45 +00:00
|
|
|
|
|
|
|
if ( ch == L'\\' )
|
|
|
|
{
|
|
|
|
// Escape code
|
|
|
|
x += 2;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( ch == '{' )
|
|
|
|
{
|
|
|
|
++refCount;
|
|
|
|
|
|
|
|
if ( !strip )
|
|
|
|
{
|
|
|
|
// Just remove it and continue
|
|
|
|
str.erase( x, 1 );
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
if ( refCount == 1 )
|
|
|
|
{
|
|
|
|
// First opening brace. Save this position, we will be erasing the
|
|
|
|
// whole range when we encounter the last closing brace.
|
|
|
|
startPos = x;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
if ( ch == '}' )
|
|
|
|
{
|
|
|
|
--refCount;
|
|
|
|
|
|
|
|
if ( refCount < 0 )
|
|
|
|
{
|
2011-06-19 20:29:11 +00:00
|
|
|
FDPRINTF( stderr, "Warning: an unmatched closing brace was encountered.\n" );
|
2009-01-28 20:55:45 +00:00
|
|
|
refCount = 0;
|
|
|
|
// But we remove that thing either way
|
|
|
|
str.erase( x, 1 );
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( !strip )
|
|
|
|
{
|
|
|
|
// Just remove it and continue
|
|
|
|
str.erase( x, 1 );
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
if ( !refCount )
|
|
|
|
{
|
|
|
|
// The final closing brace -- we can erase the whole range now.
|
|
|
|
str.erase( startPos, x - startPos + 1 );
|
|
|
|
x = startPos;
|
|
|
|
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
++x;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( strip && refCount )
|
|
|
|
{
|
2011-06-19 20:29:11 +00:00
|
|
|
FDPRINTF( stderr, "Warning: unclosed brace(s) encountered.\n" );
|
2009-01-28 20:55:45 +00:00
|
|
|
str.erase( startPos );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void expandOptionalParts( wstring & str, list< wstring > & result,
|
|
|
|
size_t x )
|
|
|
|
{
|
|
|
|
for( ; x < str.size(); )
|
|
|
|
{
|
2009-04-18 17:20:12 +00:00
|
|
|
wchar ch = str[ x ];
|
2009-01-28 20:55:45 +00:00
|
|
|
|
|
|
|
if ( ch == L'\\' )
|
|
|
|
{
|
|
|
|
// Escape code
|
|
|
|
x += 2;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
if ( ch == L'(' )
|
|
|
|
{
|
|
|
|
// First, handle the case where this block is removed
|
|
|
|
|
|
|
|
{
|
|
|
|
int refCount = 1;
|
2009-04-22 21:37:32 +00:00
|
|
|
|
2009-01-28 20:55:45 +00:00
|
|
|
for( size_t y = x + 1; y < str.size(); ++y )
|
|
|
|
{
|
2009-04-18 17:20:12 +00:00
|
|
|
wchar ch = str[ y ];
|
2009-04-22 21:37:32 +00:00
|
|
|
|
2009-01-28 20:55:45 +00:00
|
|
|
if ( ch == L'\\' )
|
|
|
|
{
|
|
|
|
// Escape code
|
|
|
|
++y;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
if ( ch == L'(' )
|
|
|
|
++refCount;
|
|
|
|
else
|
|
|
|
if ( ch == L')' )
|
|
|
|
{
|
|
|
|
if ( !--refCount )
|
|
|
|
{
|
|
|
|
// Now that the closing parenthesis is found,
|
|
|
|
// cut the whole thing out and be done.
|
|
|
|
|
|
|
|
if ( y != x + 1 ) // Only do for non-empty cases
|
|
|
|
{
|
|
|
|
wstring removed( str, 0, x );
|
|
|
|
removed.append( str, y + 1, str.size() - y - 1 );
|
2009-04-22 21:37:32 +00:00
|
|
|
|
2009-01-28 20:55:45 +00:00
|
|
|
expandOptionalParts( removed, result, x );
|
|
|
|
}
|
2009-04-22 21:37:32 +00:00
|
|
|
|
2009-01-28 20:55:45 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2009-04-22 21:37:32 +00:00
|
|
|
|
2009-01-28 20:55:45 +00:00
|
|
|
if ( refCount && x != str.size() - 1 )
|
|
|
|
{
|
|
|
|
// Closing paren not found? Chop it.
|
|
|
|
|
|
|
|
wstring removed( str, 0, x );
|
2009-04-22 21:37:32 +00:00
|
|
|
|
2010-09-29 04:55:53 +00:00
|
|
|
// Limit the amount of results to avoid excessive resource consumption
|
|
|
|
if ( result.size() < 32 )
|
|
|
|
result.push_back( removed );
|
|
|
|
else
|
|
|
|
return;
|
2009-01-28 20:55:45 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Now, handling the case where it is kept -- we just erase
|
|
|
|
// the paren and go on
|
|
|
|
|
|
|
|
str.erase( x, 1 );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
if ( ch == L')' )
|
|
|
|
{
|
|
|
|
// Closing paren doesn't mean much -- just erase it
|
|
|
|
str.erase( x, 1 );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
++x;
|
|
|
|
}
|
|
|
|
|
2010-09-29 04:55:53 +00:00
|
|
|
// Limit the amount of results to avoid excessive resource consumption
|
|
|
|
if ( result.size() < 32 )
|
|
|
|
result.push_back( str );
|
2009-01-28 20:55:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void expandTildes( wstring & str, wstring const & tildeReplacement )
|
|
|
|
{
|
|
|
|
for( size_t x = 0; x < str.size(); )
|
|
|
|
if ( str[ x ] == L'\\' )
|
|
|
|
x+=2;
|
|
|
|
else
|
|
|
|
if ( str[ x ] == L'~' )
|
|
|
|
{
|
|
|
|
str.replace( x, 1, tildeReplacement );
|
|
|
|
x += tildeReplacement.size();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
++x;
|
|
|
|
}
|
|
|
|
|
|
|
|
void unescapeDsl( wstring & str )
|
|
|
|
{
|
|
|
|
for( size_t x = 0; x < str.size(); ++x )
|
|
|
|
if ( str[ x ] == L'\\' )
|
|
|
|
str.erase( x, 1 ); // ++x would skip the next char without processing it
|
|
|
|
}
|
|
|
|
|
2009-06-06 16:02:52 +00:00
|
|
|
void normalizeHeadword( wstring & str )
|
|
|
|
{
|
|
|
|
for( size_t x = str.size(); x-- > 1; ) // >1 -- Don't test the first char
|
|
|
|
{
|
|
|
|
if ( str[ x ] == L' ' )
|
|
|
|
{
|
|
|
|
size_t y;
|
|
|
|
for( y = x; y && ( str[ y - 1 ] == L' ' ) ; --y );
|
|
|
|
|
|
|
|
if ( y != x )
|
|
|
|
{
|
|
|
|
// Remove extra spaces
|
|
|
|
|
|
|
|
str.erase( y, x - y );
|
|
|
|
|
|
|
|
x = y;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-04-23 11:43:20 +00:00
|
|
|
namespace
|
|
|
|
{
|
|
|
|
void cutEnding( wstring & where, wstring const & ending )
|
|
|
|
{
|
|
|
|
if ( where.size() > ending.size() &&
|
|
|
|
where.compare( where.size() - ending.size(),
|
|
|
|
ending.size(), ending ) == 0 )
|
|
|
|
where.erase( where.size() - ending.size() );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
quint32 dslLanguageToId( wstring const & name )
|
|
|
|
{
|
|
|
|
static wstring newSp( GD_NATIVE_TO_WS( L"newspelling" ) );
|
|
|
|
static wstring st( GD_NATIVE_TO_WS( L"standard" ) );
|
|
|
|
static wstring ms( GD_NATIVE_TO_WS( L"modernsort" ) );
|
|
|
|
static wstring ts( GD_NATIVE_TO_WS( L"traditionalsort" ) );
|
|
|
|
static wstring prc( GD_NATIVE_TO_WS( L"prc" ) );
|
|
|
|
|
|
|
|
// Any of those endings are to be removed
|
|
|
|
|
|
|
|
wstring nameStripped = Folding::apply( name );
|
|
|
|
|
|
|
|
cutEnding( nameStripped, newSp );
|
|
|
|
cutEnding( nameStripped, st );
|
|
|
|
cutEnding( nameStripped, ms );
|
|
|
|
cutEnding( nameStripped, ts );
|
|
|
|
cutEnding( nameStripped, prc );
|
|
|
|
|
|
|
|
return LangCoder::findIdForLanguage( nameStripped );
|
|
|
|
}
|
|
|
|
|
2009-01-28 20:55:45 +00:00
|
|
|
}
|
|
|
|
}
|