os/persistentdata/persistentstorage/dbms/usql/UQ_LIT.CPP
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
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
// SQL Literal value and node classes
sl@0
    15
// 
sl@0
    16
//
sl@0
    17
sl@0
    18
#include "UQ_STD.H"
sl@0
    19
sl@0
    20
// internalising literal strings, overload selectors
sl@0
    21
sl@0
    22
inline HBufC8* Alloc8L(const TDesC8& aDes)
sl@0
    23
	{return aDes.AllocL();}
sl@0
    24
inline HBufC8* Alloc8L(const TDesC16& aDes)
sl@0
    25
	{HBufC8* cell=HBufC8::NewL(aDes.Length());cell->Des().Copy(aDes);return cell;}
sl@0
    26
inline HBufC16* Alloc16L(const TDesC16& aDes)
sl@0
    27
	{return aDes.AllocL();}
sl@0
    28
inline HBufC16* Alloc16L(const TDesC8& aDes)
sl@0
    29
	{HBufC16* cell=HBufC16::NewL(aDes.Length());cell->Des().Copy(aDes);return cell;}
sl@0
    30
sl@0
    31
template <class B,class T>
sl@0
    32
inline B* DoInternString(B* aBuf,T*)
sl@0
    33
	{
sl@0
    34
	const T* base=aBuf->Ptr();
sl@0
    35
	const T* from=base;
sl@0
    36
	const T* end=base+aBuf->Length();
sl@0
    37
	for (;;)
sl@0
    38
		{
sl@0
    39
		if (from==end)
sl@0
    40
			return aBuf;
sl@0
    41
		if (*from++=='\'')
sl@0
    42
			break;
sl@0
    43
		}
sl@0
    44
	T* to=(T*)from;
sl@0
    45
	++from;
sl@0
    46
	while (from<end)
sl@0
    47
		{
sl@0
    48
		T c=*from++;
sl@0
    49
		if (c=='\'')
sl@0
    50
			++from;
sl@0
    51
		*to++=c;
sl@0
    52
		}
sl@0
    53
	aBuf->Des().SetLength(to-base);
sl@0
    54
	return aBuf;
sl@0
    55
	}
sl@0
    56
sl@0
    57
template <class B>
sl@0
    58
inline B* InternString(B* aBuf)
sl@0
    59
	{return DoInternString(aBuf,PtrType(*aBuf));}
sl@0
    60
sl@0
    61
// Class RSqlLiteral
sl@0
    62
sl@0
    63
void RSqlLiteral::Close()
sl@0
    64
//
sl@0
    65
// Free any allocated cell
sl@0
    66
//
sl@0
    67
	{
sl@0
    68
	if(iBuffer)
sl@0
    69
		delete iBuffer;
sl@0
    70
	if (IsAlloc())
sl@0
    71
		User::Free(iVal.iAlloc);
sl@0
    72
sl@0
    73
		
sl@0
    74
	}
sl@0
    75
sl@0
    76
void RSqlLiteral::ToInt32L()
sl@0
    77
//
sl@0
    78
// Convert a numeric type to Int32
sl@0
    79
//
sl@0
    80
	{
sl@0
    81
	ToInt64L();
sl@0
    82
	const TInt64& v=iVal.iInt64;
sl@0
    83
	TInt32 l = I64LOW(v);
sl@0
    84
	TInt32 h = I64HIGH(v);
sl@0
    85
	if (h==(l>>31))	// domain check, in signed 32-bit range
sl@0
    86
		{
sl@0
    87
		iVal.iInt32=l;
sl@0
    88
		iType=EInt32;
sl@0
    89
		}
sl@0
    90
	else
sl@0
    91
		__LEAVE(KErrOverflow);	// cannot convert
sl@0
    92
	}
sl@0
    93
sl@0
    94
void RSqlLiteral::ToUint32L()
sl@0
    95
//
sl@0
    96
// Convert a numeric type to Uint32
sl@0
    97
//
sl@0
    98
	{
sl@0
    99
	ToInt64L();
sl@0
   100
	const TInt64& v=iVal.iInt64;
sl@0
   101
	if (I64HIGH(v)==0)		// domain check, in unsigned 32-bit range
sl@0
   102
		{
sl@0
   103
		iVal.iUint32 = I64LOW(v);
sl@0
   104
		iType=EUint32;
sl@0
   105
		}
sl@0
   106
	else
sl@0
   107
		__LEAVE(KErrOverflow);	// cannot convert
sl@0
   108
	}
sl@0
   109
sl@0
   110
void RSqlLiteral::ToInt64L()
sl@0
   111
//
sl@0
   112
// Convert a numeric type to int64
sl@0
   113
//
sl@0
   114
	{
sl@0
   115
	__ASSERT(IsBasic());	// only apply conversions once
sl@0
   116
	TType t=iType;
sl@0
   117
	if (t==EReal64)
sl@0
   118
		{
sl@0
   119
		iVal.iInt64() = static_cast<TInt64>(Real64());
sl@0
   120
		iType=EInt64;
sl@0
   121
		}
sl@0
   122
	else if (t!=EInt64)
sl@0
   123
		__LEAVE(KErrGeneral);
sl@0
   124
	}
sl@0
   125
sl@0
   126
void RSqlLiteral::ToReal64L()
sl@0
   127
//
sl@0
   128
// Convert a numeric type to real64
sl@0
   129
//
sl@0
   130
	{
sl@0
   131
	__ASSERT(IsBasic());	// only apply conversions once
sl@0
   132
	TType t=iType;
sl@0
   133
	if (t==EInt64)
sl@0
   134
		{
sl@0
   135
		iVal.iReal64=I64REAL(Int64());
sl@0
   136
		iType=EReal64;
sl@0
   137
		}
sl@0
   138
	else if (t!=EReal64)
sl@0
   139
		__LEAVE(KErrGeneral);
sl@0
   140
	}
sl@0
   141
sl@0
   142
void RSqlLiteral::ToReal32L()
sl@0
   143
//
sl@0
   144
// Convert a numeric type to real32
sl@0
   145
//
sl@0
   146
	{
sl@0
   147
	ToReal64L();
sl@0
   148
	__LEAVE_IF_ERROR(TRealX(iVal.iReal64).GetTReal(iVal.iReal32));
sl@0
   149
	iType=EReal32;
sl@0
   150
	}
sl@0
   151
sl@0
   152
void RSqlLiteral::ToTimeL()
sl@0
   153
//
sl@0
   154
// Ensure we are a time
sl@0
   155
//
sl@0
   156
	{
sl@0
   157
	__ASSERT(IsBasic());	// only apply conversions once
sl@0
   158
	if (iType!=ETime)
sl@0
   159
		__LEAVE(KErrGeneral);	// type mismatch
sl@0
   160
	}
sl@0
   161
sl@0
   162
void RSqlLiteral::ToText8L()
sl@0
   163
//
sl@0
   164
// Convert a ptr to a text8
sl@0
   165
//
sl@0
   166
	{
sl@0
   167
	__ASSERT(IsBasic());	// only apply conversions once
sl@0
   168
	if (iType==EPtr)
sl@0
   169
		{
sl@0
   170
		iVal.iAlloc=InternString(Alloc8L(DesC()));
sl@0
   171
		iType=EBuf8;
sl@0
   172
		}
sl@0
   173
	else
sl@0
   174
		__LEAVE(KErrGeneral);	// type mismatch
sl@0
   175
	}
sl@0
   176
sl@0
   177
void RSqlLiteral::ToText16L()
sl@0
   178
//
sl@0
   179
// Convert a ptr to a text8
sl@0
   180
//
sl@0
   181
	{
sl@0
   182
	__ASSERT(IsBasic());	// only apply conversions once
sl@0
   183
	if (iType==EPtr)
sl@0
   184
		{
sl@0
   185
		iVal.iAlloc=InternString(Alloc16L(DesC()));
sl@0
   186
		iType=EBuf16;
sl@0
   187
		}
sl@0
   188
	else
sl@0
   189
		__LEAVE(KErrGeneral);	// type mismatch
sl@0
   190
	}
sl@0
   191
sl@0
   192
sl@0
   193
sl@0
   194
// class CSqlLiteralNode
sl@0
   195
sl@0
   196
CSqlLiteralNode::CSqlLiteralNode(TType aType,const TDesC& aColumn,const RSqlLiteral& aLiteral)
sl@0
   197
	:CSqlBoundNode(aType,aColumn),iLiteral(aLiteral)
sl@0
   198
	{}
sl@0
   199
sl@0
   200
CSqlLiteralNode::~CSqlLiteralNode()
sl@0
   201
	{
sl@0
   202
	iLiteral.Close();
sl@0
   203
	}
sl@0
   204
sl@0
   205
void CSqlLiteralNode::BindL(const RDbTableRow& aSource)
sl@0
   206
	{
sl@0
   207
	CSqlBoundNode::BindL(aSource);
sl@0
   208
	switch (ColType())
sl@0
   209
		{
sl@0
   210
	default:	// type not allowed in evaluation expressions
sl@0
   211
		__LEAVE(KErrGeneral);
sl@0
   212
		break;
sl@0
   213
	case EDbColBit:
sl@0
   214
	case EDbColInt8:
sl@0
   215
	case EDbColUint8:
sl@0
   216
	case EDbColInt16:
sl@0
   217
	case EDbColUint16:
sl@0
   218
	case EDbColInt32:
sl@0
   219
	case EDbColUint32:
sl@0
   220
	case EDbColInt64:
sl@0
   221
		iLiteral.ToInt64L();
sl@0
   222
		break;
sl@0
   223
	case EDbColReal32:
sl@0
   224
	case EDbColReal64:
sl@0
   225
		iLiteral.ToReal64L();
sl@0
   226
		break;
sl@0
   227
	case EDbColDateTime:
sl@0
   228
		iLiteral.ToTimeL();
sl@0
   229
		break;
sl@0
   230
	case EDbColText8:
sl@0
   231
	case EDbColLongText8:
sl@0
   232
		iLiteral.ToText8L();
sl@0
   233
		break;
sl@0
   234
	case EDbColText16:
sl@0
   235
	case EDbColLongText16:
sl@0
   236
		iLiteral.ToText16L();
sl@0
   237
		break;
sl@0
   238
		}
sl@0
   239
	}
sl@0
   240
// copy text to buffer for LIKE Escape support
sl@0
   241
TInt RSqlLiteral::CopyText()
sl@0
   242
	{
sl@0
   243
	if (iType==EPtr)
sl@0
   244
		{
sl@0
   245
		TInt length = iVal.iPtr.iEnd - iVal.iPtr.iPtr;
sl@0
   246
		if(iBuffer)
sl@0
   247
			delete iBuffer;
sl@0
   248
		if((iBuffer=HBufC::New(length+1)) == NULL)
sl@0
   249
	        	{
sl@0
   250
			return KErrNoMemory;
sl@0
   251
			}
sl@0
   252
		iBuffer->Des().Copy(iVal.iPtr.iPtr,length);
sl@0
   253
		iVal.iPtr.iPtr= &iBuffer->Des()[0];
sl@0
   254
		iBuffer->Des().Append(iVal.iPtr.iEnd,1);
sl@0
   255
		iVal.iPtr.iEnd=&iBuffer->Des()[length]; 
sl@0
   256
		}
sl@0
   257
	else
sl@0
   258
		return KErrGeneral;	// type mismatch
sl@0
   259
	return KErrNone;
sl@0
   260
	}
sl@0
   261