update dev300-m58
[ooovba.git] / connectivity / source / drivers / file / quotedstring.cxx
blob2b78034b2d514c4b4bf8e36b0f3901153dc447b0
1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * Copyright 2008 by Sun Microsystems, Inc.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * $RCSfile: quotedstring.cxx,v $
10 * $Revision: 1.4 $
12 * This file is part of OpenOffice.org.
14 * OpenOffice.org is free software: you can redistribute it and/or modify
15 * it under the terms of the GNU Lesser General Public License version 3
16 * only, as published by the Free Software Foundation.
18 * OpenOffice.org is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU Lesser General Public License version 3 for more details
22 * (a copy is included in the LICENSE file that accompanied this code).
24 * You should have received a copy of the GNU Lesser General Public License
25 * version 3 along with OpenOffice.org. If not, see
26 * <http://www.openoffice.org/license.html>
27 * for a copy of the LGPLv3 License.
29 ************************************************************************/
31 // MARKER(update_precomp.py): autogen include statement, do not remove
32 #include "precompiled_connectivity.hxx"
33 #include "file/quotedstring.hxx"
34 #include <rtl/logfile.hxx>
36 namespace connectivity
38 //==================================================================
39 //= QuotedTokenizedString
40 //==================================================================
41 //------------------------------------------------------------------
42 xub_StrLen QuotedTokenizedString::GetTokenCount( sal_Unicode cTok, sal_Unicode cStrDel ) const
44 RTL_LOGFILE_CONTEXT_AUTHOR( aLogger, "file", "Ocke.Janssen@sun.com", "QuotedTokenizedString::GetTokenCount" );
45 const xub_StrLen nLen = m_sString.Len();
46 if ( !nLen )
47 return 0;
49 xub_StrLen nTokCount = 1;
50 BOOL bStart = TRUE; // Stehen wir auf dem ersten Zeichen im Token?
51 BOOL bInString = FALSE; // Befinden wir uns INNERHALB eines (cStrDel delimited) String?
53 // Suche bis Stringende nach dem ersten nicht uebereinstimmenden Zeichen
54 for( xub_StrLen i = 0; i < nLen; ++i )
56 const sal_Unicode cChar = m_sString.GetChar(i);
57 if (bStart)
59 bStart = FALSE;
60 // Erstes Zeichen ein String-Delimiter?
61 if ( cChar == cStrDel )
63 bInString = TRUE; // dann sind wir jetzt INNERHALB des Strings!
64 continue; // dieses Zeichen ueberlesen!
68 if (bInString)
70 // Wenn jetzt das String-Delimiter-Zeichen auftritt ...
71 if ( cChar == cStrDel )
73 if ((i+1 < nLen) && (m_sString.GetChar(i+1) == cStrDel))
75 // Verdoppeltes String-Delimiter-Zeichen:
76 ++i; // kein String-Ende, naechstes Zeichen ueberlesen.
78 else
80 // String-Ende
81 bInString = FALSE;
84 } // if (bInString)
85 else
87 // Stimmt das Tokenzeichen ueberein, dann erhoehe TokCount
88 if ( cChar == cTok )
90 ++nTokCount;
91 bStart = TRUE;
95 //OSL_TRACE("QuotedTokenizedString::nTokCount = %d\n", ((OUtoCStr(::rtl::OUString(nTokCount))) ? (OUtoCStr(::rtl::OUString(nTokCount))):("NULL")) );
97 return nTokCount;
100 //------------------------------------------------------------------
101 void QuotedTokenizedString::GetTokenSpecial( String& _rStr,xub_StrLen& nStartPos, sal_Unicode cTok, sal_Unicode cStrDel ) const
103 RTL_LOGFILE_CONTEXT_AUTHOR( aLogger, "file", "Ocke.Janssen@sun.com", "QuotedTokenizedString::GetTokenCount" );
104 _rStr.Erase();
105 const xub_StrLen nLen = m_sString.Len();
106 if ( nLen )
108 BOOL bInString = (nStartPos < nLen) && (m_sString.GetChar(nStartPos) == cStrDel); // Befinden wir uns INNERHALB eines (cStrDel delimited) String?
110 // Erstes Zeichen ein String-Delimiter?
111 if (bInString )
112 ++nStartPos; // dieses Zeichen ueberlesen!
113 if ( nStartPos >= nLen )
114 return;
116 sal_Unicode* pData = _rStr.AllocBuffer( nLen - nStartPos + 1 );
117 const sal_Unicode* pStart = pData;
118 // Suche bis Stringende nach dem ersten nicht uebereinstimmenden Zeichen
119 for( xub_StrLen i = nStartPos; i < nLen; ++i )
121 const sal_Unicode cChar = m_sString.GetChar(i);
122 if (bInString)
124 // Wenn jetzt das String-Delimiter-Zeichen auftritt ...
125 if ( cChar == cStrDel )
127 if ((i+1 < nLen) && (m_sString.GetChar(i+1) == cStrDel))
129 // Verdoppeltes String-Delimiter-Zeichen:
130 // kein String-Ende, naechstes Zeichen ueberlesen.
131 ++i;
132 *pData++ = m_sString.GetChar(i); // Zeichen gehoert zum Resultat-String
134 else
136 // String-Ende
137 bInString = FALSE;
138 *pData = 0;
141 else
143 *pData++ = cChar; // Zeichen gehoert zum Resultat-String
147 else
149 // Stimmt das Tokenzeichen ueberein, dann erhoehe nTok
150 if ( cChar == cTok )
152 // Vorzeitiger Abbruch der Schleife moeglich, denn
153 // wir haben, was wir wollten.
154 nStartPos = i+1;
155 *pData = 0;
156 break;
158 else
160 *pData++ = cChar; // Zeichen gehoert zum Resultat-String
163 } // for( xub_StrLen i = nStartPos; i < nLen; ++i )
164 _rStr.ReleaseBufferAccess(xub_StrLen(pData - pStart));