commands/play/play.h
author Joe Branton <joe.branton@accenture.com>
Thu, 29 Jul 2010 12:02:58 +1000
changeset 14 4ab8c027df23
parent 0 7f656887cf89
permissions -rw-r--r--
Fixed a defect in iosrv.exe that caused a panic if a foreground read object was attached to a different end point. This was due to the read object being notified of a change in foreground before its iEndPoint member was updated. This member is now updated before attempting the attach, and is set to NULL in the event of a leave (resulting in the read object being left in an unattached state). Also tweaked ymodem.cif to make it more readable.

// play.h
// 
// Copyright (c) 2005 - 2010 Accenture. All rights reserved.
// This component and the accompanying materials are made available
// under the terms of the "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:
// Accenture - Initial contribution
//

#ifndef __PLAY_H__
#define __PLAY_H__

#include <fshell/ioutils.h>
#include <MdaAudioSampleEditor.h>

using namespace IoUtils;

class CMmfPlayer;

class CCmdPlay	: public CCommandBase
	{
public:
	static CCommandBase* NewLC();
	~CCmdPlay();
private: // From CCommandBase.
	virtual const TDesC& Name() const;
	virtual void DoRunL();
	virtual void OptionsL(RCommandOptionList& aOptions);
	virtual void ArgumentsL(RCommandArgumentList& aArguments);
private:
	CCmdPlay();
	void ConstructL();
private:
	CMmfPlayer* iPlayer;
	TFileName2 iFile;
	TInt iPriority;
	TInt iPreference;
	TInt iVolume;
	TBool iVerbose;
	TBool iMaxVolume;
	};


class CConsoleKeystrokeNotifier;

class CMmfPlayer : public CActive, public MMdaObjectStateChangeObserver
	{
public:
	static CMmfPlayer* NewL(RIoConsoleWriteHandle& aStdOut);
	virtual ~CMmfPlayer();
	
	TInt GetMaxVolume();
	TInt Error();
	
	void GetReady(const TDesC& aFileName, TBool aVerbose);
	void SetPriority(TInt aPriority, TInt iPreference);
	void SetVolume(TInt aVolume);
	
	virtual void RunL();
	virtual TInt RunError(TInt aError);
	virtual void DoCancel();
	
	virtual void MoscoStateChangeEvent(CBase *aObject, TInt aPreviousState, TInt aCurrentState, TInt aErrorCode);
	
	void KeyStroke(TKeyCode aCode);
private:
	CMmfPlayer(RIoConsoleWriteHandle& aStdOut);
	void ConstructL();
	void Message(TRefByValue<const TDesC> aFmt, ...);
	void ProcessL();
	void Error(TInt aError);
	void Stop();
private:
	RIoConsoleWriteHandle& iStdOut;
	TBuf<0x200> iMsgBuf;
	
	const TDesC* iFileName;
	
	enum TState
		{
		EInitial,
		EOpening,
		EPlaying,
		};
	TState iState;
	
	CMdaAudioRecorderUtility* iUtil;
	TInt iVolume;
	TBool iVerbose;
	TInt iError;
	};

class TTruncateOverflow : public TDes16Overflow
	{
	virtual void Overflow(TDes16& /*aDes*/) {};
	};
	
#endif // __PLAY_H__