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 TInt64& SetInt();
90 inline TReal64& SetReal();
91 inline TTime& SetTime();
101 void ToPattern8L(TBool aEscape = EFalse);
102 void ToPattern16L(TBool aEscape = EFalse);
105 inline TBool IsNull() const;
106 inline TInt32 Int32() const;
107 inline TUint32 Uint32() const;
108 inline const TInt64& Int64() const;
109 inline const TTime& Time() const;
110 inline const TReal32& Real32() const;
111 inline const TReal64& Real64() const;
112 inline const TText* Ptr() const;
113 inline const TText* End() const;
114 inline const TPtrC DesC() const;
115 inline const HBufC8& Text8() const;
116 inline const HBufC16& Text16() const;
117 inline const HMatcherPattern8& Pattern8() const;
118 inline const HMatcherPattern16& Pattern16() const;
120 inline TBool IsBasic() const;
121 inline TBool IsAlloc() const;
123 enum TType { EInt32, EUint32, EReal32, EInt64, ETime, EReal64, EPtr, ENull, EBuf8, EBuf16, EPattern8, EPattern16 };
129 TUnion<TInt64> iInt64;
133 struct { const TText* iPtr; const TText* iEnd; } iPtr;
143 NONSHARABLE_CLASS(CSqlValues) : public CBase
149 void AddL( const RSqlLiteral& aLiteral );
150 void BindL( const CDbDataSource& aSource );
151 void WriteL( CDbDataSource& aSource, CDbTable& aTable ) const;
153 enum { EGranularity = 8 };
157 inline TEntry( const RSqlLiteral& aValue );
163 RArray<TEntry> iValues;
169 class RSqlColumnList : public RArray<TPtrC>
171 enum { EGranularity = 8 };
173 inline RSqlColumnList();
176 // evaluation tree classes
181 class CSqlSearchCondition : public CBase
189 ELess, ELessEqual, EEqual, EGreaterEqual, EGreater, ENotEqual
195 inline TType NodeType() const;
196 inline CSqlMultiNode* MultiNode();
197 inline CSqlNullPredicate* NullPredicate();
198 inline CSqlCompPredicate* CompPredicate();
199 inline CSqlLikePredicate* LikePredicate();
201 virtual void BindL( const RDbTableRow& aSource ) = 0;
202 virtual TBool EvaluateL( const TTextOps& aTextOp ) const = 0;
204 CSqlSearchCondition( TType aType );
214 NONSHARABLE_CLASS(CSqlMultiNode) : public CSqlSearchCondition
217 typedef CSqlSearchCondition* TEntry;
218 enum { EGranularity = 4 * sizeof( TEntry ) };
220 static CSqlSearchCondition* New( TType aType, CSqlSearchCondition* aLeft, CSqlSearchCondition* aRight );
222 inline TInt Count() const;
223 inline CSqlSearchCondition* SubNode( TInt aIndex ) const;
224 inline void SetSubNode( TInt aIndex, CSqlSearchCondition* aSearchCondition );
225 void Remove( CSqlSearchCondition* aSubNode );
226 static CSqlSearchCondition* Reduce( CSqlMultiNode* aNode );
228 inline CSqlMultiNode( TType aType );
230 static CSqlMultiNode* New( TType aType, TInt aSize );
231 static CSqlMultiNode* Grow( CSqlMultiNode* aNode, TInt aExtraSize );
232 static CSqlMultiNode* Concatenate( CSqlMultiNode* aLeft, CSqlMultiNode* aRight );
234 inline TInt Size() const;
235 static inline TInt Size( TInt aLeaves );
236 inline TBool IsFull() const;
238 // from CSqlSearchCondition
239 void BindL( const RDbTableRow& aSource );
240 TBool EvaluateL( const TTextOps& aTextOp ) const;
249 NONSHARABLE_CLASS(CSqlBoundNode) : public CSqlSearchCondition
252 const TDesC& ColumnName() const;
253 inline TDbColNo ColNo() const;
254 inline TDbColType ColType() const;
256 CSqlBoundNode( TType aType, const TDesC& aColumn );
257 inline TBool IsBound() const;
258 inline TDbColumnC Column() const;
259 MStreamBuf& StreamLC( const TDbBlob& aBlob ) const;
260 // from CSqlSearchCondition
261 void BindL( const RDbTableRow& aSource );
263 const RDbTableRow* iSource;
278 NONSHARABLE_CLASS(CSqlNullPredicate) : public CSqlBoundNode
281 CSqlNullPredicate( TType aType, const TDesC& aColumn );
283 // from CSqlSearchCondition
284 TBool EvaluateL( const TTextOps& aTextOp ) const;
290 NONSHARABLE_CLASS(CSqlLiteralNode) : public CSqlBoundNode
293 inline const RSqlLiteral& Value() const;
294 inline RSqlLiteral& Value();
296 CSqlLiteralNode( TType aType, const TDesC& aColumn, const RSqlLiteral& aLiteral );
298 // from CSqlSearchCondition
299 void BindL( const RDbTableRow& aSource );
301 RSqlLiteral iLiteral;
307 NONSHARABLE_CLASS(CSqlCompPredicate) : public CSqlLiteralNode
310 CSqlCompPredicate( TType aType, const TDesC& aColumn, const RSqlLiteral& aLiteral );
312 TInt CompareLongText8L( const TDbBlob& aBlob, const TTextOps& aTextOp ) const;
313 TInt CompareLongText16L( const TDbBlob& aBlob, const TTextOps& aTextOp ) const;
314 // from CSqlSearchCondition
315 TBool EvaluateL( const TTextOps& aTextOp ) const;
321 NONSHARABLE_CLASS(CSqlLikePredicate) : public CSqlLiteralNode
324 CSqlLikePredicate( TType aType, const TDesC& aColumn, const RSqlLiteral& aPattern );
326 // from CSqlSearchCondition
327 void BindL( const RDbTableRow& aSource );
328 TBool EvaluateL( const TTextOps& aTextOp ) const;
336 NONSHARABLE_CLASS(CSqlQuery) : public CBase
338 friend class TSqlParser;
343 inline const TDesC& Table() const;
345 inline TBool HasColumnList() const;
346 inline const RSqlColumnList& ColumnList() const;
348 inline TBool HasSearchCondition() const;
349 inline CSqlSearchCondition& SearchCondition();
350 void RemovePredicate( CSqlCompPredicate* aNode );
351 inline CSqlSearchCondition* AdoptSearchCondition();
353 inline TBool HasSortSpecification() const;
354 inline CDbKey& SortSpecification();
356 CDbKey& SortSpecificationL();
359 RSqlColumnList iColumns;
360 CSqlSearchCondition* iSearchCondition;
361 CDbKey* iSortSpecification;
367 class CSqlDDLStatement : public CBase
370 inline CSqlDDLStatement() {}
372 virtual CDbIncremental* ExecuteL( CDbDatabase& aDatabase, TDbTextComparison aComparison, TInt& aStep ) = 0;
378 NONSHARABLE_CLASS(CSqlDMLStatement) : public CBase
380 friend class TSqlParser;
384 inline CSqlQuery& Query();
385 inline CSqlValues& Values();
386 inline CSqlValues* AdoptValues();
388 virtual CDbIncremental* ExecuteL( CDbTableDatabase& aDatabase, TDbTextComparison aComparison, TInt& aRows ) = 0;
390 inline CSqlDMLStatement() {}
391 inline TBool HasValues() const;
393 CSqlValues& ValuesL();
402 NONSHARABLE_CLASS(CSqlInsertStatement) : public CSqlDMLStatement
405 static CSqlInsertStatement* NewLC();
407 inline CSqlInsertStatement() {}
408 // from CSqlDMLStatement
409 CDbIncremental* ExecuteL( CDbTableDatabase& aDatabase, TDbTextComparison aComparison, TInt& aRows );
415 NONSHARABLE_CLASS(CSqlModifyStatement) : public CSqlDMLStatement
418 static CSqlModifyStatement* NewLC();
419 inline TBool IsUpdate() const;
421 inline CSqlModifyStatement() {}
422 // from CSqlDMLStatement
423 CDbIncremental* ExecuteL( CDbTableDatabase& aDatabase, TDbTextComparison aComparison, TInt& aRows );
427 TSqlParser2 class uses TSqlParser class functionality only to parse particular SQL string
428 and extract SQL type and table name.
434 void ParseL(const TDesC& aSql);
435 inline Sql::TStatementType StatementType() const;
436 inline const TDesC& TableName() const;
439 Sql::TStatementType iStatementType;
444 #include "D32SQL.INL"