os/ossrv/lowlevellibsandfws/apputils/inc/stringpool.inl
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
// Copyright (c) 2001-2009 Nokia Corporation and/or its subsidiary(-ies).
sl@0
     2
// All rights reserved.
sl@0
     3
// This component and the accompanying materials are made available
sl@0
     4
// under the terms of "Eclipse Public License v1.0"
sl@0
     5
// which accompanies this distribution, and is available
sl@0
     6
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
sl@0
     7
//
sl@0
     8
// Initial Contributors:
sl@0
     9
// Nokia Corporation - initial contribution.
sl@0
    10
//
sl@0
    11
// Contributors:
sl@0
    12
//
sl@0
    13
// Description:
sl@0
    14
//
sl@0
    15
sl@0
    16
#ifndef __STRINGPOOL_INL__
sl@0
    17
#define __STRINGPOOL_INL__
sl@0
    18
sl@0
    19
sl@0
    20
#include <stringpoolerr.h>
sl@0
    21
sl@0
    22
inline RStringTokenBase::RStringTokenBase()
sl@0
    23
		: iVal(0)
sl@0
    24
/** Default constructor. */
sl@0
    25
	{
sl@0
    26
	}
sl@0
    27
sl@0
    28
sl@0
    29
inline RStringTokenBase RStringTokenBase::operator=(RStringBase aVal)
sl@0
    30
/** Assignment operator, which makes a string token from a string. 
sl@0
    31
sl@0
    32
@param aVal The value of the string to copy.
sl@0
    33
@return The string token base. */
sl@0
    34
	{
sl@0
    35
	iVal = aVal.iVal;
sl@0
    36
	return *this;
sl@0
    37
	}
sl@0
    38
sl@0
    39
sl@0
    40
inline TBool RStringTokenBase::IsNull() const
sl@0
    41
/** Tests if the string is null or not.
sl@0
    42
sl@0
    43
@return ETrue if the string is null, otherwise EFalse. */
sl@0
    44
	{
sl@0
    45
	return (iVal == 0);
sl@0
    46
	}
sl@0
    47
sl@0
    48
sl@0
    49
inline TBool RStringToken::operator==(RStringToken aVal) const
sl@0
    50
/** Equality operator. 
sl@0
    51
sl@0
    52
@param aVal The string to compare.
sl@0
    53
@return ETrue if the strings are the same, otherwise EFalse. */
sl@0
    54
	{
sl@0
    55
	return iVal == aVal.iVal;
sl@0
    56
	}
sl@0
    57
sl@0
    58
sl@0
    59
inline TBool RStringToken::operator!=(RStringToken aVal) const
sl@0
    60
/** Inequality operator. 
sl@0
    61
sl@0
    62
@param aVal The string to compare.
sl@0
    63
@return ETrue if the strings are different, else EFalse */
sl@0
    64
	{
sl@0
    65
	return iVal != aVal.iVal;
sl@0
    66
	}
sl@0
    67
sl@0
    68
sl@0
    69
inline RStringToken RStringToken::operator=(RString aVal)
sl@0
    70
/** Assignment operator, which makes a string token from a string. 
sl@0
    71
sl@0
    72
@param aVal The string to copy.
sl@0
    73
@return The string token. */
sl@0
    74
	{
sl@0
    75
	iVal = aVal.iVal;
sl@0
    76
	return *this;
sl@0
    77
	}
sl@0
    78
sl@0
    79
sl@0
    80
inline TBool RStringTokenF::operator==(RStringTokenF aVal) const
sl@0
    81
/** Equality operator.
sl@0
    82
sl@0
    83
@param aVal The string to compare.
sl@0
    84
@return ETrue if the strings are the same, otherwise EFalse. */
sl@0
    85
	{
sl@0
    86
	return iVal == aVal.iVal;
sl@0
    87
	}
sl@0
    88
sl@0
    89
sl@0
    90
inline TBool RStringTokenF::operator!=(RStringTokenF aVal) const
sl@0
    91
/** Inequality operator. 
sl@0
    92
sl@0
    93
@param aVal The string to compare.
sl@0
    94
@return ETrue if any strings are different, else EFalse */
sl@0
    95
	{
sl@0
    96
	return iVal != aVal.iVal;
sl@0
    97
	}
sl@0
    98
sl@0
    99
sl@0
   100
inline RStringTokenF RStringTokenF::operator=(RStringF aVal)
sl@0
   101
/** Assignment operator that makes a string token from a string. 
sl@0
   102
sl@0
   103
@param aVal The string to compare.
sl@0
   104
@return The string token. */
sl@0
   105
	{
sl@0
   106
	iVal = aVal.iVal;
sl@0
   107
	return *this;
sl@0
   108
	}
sl@0
   109
sl@0
   110
sl@0
   111
inline RStringBase::RStringBase()
sl@0
   112
		: iVal(0)
sl@0
   113
/** Default constructor. */
sl@0
   114
	{
sl@0
   115
	}
sl@0
   116
sl@0
   117
/** Returns a compact string equivalent to the string  */
sl@0
   118
inline RStringBase::operator RStringTokenBase() const
sl@0
   119
	{
sl@0
   120
	RStringTokenBase s;
sl@0
   121
	s.iVal = iVal;
sl@0
   122
	return s;
sl@0
   123
	}
sl@0
   124
sl@0
   125
inline RString RString::Copy()
sl@0
   126
/** Copies a string. 
sl@0
   127
sl@0
   128
Both the original and the copy must be separately closed.
sl@0
   129
sl@0
   130
@return The string to copy. */
sl@0
   131
	{
sl@0
   132
	RStringBase::Copy();
sl@0
   133
	return *this;
sl@0
   134
	}
sl@0
   135
sl@0
   136
/** Returns a compact string equivalent to the string (for case-sensitive strings)  */
sl@0
   137
inline RString::operator RStringToken() const
sl@0
   138
	{
sl@0
   139
	RStringToken s;
sl@0
   140
	s.iVal = iVal;
sl@0
   141
	return s;
sl@0
   142
	}
sl@0
   143
sl@0
   144
inline RStringF RStringF::Copy()
sl@0
   145
/** Copies a string. 
sl@0
   146
sl@0
   147
Both the original and the copy must be separately closed.
sl@0
   148
sl@0
   149
@return The string to copy. */
sl@0
   150
	{
sl@0
   151
	RStringBase::Copy();
sl@0
   152
	return *this;
sl@0
   153
	}
sl@0
   154
sl@0
   155
sl@0
   156
inline TBool RStringF::operator==(const RStringF& aVal) const
sl@0
   157
/** Equality operator.
sl@0
   158
sl@0
   159
@param aVal The string to compare.
sl@0
   160
@return ETrue if the strings are equal, else EFalse */
sl@0
   161
	{
sl@0
   162
	__ASSERT_DEBUG(iPool.iImplementation==aVal.iPool.iImplementation || aVal.iVal==0 || iVal==0, StringPoolPanic::Panic(StringPoolPanic::EComparisonBetweenTwoStringPoolsNotAllowed));
sl@0
   163
	return (iVal == aVal.iVal);
sl@0
   164
	}
sl@0
   165
sl@0
   166
sl@0
   167
inline TBool RStringF::operator!=(const RStringF& aVal) const
sl@0
   168
/** Inequality operator.
sl@0
   169
sl@0
   170
@param aVal The string to compare.
sl@0
   171
@return ETrue if the strings are not equal, else EFalse */
sl@0
   172
	{
sl@0
   173
	__ASSERT_DEBUG(iPool.iImplementation==aVal.iPool.iImplementation || aVal.iVal==0 || iVal==0, StringPoolPanic::Panic(StringPoolPanic::EComparisonBetweenTwoStringPoolsNotAllowed));
sl@0
   174
	return (iVal != aVal.iVal);
sl@0
   175
	}
sl@0
   176
sl@0
   177
sl@0
   178
inline RStringF::operator RStringTokenF() const
sl@0
   179
	{
sl@0
   180
	RStringTokenF s;
sl@0
   181
	s.iVal = iVal;
sl@0
   182
	return s;
sl@0
   183
	}
sl@0
   184
sl@0
   185
sl@0
   186
inline RStringPool RStringBase::Pool() const 
sl@0
   187
/** Gets the string pool.
sl@0
   188
sl@0
   189
@return The string pool. */
sl@0
   190
	{
sl@0
   191
	return iPool;
sl@0
   192
	}
sl@0
   193
sl@0
   194
sl@0
   195
inline TBool RString::operator==(const RString& aVal) const
sl@0
   196
/** Equality operator.
sl@0
   197
sl@0
   198
@param aVal The string to compare.
sl@0
   199
@return ETrue if the strings are equal, else EFalse */
sl@0
   200
	{
sl@0
   201
	__ASSERT_DEBUG(iPool.iImplementation==aVal.iPool.iImplementation || aVal.iVal==0 || iVal==0, StringPoolPanic::Panic(StringPoolPanic::EComparisonBetweenTwoStringPoolsNotAllowed));
sl@0
   202
	return (iVal == aVal.iVal);
sl@0
   203
	}
sl@0
   204
sl@0
   205
sl@0
   206
inline TBool RString::operator!=(const RString& aVal) const
sl@0
   207
/** Inequality operator.
sl@0
   208
sl@0
   209
@param aVal The string to compare.
sl@0
   210
@return ETrue if the strings are not equal, else EFalse */
sl@0
   211
	{
sl@0
   212
	__ASSERT_DEBUG(iPool.iImplementation==aVal.iPool.iImplementation || aVal.iVal==0 || iVal==0, StringPoolPanic::Panic(StringPoolPanic::EComparisonBetweenTwoStringPoolsNotAllowed));
sl@0
   213
	return (iVal != aVal.iVal);
sl@0
   214
	}
sl@0
   215
sl@0
   216
inline RStringPool::RStringPool()
sl@0
   217
		: iImplementation(0)
sl@0
   218
/** Default constructor. */
sl@0
   219
	{
sl@0
   220
	}
sl@0
   221
sl@0
   222
sl@0
   223
#endif // __STRINGPOOL_INL__