diff -r 000000000000 -r 7f656887cf89 commands/btrace/btrace.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/commands/btrace/btrace.h Wed Jun 23 15:52:26 2010 +0100 @@ -0,0 +1,60 @@ +// btrace.h +// +// Copyright (c) 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 +// +#include + +#include +#include FSHELL_D32BTRACE_HEADER +#include +#include +#include +#include + +using namespace IoUtils; + +class CCmdBtrace : public CMemoryAccessCommandBase + { +public: + static CCommandBase* NewLC(); + ~CCmdBtrace(); +protected: + CCmdBtrace(); + void ConstructL(); + void DumpL(); + void TestL(); + void ResetL(); + void SetMode(TUint aMode); + void EmptyBuffer(); + void RemovePrimaryFilters(); + void RemoveSecondaryFiltersL(); + const TDesC* ModeText(TUint aMode) const; +protected: // From CCommandBase. + virtual const TDesC& Name() const; + virtual void DoRunL(); + virtual void OptionsL(RCommandOptionList& aOptions); + virtual void ArgumentsL(RCommandArgumentList& aArguments); +protected: + TFileName2 iFileName; + RArray iPrimaryFilters; + RArray iSecondaryFilters; + TUint iMode; + TUint iBufferSize; + TBool iDumpToRdebug; + TBool iFollow; + TUint iThreshold; + TBool iEnableTimestamp2; + TBool iVerbose; + TBool iTest; + TBool iReset; + RBTrace iBtrace; + TUint iTextTraceMode; + TBool iBuildConfig; + };