os/persistentdata/persistentstorage/dbms/pcdbms/inc/D32SQL.H
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
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 parsing engine
sl@0
    15
// 
sl@0
    16
//
sl@0
    17
sl@0
    18
#ifndef __D32SQL_H__
sl@0
    19
#define __D32SQL_H__
sl@0
    20
sl@0
    21
#ifndef __D32DBMS_H__
sl@0
    22
#include <d32dbms.h>
sl@0
    23
#endif
sl@0
    24
sl@0
    25
// Other class referenced
sl@0
    26
class MStreamBuf;
sl@0
    27
class TDbBlob;
sl@0
    28
class RDbTableRow;
sl@0
    29
class TTextOps;
sl@0
    30
class TSqlParser;
sl@0
    31
class CDbTable;
sl@0
    32
class CDbTableDatabase;
sl@0
    33
class CDbDataSource;
sl@0
    34
class CDbBlobSpace;
sl@0
    35
template <class T,class D> class HMatcherPattern;
sl@0
    36
sl@0
    37
// Classes defined
sl@0
    38
class Sql;
sl@0
    39
class RSqlLiteral;
sl@0
    40
class CSqlValues;
sl@0
    41
class RSqlColumnList;
sl@0
    42
class CSqlSearchCondition;
sl@0
    43
class CSqlMultiNode;
sl@0
    44
class CSqlBoundNode;
sl@0
    45
class CSqlNullPredicate;
sl@0
    46
class CSqlLiteralNode;
sl@0
    47
class CSqlCompPredicate;
sl@0
    48
class CSqlLikePredicate;
sl@0
    49
class CSqlQuery;
sl@0
    50
class CSqlDDLStatement;
sl@0
    51
class CSqlDMLStatement;
sl@0
    52
class CSqlInsertStatement;
sl@0
    53
class CSqlModifyStatement;
sl@0
    54
sl@0
    55
/**
sl@0
    56
@internalComponent
sl@0
    57
*/
sl@0
    58
typedef HMatcherPattern<TUint8,TDesC8> HMatcherPattern8;
sl@0
    59
typedef HMatcherPattern<TUint16,TDesC16> HMatcherPattern16;
sl@0
    60
sl@0
    61
/**
sl@0
    62
@internalComponent
sl@0
    63
*/
sl@0
    64
class Sql
sl@0
    65
	{
sl@0
    66
public:
sl@0
    67
	enum TStatementType { ENone, EDDL, EDML };
sl@0
    68
public:
sl@0
    69
	static CSqlDDLStatement* ParseDDLStatementLC( const TDesC& aSql );
sl@0
    70
	static CSqlDMLStatement* ParseDMLStatementLC( const TDesC& aSql );
sl@0
    71
	static CSqlQuery* ParseQueryLC( const TDesC& aSql );
sl@0
    72
	static CSqlSearchCondition* ParseSearchConditionLC( const TDesC& aSql );
sl@0
    73
	//
sl@0
    74
	static TStatementType Type( const TDesC& aSql );
sl@0
    75
	};
sl@0
    76
sl@0
    77
// variant data classes
sl@0
    78
sl@0
    79
/**
sl@0
    80
@internalComponent
sl@0
    81
*/
sl@0
    82
class RSqlLiteral
sl@0
    83
	{
sl@0
    84
public:
sl@0
    85
	inline RSqlLiteral();
sl@0
    86
	void Close();
sl@0
    87
// assignment
sl@0
    88
	inline void SetText( const TText* aPtr, const TText* aEnd );
sl@0
    89
	inline void SetBlob( const TText* aPtr, const TText* aEnd );
sl@0
    90
	inline TInt64& SetInt();
sl@0
    91
	inline TReal64& SetReal();
sl@0
    92
	inline TTime& SetTime();
sl@0
    93
// conversions
sl@0
    94
	void ToInt32L();
sl@0
    95
	void ToUint32L();
sl@0
    96
	void ToInt64L();
sl@0
    97
	void ToReal32L();
sl@0
    98
	void ToReal64L();
sl@0
    99
	void ToTimeL();
sl@0
   100
	void ToText8L();
sl@0
   101
	void ToText16L();
sl@0
   102
	void ToPattern8L(TBool aEscape = EFalse);
sl@0
   103
	void ToPattern16L(TBool aEscape = EFalse);
sl@0
   104
	void ToBlobL();
sl@0
   105
	TInt CopyText();
sl@0
   106
// accessors
sl@0
   107
	inline TBool IsNull() const;
sl@0
   108
	inline TInt32 Int32() const;
sl@0
   109
	inline TUint32 Uint32() const;
sl@0
   110
	inline const TInt64& Int64() const;
sl@0
   111
	inline const TTime& Time() const;
sl@0
   112
	inline const TReal32& Real32() const;
sl@0
   113
	inline const TReal64& Real64() const;
sl@0
   114
	inline const TText* Ptr() const;
sl@0
   115
	inline const TText* End() const;
sl@0
   116
	inline const TPtrC DesC() const;
sl@0
   117
	inline const HBufC8& Text8() const;
sl@0
   118
	inline const HBufC16& Text16() const;
sl@0
   119
	inline const HMatcherPattern8& Pattern8() const;
sl@0
   120
	inline const HMatcherPattern16& Pattern16() const;
sl@0
   121
	inline const HBufC8& Blob() const;
sl@0
   122
private:
sl@0
   123
	inline TBool IsBasic() const;
sl@0
   124
	inline TBool IsAlloc() const;
sl@0
   125
private:
sl@0
   126
	enum TType { EInt32, EUint32, EReal32, EInt64, ETime, EReal64, EPtr, ENull, EBuf8, EBuf16, EPattern8, EPattern16, EBlob };
sl@0
   127
private:
sl@0
   128
	union
sl@0
   129
		{
sl@0
   130
		TInt32 iInt32;
sl@0
   131
		TUint32 iUint32;
sl@0
   132
		TUnion<TInt64> iInt64;
sl@0
   133
		TReal32 iReal32;
sl@0
   134
		TReal64 iReal64;
sl@0
   135
		TUnion<TTime> iTime;
sl@0
   136
		struct { const TText* iPtr; const TText* iEnd; } iPtr;
sl@0
   137
		TAny* iAlloc;
sl@0
   138
		} iVal;
sl@0
   139
	TType iType;
sl@0
   140
	HBufC* iBuffer;
sl@0
   141
	};
sl@0
   142
sl@0
   143
/**
sl@0
   144
@internalComponent
sl@0
   145
*/
sl@0
   146
NONSHARABLE_CLASS(CSqlValues) : public CBase
sl@0
   147
	{
sl@0
   148
public:
sl@0
   149
	CSqlValues();
sl@0
   150
	~CSqlValues();
sl@0
   151
//
sl@0
   152
	void AddL( const RSqlLiteral& aLiteral );
sl@0
   153
	void BindL( const CDbDataSource& aSource );
sl@0
   154
	void WriteL( CDbDataSource& aSource, CDbTable& aTable ) const;
sl@0
   155
private:
sl@0
   156
	enum { EGranularity = 8 };
sl@0
   157
	class TEntry
sl@0
   158
		{
sl@0
   159
	public:
sl@0
   160
		inline TEntry( const RSqlLiteral& aValue );
sl@0
   161
	public:
sl@0
   162
		RSqlLiteral iValue;
sl@0
   163
		TDbColType iType;
sl@0
   164
		};
sl@0
   165
private:
sl@0
   166
	RArray<TEntry> iValues;
sl@0
   167
	};
sl@0
   168
sl@0
   169
/**
sl@0
   170
@internalComponent
sl@0
   171
*/
sl@0
   172
class RSqlColumnList : public RArray<TPtrC>
sl@0
   173
	{
sl@0
   174
	enum { EGranularity = 8 };
sl@0
   175
public:
sl@0
   176
	inline RSqlColumnList();
sl@0
   177
	};
sl@0
   178
sl@0
   179
// evaluation tree classes
sl@0
   180
sl@0
   181
/**
sl@0
   182
@internalComponent
sl@0
   183
*/
sl@0
   184
class CSqlSearchCondition : public CBase
sl@0
   185
	{
sl@0
   186
public:
sl@0
   187
	enum TType
sl@0
   188
		{
sl@0
   189
		EAnd, EOr,
sl@0
   190
		EIsNull, EIsNotNull,
sl@0
   191
		ELike, ENotLike,
sl@0
   192
		ELess, ELessEqual, EEqual, EGreaterEqual, EGreater, ENotEqual
sl@0
   193
		};
sl@0
   194
public:
sl@0
   195
sl@0
   196
	TBool iIsEscape; 
sl@0
   197
	
sl@0
   198
	inline TType NodeType() const;
sl@0
   199
	inline CSqlMultiNode* MultiNode();
sl@0
   200
	inline CSqlNullPredicate* NullPredicate();
sl@0
   201
	inline CSqlCompPredicate* CompPredicate();
sl@0
   202
	inline CSqlLikePredicate* LikePredicate();
sl@0
   203
//
sl@0
   204
	virtual void BindL( const RDbTableRow& aSource ) = 0;
sl@0
   205
	virtual TBool EvaluateL( const TTextOps& aTextOp ) const = 0;
sl@0
   206
protected:
sl@0
   207
	CSqlSearchCondition( TType aType );
sl@0
   208
		
sl@0
   209
private:
sl@0
   210
	TType iType;
sl@0
   211
	
sl@0
   212
	};
sl@0
   213
sl@0
   214
/**
sl@0
   215
@internalComponent
sl@0
   216
*/
sl@0
   217
NONSHARABLE_CLASS(CSqlMultiNode) : public CSqlSearchCondition
sl@0
   218
	{
sl@0
   219
private:
sl@0
   220
	typedef CSqlSearchCondition* TEntry;
sl@0
   221
	enum { EGranularity = 4 * sizeof( TEntry ) };
sl@0
   222
public:
sl@0
   223
	static CSqlSearchCondition* New( TType aType, CSqlSearchCondition* aLeft, CSqlSearchCondition* aRight );
sl@0
   224
//
sl@0
   225
	inline TInt Count() const;
sl@0
   226
	inline CSqlSearchCondition* SubNode( TInt aIndex ) const;
sl@0
   227
	inline void SetSubNode( TInt aIndex, CSqlSearchCondition* aSearchCondition ); 
sl@0
   228
	void Remove( CSqlSearchCondition* aSubNode );
sl@0
   229
	static CSqlSearchCondition* Reduce( CSqlMultiNode* aNode );
sl@0
   230
private:
sl@0
   231
	inline CSqlMultiNode( TType aType );
sl@0
   232
	~CSqlMultiNode();
sl@0
   233
	static CSqlMultiNode* New( TType aType, TInt aSize );
sl@0
   234
	static CSqlMultiNode* Grow( CSqlMultiNode* aNode, TInt aExtraSize );
sl@0
   235
	static CSqlMultiNode* Concatenate( CSqlMultiNode* aLeft, CSqlMultiNode* aRight );
sl@0
   236
//
sl@0
   237
	inline TInt Size() const;
sl@0
   238
	static inline TInt Size( TInt aLeaves );
sl@0
   239
	inline TBool IsFull() const;
sl@0
   240
private:
sl@0
   241
// from CSqlSearchCondition
sl@0
   242
	void BindL( const RDbTableRow& aSource );
sl@0
   243
	TBool EvaluateL( const TTextOps& aTextOp ) const;
sl@0
   244
private:
sl@0
   245
	TEntry* iEnd;
sl@0
   246
	TEntry iLeaves[1];
sl@0
   247
	};
sl@0
   248
sl@0
   249
/**
sl@0
   250
@internalComponent
sl@0
   251
*/
sl@0
   252
NONSHARABLE_CLASS(CSqlBoundNode) : public CSqlSearchCondition
sl@0
   253
	{
sl@0
   254
public:
sl@0
   255
	const TDesC& ColumnName() const;
sl@0
   256
	inline TDbColNo ColNo() const;
sl@0
   257
	inline TDbColType ColType() const;
sl@0
   258
protected:
sl@0
   259
	CSqlBoundNode( TType aType, const TDesC& aColumn );
sl@0
   260
	inline TBool IsBound() const;
sl@0
   261
	inline TDbColumnC Column() const;
sl@0
   262
	MStreamBuf& StreamLC( const TDbBlob& aBlob ) const;
sl@0
   263
// from CSqlSearchCondition
sl@0
   264
	void BindL( const RDbTableRow& aSource );
sl@0
   265
private:
sl@0
   266
	const RDbTableRow* iSource;
sl@0
   267
	union
sl@0
   268
		{
sl@0
   269
		TUnion<TPtrC> iName;
sl@0
   270
		struct
sl@0
   271
			{
sl@0
   272
			TDbColNo iNumber;
sl@0
   273
			TDbColType iType;
sl@0
   274
			} iBound;
sl@0
   275
		} iColumn;
sl@0
   276
	};
sl@0
   277
sl@0
   278
/**
sl@0
   279
@internalComponent
sl@0
   280
*/
sl@0
   281
NONSHARABLE_CLASS(CSqlNullPredicate) : public CSqlBoundNode
sl@0
   282
	{
sl@0
   283
public:
sl@0
   284
	CSqlNullPredicate( TType aType, const TDesC& aColumn );
sl@0
   285
private:
sl@0
   286
// from CSqlSearchCondition
sl@0
   287
	TBool EvaluateL( const TTextOps& aTextOp ) const;
sl@0
   288
	};
sl@0
   289
sl@0
   290
/**
sl@0
   291
@internalComponent
sl@0
   292
*/
sl@0
   293
NONSHARABLE_CLASS(CSqlLiteralNode) : public CSqlBoundNode
sl@0
   294
	{
sl@0
   295
public:
sl@0
   296
	inline const RSqlLiteral& Value() const;
sl@0
   297
	inline RSqlLiteral& Value();
sl@0
   298
protected:
sl@0
   299
	CSqlLiteralNode( TType aType, const TDesC& aColumn, const RSqlLiteral& aLiteral );
sl@0
   300
	~CSqlLiteralNode();
sl@0
   301
// from CSqlSearchCondition
sl@0
   302
	void BindL( const RDbTableRow& aSource );
sl@0
   303
private:
sl@0
   304
	RSqlLiteral iLiteral;
sl@0
   305
	};
sl@0
   306
sl@0
   307
/**
sl@0
   308
@internalComponent
sl@0
   309
*/
sl@0
   310
NONSHARABLE_CLASS(CSqlCompPredicate) : public CSqlLiteralNode
sl@0
   311
	{
sl@0
   312
public:
sl@0
   313
	CSqlCompPredicate( TType aType, const TDesC& aColumn, const RSqlLiteral& aLiteral );
sl@0
   314
private:
sl@0
   315
	TInt CompareLongText8L( const TDbBlob& aBlob, const TTextOps& aTextOp ) const;
sl@0
   316
	TInt CompareLongText16L( const TDbBlob& aBlob, const TTextOps& aTextOp ) const;
sl@0
   317
// from CSqlSearchCondition
sl@0
   318
	TBool EvaluateL( const TTextOps& aTextOp ) const;
sl@0
   319
	};
sl@0
   320
sl@0
   321
/**
sl@0
   322
@internalComponent
sl@0
   323
*/
sl@0
   324
NONSHARABLE_CLASS(CSqlLikePredicate) : public CSqlLiteralNode 
sl@0
   325
	{
sl@0
   326
public:
sl@0
   327
	CSqlLikePredicate( TType aType, const TDesC& aColumn, const RSqlLiteral& aPattern );
sl@0
   328
private:
sl@0
   329
// from CSqlSearchCondition
sl@0
   330
	void BindL( const RDbTableRow& aSource );
sl@0
   331
	TBool EvaluateL( const TTextOps& aTextOp ) const;
sl@0
   332
private:
sl@0
   333
	TInt iMatchSize;
sl@0
   334
	};
sl@0
   335
sl@0
   336
/**
sl@0
   337
@internalComponent
sl@0
   338
*/
sl@0
   339
NONSHARABLE_CLASS(CSqlQuery) : public CBase
sl@0
   340
	{
sl@0
   341
	friend class TSqlParser;
sl@0
   342
public:
sl@0
   343
	CSqlQuery();
sl@0
   344
	~CSqlQuery();
sl@0
   345
//
sl@0
   346
	inline const TDesC& Table() const;
sl@0
   347
//
sl@0
   348
	inline TBool HasColumnList() const;
sl@0
   349
	inline const RSqlColumnList& ColumnList() const;
sl@0
   350
//
sl@0
   351
	inline TBool HasSearchCondition() const;
sl@0
   352
	inline CSqlSearchCondition& SearchCondition();
sl@0
   353
	void RemovePredicate( CSqlCompPredicate* aNode );
sl@0
   354
	inline CSqlSearchCondition* AdoptSearchCondition();
sl@0
   355
//
sl@0
   356
	inline TBool HasSortSpecification() const;
sl@0
   357
	inline CDbKey& SortSpecification();
sl@0
   358
private:
sl@0
   359
	CDbKey& SortSpecificationL();
sl@0
   360
private:
sl@0
   361
	TPtrC iTable;
sl@0
   362
	RSqlColumnList iColumns;
sl@0
   363
	CSqlSearchCondition* iSearchCondition;
sl@0
   364
	CDbKey* iSortSpecification;
sl@0
   365
	};
sl@0
   366
sl@0
   367
/**
sl@0
   368
@internalComponent
sl@0
   369
*/
sl@0
   370
class CSqlDDLStatement : public CBase
sl@0
   371
	{
sl@0
   372
protected:
sl@0
   373
	inline CSqlDDLStatement() {}
sl@0
   374
public:
sl@0
   375
	virtual CDbIncremental* ExecuteL( CDbDatabase& aDatabase, TDbTextComparison aComparison, TInt& aStep ) = 0;
sl@0
   376
	};
sl@0
   377
sl@0
   378
/**
sl@0
   379
@internalComponent
sl@0
   380
*/
sl@0
   381
NONSHARABLE_CLASS(CSqlDMLStatement) : public CBase
sl@0
   382
	{
sl@0
   383
	friend class TSqlParser;
sl@0
   384
public:
sl@0
   385
	~CSqlDMLStatement();
sl@0
   386
//
sl@0
   387
	inline CSqlQuery& Query();
sl@0
   388
	inline CSqlValues& Values();
sl@0
   389
	inline CSqlValues* AdoptValues();
sl@0
   390
//
sl@0
   391
	virtual CDbIncremental* ExecuteL( CDbTableDatabase& aDatabase, TDbTextComparison aComparison, TInt& aRows ) = 0;
sl@0
   392
protected:
sl@0
   393
	inline CSqlDMLStatement() {}
sl@0
   394
	inline TBool HasValues() const;
sl@0
   395
private:
sl@0
   396
	CSqlValues& ValuesL();
sl@0
   397
private:
sl@0
   398
	CSqlQuery iQuery;
sl@0
   399
	CSqlValues* iValues;
sl@0
   400
	};
sl@0
   401
sl@0
   402
/**
sl@0
   403
@internalComponent
sl@0
   404
*/
sl@0
   405
NONSHARABLE_CLASS(CSqlInsertStatement) : public CSqlDMLStatement
sl@0
   406
	{
sl@0
   407
public:
sl@0
   408
	static CSqlInsertStatement* NewLC();
sl@0
   409
private:
sl@0
   410
	inline CSqlInsertStatement() {}
sl@0
   411
// from CSqlDMLStatement
sl@0
   412
	CDbIncremental* ExecuteL( CDbTableDatabase& aDatabase, TDbTextComparison aComparison, TInt& aRows );
sl@0
   413
	};
sl@0
   414
sl@0
   415
/**
sl@0
   416
@internalComponent
sl@0
   417
*/
sl@0
   418
NONSHARABLE_CLASS(CSqlModifyStatement) : public CSqlDMLStatement
sl@0
   419
	{
sl@0
   420
public:
sl@0
   421
	static CSqlModifyStatement* NewLC();
sl@0
   422
	inline TBool IsUpdate() const;
sl@0
   423
private:
sl@0
   424
	inline CSqlModifyStatement() {}
sl@0
   425
// from CSqlDMLStatement
sl@0
   426
	CDbIncremental* ExecuteL( CDbTableDatabase& aDatabase, TDbTextComparison aComparison, TInt& aRows );
sl@0
   427
	};
sl@0
   428
sl@0
   429
/**
sl@0
   430
TSqlParser2 class uses TSqlParser class functionality only to parse particular SQL string
sl@0
   431
and extract SQL type and table name.
sl@0
   432
@internalComponent
sl@0
   433
*/
sl@0
   434
class TSqlParser2
sl@0
   435
	{
sl@0
   436
public:
sl@0
   437
	void ParseL(const TDesC& aSql);
sl@0
   438
	inline Sql::TStatementType StatementType() const;
sl@0
   439
	inline const TDesC& TableName() const;
sl@0
   440
sl@0
   441
private:
sl@0
   442
	Sql::TStatementType	iStatementType;
sl@0
   443
	TPtrC				iTableName;
sl@0
   444
sl@0
   445
	};
sl@0
   446
sl@0
   447
inline static void HexDecodeL(const TDesC& aHex, RBuf8& aOutput);
sl@0
   448
sl@0
   449
#include "D32SQL.INL"
sl@0
   450
sl@0
   451
#endif//__D32SQL_H__