omads/omadsextensions/adapters/notes/inc/NSmlNotepadDataProvider.h
branchRCL_3
changeset 25 4f0867e42d62
parent 24 8e7494275d3a
child 26 3e6957da2ff8
--- a/omads/omadsextensions/adapters/notes/inc/NSmlNotepadDataProvider.h	Tue Aug 31 15:05:37 2010 +0300
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,170 +0,0 @@
-/*
-* Copyright (c) 2005 Nokia Corporation and/or its subsidiary(-ies).
-* All rights reserved.
-* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
-* which accompanies this distribution, and is available
-* at the URL "http://www.eclipse.org/legal/epl-v10.html".
-*
-* Initial Contributors:
-* Nokia Corporation - initial contribution.
-*
-* Contributors:
-*
-* Description:  DS notepad dataprovider.
-*
-*/
-
-
-#ifndef __NSMLNOTEPADDATAPROVIDER_H__
-#define __NSMLNOTEPADDATAPROVIDER_H__
-
-
-//FORWARD DECLARATION
-class CNSmlNotepadDataStore;
-
-
-// CLASS DECLARATION
-
-// ------------------------------------------------------------------------------------------------
-//  CNSmlNotepadDataProvider
-//
-//  @lib nsmlnotepaddataprovider.lib
-// ------------------------------------------------------------------------------------------------
-class CNSmlNotepadDataProvider : public CSmlDataProvider 
-	{
-	public:
-		/**
-		* Two-phased constructor.
-		*/
-		static CNSmlNotepadDataProvider* NewL();
-
-		/**
-		* Destructor.
-		*/
-		virtual ~CNSmlNotepadDataProvider();
-
-	private:
-		/**
-		* Two-phased constructor.
-		*/
-		static CNSmlNotepadDataProvider* NewLC();
-		
-		/**
-		* C++ constructor.
-		*/
-		CNSmlNotepadDataProvider();
-
-		/**
-		* 2nd phase constructor.
-		*/
-		void ConstructL();
-
-		/**
-		* This method handles framework events.
-		* @param					Frameworks event.
-		* @param	aParam1			First parameter.
-		* @param	aParam2			Second parameter.
-		*/
-		void DoOnFrameworkEvent(TSmlFrameworkEvent, 
-								TInt aParam1, 
-								TInt aParam2);
-
-		/**
-		* Check if operation is supported by dataprovider.
-		* @param	aOpId			Operations type.
-		* @return	ETrue if the operation is supported.
-		*/
-		TBool DoSupportsOperation(TUid aOpId) const;
-
-		/**
-		* Gets dataproviders own StoreFormat.
-		*/
-		const CSmlDataStoreFormat& DoStoreFormatL();
-
-		/**
-		* Lists all notepad databases on client.
-		* @return List of notepad databases.
-		*/
-		CDesCArray* DoListStoresLC();
-
-		/**
-		* Gets default storename on client.
-		* @return Default storename.
-		*/
-		const TDesC& DoDefaultStoreL();
-
-		/**
-		* Constructs new instance of datastore.
-		* @return Newly created instance.
-		*/
-		CSmlDataStore* DoNewStoreInstanceLC();
-
-		/**
-		This method returns the set of filters that can be used to send to the SyncML server.
-		* @return New filters.
-		*/
-		const RPointerArray<CSyncMLFilter>& DoSupportedServerFiltersL();
-		
-		/**
-		This method checks what filters are supported by server.
-		@param	aServerDataStoreFormat	The store format of server
-		@param	aFilters				The array that includes filters
-		@param	aChangeInfo				The change information about changes that data provider did
-		*/
-		void DoCheckSupportedServerFiltersL(const CSmlDataStoreFormat& aServerDataStoreFormat, 
-											RPointerArray<CSyncMLFilter>& aFilters, 
-											TSyncMLFilterChangeInfo& aChangeInfo);
-		
-		/**
-		This method updates dynamic filters up-to-date.
-		@param	aFilters				The array that includes filters
-		@param	aChangeInfo				The change information about changes that data provider did
-		*/
-		void DoCheckServerFiltersL(RPointerArray<CSyncMLFilter>& aFilters, 
-									TSyncMLFilterChangeInfo& aChangeInfo);
-		
-		/**
-		This method generates a record filter query to be sent to the SyncML server for the provided filters.
-		@param	aFilters			The filters to be used for the query generation
-		@param	aMatch				The filter match type to be used
-		@param	aFilterMimeType		The mime type of the returned filter query
-		@param	TSyncMLFilterType 	The filter type of the returned filter query
-		@param	aStoreName			The name of used store
-		@return						The record filter query to be sent to the SyncML server - empty if no record filter involved
-									for this specific filter
-		*/
-		HBufC* DoGenerateRecordFilterQueryLC(const RPointerArray<CSyncMLFilter>& aFilters, 
-												TSyncMLFilterMatchType aMatch, 
-												TDes& aFilterMimeType, 
-												TSyncMLFilterType& aFilterType, 
-												TDesC& aStoreName);
-		
-		/**
-		This method generates a field filter query to be sent to the SyncML server for the provided filters.
-		@param	aFilters		The filters to be used for the query generation
-		@param	aFilterMimeType		The mime type of the returned filter query
-		@param	aProperties		The field filter query to be sent to the SyncML server - empty if no field filter involved
-								for this specific filter
-		@param  aStoreName		The name of used store
-		*/
-		void DoGenerateFieldFilterQueryL(const RPointerArray<CSyncMLFilter>& aFilters, 
-										TDes& aFilterMimeType, 
-										RPointerArray<CSmlDataProperty>& aProperties, 
-										TDesC& aStoreName);
-
-		
-
-	private: // data
-		CNSmlNotepadDataStore* iNotepadDataStore; 
-		RPointerArray<CSyncMLFilter> iFilterArray;
-		RFs iRfs;
-		RStringPool iStringPool;
-		CSmlDataStoreFormat* iStoreFormat;
-
-	
-	};
-	
-#endif // __NSMLNOTEPADDATAPROVIDER_H__
-
-// End of File