diff -r 000000000000 -r dd21522fd290 web_plat/recent_url_store_api/inc/RecentUrlStore.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/web_plat/recent_url_store_api/inc/RecentUrlStore.h Mon Mar 30 12:54:55 2009 +0300 @@ -0,0 +1,137 @@ +/* +* Copyright (c) 2006 Nokia Corporation and/or its subsidiary(-ies). +* All rights reserved. +* This component and the accompanying materials are made available +* under the terms of the License "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: +* Header file of RecentUrlStore.cpp +* +* +*/ + + +// INCLUDE FILES + + +#ifndef RECENTURLSTORE_H +#define RECENTURLSTORE_H + +// INCLUDES +#include +#include +#include +#include + +// CONSTANTS + +#define KMaxSQLLength (4096)// must handle name length + value length + insert statement length + +// MACROS + +// DATA TYPES + +// FUNCTION PROTOTYPES + +// FORWARD DECLARATIONS + +// CLASS DECLARATION + + +/** +* CRecentUrlStore +* +* \b Library: ?library +* +* @since ?Series60_version +*/ +class CRecentUrlStore : public CBase + { + + public: + + /** + * Two-phased constructor. + * @return CRecentUrlStore * + */ + IMPORT_C static CRecentUrlStore* NewL(); + + /** + * Returns url list. + */ + IMPORT_C TInt GetData (CDesCArray& aUrls, CDesCArray& aTitles, const TDesC& aUrl = KNullDesC); + + /** + * DeleteData + * Deletes a row from the database + */ + IMPORT_C void DeleteData (const TDesC& aUrl); + + /** + * Save the url and title in store. + */ + IMPORT_C void SaveData (const TDesC& aUrl, const TDesC& aTitle); + + /** + * Clear the saved data + */ + IMPORT_C void ClearData (); + + /** + * Destructor + */ + ~CRecentUrlStore(); + + private: + + /** + * By default Symbian 2nd phase constructor is private. + */ + void ConstructL(); + + /** + * Default constructor + */ + CRecentUrlStore(); + + /** + * Returns url list. + */ + void GetDataL (RDbNamedDatabase& aDataBase, + CDesCArray& aUrls, CDesCArray& aTitles, const TDesC& aUrl); + + /** + * Delete old rows + */ + void DeleteOldRowsL (RDbNamedDatabase& aDataBase); + + /** + * Open the database + */ + TInt OpenDatabase(RDbNamedDatabase& aDataBase); + + /** + * Create the database + */ + void CreateDatabaseL(); + + /* Private Members */ + + private : + + RFs iDbSession; ///< client side access + TBuf iSQLStatement; + HBufC* iRecentUrlDBFile; + TBool iFirstTimeOpened; + }; + +#endif // RECENTURLSTORE_H + +// End of File