Update contrib.
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.
25 // Other class referenced
32 class CDbTableDatabase;
35 template <class T,class D> class HMatcherPattern;
42 class CSqlSearchCondition;
45 class CSqlNullPredicate;
46 class CSqlLiteralNode;
47 class CSqlCompPredicate;
48 class CSqlLikePredicate;
50 class CSqlDDLStatement;
51 class CSqlDMLStatement;
52 class CSqlInsertStatement;
53 class CSqlModifyStatement;
58 typedef HMatcherPattern<TUint8,TDesC8> HMatcherPattern8;
59 typedef HMatcherPattern<TUint16,TDesC16> HMatcherPattern16;
67 enum TStatementType { ENone, EDDL, EDML };
69 static CSqlDDLStatement* ParseDDLStatementLC( const TDesC& aSql );
70 static CSqlDMLStatement* ParseDMLStatementLC( const TDesC& aSql );
71 static CSqlQuery* ParseQueryLC( const TDesC& aSql );
72 static CSqlSearchCondition* ParseSearchConditionLC( const TDesC& aSql );
74 static TStatementType Type( const TDesC& aSql );
77 // variant data classes
88 inline void SetText( const TText* aPtr, const TText* aEnd );
89 inline void SetBlob( const TText* aPtr, const TText* aEnd );
90 inline TInt64& SetInt();
91 inline TReal64& SetReal();
92 inline TTime& SetTime();
102 void ToPattern8L(TBool aEscape = EFalse);
103 void ToPattern16L(TBool aEscape = EFalse);
107 inline TBool IsNull() const;
108 inline TInt32 Int32() const;
109 inline TUint32 Uint32() const;
110 inline const TInt64& Int64() const;
111 inline const TTime& Time() const;
112 inline const TReal32& Real32() const;
113 inline const TReal64& Real64() const;
114 inline const TText* Ptr() const;
115 inline const TText* End() const;
116 inline const TPtrC DesC() const;
117 inline const HBufC8& Text8() const;
118 inline const HBufC16& Text16() const;
119 inline const HMatcherPattern8& Pattern8() const;
120 inline const HMatcherPattern16& Pattern16() const;
121 inline const HBufC8& Blob() const;
123 inline TBool IsBasic() const;
124 inline TBool IsAlloc() const;
126 enum TType { EInt32, EUint32, EReal32, EInt64, ETime, EReal64, EPtr, ENull, EBuf8, EBuf16, EPattern8, EPattern16, EBlob };
132 TUnion<TInt64> iInt64;
136 struct { const TText* iPtr; const TText* iEnd; } iPtr;
146 NONSHARABLE_CLASS(CSqlValues) : public CBase
152 void AddL( const RSqlLiteral& aLiteral );
153 void BindL( const CDbDataSource& aSource );
154 void WriteL( CDbDataSource& aSource, CDbTable& aTable ) const;
156 enum { EGranularity = 8 };
160 inline TEntry( const RSqlLiteral& aValue );
166 RArray<TEntry> iValues;
172 class RSqlColumnList : public RArray<TPtrC>
174 enum { EGranularity = 8 };
176 inline RSqlColumnList();
179 // evaluation tree classes
184 class CSqlSearchCondition : public CBase
192 ELess, ELessEqual, EEqual, EGreaterEqual, EGreater, ENotEqual
198 inline TType NodeType() const;
199 inline CSqlMultiNode* MultiNode();
200 inline CSqlNullPredicate* NullPredicate();
201 inline CSqlCompPredicate* CompPredicate();
202 inline CSqlLikePredicate* LikePredicate();
204 virtual void BindL( const RDbTableRow& aSource ) = 0;
205 virtual TBool EvaluateL( const TTextOps& aTextOp ) const = 0;
207 CSqlSearchCondition( TType aType );
217 NONSHARABLE_CLASS(CSqlMultiNode) : public CSqlSearchCondition
220 typedef CSqlSearchCondition* TEntry;
221 enum { EGranularity = 4 * sizeof( TEntry ) };
223 static CSqlSearchCondition* New( TType aType, CSqlSearchCondition* aLeft, CSqlSearchCondition* aRight );
225 inline TInt Count() const;
226 inline CSqlSearchCondition* SubNode( TInt aIndex ) const;
227 inline void SetSubNode( TInt aIndex, CSqlSearchCondition* aSearchCondition );
228 void Remove( CSqlSearchCondition* aSubNode );
229 static CSqlSearchCondition* Reduce( CSqlMultiNode* aNode );
231 inline CSqlMultiNode( TType aType );
233 static CSqlMultiNode* New( TType aType, TInt aSize );
234 static CSqlMultiNode* Grow( CSqlMultiNode* aNode, TInt aExtraSize );
235 static CSqlMultiNode* Concatenate( CSqlMultiNode* aLeft, CSqlMultiNode* aRight );
237 inline TInt Size() const;
238 static inline TInt Size( TInt aLeaves );
239 inline TBool IsFull() const;
241 // from CSqlSearchCondition
242 void BindL( const RDbTableRow& aSource );
243 TBool EvaluateL( const TTextOps& aTextOp ) const;
252 NONSHARABLE_CLASS(CSqlBoundNode) : public CSqlSearchCondition
255 const TDesC& ColumnName() const;
256 inline TDbColNo ColNo() const;
257 inline TDbColType ColType() const;
259 CSqlBoundNode( TType aType, const TDesC& aColumn );
260 inline TBool IsBound() const;
261 inline TDbColumnC Column() const;
262 MStreamBuf& StreamLC( const TDbBlob& aBlob ) const;
263 // from CSqlSearchCondition
264 void BindL( const RDbTableRow& aSource );
266 const RDbTableRow* iSource;
281 NONSHARABLE_CLASS(CSqlNullPredicate) : public CSqlBoundNode
284 CSqlNullPredicate( TType aType, const TDesC& aColumn );
286 // from CSqlSearchCondition
287 TBool EvaluateL( const TTextOps& aTextOp ) const;
293 NONSHARABLE_CLASS(CSqlLiteralNode) : public CSqlBoundNode
296 inline const RSqlLiteral& Value() const;
297 inline RSqlLiteral& Value();
299 CSqlLiteralNode( TType aType, const TDesC& aColumn, const RSqlLiteral& aLiteral );
301 // from CSqlSearchCondition
302 void BindL( const RDbTableRow& aSource );
304 RSqlLiteral iLiteral;
310 NONSHARABLE_CLASS(CSqlCompPredicate) : public CSqlLiteralNode
313 CSqlCompPredicate( TType aType, const TDesC& aColumn, const RSqlLiteral& aLiteral );
315 TInt CompareLongText8L( const TDbBlob& aBlob, const TTextOps& aTextOp ) const;
316 TInt CompareLongText16L( const TDbBlob& aBlob, const TTextOps& aTextOp ) const;
317 // from CSqlSearchCondition
318 TBool EvaluateL( const TTextOps& aTextOp ) const;
324 NONSHARABLE_CLASS(CSqlLikePredicate) : public CSqlLiteralNode
327 CSqlLikePredicate( TType aType, const TDesC& aColumn, const RSqlLiteral& aPattern );
329 // from CSqlSearchCondition
330 void BindL( const RDbTableRow& aSource );
331 TBool EvaluateL( const TTextOps& aTextOp ) const;
339 NONSHARABLE_CLASS(CSqlQuery) : public CBase
341 friend class TSqlParser;
346 inline const TDesC& Table() const;
348 inline TBool HasColumnList() const;
349 inline const RSqlColumnList& ColumnList() const;
351 inline TBool HasSearchCondition() const;
352 inline CSqlSearchCondition& SearchCondition();
353 void RemovePredicate( CSqlCompPredicate* aNode );
354 inline CSqlSearchCondition* AdoptSearchCondition();
356 inline TBool HasSortSpecification() const;
357 inline CDbKey& SortSpecification();
359 CDbKey& SortSpecificationL();
362 RSqlColumnList iColumns;
363 CSqlSearchCondition* iSearchCondition;
364 CDbKey* iSortSpecification;
370 class CSqlDDLStatement : public CBase
373 inline CSqlDDLStatement() {}
375 virtual CDbIncremental* ExecuteL( CDbDatabase& aDatabase, TDbTextComparison aComparison, TInt& aStep ) = 0;
381 NONSHARABLE_CLASS(CSqlDMLStatement) : public CBase
383 friend class TSqlParser;
387 inline CSqlQuery& Query();
388 inline CSqlValues& Values();
389 inline CSqlValues* AdoptValues();
391 virtual CDbIncremental* ExecuteL( CDbTableDatabase& aDatabase, TDbTextComparison aComparison, TInt& aRows ) = 0;
393 inline CSqlDMLStatement() {}
394 inline TBool HasValues() const;
396 CSqlValues& ValuesL();
405 NONSHARABLE_CLASS(CSqlInsertStatement) : public CSqlDMLStatement
408 static CSqlInsertStatement* NewLC();
410 inline CSqlInsertStatement() {}
411 // from CSqlDMLStatement
412 CDbIncremental* ExecuteL( CDbTableDatabase& aDatabase, TDbTextComparison aComparison, TInt& aRows );
418 NONSHARABLE_CLASS(CSqlModifyStatement) : public CSqlDMLStatement
421 static CSqlModifyStatement* NewLC();
422 inline TBool IsUpdate() const;
424 inline CSqlModifyStatement() {}
425 // from CSqlDMLStatement
426 CDbIncremental* ExecuteL( CDbTableDatabase& aDatabase, TDbTextComparison aComparison, TInt& aRows );
430 TSqlParser2 class uses TSqlParser class functionality only to parse particular SQL string
431 and extract SQL type and table name.
437 void ParseL(const TDesC& aSql);
438 inline Sql::TStatementType StatementType() const;
439 inline const TDesC& TableName() const;
442 Sql::TStatementType iStatementType;
447 inline static void HexDecodeL(const TDesC& aHex, RBuf8& aOutput);
449 #include "D32SQL.INL"