/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ /* * This file is part of the LibreOffice project. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. * * This file incorporates work covered by the following license notice: * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed * with this work for additional information regarding copyright * ownership. The ASF licenses this file to you under the Apache * License, Version 2.0 (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.apache.org/licenses/LICENSE-2.0 . */ #include "sal/config.h" #include #include #include #include #include #include #include "helpmerge.hxx" #include #include #include #include #include #include #ifdef WNT #include #undef CopyFile #include #endif #include "export.hxx" #include "common.hxx" #include "helper.hxx" #include "po.hxx" #if OSL_DEBUG_LEVEL > 2 void HelpParser::Dump(XMLHashMap* rElem_in) { for(XMLHashMap::iterator pos = rElem_in->begin();pos != rElem_in->end(); ++pos) { Dump(pos->second,pos->first); } } void HelpParser::Dump(LangHashMap* rElem_in,const OString & sKey_in) { OString x; OString y; fprintf(stdout,"+------------%s-----------+\n",sKey_in.getStr() ); for(LangHashMap::iterator posn=rElem_in->begin();posn!=rElem_in->end();++posn) { x=posn->first; y=posn->second->ToOString(); fprintf(stdout,"key=%s value=%s\n",x.getStr(),y.getStr()); } fprintf(stdout,"+--------------------------+\n"); } #endif HelpParser::HelpParser( const OString &rHelpFile ) : sHelpFile( rHelpFile ) {}; /*****************************************************************************/ bool HelpParser::CreatePO( /*****************************************************************************/ const OString &rPOFile_in, const OString &sHelpFile, XMLFile *pXmlFile, const OString &rGsi1){ SimpleXMLParser aParser; OUString sXmlFile( OStringToOUString(sHelpFile, RTL_TEXTENCODING_ASCII_US)); //TODO: explicit BOM handling? std::auto_ptr file ( aParser.Execute( sXmlFile, pXmlFile ) ); if(file.get() == NULL) { printf( "%s: %s\n", sHelpFile.getStr(), (OUStringToOString( aParser.GetError().sMessage, RTL_TEXTENCODING_ASCII_US). getStr())); exit(-1); } file->Extract(); if( !file->CheckExportStatus() ){ return true; } PoOfstream aPoOutput( rPOFile_in, PoOfstream::APP ); if (!aPoOutput.isOpen()) { fprintf(stdout,"Can't open file %s\n",rPOFile_in.getStr()); return false; } XMLHashMap* aXMLStrHM = file->GetStrings(); LangHashMap* pElem; XMLElement* pXMLElement = NULL; std::vector order = file->getOrder(); std::vector::iterator pos; XMLHashMap::iterator posm; for( pos = order.begin(); pos != order.end() ; ++pos ) { posm = aXMLStrHM->find( *pos ); pElem = posm->second; pXMLElement = (*pElem)[ "en-US" ]; if( pXMLElement != NULL ) { OString data( OUStringToOString( pXMLElement->ToOUString(), RTL_TEXTENCODING_UTF8 ). replaceAll("\n",OString()). replaceAll("\t",OString()).trim()); common::writePoEntry( "Helpex", aPoOutput, sHelpFile, rGsi1, posm->first, pXMLElement->GetOldref(), OString(), data); pXMLElement=NULL; } else { fprintf(stdout,"\nDBG: NullPointer in HelpParser::CreatePO, File %s\n", sHelpFile.getStr()); } } aPoOutput.close(); return sal_True; } bool HelpParser::Merge( const OString &rPOFile, const OString &rDestinationFile, const OString& rLanguage , MergeDataFile* pMergeDataFile ) { (void) rPOFile; SimpleXMLParser aParser; OUString sXmlFile( OStringToOUString(sHelpFile, RTL_TEXTENCODING_ASCII_US)); //TODO: explicit BOM handling? XMLFile* xmlfile = ( aParser.Execute( sXmlFile, new XMLFile( OUString('0') ) ) ); bool hasNoError = MergeSingleFile( xmlfile , pMergeDataFile , rLanguage , rDestinationFile ); delete xmlfile; return hasNoError; } bool HelpParser::MergeSingleFile( XMLFile* file , MergeDataFile* pMergeDataFile , const OString& sLanguage , OString const & sPath ) { file->Extract(); XMLHashMap* aXMLStrHM = file->GetStrings(); LangHashMap* aLangHM; static ResData pResData("",""); pResData.sResTyp = "help"; std::vector order = file->getOrder(); std::vector::iterator pos; XMLHashMap::iterator posm; for( pos = order.begin(); pos != order.end() ; ++pos ) // Merge every l10n related string in the same order as export { posm = aXMLStrHM->find( *pos ); aLangHM = posm->second; #if OSL_DEBUG_LEVEL > 2 printf("*********************DUMPING HASHMAP***************************************"); Dump(aXMLStrHM); printf("DBG: sHelpFile = %s\n",sHelpFile.getStr() ); #endif pResData.sGId = posm->first; pResData.sFilename = sHelpFile; ProcessHelp( aLangHM , sLanguage, &pResData , pMergeDataFile ); } file->Write(sPath); return true; } /* ProcessHelp Methode: search for en-US entry and replace it with the current language*/ void HelpParser::ProcessHelp( LangHashMap* aLangHM , const OString& sCur , ResData *pResData , MergeDataFile* pMergeDataFile ){ XMLElement* pXMLElement = NULL; MergeEntrys *pEntrys = NULL; OString sLId; pEntrys = NULL; if( !sCur.equalsIgnoreAsciiCaseL(RTL_CONSTASCII_STRINGPARAM("en-US")) ){ pXMLElement = (*aLangHM)[ "en-US" ]; if( pXMLElement == NULL ) { printf("Error: Can't find en-US entry\n"); } if( pXMLElement != NULL ) { sLId = pXMLElement->GetOldref(); pResData->sId = sLId; OString sNewText; OUString sNewdata; OUString sSourceText( pXMLElement->ToOUString(). replaceAll( OUString("\n"), OUString()). replaceAll( OUString("\t"), OUString())); // re-add spaces to the beginning of translated string, // important for indentation of Basic code examples sal_Int32 nPreSpaces = 0; sal_Int32 nLen = sSourceText.getLength(); while ( (nPreSpaces < nLen) && (*(sSourceText.getStr()+nPreSpaces) == ' ') ) nPreSpaces++; if( sCur == "qtz" ) { const OString sOriginText = OUStringToOString(sSourceText, RTL_TEXTENCODING_UTF8); sNewText = MergeEntrys::GetQTZText(*pResData, sOriginText); sNewdata = OStringToOUString(sNewText, RTL_TEXTENCODING_UTF8); } else if( pMergeDataFile ) { pEntrys = pMergeDataFile->GetMergeEntrys( pResData ); if( pEntrys != NULL) { pEntrys->GetText( sNewText, STRING_TYP_TEXT, sCur , true ); OUString sTemp = OStringToOUString(sNewText, RTL_TEXTENCODING_UTF8); if (helper::isWellFormedXML(OUStringToOString(XMLUtil::QuotHTML(sTemp),RTL_TEXTENCODING_UTF8))) { sNewdata = sSourceText.copy(0,nPreSpaces) + sTemp; } } } if (!sNewdata.isEmpty()) { if( pXMLElement != NULL ) { XMLData *data = new XMLData( sNewdata , NULL , true ); // Add new one pXMLElement->RemoveAndDeleteAllChildren(); pXMLElement->AddChild( data ); aLangHM->erase( sCur ); } } else if( pResData == NULL ) { fprintf(stdout,"Can't find GID=%s LID=%s TYP=%s\n", pResData->sGId.getStr(), pResData->sId.getStr(), pResData->sResTyp.getStr()); } pXMLElement->ChangeLanguageTag( OStringToOUString(sCur, RTL_TEXTENCODING_ASCII_US)); } } } /* vim:set shiftwidth=4 softtabstop=4 expandtab: */