diff -r 0aa8cc770c8a -r 4a793f564d72 connectivitymodules/SeCon/services/csc/inc/capinfo.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/connectivitymodules/SeCon/services/csc/inc/capinfo.h Wed Sep 01 12:20:56 2010 +0100 @@ -0,0 +1,94 @@ +/* +* Copyright (c) 2002-2009 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: Capability service controller +* +*/ + + +#ifndef _CAPINFO_H_ +#define _CAPINFO_H_ + +#include +#include + +#include "caputils.h" + +// +// CCapInfo creates capability document +// +// + +class CCapList; +class CStringList; +class TSConSolutionInfo; +class CSconVersionInfo; + +NONSHARABLE_CLASS( CCapInfo ) : public CBase +{ +public: + static CCapInfo* NewL(); + ~CCapInfo(); +private: + CCapInfo(); + void ConstructL(); + +public: + void CapabilityDocumentL( CBufFlat* aBuf ); + +private: + CCapList* CapList(); + void SetCapabilityBuf( CBufFlat* aBuf ); + + void GeneralInfoL(); + void MemoryInfoL(); + void WriteMemoryInfoL( TMemoryInfo& aInfo ); + void ServiceInfoL( const TDesC& aDir, const RArray& aExcludeList, + RArray& aFilesAdded ); + void FolderServiceL(); + + void SyncSolutionsServiceL(); + void WriteSyncSolutionsServiceL( const TSConSolutionInfo& aCalendar, + const TSConSolutionInfo& aContact, + const TSConSolutionInfo& aSms, + const TSConSolutionInfo& aBookmark ); + void WriteSolutionTagL( const TDesC& aContentName, const TSConSolutionInfo& aSolution ); + + void WriteFolderL( const TDesC& aType, const TDesC& aFullName, const TDesC& aMemory ); + + void WriteValueL( TInt aId, const TDesC& aValue ); + void WriteBigValueL( TInt aId, const TDesC& aValue ); + void WriteValueL( TInt aId, TInt64 aValue ); + void WriteTagL( TInt aId, TInt aType ); + void WriteAttributeL( TInt aId, const TDesC& aVersion, const TDesC& aDate ); + void WriteL( const TDesC& aText ); + + void WriteFromListL( CStringList* aList ); + void WriteNewLineL(); + + void FormatElement( TDes& aText ); + void AddFormatText( TDes& aText, TInt aNum ) const; + +private: + RFs iFsSession; // has + CCapList* iCapList; // has + HBufC8* iHeapBuf; // has + TBuf iBuf; + TIdStack iIdStack; + + CBufFlat* iCapabilityBuf; // uses + CSconVersionInfo* iSconInfo; +}; + +#endif // CCapability +