2000-09-18 16:07:07 +00:00
|
|
|
/*************************************************************************
|
|
|
|
*
|
|
|
|
* $RCSfile: export2.cxx,v $
|
|
|
|
*
|
2004-11-18 07:16:51 +00:00
|
|
|
* $Revision: 1.28 $
|
2000-09-18 16:07:07 +00:00
|
|
|
*
|
2004-11-18 07:16:51 +00:00
|
|
|
* last change: $Author: rt $ $Date: 2004-11-18 08:16:50 $
|
2000-09-18 16:07:07 +00:00
|
|
|
*
|
|
|
|
* The Contents of this file are made available subject to the terms of
|
|
|
|
* either of the following licenses
|
|
|
|
*
|
|
|
|
* - GNU Lesser General Public License Version 2.1
|
|
|
|
* - Sun Industry Standards Source License Version 1.1
|
|
|
|
*
|
|
|
|
* Sun Microsystems Inc., October, 2000
|
|
|
|
*
|
|
|
|
* GNU Lesser General Public License Version 2.1
|
|
|
|
* =============================================
|
|
|
|
* Copyright 2000 by Sun Microsystems, Inc.
|
|
|
|
* 901 San Antonio Road, Palo Alto, CA 94303, USA
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License version 2.1, as published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston,
|
|
|
|
* MA 02111-1307 USA
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* Sun Industry Standards Source License Version 1.1
|
|
|
|
* =================================================
|
|
|
|
* The contents of this file are subject to the Sun Industry Standards
|
|
|
|
* Source License Version 1.1 (the "License"); You may not use this file
|
|
|
|
* except in compliance with the License. You may obtain a copy of the
|
|
|
|
* License at http://www.openoffice.org/license.html.
|
|
|
|
*
|
|
|
|
* Software provided under this License is provided on an "AS IS" basis,
|
|
|
|
* WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING,
|
|
|
|
* WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS,
|
|
|
|
* MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING.
|
|
|
|
* See the License for the specific provisions governing your rights and
|
|
|
|
* obligations concerning the Software.
|
|
|
|
*
|
|
|
|
* The Initial Developer of the Original Code is: Sun Microsystems, Inc.
|
|
|
|
*
|
|
|
|
* Copyright: 2000 by Sun Microsystems, Inc.
|
|
|
|
*
|
|
|
|
* All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Contributor(s): _______________________________________
|
|
|
|
*
|
|
|
|
*
|
|
|
|
************************************************************************/
|
|
|
|
#include "export.hxx"
|
2001-05-30 11:10:22 +00:00
|
|
|
#include "utf8conv.hxx"
|
2001-06-07 12:33:31 +00:00
|
|
|
#include <tools/datetime.hxx>
|
|
|
|
#include <bootstrp/appdef.hxx>
|
2004-06-25 11:41:02 +00:00
|
|
|
#include <tools/isofallback.hxx>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <osl/file.hxx>
|
|
|
|
#include <rtl/ustring.hxx>
|
2004-11-02 15:04:16 +00:00
|
|
|
#include <iostream>
|
|
|
|
|
|
|
|
using namespace std;
|
2000-09-18 16:07:07 +00:00
|
|
|
//
|
|
|
|
// class ResData();
|
|
|
|
//
|
|
|
|
|
|
|
|
/*****************************************************************************/
|
|
|
|
ResData::~ResData()
|
|
|
|
/*****************************************************************************/
|
|
|
|
{
|
|
|
|
if ( pStringList ) {
|
|
|
|
// delete existing res. of type StringList
|
|
|
|
for ( ULONG i = 0; i < pStringList->Count(); i++ ) {
|
2004-06-25 11:41:02 +00:00
|
|
|
ExportListEntry* test = pStringList->GetObject( i );
|
|
|
|
if( test != NULL ) delete test;
|
2000-09-18 16:07:07 +00:00
|
|
|
}
|
|
|
|
delete pStringList;
|
|
|
|
}
|
|
|
|
if ( pFilterList ) {
|
|
|
|
// delete existing res. of type FilterList
|
|
|
|
for ( ULONG i = 0; i < pFilterList->Count(); i++ ) {
|
2004-06-25 11:41:02 +00:00
|
|
|
ExportListEntry* test = pFilterList->GetObject( i );
|
|
|
|
delete test;
|
2000-09-18 16:07:07 +00:00
|
|
|
}
|
|
|
|
delete pFilterList;
|
|
|
|
}
|
|
|
|
if ( pItemList ) {
|
|
|
|
// delete existing res. of type ItemList
|
|
|
|
for ( ULONG i = 0; i < pItemList->Count(); i++ ) {
|
2004-06-25 11:41:02 +00:00
|
|
|
ExportListEntry* test = pItemList->GetObject( i );
|
|
|
|
delete test;
|
2000-09-18 16:07:07 +00:00
|
|
|
}
|
|
|
|
delete pItemList;
|
|
|
|
}
|
|
|
|
if ( pUIEntries ) {
|
|
|
|
// delete existing res. of type UIEntries
|
|
|
|
for ( ULONG i = 0; i < pUIEntries->Count(); i++ ) {
|
2004-06-25 11:41:02 +00:00
|
|
|
ExportListEntry* test = pUIEntries->GetObject( i );
|
|
|
|
delete test;
|
2000-09-18 16:07:07 +00:00
|
|
|
}
|
|
|
|
delete pUIEntries;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// class Export
|
|
|
|
//
|
|
|
|
|
2001-05-23 07:05:40 +00:00
|
|
|
/*****************************************************************************/
|
|
|
|
ByteString Export::sLanguages;
|
2004-08-30 16:30:29 +00:00
|
|
|
ByteString Export::sForcedLanguages;
|
2001-05-28 07:25:29 +00:00
|
|
|
ByteString Export::sIsoCode99;
|
2001-05-23 07:05:40 +00:00
|
|
|
/*****************************************************************************/
|
|
|
|
|
2000-09-18 16:07:07 +00:00
|
|
|
|
|
|
|
/*****************************************************************************/
|
|
|
|
USHORT Export::GetLangIndex( USHORT nLangId )
|
|
|
|
/*****************************************************************************/
|
|
|
|
{
|
2004-06-25 11:41:02 +00:00
|
|
|
// removeme
|
2000-09-18 16:07:07 +00:00
|
|
|
return 0xFFFF;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*****************************************************************************/
|
|
|
|
CharSet Export::GetCharSet( USHORT nLangId )
|
|
|
|
/*****************************************************************************/
|
|
|
|
{
|
2004-06-25 11:41:02 +00:00
|
|
|
// removeme
|
|
|
|
//return Langcode2TextEncoding( nLangId );
|
|
|
|
return 0;
|
2000-09-18 16:07:07 +00:00
|
|
|
}
|
|
|
|
|
2004-11-18 07:16:51 +00:00
|
|
|
void Export::DumpExportList( ByteString& sListName , ExportList& aList ){
|
|
|
|
printf( "%s\n", sListName.GetBuffer() );
|
|
|
|
ByteString l("");
|
|
|
|
ExportListEntry* aEntry;
|
|
|
|
for( int x = 0; x < aList.Count() ; x++ ){
|
|
|
|
aEntry = (ExportListEntry*) aList.GetObject( x );
|
|
|
|
Export::DumpMap( l , *aEntry );
|
|
|
|
}
|
|
|
|
printf("\n");
|
|
|
|
}
|
|
|
|
ByteString Export::DumpMap( ByteString& sMapName , ByteStringHashMap& aMap ){
|
|
|
|
ByteStringHashMap::const_iterator idbg;
|
|
|
|
ByteString sReturn;
|
|
|
|
|
|
|
|
if( sMapName.Len() )
|
|
|
|
printf("MapName %s\n", sMapName.GetBuffer());
|
|
|
|
// sReturn+= ByteString("MapName ") ;
|
|
|
|
// sReturn+= sMapName ;
|
|
|
|
// sReturn+= ByteString("\n") ;
|
|
|
|
if( aMap.size() < 1 ) return ByteString();
|
|
|
|
for( idbg = aMap.begin() ; idbg != aMap.end(); ++idbg ){
|
|
|
|
ByteString a( idbg->first );
|
|
|
|
ByteString b( idbg->second );
|
|
|
|
printf("[%s]= %s",a.GetBuffer(),b.GetBuffer());
|
|
|
|
/* sReturn+= ByteString("[") ;
|
|
|
|
sReturn+= a ;
|
|
|
|
sReturn+= ByteString("]= ") ;
|
|
|
|
sReturn+= b ;
|
|
|
|
sReturn+= ByteString("\n") ;*/
|
|
|
|
printf("\n");
|
|
|
|
}
|
|
|
|
printf("\n");
|
|
|
|
//sReturn+= "\n" ;
|
|
|
|
return sReturn;
|
|
|
|
}
|
2000-11-22 11:57:00 +00:00
|
|
|
/*****************************************************************************/
|
|
|
|
USHORT Export::GetLangByIsoLang( const ByteString &rIsoLang )
|
|
|
|
/*****************************************************************************/
|
|
|
|
{
|
2004-08-30 16:30:29 +00:00
|
|
|
// removeme
|
2000-11-22 11:57:00 +00:00
|
|
|
ByteString sLang( rIsoLang );
|
|
|
|
sLang.ToUpperAscii();
|
2000-11-27 06:10:08 +00:00
|
|
|
return 0xFFFF;
|
2000-11-22 11:57:00 +00:00
|
|
|
}
|
2004-06-25 11:41:02 +00:00
|
|
|
/*****************************************************************************/
|
|
|
|
void Export::SetLanguages( std::vector<ByteString> val ){
|
|
|
|
/*****************************************************************************/
|
|
|
|
aLanguages = val;
|
|
|
|
isInitialized = true;
|
|
|
|
}
|
|
|
|
/*****************************************************************************/
|
|
|
|
std::vector<ByteString> Export::GetLanguages(){
|
|
|
|
/*****************************************************************************/
|
|
|
|
return aLanguages;
|
|
|
|
}
|
2004-08-30 16:30:29 +00:00
|
|
|
/*****************************************************************************/
|
|
|
|
std::vector<ByteString> Export::GetForcedLanguages(){
|
|
|
|
/*****************************************************************************/
|
|
|
|
return aForcedLanguages;
|
|
|
|
}
|
|
|
|
std::vector<ByteString> Export::aLanguages = std::vector<ByteString>();
|
|
|
|
std::vector<ByteString> Export::aForcedLanguages = std::vector<ByteString>();
|
2000-11-22 11:57:00 +00:00
|
|
|
|
|
|
|
/*****************************************************************************/
|
|
|
|
ByteString Export::GetIsoLangByIndex( USHORT nIndex )
|
|
|
|
/*****************************************************************************/
|
|
|
|
{
|
2004-06-25 11:41:02 +00:00
|
|
|
// remove me
|
2000-11-22 11:57:00 +00:00
|
|
|
return "";
|
|
|
|
}
|
|
|
|
|
|
|
|
/*****************************************************************************/
|
|
|
|
void Export::QuotHTML( ByteString &rString )
|
|
|
|
/*****************************************************************************/
|
|
|
|
{
|
|
|
|
ByteString sReturn;
|
2000-12-08 11:49:25 +00:00
|
|
|
BOOL bBreak = FALSE;
|
2001-10-15 13:46:07 +00:00
|
|
|
for ( USHORT i = 0; i < rString.Len(); i++ ) {
|
2000-12-08 11:49:25 +00:00
|
|
|
ByteString sTemp = rString.Copy( i );
|
|
|
|
if ( sTemp.Search( "<Arg n=" ) == 0 ) {
|
2000-12-18 10:49:11 +00:00
|
|
|
while ( i < rString.Len() && rString.GetChar( i ) != '>' ) {
|
2000-12-08 11:49:25 +00:00
|
|
|
sReturn += rString.GetChar( i );
|
|
|
|
i++;
|
|
|
|
}
|
2000-12-18 10:49:11 +00:00
|
|
|
if ( rString.GetChar( i ) == '>' ) {
|
|
|
|
sReturn += ">";
|
|
|
|
i++;
|
|
|
|
}
|
2000-12-08 11:49:25 +00:00
|
|
|
}
|
|
|
|
if ( i < rString.Len()) {
|
|
|
|
switch ( rString.GetChar( i )) {
|
|
|
|
case '<':
|
|
|
|
sReturn += "<";
|
|
|
|
break;
|
2000-11-22 11:57:00 +00:00
|
|
|
|
2000-12-08 11:49:25 +00:00
|
|
|
case '>':
|
|
|
|
sReturn += ">";
|
|
|
|
break;
|
2000-11-22 11:57:00 +00:00
|
|
|
|
2000-12-08 11:49:25 +00:00
|
|
|
case '\"':
|
|
|
|
sReturn += """;
|
|
|
|
break;
|
2000-11-22 11:57:00 +00:00
|
|
|
|
2000-12-08 11:49:25 +00:00
|
|
|
case '\'':
|
|
|
|
sReturn += "'";
|
|
|
|
break;
|
2000-11-22 11:57:00 +00:00
|
|
|
|
2000-12-08 11:49:25 +00:00
|
|
|
case '&':
|
|
|
|
if ((( i + 4 ) < rString.Len()) &&
|
|
|
|
( rString.Copy( i, 5 ) == "&" ))
|
|
|
|
sReturn += rString.GetChar( i );
|
|
|
|
else
|
|
|
|
sReturn += "&";
|
|
|
|
break;
|
2000-11-22 11:57:00 +00:00
|
|
|
|
2000-12-08 11:49:25 +00:00
|
|
|
default:
|
|
|
|
sReturn += rString.GetChar( i );
|
|
|
|
break;
|
|
|
|
}
|
2000-11-22 11:57:00 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
rString = sReturn;
|
|
|
|
}
|
|
|
|
|
2004-11-02 15:04:16 +00:00
|
|
|
void Export::RemoveUTF8ByteOrderMarker( ByteString &rString ){
|
|
|
|
if( hasUTF8ByteOrderMarker( rString ) )
|
|
|
|
rString.Erase( 0 , 3 );
|
|
|
|
}
|
|
|
|
|
|
|
|
bool Export::hasUTF8ByteOrderMarker( const ByteString &rString ){
|
|
|
|
// Byte order marker signature
|
|
|
|
const char bom[ 3 ] = { 0xEF , 0xBB , 0xBF };
|
|
|
|
|
|
|
|
return rString.Len() >= 3 &&
|
|
|
|
rString.GetChar( 0 ) == bom[ 0 ] &&
|
|
|
|
rString.GetChar( 1 ) == bom[ 1 ] &&
|
|
|
|
rString.GetChar( 2 ) == bom[ 2 ] ;
|
|
|
|
}
|
|
|
|
bool Export::fileHasUTF8ByteOrderMarker( const ByteString &rString ){
|
|
|
|
SvFileStream aFileIn( String( rString , RTL_TEXTENCODING_ASCII_US ) , STREAM_READ );
|
|
|
|
ByteString sLine;
|
|
|
|
if( !aFileIn.IsEof() ) {
|
|
|
|
aFileIn.ReadLine( sLine );
|
|
|
|
if( aFileIn.IsOpen() ) aFileIn.Close();
|
|
|
|
return hasUTF8ByteOrderMarker( sLine );
|
|
|
|
}
|
|
|
|
if( aFileIn.IsOpen() ) aFileIn.Close();
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
void Export::RemoveUTF8ByteOrderMarkerFromFile( const ByteString &rFilename ){
|
|
|
|
SvFileStream aFileIn( String( rFilename , RTL_TEXTENCODING_ASCII_US ) , STREAM_READ );
|
|
|
|
ByteString sLine;
|
|
|
|
if( !aFileIn.IsEof() ) {
|
|
|
|
aFileIn.ReadLine( sLine );
|
|
|
|
// Test header
|
|
|
|
if( hasUTF8ByteOrderMarker( sLine ) ){
|
|
|
|
//cout << "UTF8 Header found!\n";
|
|
|
|
DirEntry aTempFile = Export::GetTempFile();
|
|
|
|
ByteString sTempFile = ByteString( aTempFile.GetFull() , RTL_TEXTENCODING_ASCII_US );
|
|
|
|
SvFileStream aNewFile( String( sTempFile , RTL_TEXTENCODING_ASCII_US ) , STREAM_WRITE );
|
|
|
|
// Remove header
|
|
|
|
RemoveUTF8ByteOrderMarker( sLine );
|
|
|
|
//cout << "Copy stripped stuff to " << sTempFile.GetBuffer() << endl;
|
|
|
|
aNewFile.WriteLine( sLine );
|
|
|
|
// Copy the rest
|
|
|
|
while( !aFileIn.IsEof() ){
|
|
|
|
aFileIn.ReadLine( sLine );
|
|
|
|
aNewFile.WriteLine( sLine );
|
|
|
|
}
|
|
|
|
if( aFileIn.IsOpen() ) aFileIn.Close();
|
|
|
|
if( aNewFile.IsOpen() ) aNewFile.Close();
|
|
|
|
DirEntry aEntry( rFilename.GetBuffer() );
|
|
|
|
//cout << "Removing file " << rFilename.GetBuffer() << "\n";
|
|
|
|
aEntry.Kill();
|
|
|
|
//cout << "Renaming file " << sTempFile.GetBuffer() << " to " << rFilename.GetBuffer() << "\n";
|
|
|
|
DirEntry( sTempFile ).MoveTo( DirEntry( rFilename.GetBuffer() ) );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if( aFileIn.IsOpen() ) aFileIn.Close();
|
|
|
|
}
|
2000-11-22 11:57:00 +00:00
|
|
|
/*****************************************************************************/
|
|
|
|
void Export::UnquotHTML( ByteString &rString )
|
|
|
|
/*****************************************************************************/
|
|
|
|
{
|
|
|
|
ByteString sReturn;
|
|
|
|
while ( rString.Len()) {
|
|
|
|
if ( rString.Copy( 0, 5 ) == "&" ) {
|
|
|
|
sReturn += "&";
|
|
|
|
rString.Erase( 0, 5 );
|
|
|
|
}
|
|
|
|
else if ( rString.Copy( 0, 4 ) == "<" ) {
|
|
|
|
sReturn += "<";
|
|
|
|
rString.Erase( 0, 4 );
|
|
|
|
}
|
|
|
|
else if ( rString.Copy( 0, 4 ) == ">" ) {
|
|
|
|
sReturn += ">";
|
|
|
|
rString.Erase( 0, 4 );
|
|
|
|
}
|
|
|
|
else if ( rString.Copy( 0, 6 ) == """ ) {
|
|
|
|
sReturn += "\"";
|
|
|
|
rString.Erase( 0, 6 );
|
|
|
|
}
|
|
|
|
else if ( rString.Copy( 0, 6 ) == "'" ) {
|
|
|
|
sReturn += "\'";
|
|
|
|
rString.Erase( 0, 6 );
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
sReturn += rString.GetChar( 0 );
|
|
|
|
rString.Erase( 0, 1 );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
rString = sReturn;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*****************************************************************************/
|
2004-06-25 11:41:02 +00:00
|
|
|
bool Export::LanguageAllowed( const ByteString &nLanguage )
|
2000-11-22 11:57:00 +00:00
|
|
|
/*****************************************************************************/
|
|
|
|
{
|
2004-06-25 11:41:02 +00:00
|
|
|
return std::find( aLanguages.begin() , aLanguages.end() , nLanguage ) != aLanguages.end();
|
|
|
|
}
|
2001-05-23 07:05:40 +00:00
|
|
|
|
2004-06-25 11:41:02 +00:00
|
|
|
bool Export::isInitialized = false;
|
2001-05-23 07:05:40 +00:00
|
|
|
|
2004-06-25 11:41:02 +00:00
|
|
|
/*****************************************************************************/
|
|
|
|
void Export::InitLanguages( bool bMergeMode ){
|
|
|
|
/*****************************************************************************/
|
2004-11-02 15:04:16 +00:00
|
|
|
if( !isInitialized ){
|
|
|
|
ByteString sTmp;
|
|
|
|
ByteStringBoolHashMap aEnvLangs;
|
|
|
|
for ( USHORT x = 0; x < sLanguages.GetTokenCount( ',' ); x++ ){
|
|
|
|
sTmp = sLanguages.GetToken( x, ',' ).GetToken( 0, '=' );
|
|
|
|
sTmp.EraseLeadingAndTrailingChars();
|
|
|
|
if( bMergeMode && ( sTmp.EqualsIgnoreCaseAscii("de") || sTmp.EqualsIgnoreCaseAscii("en-US") )){}
|
|
|
|
else if( !( (sTmp.GetChar(0)=='x' || sTmp.GetChar(0)=='X') && sTmp.GetChar(1)=='-' ) ){
|
|
|
|
aLanguages.push_back( sTmp );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
InitForcedLanguages( bMergeMode );
|
|
|
|
isInitialized = true;
|
2004-06-25 11:41:02 +00:00
|
|
|
}
|
2001-05-23 07:05:40 +00:00
|
|
|
}
|
2004-08-30 16:30:29 +00:00
|
|
|
/*****************************************************************************/
|
|
|
|
void Export::InitForcedLanguages( bool bMergeMode ){
|
|
|
|
/*****************************************************************************/
|
|
|
|
ByteString sTmp;
|
|
|
|
ByteStringBoolHashMap aEnvLangs;
|
|
|
|
for ( USHORT x = 0; x < sForcedLanguages.GetTokenCount( ',' ); x++ ){
|
|
|
|
sTmp = sForcedLanguages.GetToken( x, ',' ).GetToken( 0, '=' );
|
|
|
|
sTmp.EraseLeadingAndTrailingChars();
|
|
|
|
if( bMergeMode && ( sTmp.EqualsIgnoreCaseAscii("de") || sTmp.EqualsIgnoreCaseAscii("en-US") )){}
|
|
|
|
else if( !( (sTmp.GetChar(0)=='x' || sTmp.GetChar(0)=='X') && sTmp.GetChar(1)=='-' ) )
|
|
|
|
aForcedLanguages.push_back( sTmp );
|
|
|
|
}
|
|
|
|
}
|
2004-06-25 11:41:02 +00:00
|
|
|
|
2001-05-28 07:25:29 +00:00
|
|
|
/*****************************************************************************/
|
2004-06-25 11:41:02 +00:00
|
|
|
ByteString Export::GetFallbackLanguage( const ByteString nLanguage )
|
2001-05-28 07:25:29 +00:00
|
|
|
/*****************************************************************************/
|
|
|
|
{
|
2004-06-25 11:41:02 +00:00
|
|
|
ByteString sFallback=nLanguage;
|
|
|
|
GetIsoFallback( sFallback );
|
|
|
|
return sFallback;
|
2001-05-28 07:25:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*****************************************************************************/
|
|
|
|
void Export::FillInFallbacks( ResData *pResData )
|
|
|
|
/*****************************************************************************/
|
|
|
|
{
|
2004-06-25 11:41:02 +00:00
|
|
|
ByteString sCur;
|
|
|
|
for( long int n = 0; n < aLanguages.size(); n++ ){
|
|
|
|
sCur = aLanguages[ n ];
|
|
|
|
if( !sCur.EqualsIgnoreCaseAscii("de") && !sCur.EqualsIgnoreCaseAscii("en-US") ){
|
|
|
|
ByteString nFallbackIndex = GetFallbackLanguage( sCur );
|
|
|
|
if( nFallbackIndex.Len() ){
|
|
|
|
if ( !pResData->sText[ sCur ].Len())
|
|
|
|
pResData->sText[ sCur ] =
|
|
|
|
pResData->sText[ nFallbackIndex ];
|
|
|
|
|
|
|
|
if ( !pResData->sHelpText[ sCur ].Len())
|
|
|
|
pResData->sHelpText[ sCur ] =
|
|
|
|
pResData->sHelpText[ nFallbackIndex ];
|
|
|
|
|
|
|
|
if ( !pResData->sQuickHelpText[ sCur ].Len())
|
|
|
|
pResData->sQuickHelpText[ sCur ] =
|
|
|
|
pResData->sQuickHelpText[ nFallbackIndex ];
|
|
|
|
|
|
|
|
if ( !pResData->sTitle[ sCur ].Len())
|
|
|
|
pResData->sTitle[ sCur ] =
|
|
|
|
pResData->sTitle[ nFallbackIndex ];
|
2001-05-28 07:25:29 +00:00
|
|
|
|
|
|
|
if ( pResData->pStringList )
|
|
|
|
FillInListFallbacks(
|
2004-06-25 11:41:02 +00:00
|
|
|
pResData->pStringList, sCur, nFallbackIndex );
|
|
|
|
|
2004-11-18 07:16:51 +00:00
|
|
|
if ( pResData->pPairedList )
|
|
|
|
FillInListFallbacks(
|
|
|
|
pResData->pPairedList, sCur, nFallbackIndex );
|
|
|
|
|
2001-05-28 07:25:29 +00:00
|
|
|
if ( pResData->pFilterList )
|
|
|
|
FillInListFallbacks(
|
2004-06-25 11:41:02 +00:00
|
|
|
pResData->pFilterList, sCur, nFallbackIndex );
|
|
|
|
|
2001-05-28 07:25:29 +00:00
|
|
|
if ( pResData->pItemList )
|
|
|
|
FillInListFallbacks(
|
2004-06-25 11:41:02 +00:00
|
|
|
pResData->pItemList, sCur, nFallbackIndex );
|
|
|
|
|
2001-05-28 07:25:29 +00:00
|
|
|
if ( pResData->pUIEntries )
|
|
|
|
FillInListFallbacks(
|
2004-06-25 11:41:02 +00:00
|
|
|
pResData->pUIEntries, sCur, nFallbackIndex );
|
2001-05-28 07:25:29 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*****************************************************************************/
|
|
|
|
void Export::FillInListFallbacks(
|
2004-06-25 11:41:02 +00:00
|
|
|
ExportList *pList, const ByteString &nSource, const ByteString &nFallback )
|
2001-05-28 07:25:29 +00:00
|
|
|
/*****************************************************************************/
|
|
|
|
{
|
2001-05-30 11:10:22 +00:00
|
|
|
|
2001-05-28 07:25:29 +00:00
|
|
|
for ( ULONG i = 0; i < pList->Count(); i++ ) {
|
|
|
|
ExportListEntry *pEntry = pList->GetObject( i );
|
2004-11-18 07:16:51 +00:00
|
|
|
if ( !( *pEntry )[ nSource ].Len()){
|
2004-06-25 11:41:02 +00:00
|
|
|
( *pEntry )[ nSource ] = ( *pEntry )[ nFallback ];
|
2004-11-18 07:16:51 +00:00
|
|
|
ByteString x = ( *pEntry )[ nSource ];
|
|
|
|
ByteString y = ( *pEntry )[ nFallback ];
|
|
|
|
}
|
2001-05-28 07:25:29 +00:00
|
|
|
}
|
|
|
|
}
|
2001-06-07 12:33:31 +00:00
|
|
|
|
|
|
|
/*****************************************************************************/
|
|
|
|
ByteString Export::GetTimeStamp()
|
|
|
|
/*****************************************************************************/
|
|
|
|
{
|
|
|
|
// return "xx.xx.xx";
|
2004-06-25 11:41:02 +00:00
|
|
|
char buf[20];
|
|
|
|
Time aTime;
|
2001-06-07 12:33:31 +00:00
|
|
|
|
2004-07-13 12:51:51 +00:00
|
|
|
snprintf(buf, sizeof(buf), "%8d %02d:%02d:%02d", Date().GetDate(),
|
2004-06-25 11:41:02 +00:00
|
|
|
aTime.GetHour(), aTime.GetMin(), aTime.GetSec());
|
|
|
|
return ByteString(buf);
|
2001-06-07 12:33:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*****************************************************************************/
|
|
|
|
BOOL Export::ConvertLineEnds(
|
|
|
|
ByteString sSource, ByteString sDestination )
|
|
|
|
/*****************************************************************************/
|
|
|
|
{
|
|
|
|
String sSourceFile( sSource, RTL_TEXTENCODING_ASCII_US );
|
|
|
|
String sDestinationFile( sDestination, RTL_TEXTENCODING_ASCII_US );
|
|
|
|
|
|
|
|
SvFileStream aSource( sSourceFile, STREAM_READ );
|
|
|
|
if ( !aSource.IsOpen())
|
|
|
|
return FALSE;
|
|
|
|
SvFileStream aDestination( sDestinationFile, STREAM_STD_WRITE | STREAM_TRUNC );
|
|
|
|
if ( !aDestination.IsOpen()) {
|
|
|
|
aSource.Close();
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
ByteString sLine;
|
|
|
|
|
|
|
|
while ( !aSource.IsEof()) {
|
|
|
|
aSource.ReadLine( sLine );
|
2002-01-14 13:11:04 +00:00
|
|
|
if ( !aSource.IsEof()) {
|
|
|
|
sLine.EraseAllChars( '\r' );
|
|
|
|
aDestination.WriteLine( sLine );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
aDestination.WriteByteString( sLine );
|
2001-06-07 12:33:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
aSource.Close();
|
|
|
|
aDestination.Close();
|
2001-10-15 13:41:01 +00:00
|
|
|
|
|
|
|
return TRUE;
|
2001-06-07 12:33:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*****************************************************************************/
|
|
|
|
ByteString Export::GetNativeFile( ByteString sSource )
|
|
|
|
/*****************************************************************************/
|
|
|
|
{
|
|
|
|
DirEntry aTemp( GetTempFile());
|
|
|
|
ByteString sReturn( aTemp.GetFull(), RTL_TEXTENCODING_ASCII_US );
|
|
|
|
|
2001-06-11 12:49:22 +00:00
|
|
|
for ( USHORT i = 0; i < 10; i++ )
|
|
|
|
if ( ConvertLineEnds( sSource, sReturn ))
|
|
|
|
return sReturn;
|
2001-06-07 12:33:31 +00:00
|
|
|
|
|
|
|
return "";
|
|
|
|
}
|
|
|
|
|
|
|
|
/*****************************************************************************/
|
|
|
|
DirEntry Export::GetTempFile()
|
|
|
|
/*****************************************************************************/
|
|
|
|
{
|
|
|
|
#ifdef WNT
|
|
|
|
String sTempDir( GetEnv( "TEMP" ), RTL_TEXTENCODING_ASCII_US );
|
|
|
|
#else
|
2001-06-07 14:02:22 +00:00
|
|
|
// String sTempDir( GetEnv( "HOME" ), RTL_TEXTENCODING_ASCII_US );
|
|
|
|
String sTempDir( String::CreateFromAscii( "/tmp" ));
|
2001-06-07 12:33:31 +00:00
|
|
|
#endif
|
2004-06-25 11:41:02 +00:00
|
|
|
|
|
|
|
rtl::OUString* sTempFilename = new rtl::OUString();
|
|
|
|
int nRC = osl::FileBase::createTempFile( 0 , 0 , sTempFilename );
|
|
|
|
if( nRC ) printf(" osl::FileBase::createTempFile RC = %d",nRC);
|
|
|
|
ByteString sTmp( sTempFilename->getStr() , RTL_TEXTENCODING_UTF8 );
|
|
|
|
#ifdef WNT
|
|
|
|
sTmp.SearchAndReplace("file:///","");
|
|
|
|
sTmp.SearchAndReplaceAll('/','\\');
|
|
|
|
#else
|
|
|
|
sTmp.SearchAndReplace("file://","");
|
|
|
|
#endif
|
|
|
|
DirEntry aDirEntry( sTmp );
|
|
|
|
delete sTempFilename;
|
|
|
|
return aDirEntry;
|
2001-06-07 12:33:31 +00:00
|
|
|
}
|