mmlibs/mmfw/tsrc/mmfintegrationtest/ACLNT/TestPlayerCaps.h
author hgs
Thu, 07 Oct 2010 22:34:12 +0100
changeset 0 b8ed18f6c07b
permissions -rw-r--r--
2010wk40


// Copyright (c) 2001-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:
// TestPlayerUtils.h
// Header file: Basic  tests.
// 
//

/**
 @file TestPlayerUtils.h
*/

#ifndef TESTPLAYERCAPS_H__
#define TESTPLAYERCAPS_H__


#include "TSI_MMFACLNT.h"

const TInt	KMaxSvrMessageSize = 256;

/**
 * Load and initialise an audio file.
 *
 * @class CTestMmfAclntCaps
 *
 */         
class CTestMmfAclntCaps :  public CTestMmfAclntStep, public MMdaAudioPlayerCallback
	{
private:
	enum InternalState 
		{
		EWaitingForServer=0,
		EInitPlayer,
		EPlaying
		};
		
		
public:
	static CTestMmfAclntCaps* NewL(const TDesC& aTestName, const TDesC& aSectionName, const TDesC& aKeyName);
	static CTestMmfAclntCaps* NewLC(const TDesC& aTestName, const TDesC& aSectionName, const TDesC& aKeyName);
	
	~CTestMmfAclntCaps();
	virtual TVerdict DoTestStepL();

	void CreatePlayer();
	void BeginPlayback();
	// from MMdaAudioPlayerCallback
	virtual void MapcInitComplete(TInt aError, const TTimeIntervalMicroSeconds &aDuration);
	virtual void MapcPlayComplete(TInt aError);
	
	void DoProcess(TInt aError);
	
	class CServerMonitor : public CActive 
		{
	public:
		static CServerMonitor* NewL(CTestMmfAclntCaps* aParent);
		void ConstructL();
		void RunL();
		void DoCancel();
		
		TRequestStatus& ActiveStatus();
	private:
		CServerMonitor(CTestMmfAclntCaps* aParent);
	private:
		CTestMmfAclntCaps* iParent;
		};

private:
	CTestMmfAclntCaps(const TDesC& aTestName, const TDesC& aSectionName, const TDesC& aKeyName);
	
private:
	CMdaAudioPlayerUtility* iPlayer;	
	CServerMonitor* iServerMonitor;
	TVerdict iVerdict;

	TBuf<KNameBufSize> iSectName;		// Section name for retrieving filename
	TBuf<KNameBufSize> iKeyName;		// Key name for retrieving filename
	InternalState iState;
	};
#endif