diff -r 000000000000 -r 4e1aa6a622a0 sysstatemgmt/systemstatemgr/cmd/inc/cmdpublishswp.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/sysstatemgmt/systemstatemgr/cmd/inc/cmdpublishswp.h Tue Feb 02 00:53:00 2010 +0200 @@ -0,0 +1,76 @@ +// Copyright (c) 2007-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: +// + +#ifndef __CMDPUBLISHSWP_H__ +#define __CMDPUBLISHSWP_H__ + +#include "ssmdeferrablecommand.h" +#include + +class TSsmCommandParameters; +class RReadStream; + +/** +Built-in command for publishing a system-wide property +@internalComponent +@released +@see TSsmSwp +*/ +NONSHARABLE_CLASS (CCmdPublishSwp) : public CSsmDeferrableCommand + { +public: + static CCmdPublishSwp* NewL(RReadStream& aReadStream); + static CCmdPublishSwp* NewL(TCmdErrorSeverity aSeverity, TSsmExecutionBehaviour aExecutionBehaviour, const TSsmSwp& aSwp); +#ifdef SYMBIAN_SSM_FLEXIBLE_MERGE + static CCmdPublishSwp* NewL(TCmdErrorSeverity aSeverity, TSsmExecutionBehaviour aExecutionBehaviour, const TSsmSwp& aSwp, const TUint16 aPriority); +#endif + static CCmdPublishSwp* NewL(TSsmCommandParameters& aCommandParameters); + //Must be used only by CLE to reconstruct the command + static CCmdPublishSwp* NewLC(const CCmdPublishSwp& aCmdPublishSwp); + ~CCmdPublishSwp(); + + // from MSsmCommand + TSsmCommandType Type() const; + void ExternalizeL(RWriteStream& aWriteStream) const; + void Execute(TRequestStatus& aStatus); + void ExecuteCancel(); + void Release(); + inline TSsmSwp SsmSwpInfo() const {return iSwpInfo;} + +protected: + // from CActive + void RunL(); + void DoCancel(); + TInt RunError(TInt aError); + +private: + CCmdPublishSwp(); + CCmdPublishSwp(TCmdErrorSeverity aSeverity, TSsmExecutionBehaviour aExecutionBehaviour, const TSsmSwp& aSwpInfo); +#ifdef SYMBIAN_SSM_FLEXIBLE_MERGE + CCmdPublishSwp(TCmdErrorSeverity aSeverity, TSsmExecutionBehaviour aExecutionBehaviour, const TSsmSwp& aSwpInfo, const TUint16 aPriority); +#endif + + void InternalizeL(RReadStream& aReadStream); + void ConstructL(TSsmCommandParameters& aCommandParameters); + void ConstructL(RReadStream& aReadStream); + void ConstructL(const CCmdPublishSwp& aCmdPublishSwp); + void ConstructL(); + static TInt MaxSupportedVersion(); + +private: + TSsmSwp iSwpInfo; // property info + }; + +#endif // __CMDPUBLISHSWP_H__