/************************************************************************* * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * Copyright 2008 by Sun Microsystems, Inc. * * OpenOffice.org - a multi-platform office productivity suite * * $RCSfile: uicmdstohtml.cxx,v $ * $Revision: 1.7 $ * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License version 3 * only, as published by the Free Software Foundation. * * OpenOffice.org 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 version 3 for more details * (a copy is included in the LICENSE file that accompanied this code). * * You should have received a copy of the GNU Lesser General Public License * version 3 along with OpenOffice.org. If not, see * * for a copy of the LGPLv3 License. * ************************************************************************/ // MARKER(update_precomp.py): autogen include statement, do not remove #include "precompiled_framework.hxx" #include #include #include #include "tools/getprocessworkingdir.hxx" #include #include #include #include #include #include #include using namespace rtl; enum MODULES { MODULE_GLOBAL, MODULE_WRITER, MODULE_CALC, MODULE_DRAWIMPRESS, MODULE_CHART, MODULE_MATH, MODULE_BASIC, MODULE_BIBLIO, MODULE_BACKINGCOMP, MODULE_DBACCESS, MODULE_COUNT }; enum APPMODULES { APPMODULE_BACKINGCOMP, APPMODULE_WRITER, APPMODULE_WRITERWEB, APPMODULE_WRITERGLOBAL, APPMODULE_CALC, APPMODULE_DRAW, APPMODULE_IMPRESS, APPMODULE_CHART, APPMODULE_BIBLIOGRAPHY, APPMODULE_BASICIDE, APPMODULE_DBAPP, APPMODULE_DBBROWSER, APPMODULE_DBQUERY, APPMODULE_DBRELATION, APPMODULE_DBTABLE, APPMODULE_COUNT }; enum UIELEMENTTYPE { UITYPE_TOOLBAR, UITYPE_MENUBAR, UITYPE_STATUSBAR, UITYPE_ACCELERATOR, UITYPE_COUNT }; struct Projects { const char* pProjectFolder; const char* pResPrefix; const char* pCSVPrefix; bool bSlotCommands; MODULES eBelongsTo; }; struct AppModules { const char* pModuleName; const char* pModuleIdentifier; const char* pProjectFolder; const char* pSubFolder; }; struct UIElementTypeName { const char* Name; const char* ShortName; }; Projects ProjectModule_Mapping[] = { { "sfx2" , "sfx", "sfx2", true, MODULE_GLOBAL }, { "svx" , "svx", "svx", true, MODULE_GLOBAL }, { "svx" , "ofa", "ofa", true, MODULE_GLOBAL }, { "sw" , "sw", "sw", true, MODULE_WRITER }, { "sd" , "sd", "sd", true, MODULE_DRAWIMPRESS }, { "sc" , "sc", "sc", true, MODULE_CALC }, { "sch" , "sch", "sch", true, MODULE_CHART }, { "starmath" , "sm", "starmath", true, MODULE_MATH }, { "basctl" , "basctl", "bastctl", true, MODULE_BASIC }, { "extensions" , "bib", "", false, MODULE_BIBLIO }, { "framework" , "fwk", "", false, MODULE_BACKINGCOMP }, { "dbaccess" , "dbu", "", false, MODULE_DBACCESS }, { 0 , 0, "", false, MODULE_BASIC } }; AppModules AppModules_Mapping[] = { { "Backing Component" , "startmodule" ,"framework" , 0 }, { "Writer" , "swriter" ,"sw" , 0 }, { "Writer Web" , "sweb" ,"sw" , 0 }, { "Writer Global" , "sglobal" ,"sw" , 0 }, { "Calc" , "scalc" ,"sc" , 0 }, { "Draw" , "sdraw" ,"sd" , 0 }, { "Impress" , "simpress" ,"sd" , 0 }, { "Chart" , "schart" ,"sch" , 0 }, { "Bibliography" , "sbibliography" ,"extensions", "source/bibliography" }, { "Basic IDE" , "basicide" ,"basctl" , 0 }, { "Database Application" , "dbapp" ,"dbaccess" , 0 }, { "Database Browser" , "dbbrowser" ,"dbaccess" , 0 }, { "Database Query" , "dbquery" ,"dbaccess" , 0 }, { "Database Relation" , "dbrelation" ,"dbaccess" , 0 }, { "Database Table" , "dbtable" ,"dbaccess" , 0 }, { 0 , 0 ,0 , 0 } }; UIElementTypeName UIElementTypeFolderName[] = { { "toolbar", "T" }, { "menubar", "M" }, { "statusbar", "S" }, { "accelerator","A" }, { 0 } }; const char UICONFIGFOLDER[] = "uiconfig"; const char XMLFileExtension[] = ".xcu"; const char* ModuleName[] = { "Global commands", "Writer commands", "Calc commands", "Draw/Impress commands", "Chart commands", "Math commands", "BasicIDE commands", "Bibliography commands", "Startmodule commands", "Database commands", 0 }; const char* ModuleToXML_Mapping[] = { "GenericCommands", "WriterCommands", "CalcCommands", "DrawImpressCommands", "ChartCommands", "MathCommands", "BasicIDECommands", "BibliographyCommands", "StartModuleCommands", "DbuCommands", 0 }; struct CommandLabels { unsigned short nID; rtl::OUString aCommand; rtl::OUString aDefine; unsigned long nModules; rtl::OUString aLabels; unsigned long nProperties; rtl::OUString aUIAvailable; CommandLabels() : nID( 0 ), nModules( 0 ), nProperties( 0 ) {} bool CommandLabels::operator< ( const CommandLabels& aCmdLabel ) const { return ( aCommand.compareTo( aCmdLabel.aCommand ) <= 0 ); } }; struct CommandInfo { rtl::OUString aCommand; unsigned long nAppModules; // bit field for every app module unsigned long nUIElements; // bit field for every ui element type bool CommandInfo::operator< ( const CommandInfo& aCmdInfo ) const { return ( aCommand.compareTo( aCmdInfo.aCommand ) <= 0 ); } }; struct OUStringHashCode { size_t operator()( const ::rtl::OUString& sString ) const { return sString.hashCode(); } }; typedef std::hash_map< rtl::OUString, CommandInfo, OUStringHashCode, ::std::equal_to< OUString > > CommandToCommandInfoMap; typedef std::hash_map< int, CommandLabels > CommandIDToLabelsMap; typedef std::vector< CommandLabels > CommandLabelsVector; typedef std::vector< CommandInfo > CommandInfoVector; static CommandIDToLabelsMap moduleMapFiles[MODULE_COUNT]; static CommandLabelsVector moduleCmdVector[MODULE_COUNT]; static CommandToCommandInfoMap commandInfoMap; static CommandInfoVector commandInfoVector; bool ExtractVersionNumber( const OUString& rVersion, OUString& rVersionNumber ) { bool bCheckNumOnly( false ); OUStringBuffer aBuf; rVersionNumber = OUString(); for ( int i = 0; i < rVersion.getLength(); i++ ) { if ( rVersion[i] >= sal_Unicode( '0' ) && rVersion[i] <= sal_Unicode( '9' )) { bCheckNumOnly = true; aBuf.append( rVersion[i] ); } else if ( bCheckNumOnly ) return false; } rVersionNumber = aBuf.makeStringAndClear(); return true; } bool ReadCSVFile( const OUString& aCVSFileURL, MODULES eModule, const OUString& aProjectName ) { osl::File aCSVFile( aCVSFileURL ); fprintf(stdout, "############ read csv \"%s\" ... ", ::rtl::OUStringToOString(aCVSFileURL, RTL_TEXTENCODING_UTF8).getStr()); if ( aCSVFile.open( OpenFlag_Read ) != osl::FileBase::E_None ) { fprintf(stdout, "failed!\n"); return false; } fprintf(stdout, "OK!\n"); { sal_Bool bEOF; ::rtl::ByteSequence aCSVLine; OUString aUnoCmd( RTL_CONSTASCII_USTRINGPARAM( ".uno:" )); while ( aCSVFile.isEndOfFile( &bEOF ) == osl::FileBase::E_None && !bEOF ) { aCSVFile.readLine( aCSVLine ); OString aLine( (const char *)aCSVLine.getConstArray(), aCSVLine.getLength() ); OString aDefine; OString aID; OString aAccelState; OString aMenuState; OString aStatusState; OString aToolbarState; OString aCmdName; OString aSlotName; OString aImageRotationState; OString aImageReflectionState; sal_Int32 nIndex = 0; aDefine = aLine.getToken( 1, ',', nIndex ); aID = aLine.getToken( 0, ',', nIndex ); aAccelState = aLine.getToken( 2, ',', nIndex ); aMenuState = aLine.getToken( 0, ',', nIndex ); aStatusState = aLine.getToken( 0, ',', nIndex ); aToolbarState = aLine.getToken( 0, ',', nIndex ); aImageRotationState = aLine.getToken( 8, ',', nIndex ); aImageReflectionState = aLine.getToken( 0, ',', nIndex ); aCmdName = aLine.getToken( 10, ',', nIndex ); aSlotName = aLine.getToken( 1, ',', nIndex ); if ( aCmdName.getLength() == 0 ) aCmdName = aSlotName; int nID = aID.toInt32(); if ( nID > 5000 && ( aAccelState.equalsIgnoreAsciiCase( "TRUE" ) || aMenuState.equalsIgnoreAsciiCase( "TRUE" ) || aStatusState.equalsIgnoreAsciiCase( "TRUE" ) || aToolbarState.equalsIgnoreAsciiCase( "TRUE" ) )) { CommandLabels aCmdLabel; aCmdLabel.nID = nID; aCmdLabel.aCommand += OStringToOUString( aCmdName, RTL_TEXTENCODING_ASCII_US ); aCmdLabel.nModules |= ( 1 << (unsigned long)( eModule )); aCmdLabel.aDefine = OStringToOUString( aDefine, RTL_TEXTENCODING_ASCII_US ); OUString aUIAvailable; if ( aAccelState.equalsIgnoreAsciiCase( "TRUE" ) || aMenuState.equalsIgnoreAsciiCase( "TRUE" ) || aToolbarState.equalsIgnoreAsciiCase( "TRUE" )) aUIAvailable = OUString::createFromAscii( "AMT" ); else if ( aStatusState.equalsIgnoreAsciiCase( "TRUE" )) aUIAvailable = OUString::createFromAscii( "S" ); aCmdLabel.aUIAvailable = aUIAvailable; // Set bitfield aCmdLabel.nProperties = (( aImageRotationState.equalsIgnoreAsciiCase( "TRUE" ) ? 1 : 0 ) << 1 ); aCmdLabel.nProperties |= (( aImageReflectionState.equalsIgnoreAsciiCase( "TRUE" ) ? 1 : 0 ) << 2 ); moduleMapFiles[int(eModule)].insert( CommandIDToLabelsMap::value_type( nID, aCmdLabel )); } } aCSVFile.close(); } return true; } bool ReadXMLFile( const OUString& aFileURL, APPMODULES eAppModule, UIELEMENTTYPE eUIType, const char* pItemTag, const char* pAttributeTag, sal_Int32 nAttributeTagSize ) { osl::File aXMLFile( aFileURL ); if ( aXMLFile.open( OpenFlag_Read ) != osl::FileBase::E_None ) { fprintf(stdout, "failed!\n"); return false; } sal_Bool bEOF; ::rtl::ByteSequence aXMLLine; while ( aXMLFile.isEndOfFile( &bEOF ) == osl::FileBase::E_None && !bEOF ) { aXMLFile.readLine( aXMLLine ); OString aLine( (const char *)aXMLLine.getConstArray(), aXMLLine.getLength() ); if ( aLine.indexOf( pItemTag ) >= 0 ) { sal_Int32 nIndex = aLine.indexOf( pAttributeTag ); if (( nIndex >= 0 ) && (( nIndex+nAttributeTagSize+1 ) < aLine.getLength() )) { sal_Int32 nIndex2 = aLine.indexOf( "\"", nIndex+nAttributeTagSize ); OString aCmd = aLine.copy( nIndex+nAttributeTagSize, (nIndex2-(nIndex+nAttributeTagSize)) ); OUString aCmdString = OStringToOUString( aCmd, RTL_TEXTENCODING_ASCII_US ); CommandToCommandInfoMap::iterator pIter = commandInfoMap.find( aCmdString ); if ( pIter != commandInfoMap.end() ) { pIter->second.nAppModules |= ( 1 << eAppModule ); pIter->second.nUIElements |= ( 1 << eUIType ); } else { CommandInfo aCmdInfo; aCmdInfo.aCommand = aCmdString; aCmdInfo.nAppModules = ( 1 << eAppModule ); aCmdInfo.nUIElements = ( 1 << eUIType ); commandInfoMap.insert( CommandToCommandInfoMap::value_type( aCmdString, aCmdInfo )); } } } } return true; } bool ReadMenuBarXML( const OUString& aFileURL, APPMODULES eAppModule ) { static char MENUITEM_TAG[] = "second; moduleCmdVector[int( eModule )].push_back( rCmdLabels ); ++pIter; } CommandLabelsVector::iterator pIterStart = moduleCmdVector[int(eModule)].begin(); CommandLabelsVector::iterator pIterEnd = moduleCmdVector[int(eModule)].end(); std::sort( pIterStart, pIterEnd ); } void SortCommandInfoVector() { // copy entries from hash_map to vector CommandToCommandInfoMap::iterator pIter = commandInfoMap.begin(); while ( pIter != commandInfoMap.end() ) { CommandInfo& rCmdInfo = pIter->second; commandInfoVector.push_back( rCmdInfo ); ++pIter; } CommandInfoVector::iterator pIterStart = commandInfoVector.begin(); CommandInfoVector::iterator pIterEnd = commandInfoVector.end(); std::sort( pIterStart, pIterEnd ); } CommandLabels* RetrieveCommandLabelsFromID( unsigned short nId, MODULES eModule ) { CommandIDToLabelsMap::iterator pIter = moduleMapFiles[MODULE_GLOBAL].find( nId ); if ( pIter != moduleMapFiles[MODULE_GLOBAL].end() ) return &(pIter->second); else if ( eModule != MODULE_GLOBAL ) { CommandIDToLabelsMap::iterator pIter = moduleMapFiles[eModule].find( nId ); if ( pIter != moduleMapFiles[eModule].end() ) return &(pIter->second); } return NULL; } static const char ENCODED_AMPERSAND[] = "&"; static const char ENCODED_LESS[] = "<"; static const char ENCODED_GREATER[] = ">"; static const char ENCODED_QUOTE[] = """; static const char ENCODED_APOS[] = "'"; struct EncodeChars { char cChar; const char* pEncodedChars; }; EncodeChars EncodeChar_Map[] = { { '&', ENCODED_AMPERSAND }, { '<', ENCODED_LESS }, { '>', ENCODED_GREATER }, { '"', ENCODED_QUOTE }, { '\'', ENCODED_APOS }, { ' ', 0 } }; // Encodes a string to UTF-8 and uses "Built-in entity reference" to // to escape character data that is not markup! OString EncodeString( const OUString& aToEncodeStr ) { OString aString = OUStringToOString( aToEncodeStr, RTL_TEXTENCODING_UTF8 ); int i = 0; bool bMustCopy( sal_False ); while ( EncodeChar_Map[i].pEncodedChars != 0 ) { OStringBuffer aBuf; bool bEncoded( false ); sal_Int32 nCurIndex = 0; sal_Int32 nIndex = 0; while ( nIndex < aString.getLength() ) { nIndex = aString.indexOf( EncodeChar_Map[i].cChar, nIndex ); if ( nIndex > 0 ) { bEncoded = true; if ( nIndex > nCurIndex ) aBuf.append( aString.copy( nCurIndex, nIndex-nCurIndex )); aBuf.append( EncodeChar_Map[i].pEncodedChars ); nCurIndex = nIndex+1; } else if ( nIndex == 0 ) { bEncoded = true; aBuf.append( EncodeChar_Map[i].pEncodedChars ); nCurIndex = nIndex+1; } else { if ( bEncoded && nCurIndex < aString.getLength() ) aBuf.append( aString.copy( nCurIndex )); break; } ++nIndex; } if ( bEncoded ) aString = aBuf.makeStringAndClear(); ++i; } return aString; } static const char HTMLStart[] = "\n"; static const char HTMLHead[] = "\n \ \n \ \n \ \n \ OpenOffice.org 2.0 : Index of command names\n \ \n \ \n \ \n \ \n \ "; static const char HTMLJumpTable[] = "

Command tables for OpenOffice.org 2.0
\n \

\n \
\n \

The following tables list all available commands that are\n \ accessible through the GUI. The command names are used with the \".uno:\"\n \ protocol scheme to define framework commands. These command URLs can be\n \ used to dispatch/execute, like \".uno:About\" shows the about box.\n \ Please keep in mind that slot-URLs are deprecated for OpenOffice.org 2.0 and\n \ shouldn't be used anymore.
\n \
\n \ Abbreviations:
\n \ A = accelerator
\n \ M = menu
\n \ T = toolbox
\n \ S = status bar
\n \

\n \
\n"; bool WriteLevel( osl::File& rFile, int nLevel ) { const char cTab[] = "\t"; sal_uInt64 nWritten; for ( int i = 0; i < nLevel; i++ ) rFile.write( cTab, strlen( cTab ), nWritten ); return true; } bool WriteJumpTable( osl::File& rFile ) { static const char JUMP_ENTRY_1[] = "- "; static const char JUMP_LINK_1[] = ""; static const char JUMP_LINK_3[] = ""; static const char JUMP_ENTRY_2[] = "
\n"; sal_uInt64 nWritten; rFile.write( HTMLJumpTable, strlen( HTMLJumpTable ), nWritten ); sal_uInt32 i = 0; while ( ModuleName[i] != 0 ) { if ( !moduleMapFiles[i].empty() ) { OString aTableNameStr( ModuleName[i] ); OStringBuffer aJumpMark( aTableNameStr ); // convert jump mark for ( sal_Int32 j = 0; j < aJumpMark.getLength(); j++ ) if ( aJumpMark[j] == ' ' ) aJumpMark.setCharAt( j, '_' ); rFile.write( JUMP_ENTRY_1, strlen( JUMP_ENTRY_1 ), nWritten ); rFile.write( JUMP_LINK_1, strlen( JUMP_LINK_1 ), nWritten ); rFile.write( aJumpMark, aJumpMark.getLength(), nWritten ); rFile.write( JUMP_LINK_2, strlen( JUMP_LINK_2 ), nWritten ); rFile.write( aTableNameStr, aTableNameStr.getLength(), nWritten ); rFile.write( JUMP_LINK_3, strlen( JUMP_LINK_3 ), nWritten ); rFile.write( JUMP_ENTRY_2, strlen( JUMP_ENTRY_2 ), nWritten ); } i++; } return true; } bool WriteHTMLTable( osl::File& rFile, const rtl::OUString& aTableName ) { static const char TABLE_NAME1[] = "

"; static const char TABLE_NAME2[] = "

\n"; static const char ANCHOR_1[] = ""; static const char TABLE_FRAME[] = "\n"; static const char COLGROUPS1[] = "\n"; static const char COLGROUPS2[] = "\n"; static const char TBODY_1[] = "\n\t\n"; static const char TBODY_2[] = "\t\n\n"; static const char TD_1[] = "\n"; static const char TD_2[] = "\n"; static const char TD_3[] = "\n"; static const char TD_4[] = "\n"; if ( aTableName.getLength() > 0 ) { sal_uInt64 nWritten; OString aTableNameStr = OUStringToOString( aTableName, RTL_TEXTENCODING_ASCII_US ); OStringBuffer aJumpMark( aTableNameStr ); // convert jump mark for ( sal_Int32 j = 0; j < aJumpMark.getLength(); j++ ) if ( aJumpMark[j] == ' ' ) aJumpMark.setCharAt( j, '_' ); rFile.write( TABLE_NAME1, strlen( TABLE_NAME1 ), nWritten ); rFile.write( ANCHOR_1, strlen( ANCHOR_1 ), nWritten ); rFile.write( aJumpMark, aJumpMark.getLength(), nWritten ); rFile.write( ANCHOR_2, strlen( ANCHOR_2 ), nWritten ); rFile.write( aTableNameStr, aTableNameStr.getLength(), nWritten ); rFile.write( TABLE_NAME2, strlen( TABLE_NAME2 ), nWritten ); rFile.write( TABLE_FRAME, strlen( TABLE_FRAME ), nWritten ); rFile.write( COLGROUPS1, strlen( COLGROUPS1 ), nWritten ); rFile.write( COLGROUPS2, strlen( COLGROUPS2 ), nWritten ); rFile.write( TBODY_1, strlen( TBODY_1 ), nWritten ); rFile.write( TD_1, strlen( TD_1 ), nWritten ); rFile.write( TD_2, strlen( TD_2 ), nWritten ); rFile.write( TD_3, strlen( TD_3 ), nWritten ); rFile.write( TD_4, strlen( TD_4 ), nWritten ); } return true; } bool WriteHTMLTableRow( osl::File& rFile, const CommandLabels& rCmdLabels ) { static const char TBODY_1[] = "\n\t\n"; static const char TBODY_2[] = "\t\n\n"; static const char TD_FIRST[] = "\t\n"; OString aCmdStr = OUStringToOString( rCmdLabels.aCommand, RTL_TEXTENCODING_UTF8 ); OString aUIStr = OUStringToOString( rCmdLabels.aUIAvailable, RTL_TEXTENCODING_UTF8 ); OString aDefStr = OUStringToOString( rCmdLabels.aDefine, RTL_TEXTENCODING_UTF8 ); OString aIDStr = OString::valueOf( sal_Int32( rCmdLabels.nID )); sal_uInt64 nWritten; rFile.write( TBODY_1, strlen( TBODY_1 ), nWritten ); rFile.write( TD_FIRST, strlen( TD_FIRST ), nWritten ); rFile.write( aCmdStr, aCmdStr.getLength(), nWritten ); rFile.write( TD_CLOSE, strlen( TD_CLOSE ), nWritten ); rFile.write( TD_L, strlen( TD_L ), nWritten ); rFile.write( aUIStr, aUIStr.getLength(), nWritten ); rFile.write( TD_CLOSE, strlen( TD_CLOSE ), nWritten ); rFile.write( TD_L, strlen( TD_L ), nWritten ); rFile.write( aDefStr, aDefStr.getLength(), nWritten ); rFile.write( TD_CLOSE, strlen( TD_CLOSE ), nWritten ); rFile.write( TD_R, strlen( TD_R ), nWritten ); rFile.write( aIDStr, aIDStr.getLength(), nWritten ); rFile.write( TD_CLOSE, strlen( TD_CLOSE ), nWritten ); rFile.write( TBODY_2, strlen( TBODY_2 ), nWritten ); return true; } bool WriteHTMLTableClose( osl::File& rFile ) { static const char TBODY_CLOSE[] = "\t\n\n"; static const char TABLE_CLOSE[] = "
CommandsGUI ElementsInternal definitions of commands IDID
"; static const char TD_L[] = "\t"; static const char TD_R[] = "\t"; static const char TD_CLOSE[] = "
\n"; static const char BR[] = "
\n"; sal_uInt64 nWritten; rFile.write( TBODY_CLOSE, strlen( TBODY_CLOSE ), nWritten ); rFile.write( TABLE_CLOSE, strlen( TABLE_CLOSE ), nWritten ); rFile.write( BR, strlen( BR ), nWritten ); return true; } bool WriteHTMLFile( const OUString& aOutputDirURL) { OUString aOutputDirectoryURL( aOutputDirURL ); if ( aOutputDirectoryURL.getLength() > 0 && aOutputDirectoryURL[aOutputDirectoryURL.getLength()-1] != '/' ) aOutputDirectoryURL += OUString::createFromAscii( "/" ); OUString aOutputFileURL( aOutputDirectoryURL ); aOutputFileURL += OUString::createFromAscii( "commandsReference.html" ); osl::File aHTMLFile( aOutputFileURL ); osl::File::RC nRet = aHTMLFile.open( OpenFlag_Create|OpenFlag_Write ); if ( nRet == osl::File::E_EXIST ) { nRet = aHTMLFile.open( OpenFlag_Write ); if ( nRet == osl::File::E_None ) nRet = aHTMLFile.setSize( 0 ); } if ( nRet == osl::FileBase::E_None ) { sal_uInt64 nWritten; aHTMLFile.write( HTMLStart, strlen( HTMLStart ), nWritten ); aHTMLFile.write( HTMLHead, strlen( HTMLHead ), nWritten ); WriteJumpTable( aHTMLFile ); int i = 0; while ( ModuleToXML_Mapping[i] != 0 ) { SortCommandTable( MODULES( i )); if ( !moduleCmdVector[i].empty() ) { WriteHTMLTable( aHTMLFile, OUString::createFromAscii( ModuleName[i] )); for ( sal_uInt32 j = 0; j < moduleCmdVector[i].size(); j++ ) { CommandLabels& rCmdLabels = (moduleCmdVector[i])[j]; WriteHTMLTableRow( aHTMLFile, rCmdLabels ); } WriteHTMLTableClose( aHTMLFile ); } ++i; } aHTMLFile.close(); } return true; } bool WriteUICommand( osl::File& rFile, const CommandInfo& rCmdInfo ) { static const char MODULE_HAS_COMMAND[] = ",1"; static const char MODULE_NOT_COMMAND[] = ",0"; static const char NEWLINE[] = "\n"; static const char COMMA[] = ","; sal_uInt64 nWritten; OString aCommand = OUStringToOString( rCmdInfo.aCommand, RTL_TEXTENCODING_ASCII_US ); rFile.write( aCommand, aCommand.getLength(), nWritten ); rFile.write( COMMA, strlen( COMMA ), nWritten ); if ( rCmdInfo.nUIElements & ( 1< 0 && aOutputDirectoryURL[aOutputDirectoryURL.getLength()-1] != '/' ) aOutputDirectoryURL += OUString::createFromAscii( "/" ); OUString aOutputFileURL( aOutputDirectoryURL ); aOutputFileURL += OUString::createFromAscii( "UsedCommands.csv" ); osl::File aCSVFile( aOutputFileURL ); osl::File::RC nRet = aCSVFile.open( OpenFlag_Create|OpenFlag_Write ); if ( nRet == osl::File::E_EXIST ) { nRet = aCSVFile.open( OpenFlag_Write ); if ( nRet == osl::File::E_None ) nRet = aCSVFile.setSize( 0 ); } if ( nRet == osl::FileBase::E_None ) { sal_uInt64 nWritten; aCSVFile.write( HEADER, strlen( HEADER ), nWritten ); for ( sal_Int32 i = 0; i < APPMODULE_COUNT; i++ ) { aCSVFile.write( COMMA, strlen( COMMA ), nWritten ); aCSVFile.write( AppModules_Mapping[i].pModuleName, strlen( AppModules_Mapping[i].pModuleName ), nWritten ); } aCSVFile.write( NEWLINE, strlen( NEWLINE ), nWritten ); for ( sal_uInt32 j = 0; j < commandInfoVector.size(); j++ ) { const CommandInfo& rCmdInfo = commandInfoVector[j]; WriteUICommand( aCSVFile, rCmdInfo ); } aCSVFile.close(); } return true; } bool Convert( sal_Bool bUseProduct, const OUString& aUseRes, const OUString& rVersion, const OUString& rOutputDirName, const OUString& rPlatformName, const std::vector< OUString >& rInDirVector, const OUString& rErrOutputFileName ) { OUString aWorkDir; tools::getProcessWorkingDir( &aWorkDir ); // Try to find xx*.csv file and put all commands into hash table for ( int i = 0; i < (int)rInDirVector.size(); i++ ) { OUString aAbsInDirURL; OUString aInDirURL; OUString aInDir( rInDirVector[i] ); osl::FileBase::getFileURLFromSystemPath( aInDir, aInDirURL ); osl::FileBase::getAbsoluteFileURL( aWorkDir, aInDirURL, aAbsInDirURL ); osl::Directory aDir( aAbsInDirURL ); if ( aDir.open() == osl::FileBase::E_None ) { osl::DirectoryItem aItem; while ( aDir.getNextItem( aItem ) == osl::FileBase::E_None ) { osl::FileStatus aFileStatus( FileStatusMask_FileName ); aItem.getFileStatus( aFileStatus ); int j=0; OUString aFileName = aFileStatus.getFileName(); while ( ProjectModule_Mapping[j].pProjectFolder != 0 && ProjectModule_Mapping[j].bSlotCommands == true ) { if ( aFileName.equalsAscii( ProjectModule_Mapping[j].pProjectFolder )) { OUStringBuffer aBuf( aAbsInDirURL ); aBuf.appendAscii( "/" ); aBuf.append( aFileStatus.getFileName() ); aBuf.appendAscii( "/" ); aBuf.append( rPlatformName ); if ( bUseProduct ) aBuf.appendAscii( ".pro" ); aBuf.appendAscii( "/misc/xx" ); aBuf.appendAscii( ProjectModule_Mapping[j].pCSVPrefix ); aBuf.appendAscii( ".csv" ); OUString aCSVFileURL( aBuf.makeStringAndClear() ); ReadCSVFile( aCSVFileURL, ProjectModule_Mapping[j].eBelongsTo, OUString::createFromAscii( ProjectModule_Mapping[j].pProjectFolder )); break; } ++j; } j = 0; while ( AppModules_Mapping[j].pModuleIdentifier != 0 ) { if ( aFileName.equalsAscii( AppModules_Mapping[j].pProjectFolder )) { OUStringBuffer aBuf( aAbsInDirURL ); aBuf.appendAscii( "/" ); aBuf.append( aFileName ); aBuf.appendAscii( "/" ); if ( AppModules_Mapping[j].pSubFolder != 0 ) { aBuf.appendAscii( AppModules_Mapping[j].pSubFolder ); aBuf.appendAscii( "/" ); } aBuf.appendAscii( UICONFIGFOLDER ); aBuf.appendAscii( "/" ); aBuf.appendAscii( AppModules_Mapping[j].pModuleIdentifier ); OUString aXMLAppModuleFolder( aBuf.makeStringAndClear() ); ReadXMLFilesForAppModule( aXMLAppModuleFolder, (APPMODULES)j ); } ++j; } } aDir.close(); } } OUString aOutDirURL; osl::FileBase::getFileURLFromSystemPath( rOutputDirName, aOutDirURL ); osl::FileBase::getAbsoluteFileURL( aWorkDir, aOutDirURL, aOutDirURL ); WriteHTMLFile( aOutDirURL ); SortCommandInfoVector(); WriteUICommands( aOutDirURL ); return true; } bool GetCommandOption( const ::std::vector< OUString >& rArgs, const OUString& rSwitch, OUString& rParam ) { bool bRet = false; OUString aSwitch( OUString::createFromAscii( "-" )); aSwitch += rSwitch; for( int i = 0, nCount = rArgs.size(); ( i < nCount ) && !bRet; i++ ) { for( int n = 0; ( n < 2 ) && !bRet; n++ ) { if ( aSwitch.equalsIgnoreAsciiCase( rArgs[ i ] )) { bRet = true; if( i < ( nCount - 1 ) ) rParam = rArgs[ i + 1 ]; else rParam = OUString(); } } } return bRet; } // ----------------------------------------------------------------------- bool GetCommandOptions( const ::std::vector< OUString >& rArgs, const OUString& rSwitch, ::std::vector< OUString >& rParams ) { bool bRet = false; OUString aSwitch( OUString::createFromAscii( "-" )); aSwitch += rSwitch; for( int i = 0, nCount = rArgs.size(); ( i < nCount ); i++ ) { for( int n = 0; ( n < 2 ) && !bRet; n++ ) { if ( aSwitch.equalsIgnoreAsciiCase( rArgs[ i ] )) { if( i < ( nCount - 1 ) ) rParams.push_back( rArgs[ i + 1 ] ); else rParams.push_back( OUString() ); break; } } } return( rParams.size() > 0 ); } void ShowUsage() { fprintf( stderr, "Usage: uicmdxml output_dir -r res -v version [-p] -s platform -i input_dir [-i input_dir] [-f errfile]\n" ); fprintf( stderr, "Options:" ); fprintf( stderr, " -r [oo|so] use resources from ooo, so\n" ); fprintf( stderr, " -v name of the version used, f.e. SRX645, SRC680\n" ); fprintf( stderr, " -p use product version\n" ); fprintf( stderr, " -s name of the system to use, f.e. wntmsci8, unxsols4, unxlngi5\n" ); fprintf( stderr, " -i ... name of directory to be searched for input files [multiple occurence is possible]\n" ); fprintf( stderr, " -f name of file, error output should be written to\n" ); fprintf( stderr, "Examples:\n" ); fprintf( stderr, " uicmd2html /home/out -r so -v SRC680 -p unxlngi5 -i /home/res -f /home/out/log.err\n" ); } // ----------------------------------------------------------------------- int main ( int argc, char ** argv) { ::std::vector< OUString > aArgs; sal_uInt32 nCmds = argc; if ( nCmds >= 8 ) { for ( sal_Int32 i=0; i < sal_Int32( nCmds ); i++ ) { OUString aArg = OStringToOUString( argv[i], osl_getThreadTextEncoding() ); aArgs.push_back( aArg ); } ::std::vector< OUString > aInDirVector; OUString aErrOutputFileName; OUString aOutputDirName( aArgs[0] ); OUString aOutDirURL; OUString aPlatformName; OUString aVersion; OUString aUseRes; bool bUseProduct; OUString aDummy; osl::FileBase::getFileURLFromSystemPath( aOutputDirName, aOutDirURL ); sal_Int32 j = aOutDirURL.lastIndexOf( '/' ); if ( j > 0 ) aOutDirURL = aOutDirURL.copy( 0, j+1 ); osl::FileBase::getSystemPathFromFileURL( aOutDirURL, aOutputDirName ); GetCommandOption( aArgs, OUString::createFromAscii( "v" ), aVersion ); bUseProduct = GetCommandOption( aArgs, OUString::createFromAscii( "p" ), aDummy ); GetCommandOption( aArgs, OUString::createFromAscii( "s" ), aPlatformName ); GetCommandOptions( aArgs, OUString::createFromAscii( "i" ), aInDirVector ); GetCommandOption( aArgs, OUString::createFromAscii( "f" ), aErrOutputFileName ); GetCommandOption( aArgs, OUString::createFromAscii( "r" ), aUseRes ); if ( aVersion.getLength() > 0 && aPlatformName.getLength() > 0 && aUseRes.getLength() > 0 && aInDirVector.size() > 0 ) { Convert( bUseProduct, aUseRes, aVersion, aOutputDirName, aPlatformName, aInDirVector, aErrOutputFileName ); } else { ShowUsage(); exit( -1 ); } } else { ShowUsage(); exit( -1 ); } }