sl@0: // Copyright (c) 1998-2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: // All rights reserved. sl@0: // This component and the accompanying materials are made available sl@0: // under the terms of "Eclipse Public License v1.0" sl@0: // which accompanies this distribution, and is available sl@0: // at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: // sl@0: // Initial Contributors: sl@0: // Nokia Corporation - initial contribution. sl@0: // sl@0: // Contributors: sl@0: // sl@0: // Description: sl@0: // sl@0: sl@0: #if !defined(__D32DBAS_H__) sl@0: #define __D32DBAS_H__ sl@0: #if !defined(__D32DBMS_H__) sl@0: #include sl@0: #endif sl@0: sl@0: // other classes referenced sl@0: class RFs; sl@0: class CDbContext; sl@0: sl@0: // classes defined sl@0: class TTextOps; sl@0: class TDbBlob; sl@0: class TDbCell; sl@0: class TDbColumnC; sl@0: class TDbColumn; sl@0: class RDbRow; sl@0: class CDbObject; sl@0: class CDbRowConstraint; sl@0: class CDbCursor; sl@0: class CDbNotifier; sl@0: class CDbIncremental; sl@0: class CDbSyncIncremental; sl@0: class CDbAsyncIncremental; sl@0: class CDbDatabase; sl@0: class CDbSource; sl@0: class TDbDriver; sl@0: class TDbFormat; sl@0: sl@0: /** sl@0: @internalComponent sl@0: */ sl@0: const TInt KDbMaxFormatName=32; sl@0: const TInt KDbMaxDatabaseName=KMaxFileName; sl@0: sl@0: /** sl@0: @internalComponent sl@0: */ sl@0: const TInt KDbMaxInlineBlobSize=255; sl@0: sl@0: /** sl@0: @internalComponent sl@0: */ sl@0: typedef TUint32 TDbBlobId; sl@0: sl@0: /** sl@0: @internalComponent sl@0: */ sl@0: const TDbBlobId KDbNullBlobId=0; sl@0: sl@0: /** sl@0: @internalComponent sl@0: */ sl@0: class Dbms sl@0: { sl@0: public: sl@0: IMPORT_C static void Panic(const TDesC& aCategory,TInt aCode); sl@0: }; sl@0: sl@0: /** sl@0: @internalComponent sl@0: */ sl@0: class TTextOps sl@0: { sl@0: public: sl@0: IMPORT_C static const TTextOps& Ops(TDbTextComparison aType=EDbCompareNormal); sl@0: // sl@0: inline TUint Fold(TUint aChar) const; sl@0: IMPORT_C TInt Compare(const TDesC8& aLeft,const TDesC8& aRight) const; sl@0: IMPORT_C TInt Compare(const TDesC16& aLeft,const TDesC16& aRight) const; sl@0: inline TInt Compare(const TText8* aLeftPtr,TInt aLeftLen,const TText8* aRightPtr,TInt aRightLen) const; sl@0: inline TInt Compare(const TText16* aLeftPtr,TInt aLeftLen,const TText16* aRightPtr,TInt aRightLen) const; sl@0: inline TInt Match(const TDesC8& aDes,const TDesC8& aPattern) const; sl@0: inline TInt Match(const TDesC16& aDes,const TDesC16& aPattern) const; sl@0: IMPORT_C TInt Match(const TText8* aPtr,TInt aLen,const TText8* aPatternPtr,TInt aPatternLen) const; sl@0: IMPORT_C TInt Match(const TText16* aPtr,TInt aLen,const TText16* aPatternPtr,TInt aPatternLen) const; sl@0: IMPORT_C TInt Find(const TDesC8& aDes,const TDesC8& aSub) const; sl@0: IMPORT_C TInt Find(const TDesC16& aDes,const TDesC16& aSub) const; sl@0: IMPORT_C TInt Find(const TText8* aPtr,TInt aLen,const TText8* aSubPtr,TInt aSubLen) const; sl@0: IMPORT_C TInt Find(const TText16* aPtr,TInt aLen,const TText16* aSubPtr,TInt aSubLen) const; sl@0: TInt Order(const TDesC16& aLeft, const TDesC16& aRight) const; sl@0: inline TInt Order(const TText16* aLeftPtr, TInt aLeftLen, const TText16* aRightPtr, TInt aRightLen) const; sl@0: public: sl@0: TUint (*iFold)(TUint aChar); sl@0: TInt (*iCompare8)(const TText8*,TInt,const TText8*,TInt); sl@0: TInt (*iMatch8)(const TDesC8&,const TDesC8&); sl@0: TInt (*iFind8)(const TDesC8&,const TText8*,TInt); sl@0: TInt (*iCompare16)(const TText16*,TInt,const TText16*,TInt); sl@0: TInt (*iMatch16)(const TDesC16&,const TDesC16&); sl@0: TInt (*iFind16)(const TDesC16&,const TText16*,TInt); sl@0: TInt (*iOrder16)(const TText16*, TInt, const TText16*, TInt); sl@0: }; sl@0: sl@0: /** sl@0: @internalComponent sl@0: */ sl@0: class TDbBlob sl@0: { sl@0: public: sl@0: inline TDbBlob(); sl@0: inline TDbBlob(TDbBlobId anId,TInt aSize=KDbUndefinedLength); sl@0: inline TDbBlob(const TUint8* aPtr,TInt aSize); sl@0: inline TUint8* InlineBuffer(); sl@0: inline void SetId(TDbBlobId anId); sl@0: inline void SetSize(TInt aSize); sl@0: // sl@0: inline TBool IsInline() const; sl@0: inline TInt Size() const; sl@0: inline const TUint8* Data() const; sl@0: inline TPtrC8 PtrC8() const; sl@0: inline TPtrC16 PtrC16() const; sl@0: inline TDbBlobId Id() const; sl@0: // sl@0: inline TInt CellSize() const; sl@0: static inline TInt InlineSize(TInt aSize); sl@0: static inline TInt RefSize(); sl@0: private: sl@0: TDbBlobId iId; sl@0: TInt iSize; sl@0: TUint8 iInline[KDbMaxInlineBlobSize]; sl@0: }; sl@0: sl@0: /** sl@0: @internalComponent sl@0: */ sl@0: class TDbCell sl@0: { sl@0: public: sl@0: static inline TInt Size(TInt aLength); sl@0: inline TInt Size() const; // total cell size sl@0: inline TDbCell* Next(); // pointer to next cell sl@0: inline const TDbCell* Next() const; // pointer to next cell sl@0: inline TInt Length() const; // data size sl@0: inline void SetLength(TInt aLength); sl@0: inline TAny* Data(); // data pointer sl@0: inline const TAny* Data() const; // data pointer sl@0: private: sl@0: TInt iLength; sl@0: TUint8 iBuf[1]; sl@0: }; sl@0: sl@0: /** sl@0: @internalComponent sl@0: */ sl@0: class TDbColumnC sl@0: { sl@0: friend class TDbColumn; sl@0: public: sl@0: inline TDbColumnC(const RDbRow& aRow,TDbColNo aCol); sl@0: inline TDbColumnC(const TDbColumn& aCol); sl@0: inline TInt Size() const; sl@0: inline TBool IsNull() const; sl@0: inline TInt8 Int8() const; sl@0: inline TInt16 Int16() const; sl@0: inline TInt32 Int32() const; sl@0: inline const TInt64& Int64() const; sl@0: inline TUint8 Uint8() const; sl@0: inline TUint16 Uint16() const; sl@0: inline TUint32 Uint32() const; sl@0: inline TReal32 Real32() const; sl@0: inline const TReal64& Real64() const; sl@0: inline TPtrC8 PtrC8() const; sl@0: inline TPtrC16 PtrC16() const; sl@0: inline const TTime& Time() const; sl@0: inline const TDbBlob& Blob() const; sl@0: private: sl@0: const TDbCell* iCell; sl@0: }; sl@0: sl@0: /** sl@0: @internalComponent sl@0: */ sl@0: class TDbColumn sl@0: { sl@0: friend class TDbColumnC; sl@0: public: sl@0: inline TDbColumn(); sl@0: inline TDbColumn(RDbRow& aRow,TDbColNo aCol); sl@0: inline void SetNull(); sl@0: inline void SetL(TInt32 aValue); sl@0: IMPORT_C void SetL(TUint32 aValue); sl@0: IMPORT_C void SetL(TInt64 aValue); sl@0: IMPORT_C void SetL(TReal32 aValue) __SOFTFP; sl@0: IMPORT_C void SetL(TReal64 aValue) __SOFTFP; sl@0: IMPORT_C void SetL(const TDesC8& aValue); sl@0: IMPORT_C void SetL(const TDesC16& aValue); sl@0: inline void SetL(const TTime& aValue); sl@0: IMPORT_C void SetBlobL(TDbBlobId aBlobId,TInt aSize=KDbUndefinedLength); sl@0: IMPORT_C void SetBlobL(const TUint8* aData,TInt aSize); sl@0: // sl@0: IMPORT_C TDbBlob& InitBlobL(); sl@0: IMPORT_C void CommitBlob(const TDbBlob& aBlob); sl@0: // sl@0: inline void SetL(const TDbCell* aCell); sl@0: inline void SetL(const TDbColumnC& aColumn); sl@0: private: sl@0: inline RDbRow& Row() const; sl@0: IMPORT_C void SetL(const TAny* aPtr,TInt aSize); sl@0: private: sl@0: RDbRow* iRow; sl@0: TDbColNo iColumn; sl@0: }; sl@0: sl@0: /** sl@0: @internalComponent sl@0: */ sl@0: class RDbRow sl@0: { sl@0: friend class TDbColumn; sl@0: public: sl@0: IMPORT_C RDbRow(); sl@0: inline RDbRow(TAny* aBuf,TInt aMaxSize); sl@0: inline RDbRow(TAny* aBuf,TInt aSize,TInt aMaxSize); sl@0: inline void Open(TAny* aBuf,TInt aMaxSize); sl@0: IMPORT_C void Open(TAny* aBuf,TInt aSize,TInt aMaxSize); sl@0: IMPORT_C void CreateL(TInt aMaxSize); sl@0: void PushL(); sl@0: IMPORT_C void Close(); sl@0: inline void Reset(); sl@0: // sl@0: inline TDbCell* First(); sl@0: inline const TDbCell* First() const; sl@0: inline const TDbCell* Last() const; sl@0: inline const TDbCell* End() const; sl@0: IMPORT_C void SetSize(TInt aSize); sl@0: inline TInt Size() const; sl@0: inline TInt MaxSize() const; sl@0: IMPORT_C void GrowL(TInt aMaxSize); sl@0: // for use by data sources sl@0: static inline TInt Diff(const TDbCell* aBegin,const TDbCell* aEnd); sl@0: IMPORT_C const TDbCell* ColCell(TDbColNo aCol) const; sl@0: private: sl@0: IMPORT_C TAny* SetColumnWidthL(TDbColNo aCol,TInt aWidth); sl@0: TDbCell* Column(TDbColNo aCol) const; sl@0: TInt ReallocL(TInt aMaxSize); sl@0: void ExtendL(TInt aAdjust); // change the row buffer length sl@0: // sl@0: inline TBool Owned() const; sl@0: inline TInt Column() const; sl@0: inline void SetCache(TDbCell* aCell,TInt aColumn); sl@0: private: sl@0: enum {EOwned=0x80000000}; sl@0: enum {EGranularity=0x100}; sl@0: private: sl@0: TDbCell* iFirst; // first column sl@0: TDbCell* iLast; // pointer past last cell sl@0: TDbCell* iEnd; // pointer past end of available buffer sl@0: TDbCell* iCell; // cached cell pointer sl@0: TUint iColumn; // cached column number/ownership flag sl@0: }; sl@0: sl@0: sl@0: /** sl@0: @internalComponent sl@0: */ sl@0: class CDbObject : public CBase sl@0: { sl@0: friend class CDbContext; sl@0: public: sl@0: static void Destroy(CDbObject* aObject); // context-safe deletion sl@0: CDbObject* Attach(CDbObject* aObject); sl@0: inline const CDbContext* Context() const; sl@0: // sl@0: void PushL(); sl@0: protected: sl@0: inline CDbObject() {} sl@0: private: sl@0: CDbContext* iContext; sl@0: }; sl@0: sl@0: /** sl@0: @internalComponent sl@0: */ sl@0: class CDbRowConstraint : public CDbObject sl@0: { sl@0: protected: sl@0: CDbRowConstraint() {} sl@0: }; sl@0: sl@0: /** sl@0: @internalComponent sl@0: */ sl@0: class CDbCursor : public CDbObject sl@0: { sl@0: public: sl@0: enum TInsert {EClear,ECopy}; sl@0: protected: sl@0: CDbCursor() {} sl@0: public: sl@0: // Pure virtual sl@0: virtual void Reset() =0; sl@0: virtual TBool EvaluateL()=0; sl@0: TInt Evaluate(); sl@0: virtual void Evaluate(TRequestStatus& aStatus)=0; sl@0: virtual TBool Unevaluated()=0; sl@0: // sl@0: virtual void SetIndexL(const TDesC* anIndex)=0; sl@0: virtual TBool SeekL(const TDbLookupKey& aKey,RDbTable::TComparison aComparison) =0; sl@0: CDbRowConstraint* ConstraintL(const TDbQuery& aCriteria); sl@0: virtual TBool MatchL(CDbRowConstraint& aConstraint) =0; sl@0: IMPORT_C virtual TInt FindL(RDbRowSet::TDirection aDirection,const TDbQuery& aCriteria); sl@0: // sl@0: virtual TBool AtBeginning()=0; sl@0: virtual TBool AtEnd()=0; sl@0: virtual TBool AtRow()=0; sl@0: IMPORT_C virtual TInt CountL(RDbRowSet::TAccuracy aAccuracy); sl@0: virtual TBool GotoL(RDbRowSet::TPosition aPosition)=0; sl@0: virtual void Bookmark(TDbBookmark::TMark& aMark) =0; sl@0: virtual void GotoL(const TDbBookmark::TMark& aMark) =0; sl@0: virtual void GetL()=0; sl@0: virtual void InsertL(TInsert aClearRow)=0; sl@0: virtual void UpdateL()=0; sl@0: virtual void Cancel()=0; sl@0: virtual void PutL()=0; sl@0: virtual void DeleteL()=0; sl@0: // column validation sl@0: virtual TInt ColumnCount()=0; sl@0: IMPORT_C virtual void ColumnsL(CDbColSet& aColSet); sl@0: virtual void ColumnDef(TDbCol& aCol,TDbColNo aColNo)=0; sl@0: virtual TDbColType ColumnType(TDbColNo aCol)=0; sl@0: // Column Accessors sl@0: virtual TDbColumnC ColumnC(TDbColNo aCol)=0; // non-writeable column sl@0: virtual TDbColumn Column(TDbColNo aCol)=0; // writeable column sl@0: virtual void SetNullL(TDbColNo aCol)=0; sl@0: virtual TInt ColumnSize(TDbColNo aCol)=0; sl@0: // Optimized whole row access for server sl@0: virtual RDbRow* RowBuffer() =0; sl@0: // Blob functions sl@0: virtual MStreamBuf* ColumnSourceL(TDbColNo aCol)=0; sl@0: virtual MStreamBuf* ColumnSinkL(TDbColNo aCol)=0; sl@0: private: sl@0: virtual CDbRowConstraint* OpenConstraintL(const TDbQuery& aCriteria) =0; sl@0: // Reserved virtuals sl@0: IMPORT_C virtual void Reserved_1(); sl@0: IMPORT_C virtual void Reserved_2(); sl@0: }; sl@0: sl@0: /** sl@0: @internalComponent sl@0: */ sl@0: class CDbIncremental : public CDbObject sl@0: { sl@0: protected: sl@0: CDbIncremental() {} sl@0: public: sl@0: virtual TBool NextL(TInt& aStep) =0; sl@0: virtual void Next(TPckgBuf& aStep,TRequestStatus& aStatus) =0; sl@0: }; sl@0: sl@0: /** sl@0: @internalComponent sl@0: */ sl@0: class CDbSyncIncremental : public CDbIncremental sl@0: { sl@0: protected: sl@0: CDbSyncIncremental() {} sl@0: private: sl@0: IMPORT_C void Next(TPckgBuf& aStep,TRequestStatus& aStatus); sl@0: }; sl@0: sl@0: /** sl@0: @internalComponent sl@0: */ sl@0: class CDbAsyncIncremental : public CDbIncremental sl@0: { sl@0: protected: sl@0: CDbAsyncIncremental() {} sl@0: private: sl@0: IMPORT_C TBool NextL(TInt& aStep); sl@0: }; sl@0: sl@0: /** sl@0: @internalComponent sl@0: */ sl@0: class CDbDatabase : public CDbObject sl@0: { sl@0: protected: sl@0: CDbDatabase() {} sl@0: public: sl@0: enum TUtility {EStats=1,ECompact,ERecover}; sl@0: enum TProperty {EUpdateStats=-EStats,ECompactable=-ECompact,EIsDamaged=-ERecover, sl@0: EInTransaction=0,ESize,EUsage}; sl@0: public: sl@0: // Pure virtual sl@0: virtual TInt Destroy()=0; sl@0: virtual TInt Begin()=0; sl@0: virtual TInt Commit()=0; sl@0: virtual void Rollback()=0; sl@0: virtual TInt Property(TProperty aProperty) =0; sl@0: virtual void CreateTableL(const TDesC& aName,const CDbColSet& aColSet,const CDbKey* aPrimaryKey)=0; sl@0: CDbNotifier* NotifierL(); sl@0: CDbIncremental* UtilityL(TUtility aType,TInt& aStep); sl@0: CDbIncremental* DropTableL(const TDesC& aTable,TInt& aStep); sl@0: CDbIncremental* AlterTableL(const TDesC& aTable,const CDbColSet& aNewDef,TInt& aStep); sl@0: CDbIncremental* CreateIndexL(const TDesC& aName,const TDesC& aTable,const CDbKey& aKey,TInt& aStep); sl@0: CDbIncremental* DropIndexL(const TDesC& aName,const TDesC& aTable,TInt& aStep); sl@0: CDbIncremental* ExecuteL(const TDesC& aSql,TDbTextComparison aComparison,TInt& aInit); sl@0: CDbCursor* ViewL(const TDbQuery& aQuery,const TDbWindow& aWindow,RDbRowSet::TAccess anAccess); sl@0: CDbCursor* TableL(const TDesC& aName,RDbRowSet::TAccess anAccess); sl@0: virtual void TablesL(CDbTableNames& aNames)=0; sl@0: virtual void ColumnsL(CDbColSet& aColSet,const TDesC& aName)=0; sl@0: virtual void IndexesL(CDbIndexNames& aNames,const TDesC& aTable)=0; sl@0: virtual void KeysL(CDbKey& aKey,const TDesC& aName,const TDesC& aTable)=0; sl@0: private: sl@0: virtual CDbNotifier* OpenNotifierL() =0; sl@0: virtual CDbIncremental* OpenUtilityL(TUtility aType,TInt& aStep) =0; sl@0: virtual CDbIncremental* OpenDropTableL(const TDesC& aTable,TInt& aStep) =0; sl@0: virtual CDbIncremental* OpenAlterTableL(const TDesC& aTable,const CDbColSet& aNewDef,TInt& aStep) =0; sl@0: virtual CDbIncremental* OpenCreateIndexL(const TDesC& aName,const TDesC& aTable,const CDbKey& aKey,TInt& aStep) =0; sl@0: virtual CDbIncremental* OpenDropIndexL(const TDesC& aName,const TDesC& aTable,TInt& aStep) =0; sl@0: virtual CDbCursor* PrepareViewL(const TDbQuery& aQuery,const TDbWindow& aWindow,RDbRowSet::TAccess anAccess) =0; sl@0: virtual CDbCursor* OpenTableL(const TDesC& aName,RDbRowSet::TAccess anAccess) =0; sl@0: virtual CDbIncremental* OpenExecuteL(const TDesC& aSql,TDbTextComparison aComparison,TInt& aInit) =0; sl@0: // Reserved virtuals sl@0: IMPORT_C virtual void Reserved_1(); sl@0: IMPORT_C virtual void Reserved_2(); sl@0: }; sl@0: sl@0: /** sl@0: @internalComponent sl@0: */ sl@0: class CDbNotifier : public CDbObject sl@0: { sl@0: public: sl@0: enum TType {EUnlock=-1,EChange=-2}; sl@0: protected: sl@0: CDbNotifier() {} sl@0: public: sl@0: // pure virtual sl@0: virtual void Notify(TType aEvent,TRequestStatus& aStatus) =0; sl@0: virtual void Cancel() =0; sl@0: }; sl@0: sl@0: sl@0: /** sl@0: CDbSource class declaration - SYMBIAN_REMOVE_TRIVIAL_ENCRYPTION version sl@0: @internalComponent sl@0: */ sl@0: class CDbSource : public CDbObject sl@0: { sl@0: protected: sl@0: CDbSource() sl@0: { sl@0: } sl@0: public: sl@0: CDbDatabase* OpenL(); sl@0: virtual CDbDatabase* AuthenticateL() = 0; sl@0: CDbNotifier* NotifierL(); sl@0: private: sl@0: virtual CDbNotifier* OpenNotifierL() =0; sl@0: }; sl@0: sl@0: sl@0: /** sl@0: @internalComponent sl@0: */ sl@0: class TDbDriver sl@0: { sl@0: public: sl@0: TInt iCount; sl@0: const TDbFormat* iFormats; sl@0: }; sl@0: sl@0: /** sl@0: @internalComponent sl@0: */ sl@0: class TDbFormat sl@0: { sl@0: public: sl@0: enum TCreate {ECreate,EReplace}; sl@0: enum TOpen {EReadWrite,EReadOnly}; sl@0: typedef CDbDatabase* (*FCreateL)(RFs& aFs, const TDesC& aName, TCreate aMode, sl@0: const TUidType& aType); sl@0: typedef CDbSource* (*FOpenL)(RFs& aFs,const TDesC& aName,TOpen aMode); sl@0: public: sl@0: const TText* iName; sl@0: FCreateL CreateL; sl@0: FOpenL OpenL; sl@0: TInt32 iUid[KMaxCheckedUid]; sl@0: }; sl@0: sl@0: /** sl@0: @internalComponent sl@0: */ sl@0: #define KDbmsDriverUidValue KDbmsDriverUidValue16 sl@0: #define KDbmsDriverUid KDbmsDriverUid16 sl@0: sl@0: /** sl@0: @internalComponent sl@0: */ sl@0: const TInt32 KDbmsDriverUidValue8=0x10000EBC; sl@0: const TUid KDbmsDriverUid8={KDbmsDriverUidValue8}; sl@0: const TInt32 KDbmsDriverUidValue16=0x10003B0F; sl@0: const TUid KDbmsDriverUid16={KDbmsDriverUidValue16}; sl@0: sl@0: #include "D32DBAS.INL" sl@0: #endif