/************************************************************************* * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * * 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_tools.hxx" #include #include //#include "bootstrp/sstring.hxx" #include #include #include #include "bootstrp/prj.hxx" #include "bootstrp/inimgr.hxx" DECLARE_LIST( UniStringList, UniString* ) //#define TEST 1 #if defined(WNT) || defined(OS2) #define LIST_DELIMETER ';' #define PATH_DELIMETER '\\' #elif defined UNX #define LIST_DELIMETER ':' #define PATH_DELIMETER '/' #endif //Link Star::aDBNotFoundHdl; // // class SimpleConfig // /*****************************************************************************/ SimpleConfig::SimpleConfig( String aSimpleConfigFileName ) /*****************************************************************************/ { nLine = 0; aFileName = aSimpleConfigFileName; aFileStream.Open ( aFileName, STREAM_READ ); } /*****************************************************************************/ SimpleConfig::SimpleConfig( DirEntry& rDirEntry ) /*****************************************************************************/ { nLine = 0; aFileName = rDirEntry.GetFull(); aFileStream.Open ( aFileName, STREAM_READ ); } /*****************************************************************************/ SimpleConfig::~SimpleConfig() /*****************************************************************************/ { aFileStream.Close (); } /*****************************************************************************/ ByteString SimpleConfig::GetNext() /*****************************************************************************/ { ByteString aString; if ( aStringBuffer =="" ) while ((aStringBuffer = GetNextLine()) == "\t") ; //solange bis != "\t" if ( aStringBuffer =="" ) return ByteString(); aString = aStringBuffer.GetToken(0,'\t'); aStringBuffer.Erase(0, aString.Len()+1); aStringBuffer.EraseLeadingChars( '\t' ); return aString; } /*****************************************************************************/ ByteString SimpleConfig::GetNextLine() /*****************************************************************************/ { ByteString aSecStr; nLine++; aFileStream.ReadLine ( aTmpStr ); if ( aTmpStr.Search( "#" ) == 0 ) return "\t"; aTmpStr = aTmpStr.EraseLeadingChars(); aTmpStr = aTmpStr.EraseTrailingChars(); while ( aTmpStr.SearchAndReplace(ByteString(' '),ByteString('\t') ) != STRING_NOTFOUND ) ; int nLength = aTmpStr.Len(); sal_Bool bFound = sal_False; ByteString aEraseString; for ( sal_uInt16 i = 0; i<= nLength; i++) { if ( aTmpStr.GetChar( i ) == 0x20 && !bFound ) aTmpStr.SetChar( i, 0x09 ); } return aTmpStr; } /*****************************************************************************/ ByteString SimpleConfig::GetCleanedNextLine( sal_Bool bReadComments ) /*****************************************************************************/ { aFileStream.ReadLine ( aTmpStr ); if ( aTmpStr.Search( "#" ) == 0 ) { if (bReadComments ) return aTmpStr; else while ( aTmpStr.Search( "#" ) == 0 ) { aFileStream.ReadLine ( aTmpStr ); } } aTmpStr = aTmpStr.EraseLeadingChars(); aTmpStr = aTmpStr.EraseTrailingChars(); // while ( aTmpStr.SearchAndReplace(String(' '),String('\t') ) != (sal_uInt16)-1 ); int nLength = aTmpStr.Len(); ByteString aEraseString; sal_Bool bFirstTab = sal_True; for ( sal_uInt16 i = 0; i<= nLength; i++) { if ( aTmpStr.GetChar( i ) == 0x20 ) aTmpStr.SetChar( i, 0x09 ); if ( aTmpStr.GetChar( i ) == 0x09 ) { if ( bFirstTab ) bFirstTab = sal_False; else { aTmpStr.SetChar( i, 0x20 ); } } else bFirstTab = sal_True; } aTmpStr.EraseAllChars(' '); return aTmpStr; }