1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5 * Copyright 2008 by Sun Microsystems, Inc.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * $RCSfile: quotedstring.cxx,v $
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();
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
);
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!
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.
87 // Stimmt das Tokenzeichen ueberein, dann erhoehe TokCount
95 //OSL_TRACE("QuotedTokenizedString::nTokCount = %d\n", ((OUtoCStr(::rtl::OUString(nTokCount))) ? (OUtoCStr(::rtl::OUString(nTokCount))):("NULL")) );
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" );
105 const xub_StrLen nLen
= m_sString
.Len();
108 BOOL bInString
= (nStartPos
< nLen
) && (m_sString
.GetChar(nStartPos
) == cStrDel
); // Befinden wir uns INNERHALB eines (cStrDel delimited) String?
110 // Erstes Zeichen ein String-Delimiter?
112 ++nStartPos
; // dieses Zeichen ueberlesen!
113 if ( nStartPos
>= nLen
)
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
);
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.
132 *pData
++ = m_sString
.GetChar(i
); // Zeichen gehoert zum Resultat-String
143 *pData
++ = cChar
; // Zeichen gehoert zum Resultat-String
149 // Stimmt das Tokenzeichen ueberein, dann erhoehe nTok
152 // Vorzeitiger Abbruch der Schleife moeglich, denn
153 // wir haben, was wir wollten.
160 *pData
++ = cChar
; // Zeichen gehoert zum Resultat-String
163 } // for( xub_StrLen i = nStartPos; i < nLen; ++i )
164 _rStr
.ReleaseBufferAccess(xub_StrLen(pData
- pStart
));