os/ossrv/syslibsapitest/syslibssvs/ecom/inc/T_ImplementationInformationData.h
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
sl@0
     1
/*
sl@0
     2
* Copyright (c) 2005-2009 Nokia Corporation and/or its subsidiary(-ies).
sl@0
     3
* All rights reserved.
sl@0
     4
* This component and the accompanying materials are made available
sl@0
     5
* under the terms of "Eclipse Public License v1.0"
sl@0
     6
* which accompanies this distribution, and is available
sl@0
     7
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
sl@0
     8
*
sl@0
     9
* Initial Contributors:
sl@0
    10
* Nokia Corporation - initial contribution.
sl@0
    11
*
sl@0
    12
* Contributors:
sl@0
    13
*
sl@0
    14
* Description: 
sl@0
    15
*
sl@0
    16
*/
sl@0
    17
sl@0
    18
sl@0
    19
sl@0
    20
#if (!defined __T_IMPLEMENTATION_INFORMATION_API_DATA_H__)
sl@0
    21
#define __T_IMPLEMENTATION_INFORMATION_API_DATA_H__
sl@0
    22
sl@0
    23
//	User Includes
sl@0
    24
#include "DataWrapperBase.h"
sl@0
    25
sl@0
    26
// Classes to get to protected members
sl@0
    27
sl@0
    28
//	EPOC includes
sl@0
    29
#include <w32std.h>
sl@0
    30
#include <e32std.h>
sl@0
    31
#include <ecom/implementationinformation.h>
sl@0
    32
sl@0
    33
class CT_ImplementationInformationData: public CDataWrapperBase
sl@0
    34
	{
sl@0
    35
public:
sl@0
    36
	/**
sl@0
    37
	* Two phase constructor
sl@0
    38
	*/
sl@0
    39
	static CT_ImplementationInformationData*	NewL();
sl@0
    40
sl@0
    41
	/**
sl@0
    42
	* Destructor
sl@0
    43
	*/
sl@0
    44
	~CT_ImplementationInformationData();
sl@0
    45
sl@0
    46
	/**
sl@0
    47
	 * Process a command read from the ini file
sl@0
    48
	 *
sl@0
    49
	 * @param aCommand			The command to process
sl@0
    50
	 * @param aSection			The section in the ini containing data for the command
sl@0
    51
	 * @param aAsyncErrorIndex	Command index for async calls to return errors to
sl@0
    52
	 *
sl@0
    53
	 * @return ETrue if the command is processed
sl@0
    54
	 *
sl@0
    55
	 * @leave					System wide error
sl@0
    56
	 */
sl@0
    57
	virtual TBool	DoCommandL(const TTEFFunction& aCommand, const TTEFSectionName& aSection, const TInt aAsyncErrorIndex);
sl@0
    58
sl@0
    59
	/**
sl@0
    60
	 * @return	Pointer to the object that the data wraps
sl@0
    61
	 */
sl@0
    62
	inline virtual TAny*	GetObject() 
sl@0
    63
		{
sl@0
    64
		return iImplementationInformation;
sl@0
    65
		};
sl@0
    66
sl@0
    67
	/**
sl@0
    68
	 * Set the object that the data wraps
sl@0
    69
	 *
sl@0
    70
	 * @param	aObject object that the wrapper is testing
sl@0
    71
	 *
sl@0
    72
	 * @leave	KErrNotSupported if the the function is not supported
sl@0
    73
	 */
sl@0
    74
	virtual inline void	SetObjectL(TAny* aObject)
sl@0
    75
		{
sl@0
    76
		iImplementationInformation=static_cast<CImplementationInformation*>(aObject);
sl@0
    77
		};
sl@0
    78
sl@0
    79
protected:
sl@0
    80
	/**
sl@0
    81
	 * Public constructor. First phase construction
sl@0
    82
	 */
sl@0
    83
	CT_ImplementationInformationData();
sl@0
    84
sl@0
    85
	/**
sl@0
    86
	* Second phase construction
sl@0
    87
	*/
sl@0
    88
	void	ConstructL();
sl@0
    89
sl@0
    90
private:
sl@0
    91
	inline void	DoCmdDestroy();
sl@0
    92
	inline void	DoCmdDisplayName(const TDesC& aSection);
sl@0
    93
	inline void	DoCmdDataType(const TDesC& aSection);
sl@0
    94
	inline void	DoCmdOpaqueData(const TDesC& aSection);
sl@0
    95
	inline void	DoCmdImplementationUid(const TDesC& aSection);
sl@0
    96
	inline void	DoCmdVersion(const TDesC& aSection);
sl@0
    97
	inline void	DoCmdDisabled(const TDesC& aSection);
sl@0
    98
	inline void	DoCmdSetDisabled(const TDesC& aSection);
sl@0
    99
	inline void	DoCmdDrive(const TDesC& aSection);
sl@0
   100
	inline void	DoCmdRomOnly(const TDesC& aSection);
sl@0
   101
	inline void	DoCmdRomBased(const TDesC& aSection);
sl@0
   102
sl@0
   103
	TBool	GetUid(const TDesC& aSection, TUid& aUid);
sl@0
   104
	TBool	GetExpectedString(const TDesC& aSection, TPtrC& aDataType);
sl@0
   105
	TBool	GetExpectedResult(const TDesC& aSection, TInt& aExpectedResult);
sl@0
   106
	TBool	GetExpectedHexResult(const TDesC& aSection, TInt& aExpectedResult);
sl@0
   107
	TBool	GetDisabled(const TDesC& aSection, TBool& aDisabled);
sl@0
   108
	TBool	GetExpectedBool(const TDesC& aSection, TBool& aBool);
sl@0
   109
	TBool	GetArrayElement(const TDesC& aSection, TInt& aArrayElement);
sl@0
   110
sl@0
   111
	//	Helper methods
sl@0
   112
	void	DestroyData();
sl@0
   113
sl@0
   114
private:
sl@0
   115
    CImplementationInformation*		iImplementationInformation;
sl@0
   116
	};
sl@0
   117
sl@0
   118
#endif /* __T_IMPLEMENTATION_INFORMATION_API_DATA_H__ */