sl@0
|
1 |
// Copyright (c) 1998-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 |
// Class TTextOps
|
sl@0
|
17 |
inline TUint TTextOps::Fold(TUint aChar) const
|
sl@0
|
18 |
{
|
sl@0
|
19 |
return iFold(aChar);
|
sl@0
|
20 |
}
|
sl@0
|
21 |
|
sl@0
|
22 |
inline TInt TTextOps::Match(const TDesC8& aDes,const TDesC8& aPattern) const
|
sl@0
|
23 |
{
|
sl@0
|
24 |
return iMatch8(aDes,aPattern);
|
sl@0
|
25 |
}
|
sl@0
|
26 |
|
sl@0
|
27 |
inline TInt TTextOps::Compare(const TText8* aLeftPtr,
|
sl@0
|
28 |
TInt aLeftLen,
|
sl@0
|
29 |
const TText8* aRightPtr,
|
sl@0
|
30 |
TInt aRightLen) const
|
sl@0
|
31 |
{
|
sl@0
|
32 |
return iCompare8(aLeftPtr,aLeftLen,aRightPtr,aRightLen);
|
sl@0
|
33 |
}
|
sl@0
|
34 |
|
sl@0
|
35 |
inline TInt TTextOps::Match(const TDesC16& aDes,const TDesC16& aPattern) const
|
sl@0
|
36 |
{
|
sl@0
|
37 |
return iMatch16(aDes,aPattern);
|
sl@0
|
38 |
}
|
sl@0
|
39 |
|
sl@0
|
40 |
inline TInt TTextOps::Compare(const TText16* aLeftPtr,
|
sl@0
|
41 |
TInt aLeftLen,
|
sl@0
|
42 |
const TText16* aRightPtr,
|
sl@0
|
43 |
TInt aRightLen) const
|
sl@0
|
44 |
{
|
sl@0
|
45 |
return iCompare16(aLeftPtr,aLeftLen,aRightPtr,aRightLen);
|
sl@0
|
46 |
}
|
sl@0
|
47 |
|
sl@0
|
48 |
/**
|
sl@0
|
49 |
The method compares aLeftPtr and aRightPtr unicode strings.
|
sl@0
|
50 |
Collation level 3 will be used.
|
sl@0
|
51 |
@param aLeftPtr Left string to compare.
|
sl@0
|
52 |
@param aLeftLen The length of left string.
|
sl@0
|
53 |
@param aRightPtr Right string to compare.
|
sl@0
|
54 |
@param aRightLen The length of right string.
|
sl@0
|
55 |
This method is used by sorting algorithms when the key field is a unciode string.
|
sl@0
|
56 |
@return Positive. if aLeftPtr is greater than aRightPtr.
|
sl@0
|
57 |
Negative. if aLeftPtr is less than aRightPtr.
|
sl@0
|
58 |
Zero, if aLeftPtr is equal to aRightPtr.
|
sl@0
|
59 |
*/
|
sl@0
|
60 |
inline TInt TTextOps::Order(const TText16* aLeftPtr, TInt aLeftLen, const TText16* aRightPtr, TInt aRightLen) const
|
sl@0
|
61 |
{
|
sl@0
|
62 |
return iOrder16(aLeftPtr, aLeftLen, aRightPtr, aRightLen);
|
sl@0
|
63 |
}
|
sl@0
|
64 |
|
sl@0
|
65 |
// Class TDbBlob
|
sl@0
|
66 |
inline TDbBlob::TDbBlob() :
|
sl@0
|
67 |
iId(KDbNullBlobId),
|
sl@0
|
68 |
iSize(0)
|
sl@0
|
69 |
{
|
sl@0
|
70 |
}
|
sl@0
|
71 |
|
sl@0
|
72 |
inline TDbBlob::TDbBlob(TDbBlobId anId,TInt aSize) :
|
sl@0
|
73 |
iId(anId),
|
sl@0
|
74 |
iSize(aSize)
|
sl@0
|
75 |
{
|
sl@0
|
76 |
}
|
sl@0
|
77 |
|
sl@0
|
78 |
inline TDbBlob::TDbBlob(const TUint8* aPtr,TInt aSize) :
|
sl@0
|
79 |
iId(KDbNullBlobId),
|
sl@0
|
80 |
iSize(aSize)
|
sl@0
|
81 |
{
|
sl@0
|
82 |
__ASSERT_DEBUG(aSize>=0&&aSize<=KDbMaxInlineBlobSize,User::Invariant());
|
sl@0
|
83 |
Mem::Copy(iInline,aPtr,aSize);
|
sl@0
|
84 |
}
|
sl@0
|
85 |
|
sl@0
|
86 |
inline TUint8* TDbBlob::InlineBuffer()
|
sl@0
|
87 |
{
|
sl@0
|
88 |
__ASSERT_DEBUG(IsInline(),User::Invariant());
|
sl@0
|
89 |
return iInline;
|
sl@0
|
90 |
}
|
sl@0
|
91 |
|
sl@0
|
92 |
inline void TDbBlob::SetId(TDbBlobId anId)
|
sl@0
|
93 |
{
|
sl@0
|
94 |
iId=anId;
|
sl@0
|
95 |
}
|
sl@0
|
96 |
|
sl@0
|
97 |
inline void TDbBlob::SetSize(TInt aSize)
|
sl@0
|
98 |
{
|
sl@0
|
99 |
iSize=aSize;
|
sl@0
|
100 |
}
|
sl@0
|
101 |
|
sl@0
|
102 |
inline TBool TDbBlob::IsInline() const
|
sl@0
|
103 |
{
|
sl@0
|
104 |
return iId==KDbNullBlobId;
|
sl@0
|
105 |
}
|
sl@0
|
106 |
|
sl@0
|
107 |
inline TInt TDbBlob::Size() const
|
sl@0
|
108 |
{
|
sl@0
|
109 |
return iSize;
|
sl@0
|
110 |
}
|
sl@0
|
111 |
|
sl@0
|
112 |
inline const TUint8* TDbBlob::Data() const
|
sl@0
|
113 |
{
|
sl@0
|
114 |
__ASSERT_DEBUG(IsInline(),User::Invariant());
|
sl@0
|
115 |
return iInline;
|
sl@0
|
116 |
}
|
sl@0
|
117 |
|
sl@0
|
118 |
inline TPtrC8 TDbBlob::PtrC8() const
|
sl@0
|
119 |
{
|
sl@0
|
120 |
__ASSERT_DEBUG(IsInline(),User::Invariant());
|
sl@0
|
121 |
return TPtrC8(iInline,iSize);
|
sl@0
|
122 |
}
|
sl@0
|
123 |
|
sl@0
|
124 |
inline TPtrC16 TDbBlob::PtrC16() const
|
sl@0
|
125 |
{
|
sl@0
|
126 |
__ASSERT_DEBUG(IsInline(),User::Invariant());
|
sl@0
|
127 |
return TPtrC16((const TUint16*)iInline,iSize>>1);
|
sl@0
|
128 |
}
|
sl@0
|
129 |
|
sl@0
|
130 |
inline TDbBlobId TDbBlob::Id() const
|
sl@0
|
131 |
{
|
sl@0
|
132 |
__ASSERT_DEBUG(!IsInline(),User::Invariant());
|
sl@0
|
133 |
return iId;
|
sl@0
|
134 |
}
|
sl@0
|
135 |
|
sl@0
|
136 |
inline TInt TDbBlob::CellSize() const
|
sl@0
|
137 |
{
|
sl@0
|
138 |
return _FOFF(TDbBlob,iInline[IsInline() ? Size() : 0]);
|
sl@0
|
139 |
}
|
sl@0
|
140 |
|
sl@0
|
141 |
inline TInt TDbBlob::InlineSize(TInt aSize)
|
sl@0
|
142 |
{
|
sl@0
|
143 |
return _FOFF(TDbBlob,iInline[aSize]);
|
sl@0
|
144 |
}
|
sl@0
|
145 |
|
sl@0
|
146 |
inline TInt TDbBlob::RefSize()
|
sl@0
|
147 |
{
|
sl@0
|
148 |
return _FOFF(TDbBlob,iInline[0]);
|
sl@0
|
149 |
}
|
sl@0
|
150 |
|
sl@0
|
151 |
// CLass TDbCell
|
sl@0
|
152 |
inline TInt TDbCell::Size(TInt aLength)
|
sl@0
|
153 |
{
|
sl@0
|
154 |
return Align4(aLength+sizeof(TInt));
|
sl@0
|
155 |
}
|
sl@0
|
156 |
|
sl@0
|
157 |
inline TInt TDbCell::Size() const
|
sl@0
|
158 |
{
|
sl@0
|
159 |
return Size(iLength);
|
sl@0
|
160 |
}
|
sl@0
|
161 |
|
sl@0
|
162 |
inline TInt TDbCell::Length() const
|
sl@0
|
163 |
{
|
sl@0
|
164 |
return iLength;
|
sl@0
|
165 |
}
|
sl@0
|
166 |
|
sl@0
|
167 |
inline const TDbCell* TDbCell::Next() const
|
sl@0
|
168 |
{
|
sl@0
|
169 |
return PtrAdd(this,Size());
|
sl@0
|
170 |
}
|
sl@0
|
171 |
|
sl@0
|
172 |
inline TDbCell* TDbCell::Next()
|
sl@0
|
173 |
{
|
sl@0
|
174 |
return PtrAdd(this,Size());
|
sl@0
|
175 |
}
|
sl@0
|
176 |
|
sl@0
|
177 |
inline TAny* TDbCell::Data()
|
sl@0
|
178 |
{
|
sl@0
|
179 |
return iBuf;
|
sl@0
|
180 |
}
|
sl@0
|
181 |
|
sl@0
|
182 |
inline const TAny* TDbCell::Data() const
|
sl@0
|
183 |
{
|
sl@0
|
184 |
return iBuf;
|
sl@0
|
185 |
}
|
sl@0
|
186 |
|
sl@0
|
187 |
inline void TDbCell::SetLength(TInt aLength)
|
sl@0
|
188 |
{
|
sl@0
|
189 |
iLength=aLength;
|
sl@0
|
190 |
}
|
sl@0
|
191 |
|
sl@0
|
192 |
// Class TDbColumnC
|
sl@0
|
193 |
inline TDbColumnC::TDbColumnC(const RDbRow& aRow,TDbColNo aCol) :
|
sl@0
|
194 |
iCell(aRow.ColCell(aCol))
|
sl@0
|
195 |
{
|
sl@0
|
196 |
}
|
sl@0
|
197 |
|
sl@0
|
198 |
inline TInt TDbColumnC::Size() const
|
sl@0
|
199 |
{
|
sl@0
|
200 |
return iCell->Length();
|
sl@0
|
201 |
}
|
sl@0
|
202 |
|
sl@0
|
203 |
inline TBool TDbColumnC::IsNull() const
|
sl@0
|
204 |
{
|
sl@0
|
205 |
return Size()==0;
|
sl@0
|
206 |
}
|
sl@0
|
207 |
|
sl@0
|
208 |
inline TInt8 TDbColumnC::Int8() const
|
sl@0
|
209 |
{
|
sl@0
|
210 |
return TInt8(*(const TInt32*)iCell->Data());
|
sl@0
|
211 |
}
|
sl@0
|
212 |
|
sl@0
|
213 |
inline TInt16 TDbColumnC::Int16() const
|
sl@0
|
214 |
{
|
sl@0
|
215 |
return TInt16(*(const TInt32*)iCell->Data());
|
sl@0
|
216 |
}
|
sl@0
|
217 |
|
sl@0
|
218 |
inline TInt32 TDbColumnC::Int32() const
|
sl@0
|
219 |
{
|
sl@0
|
220 |
return *(const TInt32*)iCell->Data();
|
sl@0
|
221 |
}
|
sl@0
|
222 |
|
sl@0
|
223 |
inline const TInt64& TDbColumnC::Int64() const
|
sl@0
|
224 |
{
|
sl@0
|
225 |
return *(const TInt64*)iCell->Data();
|
sl@0
|
226 |
}
|
sl@0
|
227 |
|
sl@0
|
228 |
inline TUint8 TDbColumnC::Uint8() const
|
sl@0
|
229 |
{
|
sl@0
|
230 |
return TUint8(*(const TUint8*)iCell->Data());
|
sl@0
|
231 |
}
|
sl@0
|
232 |
|
sl@0
|
233 |
inline TUint16 TDbColumnC::Uint16() const
|
sl@0
|
234 |
{
|
sl@0
|
235 |
return TUint16(*(const TUint32*)iCell->Data());
|
sl@0
|
236 |
}
|
sl@0
|
237 |
|
sl@0
|
238 |
inline TUint32 TDbColumnC::Uint32() const
|
sl@0
|
239 |
{
|
sl@0
|
240 |
return *(const TUint32*)iCell->Data();
|
sl@0
|
241 |
}
|
sl@0
|
242 |
|
sl@0
|
243 |
inline TReal32 TDbColumnC::Real32() const
|
sl@0
|
244 |
{
|
sl@0
|
245 |
return *(const TReal32*)iCell->Data();
|
sl@0
|
246 |
}
|
sl@0
|
247 |
|
sl@0
|
248 |
inline const TReal64& TDbColumnC::Real64() const
|
sl@0
|
249 |
{
|
sl@0
|
250 |
return *(const TReal64*)iCell->Data();
|
sl@0
|
251 |
}
|
sl@0
|
252 |
|
sl@0
|
253 |
inline TPtrC8 TDbColumnC::PtrC8() const
|
sl@0
|
254 |
{
|
sl@0
|
255 |
return TPtrC8((const TUint8*)iCell->Data(),iCell->Length());
|
sl@0
|
256 |
}
|
sl@0
|
257 |
|
sl@0
|
258 |
inline TPtrC16 TDbColumnC::PtrC16() const
|
sl@0
|
259 |
{
|
sl@0
|
260 |
return TPtrC16((const TUint16*)iCell->Data(),iCell->Length()>>1);
|
sl@0
|
261 |
}
|
sl@0
|
262 |
|
sl@0
|
263 |
inline const TTime& TDbColumnC::Time() const
|
sl@0
|
264 |
{
|
sl@0
|
265 |
return *(const TTime*)iCell->Data();
|
sl@0
|
266 |
}
|
sl@0
|
267 |
|
sl@0
|
268 |
inline const TDbBlob& TDbColumnC::Blob() const
|
sl@0
|
269 |
{
|
sl@0
|
270 |
return *(const TDbBlob*)iCell->Data();
|
sl@0
|
271 |
}
|
sl@0
|
272 |
|
sl@0
|
273 |
// Class TDbColumn
|
sl@0
|
274 |
inline TDbColumn::TDbColumn()
|
sl@0
|
275 |
#ifdef _DEBUG
|
sl@0
|
276 |
: iRow(0)
|
sl@0
|
277 |
#endif
|
sl@0
|
278 |
{
|
sl@0
|
279 |
}
|
sl@0
|
280 |
|
sl@0
|
281 |
inline TDbColumn::TDbColumn(RDbRow& aRow,TDbColNo aCol) :
|
sl@0
|
282 |
iRow(&aRow),
|
sl@0
|
283 |
iColumn(aCol)
|
sl@0
|
284 |
{
|
sl@0
|
285 |
}
|
sl@0
|
286 |
|
sl@0
|
287 |
inline RDbRow& TDbColumn::Row() const
|
sl@0
|
288 |
{
|
sl@0
|
289 |
__ASSERT_DEBUG(iRow,User::Invariant());
|
sl@0
|
290 |
return *iRow;
|
sl@0
|
291 |
}
|
sl@0
|
292 |
|
sl@0
|
293 |
inline void TDbColumn::SetNull()
|
sl@0
|
294 |
{
|
sl@0
|
295 |
//SetColumnWidthL() can't leave when the second parameter value is 0 ("aWidth" parameter).
|
sl@0
|
296 |
//TRAP_IGNORE() not used because makes the code heavier and SetNull() is a public, exported, inline method.
|
sl@0
|
297 |
//coverity[naming_error]
|
sl@0
|
298 |
Row().SetColumnWidthL(iColumn,0);
|
sl@0
|
299 |
}
|
sl@0
|
300 |
|
sl@0
|
301 |
inline void TDbColumn::SetL(TInt32 aValue)
|
sl@0
|
302 |
{
|
sl@0
|
303 |
SetL(TUint32(aValue));
|
sl@0
|
304 |
}
|
sl@0
|
305 |
|
sl@0
|
306 |
inline void TDbColumn::SetL(const TTime& aValue)
|
sl@0
|
307 |
{
|
sl@0
|
308 |
SetL(aValue.Int64());
|
sl@0
|
309 |
}
|
sl@0
|
310 |
|
sl@0
|
311 |
inline void TDbColumn::SetL(const TDbCell* aCell)
|
sl@0
|
312 |
{
|
sl@0
|
313 |
SetL(aCell->Data(),aCell->Length());
|
sl@0
|
314 |
}
|
sl@0
|
315 |
|
sl@0
|
316 |
inline void TDbColumn::SetL(const TDbColumnC& aColumn)
|
sl@0
|
317 |
{
|
sl@0
|
318 |
SetL(aColumn.iCell);
|
sl@0
|
319 |
}
|
sl@0
|
320 |
|
sl@0
|
321 |
// Class TDbColumnC
|
sl@0
|
322 |
inline TDbColumnC::TDbColumnC(const TDbColumn& aCol) :
|
sl@0
|
323 |
iCell(aCol.Row().ColCell(aCol.iColumn))
|
sl@0
|
324 |
{
|
sl@0
|
325 |
}
|
sl@0
|
326 |
|
sl@0
|
327 |
// Class RDbRow
|
sl@0
|
328 |
inline RDbRow::RDbRow(TAny* aBuf,TInt aMaxSize)
|
sl@0
|
329 |
{
|
sl@0
|
330 |
Open(aBuf,0,aMaxSize);
|
sl@0
|
331 |
}
|
sl@0
|
332 |
|
sl@0
|
333 |
inline RDbRow::RDbRow(TAny* aBuf,TInt aSize,TInt aMaxSize)
|
sl@0
|
334 |
{
|
sl@0
|
335 |
Open(aBuf,aSize,aMaxSize);
|
sl@0
|
336 |
}
|
sl@0
|
337 |
|
sl@0
|
338 |
inline void RDbRow::Open(TAny* aBuf,TInt aMaxSize)
|
sl@0
|
339 |
{
|
sl@0
|
340 |
Open(aBuf,0,aMaxSize);
|
sl@0
|
341 |
}
|
sl@0
|
342 |
|
sl@0
|
343 |
inline void RDbRow::Reset()
|
sl@0
|
344 |
{
|
sl@0
|
345 |
SetSize(0);
|
sl@0
|
346 |
}
|
sl@0
|
347 |
|
sl@0
|
348 |
inline TDbCell* RDbRow::First()
|
sl@0
|
349 |
{
|
sl@0
|
350 |
return iFirst;
|
sl@0
|
351 |
}
|
sl@0
|
352 |
|
sl@0
|
353 |
inline const TDbCell* RDbRow::First() const
|
sl@0
|
354 |
{
|
sl@0
|
355 |
return iFirst;
|
sl@0
|
356 |
}
|
sl@0
|
357 |
|
sl@0
|
358 |
inline const TDbCell* RDbRow::Last() const
|
sl@0
|
359 |
{
|
sl@0
|
360 |
return iLast;
|
sl@0
|
361 |
}
|
sl@0
|
362 |
|
sl@0
|
363 |
inline const TDbCell* RDbRow::End() const
|
sl@0
|
364 |
{
|
sl@0
|
365 |
return iEnd;
|
sl@0
|
366 |
}
|
sl@0
|
367 |
|
sl@0
|
368 |
inline TInt RDbRow::Diff(const TDbCell* aLeft,const TDbCell* aRight)
|
sl@0
|
369 |
{
|
sl@0
|
370 |
return (const TUint8*)aRight-(const TUint8*)aLeft;
|
sl@0
|
371 |
}
|
sl@0
|
372 |
|
sl@0
|
373 |
inline TInt RDbRow::Size() const
|
sl@0
|
374 |
{
|
sl@0
|
375 |
return Diff(iFirst,iLast);
|
sl@0
|
376 |
}
|
sl@0
|
377 |
|
sl@0
|
378 |
inline TInt RDbRow::MaxSize() const
|
sl@0
|
379 |
{
|
sl@0
|
380 |
return Diff(iFirst,iEnd);
|
sl@0
|
381 |
}
|
sl@0
|
382 |
|
sl@0
|
383 |
// Class CDbObject
|
sl@0
|
384 |
inline const CDbContext* CDbObject::Context() const
|
sl@0
|
385 |
{
|
sl@0
|
386 |
return iContext;
|
sl@0
|
387 |
}
|
sl@0
|
388 |
|
sl@0
|
389 |
|
sl@0
|
390 |
// Class RDbHandleBase
|
sl@0
|
391 |
inline void RDbHandleBase::Set(CDbObject* aObject)
|
sl@0
|
392 |
{
|
sl@0
|
393 |
iObject=aObject;
|
sl@0
|
394 |
}
|
sl@0
|
395 |
|
sl@0
|
396 |
// template Class RDbHandle
|
sl@0
|
397 |
template <class T>
|
sl@0
|
398 |
inline T* RDbHandle<T>::operator=(T* aT)
|
sl@0
|
399 |
{
|
sl@0
|
400 |
Set(aT);return aT;
|
sl@0
|
401 |
}
|
sl@0
|
402 |
|
sl@0
|
403 |
template <class T>
|
sl@0
|
404 |
inline T* RDbHandle<T>::operator->() const
|
sl@0
|
405 |
{
|
sl@0
|
406 |
return &STATIC_CAST(T&,Object());
|
sl@0
|
407 |
}
|
sl@0
|
408 |
|
sl@0
|
409 |
template <class T>
|
sl@0
|
410 |
inline T& RDbHandle<T>::operator*() const
|
sl@0
|
411 |
{
|
sl@0
|
412 |
return STATIC_CAST(T&,Object());
|
sl@0
|
413 |
}
|
sl@0
|
414 |
|
sl@0
|
415 |
template <class T>
|
sl@0
|
416 |
inline T* RDbHandle<T>::operator()() const
|
sl@0
|
417 |
{
|
sl@0
|
418 |
return STATIC_CAST(T*,iObject);
|
sl@0
|
419 |
}
|