First public contribution.
1 // Copyright (c) 1998-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
14 // SQL Literal value and node classes
20 // internalising literal strings, overload selectors
22 inline HBufC8* Alloc8L(const TDesC8& aDes)
23 {return aDes.AllocL();}
24 inline HBufC8* Alloc8L(const TDesC16& aDes)
25 {HBufC8* cell=HBufC8::NewL(aDes.Length());cell->Des().Copy(aDes);return cell;}
26 inline HBufC16* Alloc16L(const TDesC16& aDes)
27 {return aDes.AllocL();}
28 inline HBufC16* Alloc16L(const TDesC8& aDes)
29 {HBufC16* cell=HBufC16::NewL(aDes.Length());cell->Des().Copy(aDes);return cell;}
31 template <class B,class T>
32 inline B* DoInternString(B* aBuf,T*)
34 const T* base=aBuf->Ptr();
36 const T* end=base+aBuf->Length();
53 aBuf->Des().SetLength(to-base);
58 inline B* InternString(B* aBuf)
59 {return DoInternString(aBuf,PtrType(*aBuf));}
63 void RSqlLiteral::Close()
65 // Free any allocated cell
71 User::Free(iVal.iAlloc);
76 void RSqlLiteral::ToInt32L()
78 // Convert a numeric type to Int32
82 const TInt64& v=iVal.iInt64;
84 TInt32 h = I64HIGH(v);
85 if (h==(l>>31)) // domain check, in signed 32-bit range
91 __LEAVE(KErrOverflow); // cannot convert
94 void RSqlLiteral::ToUint32L()
96 // Convert a numeric type to Uint32
100 const TInt64& v=iVal.iInt64;
101 if (I64HIGH(v)==0) // domain check, in unsigned 32-bit range
103 iVal.iUint32 = I64LOW(v);
107 __LEAVE(KErrOverflow); // cannot convert
110 void RSqlLiteral::ToInt64L()
112 // Convert a numeric type to int64
115 __ASSERT(IsBasic()); // only apply conversions once
119 iVal.iInt64() = static_cast<TInt64>(Real64());
123 __LEAVE(KErrGeneral);
126 void RSqlLiteral::ToReal64L()
128 // Convert a numeric type to real64
131 __ASSERT(IsBasic()); // only apply conversions once
135 iVal.iReal64=I64REAL(Int64());
139 __LEAVE(KErrGeneral);
142 void RSqlLiteral::ToReal32L()
144 // Convert a numeric type to real32
148 __LEAVE_IF_ERROR(TRealX(iVal.iReal64).GetTReal(iVal.iReal32));
152 void RSqlLiteral::ToTimeL()
154 // Ensure we are a time
157 __ASSERT(IsBasic()); // only apply conversions once
159 __LEAVE(KErrGeneral); // type mismatch
162 void RSqlLiteral::ToText8L()
164 // Convert a ptr to a text8
167 __ASSERT(IsBasic()); // only apply conversions once
170 iVal.iAlloc=InternString(Alloc8L(DesC()));
174 __LEAVE(KErrGeneral); // type mismatch
177 void RSqlLiteral::ToText16L()
179 // Convert a ptr to a text8
182 __ASSERT(IsBasic()); // only apply conversions once
185 iVal.iAlloc=InternString(Alloc16L(DesC()));
189 __LEAVE(KErrGeneral); // type mismatch
194 // class CSqlLiteralNode
196 CSqlLiteralNode::CSqlLiteralNode(TType aType,const TDesC& aColumn,const RSqlLiteral& aLiteral)
197 :CSqlBoundNode(aType,aColumn),iLiteral(aLiteral)
200 CSqlLiteralNode::~CSqlLiteralNode()
205 void CSqlLiteralNode::BindL(const RDbTableRow& aSource)
207 CSqlBoundNode::BindL(aSource);
210 default: // type not allowed in evaluation expressions
211 __LEAVE(KErrGeneral);
225 iLiteral.ToReal64L();
231 case EDbColLongText8:
235 case EDbColLongText16:
236 iLiteral.ToText16L();
240 // copy text to buffer for LIKE Escape support
241 TInt RSqlLiteral::CopyText()
245 TInt length = iVal.iPtr.iEnd - iVal.iPtr.iPtr;
248 if((iBuffer=HBufC::New(length+1)) == NULL)
252 iBuffer->Des().Copy(iVal.iPtr.iPtr,length);
253 iVal.iPtr.iPtr= &iBuffer->Des()[0];
254 iBuffer->Des().Append(iVal.iPtr.iEnd,1);
255 iVal.iPtr.iEnd=&iBuffer->Des()[length];
258 return KErrGeneral; // type mismatch