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