summaryrefslogtreecommitdiff
path: root/l10ntools
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2012-02-16 09:48:05 +0000
committerCaolán McNamara <caolanm@redhat.com>2012-02-16 10:26:03 +0000
commit08c475bb24a34f3a6a3f08e8490b521e8dcc96be (patch)
tree45380d74b4b7f751d43041f28e9588f8ca7a1a89 /l10ntools
parent46087fd1b7186cd181275693e72494c4a07c0c38 (diff)
callcatcher: update unused code list
Diffstat (limited to 'l10ntools')
-rw-r--r--l10ntools/inc/export.hxx7
-rw-r--r--l10ntools/source/export2.cxx108
2 files changed, 0 insertions, 115 deletions
diff --git a/l10ntools/inc/export.hxx b/l10ntools/inc/export.hxx
index 2355f5b23e46..c669a3b57bbb 100644
--- a/l10ntools/inc/export.hxx
+++ b/l10ntools/inc/export.hxx
@@ -304,20 +304,13 @@ public:
static void RemoveUTF8ByteOrderMarker( rtl::OString &rString );
static bool hasUTF8ByteOrderMarker( const rtl::OString &rString );
static rtl::OString QuoteHTML( rtl::OString const &rString );
- static bool CopyFile(const rtl::OString& rSource , const rtl::OString& rDest);
static rtl::OString UnquoteHTML( rtl::OString const &rString );
- static const char* GetEnv( const char *pVar );
-
static bool isSourceLanguage(const rtl::OString &rLanguage);
static bool isAllowed(const rtl::OString &rLanguage);
static void Languages( std::vector<rtl::OString>::const_iterator& begin , std::vector<rtl::OString>::const_iterator& end );
- static rtl::OString getRandomName(const rtl::OString& rPrefix, const rtl::OString & sPostfix);
- static void getCurrentDir( std::string& dir );
-
- static rtl::OString GetNativeFile( rtl::OString const & sSource );
static void DumpExportList(const rtl::OString& rListName,
ExportList& aList);
diff --git a/l10ntools/source/export2.cxx b/l10ntools/source/export2.cxx
index bad5964b2f6e..1341c41691a1 100644
--- a/l10ntools/source/export2.cxx
+++ b/l10ntools/source/export2.cxx
@@ -205,49 +205,6 @@ bool Export::hasUTF8ByteOrderMarker( const rtl::OString &rString )
rString[1] == '\xBB' && rString[2] == '\xBF' ;
}
-bool Export::CopyFile(const rtl::OString& rSource, const rtl::OString& rDest)
-{
- const int BUFFERSIZE = 8192;
- char buf[ BUFFERSIZE ];
-
- FILE* IN_FILE = fopen( rSource.getStr() , "r" );
- if( IN_FILE == NULL )
- {
- std::cerr << "Export::CopyFile WARNING: Could not open " << rSource.getStr() << "\n";
- return false;
- }
-
- FILE* OUT_FILE = fopen( rDest.getStr() , "w" );
- if( OUT_FILE == NULL )
- {
- std::cerr << "Export::CopyFile WARNING: Could not open/create " << rDest.getStr() << " for writing\n";
- fclose( IN_FILE );
- return false;
- }
-
- while( fgets( buf , BUFFERSIZE , IN_FILE ) != NULL )
- {
- if( fputs( buf , OUT_FILE ) == EOF )
- {
- std::cerr << "Export::CopyFile WARNING: Write problems " << rSource.getStr() << "\n";
- fclose( IN_FILE );
- fclose( OUT_FILE );
- return false;
- }
- }
- if( ferror( IN_FILE ) )
- {
- std::cerr << "Export::CopyFile WARNING: Read problems " << rDest.getStr() << "\n";
- fclose( IN_FILE );
- fclose( OUT_FILE );
- return false;
- }
- fclose ( IN_FILE );
- fclose ( OUT_FILE );
-
- return true;
-}
-
/*****************************************************************************/
rtl::OString Export::UnquoteHTML( rtl::OString const &rString )
/*****************************************************************************/
@@ -332,69 +289,4 @@ void Export::InitForcedLanguages( bool bMergeMode ){
while ( nIndex >= 0 );
}
-/*****************************************************************************/
-rtl::OString Export::GetNativeFile( rtl::OString const & sSource )
-/*****************************************************************************/
-{
- //TODO: Drop this completely unless line end conversion *is* an issue
- return sSource;
-}
-
-const char* Export::GetEnv( const char *pVar )
-{
- char *pRet = getenv( pVar );
- if ( !pRet )
- pRet = 0;
- return pRet;
-}
-
-void Export::getCurrentDir( std::string& dir )
-{
- char buffer[64000];
- if( getcwd( buffer , sizeof( buffer ) ) == 0 ){
- std::cerr << "Error: getcwd failed!\n";
- exit( -1 );
- }
- dir = std::string( buffer );
-}
-
-
-// Stolen from sal/osl/unx/tempfile.c
-
-#define RAND_NAME_LENGTH 6
-
-rtl::OString Export::getRandomName(const rtl::OString& rPrefix, const rtl::OString& rPostfix)
-{
- static const char LETTERS[] = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890";
- static const int COUNT_OF_LETTERS = SAL_N_ELEMENTS(LETTERS) - 1;
-
- rtl::OStringBuffer sRandStr(rPrefix);
-
- static sal_uInt64 value;
- char buffer[RAND_NAME_LENGTH];
-
- TimeValue tv;
- sal_uInt64 v;
- int i;
-
- osl_getSystemTime( &tv );
- oslProcessInfo proInfo;
- proInfo.Size = sizeof(oslProcessInfo);
- osl_getProcessInfo( 0 , osl_Process_IDENTIFIER , &proInfo );
-
- value += ((sal_uInt64) ( tv.Nanosec / 1000 ) << 16) ^ ( tv.Nanosec / 1000 ) ^ proInfo.Ident;
-
- v = value;
-
- for (i = 0; i < RAND_NAME_LENGTH; ++i)
- {
- buffer[i] = LETTERS[v % COUNT_OF_LETTERS];
- v /= COUNT_OF_LETTERS;
- }
-
- sRandStr.append(buffer , RAND_NAME_LENGTH);
- sRandStr.append(rPostfix);
- return sRandStr.makeStringAndClear();
-}
-
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */