summaryrefslogtreecommitdiff
path: root/idl
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2011-11-19 21:02:35 +0000
committerCaolán McNamara <caolanm@redhat.com>2011-11-19 21:11:03 +0000
commit2bad94e6b578980b2274a4d9497cc0938adfde0c (patch)
treedd4e5e4e5a225fbf7be2855d8060f8b4910b0f41 /idl
parent1777dfacf2c94873f0f0119bbe9d8fc2464df154 (diff)
ByteString->rtl::OString
Diffstat (limited to 'idl')
-rw-r--r--idl/inc/database.hxx33
-rw-r--r--idl/inc/lex.hxx4
-rw-r--r--idl/source/cmptools/lex.cxx4
-rw-r--r--idl/source/objects/types.cxx12
-rw-r--r--idl/source/prj/database.cxx22
5 files changed, 38 insertions, 37 deletions
diff --git a/idl/inc/database.hxx b/idl/inc/database.hxx
index 445e54b1aaa5..f3ebecfbf7ce 100644
--- a/idl/inc/database.hxx
+++ b/idl/inc/database.hxx
@@ -32,6 +32,7 @@
#include <module.hxx>
#include <hash.hxx>
#include <lex.hxx>
+#include <rtl/string.hxx>
#include <tools/pstm.hxx>
#ifdef IDL_COMPILER
@@ -45,7 +46,7 @@ class SvCommand;
class SvIdlError
{
- ByteString aText;
+ rtl::OString aText;
public:
sal_uInt32 nLine, nColumn;
@@ -53,8 +54,8 @@ public:
SvIdlError( sal_uInt32 nL, sal_uInt32 nC )
: nLine(nL), nColumn(nC) {}
- const ByteString & GetText() const { return aText; }
- void SetText( const ByteString & rT ) { aText = rT; }
+ const rtl::OString& GetText() const { return aText; }
+ void SetText( const rtl::OString& rT ) { aText = rT; }
sal_Bool IsError() const { return nLine != 0; }
void Clear() { nLine = nColumn = 0; }
SvIdlError & operator = ( const SvIdlError & rRef )
@@ -91,11 +92,11 @@ protected:
SvMetaObjectMemberStack aContextStack;
String aPath;
SvIdlError aError;
- void WriteReset()
- {
- aUsedTypes.Clear();
- aIFaceName.Erase();
- }
+ void WriteReset()
+ {
+ aUsedTypes.Clear();
+ aIFaceName = rtl::OString();
+ }
#endif
public:
explicit SvIdlDataBase( const SvCommand& rCmd );
@@ -110,11 +111,11 @@ public:
SvMetaTypeMemberList & GetTypeList();
SvMetaClassMemberList & GetClassList() { return aClassList; }
SvMetaModuleMemberList & GetModuleList() { return aModuleList; }
- SvMetaModule * GetModule( const ByteString & rName );
+ SvMetaModule * GetModule( const rtl::OString& rName );
// list of used types while writing
SvMetaTypeMemberList aUsedTypes;
- ByteString aIFaceName;
+ rtl::OString aIFaceName;
SvNumberIdentifier aStructSlotId;
#ifdef IDL_COMPILER
@@ -130,12 +131,12 @@ public:
SvMetaObjectMemberStack & GetStack() { return aContextStack; }
void Write(const rtl::OString& rText);
- void WriteError( const ByteString & rErrWrn,
- const ByteString & rFileName,
+ void WriteError(const rtl::OString& rErrWrn,
+ const rtl::OString& rFileName,
const rtl::OString& rErrorText,
sal_uLong nRow = 0, sal_uLong nColumn = 0 ) const;
void WriteError( SvTokenStream & rInStm );
- void SetError( const ByteString & rError, SvToken * pTok );
+ void SetError( const rtl::OString& rError, SvToken * pTok );
void Push( SvMetaObject * pObj );
sal_Bool Pop( sal_Bool bOk, SvTokenStream & rInStm, sal_uInt32 nTokPos )
{
@@ -147,11 +148,11 @@ public:
return bOk;
}
sal_uInt32 GetUniqueId() { return ++nUniqueId; }
- sal_Bool FindId( const ByteString & rIdName, sal_uLong * pVal );
- sal_Bool InsertId( const ByteString & rIdName, sal_uLong nVal );
+ sal_Bool FindId( const rtl::OString& rIdName, sal_uLong * pVal );
+ sal_Bool InsertId( const rtl::OString& rIdName, sal_uLong nVal );
sal_Bool ReadIdFile( const String & rFileName );
- SvMetaType * FindType( const ByteString & rName );
+ SvMetaType * FindType( const rtl::OString& rName );
static SvMetaType * FindType( const SvMetaType *, SvMetaTypeMemberList & );
SvMetaType * ReadKnownType( SvTokenStream & rInStm );
diff --git a/idl/inc/lex.hxx b/idl/inc/lex.hxx
index 293c4d62a1b7..3b51dd848f2b 100644
--- a/idl/inc/lex.hxx
+++ b/idl/inc/lex.hxx
@@ -134,8 +134,8 @@ class SvTokenStream
int nBufPos;
int c; // next character
sal_uInt16 nTabSize; // length of tabulator
- ByteString aStrTrue;
- ByteString aStrFalse;
+ rtl::OString aStrTrue;
+ rtl::OString aStrFalse;
sal_uLong nMaxPos;
SvFileStream * pInStream;
diff --git a/idl/source/cmptools/lex.cxx b/idl/source/cmptools/lex.cxx
index 582170ecc609..0ab749448732 100644
--- a/idl/source/cmptools/lex.cxx
+++ b/idl/source/cmptools/lex.cxx
@@ -99,8 +99,8 @@ SvToken & SvToken::operator = ( const SvToken & rObj )
void SvTokenStream::InitCtor()
{
- aStrTrue = "TRUE";
- aStrFalse = "FALSE";
+ aStrTrue = rtl::OString(RTL_CONSTASCII_STRINGPARAM("TRUE"));
+ aStrFalse = rtl::OString(RTL_CONSTASCII_STRINGPARAM("FALSE"));
nLine = nColumn = 0;
nBufPos = 0;
nTabSize = 4;
diff --git a/idl/source/objects/types.cxx b/idl/source/objects/types.cxx
index c6d980f20a4b..abc36750a247 100644
--- a/idl/source/objects/types.cxx
+++ b/idl/source/objects/types.cxx
@@ -470,7 +470,7 @@ void SvMetaAttribute::WriteCSource( SvIdlDataBase & rBase, SvStream & rOutStm,
<< rtl::OString::valueOf(static_cast<sal_Int32>(MakeSlotValue(rBase, IsVariable()))).getStr();
rOutStm << ',' << endl;
WriteTab( rOutStm, 3 );
- rOutStm << " h" << rBase.aIFaceName.GetBuffer() << " , ";
+ rOutStm << " h" << rBase.aIFaceName.getStr() << " , ";
ByteString aParserStr;
if( pBaseType->GetType() == TYPE_METHOD || bSet )
@@ -625,9 +625,9 @@ void SvMetaAttribute::Write( SvIdlDataBase & rBase, SvStream & rOutStm,
// allocation
WriteTab( rOutStm, nTab );
rOutStm << "void ";
- rOutStm << rBase.aIFaceName.GetBuffer()
+ rOutStm << rBase.aIFaceName.getStr()
<< "Set" << name.GetBuffer() << "( " << C_PREF
- << "Object h" << rBase.aIFaceName.GetBuffer() << ", " << endl;
+ << "Object h" << rBase.aIFaceName.getStr() << ", " << endl;
WriteTab( rOutStm, nTab+1 );
pBaseType->WriteTypePrefix( rBase, rOutStm, nTab, nT );
rOutStm << ' ' << name.GetBuffer() << " )";
@@ -641,9 +641,9 @@ void SvMetaAttribute::Write( SvIdlDataBase & rBase, SvStream & rOutStm,
WriteTab( rOutStm, nTab );
pBaseType->WriteTypePrefix( rBase, rOutStm, nTab, nT );
rOutStm << ' ';
- rOutStm << rBase.aIFaceName.GetBuffer()
+ rOutStm << rBase.aIFaceName.getStr()
<< "Get" << name.GetBuffer() << "( " << C_PREF
- << "Object h" << rBase.aIFaceName.GetBuffer() << " )";
+ << "Object h" << rBase.aIFaceName.getStr() << " )";
if( nT == WRITE_C_HEADER )
rOutStm << ';' << endl << endl;
else
@@ -1536,7 +1536,7 @@ void SvMetaType::WriteMethodArgs
rOutStm << '(';
if( nT == WRITE_C_HEADER || nT == WRITE_C_SOURCE )
{
- rOutStm << ' ' << C_PREF << "Object h" << rBase.aIFaceName.GetBuffer();
+ rOutStm << ' ' << C_PREF << "Object h" << rBase.aIFaceName.getStr();
if( GetAttrCount() )
rOutStm << ',';
else
diff --git a/idl/source/prj/database.cxx b/idl/source/prj/database.cxx
index c0bf3c2905f1..5655180d1957 100644
--- a/idl/source/prj/database.cxx
+++ b/idl/source/prj/database.cxx
@@ -87,10 +87,10 @@ SvMetaTypeMemberList & SvIdlDataBase::GetTypeList()
return aTypeList;
}
-SvMetaModule * SvIdlDataBase::GetModule( const ByteString & rName )
+SvMetaModule * SvIdlDataBase::GetModule( const rtl::OString& rName )
{
for( sal_uLong n = 0; n < aModuleList.Count(); n++ )
- if( aModuleList.GetObject( n )->GetName() == rName )
+ if( aModuleList.GetObject( n )->GetName().Equals(rName) )
return aModuleList.GetObject( n );
return NULL;
}
@@ -169,7 +169,7 @@ void SvIdlDataBase::Save( SvStream & rStm, sal_uInt32 nFlags )
aPStm << nUniqueId;
}
-void SvIdlDataBase::SetError( const ByteString & rError, SvToken * pTok )
+void SvIdlDataBase::SetError( const rtl::OString& rError, SvToken * pTok )
{
if( pTok->GetLine() > 10000 )
aError.SetText( "hgchcg" );
@@ -188,7 +188,7 @@ void SvIdlDataBase::Push( SvMetaObject * pObj )
}
#ifdef IDL_COMPILER
-sal_Bool SvIdlDataBase::FindId( const ByteString & rIdName, sal_uLong * pVal )
+sal_Bool SvIdlDataBase::FindId( const rtl::OString& rIdName, sal_uLong * pVal )
{
if( pIdTable )
{
@@ -202,7 +202,7 @@ sal_Bool SvIdlDataBase::FindId( const ByteString & rIdName, sal_uLong * pVal )
return sal_False;
}
-sal_Bool SvIdlDataBase::InsertId( const ByteString & rIdName, sal_uLong nVal )
+sal_Bool SvIdlDataBase::InsertId( const rtl::OString& rIdName, sal_uLong nVal )
{
if( !pIdTable )
pIdTable = new SvStringHashTable( 20003 );
@@ -364,10 +364,10 @@ SvMetaType * SvIdlDataBase::FindType( const SvMetaType * pPType,
return pType;
}
-SvMetaType * SvIdlDataBase::FindType( const ByteString & rName )
+SvMetaType * SvIdlDataBase::FindType( const rtl::OString& rName )
{
SvMetaType * pType = aTypeList.First();
- while( pType && rName != pType->GetName() )
+ while( pType && !rName.equals(pType->GetName()) )
pType = aTypeList.Next();
return pType;
}
@@ -544,14 +544,14 @@ void SvIdlDataBase::Write(const rtl::OString& rText)
fprintf( stdout, "%s", rText.getStr() );
}
-void SvIdlDataBase::WriteError( const ByteString & rErrWrn,
- const ByteString & rFileName,
+void SvIdlDataBase::WriteError( const rtl::OString& rErrWrn,
+ const rtl::OString& rFileName,
const rtl::OString& rErrorText,
sal_uLong nRow, sal_uLong nColumn ) const
{
// error treatment
fprintf( stderr, "\n%s --- %s: ( %ld, %ld )\n",
- rFileName.GetBuffer(), rErrWrn.GetBuffer(), nRow, nColumn );
+ rFileName.getStr(), rErrWrn.getStr(), nRow, nColumn );
if( !rErrorText.isEmpty() )
{ // error set
@@ -577,7 +577,7 @@ void SvIdlDataBase::WriteError( SvTokenStream & rInStm )
{ // error set
// search error token
// error text
- if( aError.GetText().Len() )
+ if( aError.GetText().getLength() )
{
aErrorText.append(RTL_CONSTASCII_STRINGPARAM("may be <"));
aErrorText.append(aError.GetText());