os/persistentdata/traceservices/tracefw/ulogger/inc/uloggercommands.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
// Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
sl@0
     2
// All rights reserved.
sl@0
     3
// This component and the accompanying materials are made available
sl@0
     4
// under the terms of "Eclipse Public License v1.0"
sl@0
     5
// which accompanies this distribution, and is available
sl@0
     6
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
sl@0
     7
//
sl@0
     8
// Initial Contributors:
sl@0
     9
// Nokia Corporation - initial contribution.
sl@0
    10
//
sl@0
    11
// Contributors:
sl@0
    12
//
sl@0
    13
// Description:
sl@0
    14
// ULogger commands
sl@0
    15
// 
sl@0
    16
//
sl@0
    17
sl@0
    18
/**
sl@0
    19
 @file
sl@0
    20
 @internalTechnology
sl@0
    21
 @prototype
sl@0
    22
*/
sl@0
    23
sl@0
    24
#ifndef ULOGGERCOMMANDS_H_
sl@0
    25
#define ULOGGERCOMMANDS_H_
sl@0
    26
sl@0
    27
#include <e32base.h>
sl@0
    28
sl@0
    29
/** Ulogger command line syntax description.
sl@0
    30
ULogger is used to configure and enable/disable logging of trace data on device.
sl@0
    31
sl@0
    32
SYNOPSIS: ulogger [-rqtvhioH][-edl <config_options>...][-fsSoicbmn]...
sl@0
    33
sl@0
    34
DESCRIPTION:
sl@0
    35
ULogger groups the commands into execution and configuration commands
sl@0
    36
where options -rqtvhH belong to the former group and -edlbnmfsSoic to the latter.
sl@0
    37
Execution commands: -rqtvhioH, require no other arguments.
sl@0
    38
Configuration commands are further divided into:
sl@0
    39
	-edl, these require one of the following options '-fsSoic'
sl@0
    40
	to be present, these will fail if too many or missing options are given.
sl@0
    41
	-fsSoicbmn, these will apply the arguments depending on provided option -edl.
sl@0
    42
	
sl@0
    43
OPTIONS
sl@0
    44
Execution commands:
sl@0
    45
-r                      Start logging (Run)
sl@0
    46
-q                      Stop logging (Quit)
sl@0
    47
-t                      Restart (restarT) while logging, to update configurations
sl@0
    48
-v                      Verbose mode, will list all results, or silent mode is
sl@0
    49
							assumed and only error codes will be returned
sl@0
    50
-h 						List of options.
sl@0
    51
-o						List active output plugin.
sl@0
    52
-i						List active input plugin.
sl@0
    53
-H						This man page.
sl@0
    54
-?						The version of this tool and most usefull commands.
sl@0
    55
sl@0
    56
Configuration commands:
sl@0
    57
-e <-fsSoicbmn options> ...	Enable/set either of option -fsSoicbmn
sl@0
    58
-d <-fsSoic options> ...	Disable/delete either of option -fsSoic
sl@0
    59
-l <-fsSoicbmn options> ...	List either of option -fsSoicbmn
sl@0
    60
-f [<filter> ...]       Enable/disable/list primary filter 0-255
sl@0
    61
-s [<filter> ...]       Enable/disable/list secondary filter 0-4294967295
sl@0
    62
-S 						Enable/disable/list secondary filtering.
sl@0
    63
							Enable to filter on secondary filters,
sl@0
    64
							Disable to log all traces irrespective of secondary filter.
sl@0
    65
							By default filtering is enabled.
sl@0
    66
-o [<filename>]         Enable/disable an output plugin, list all output plugins
sl@0
    67
-i [<filename>]         Enable/disable an input plugin, list all input plugins
sl@0
    68
-c [<filename> <config> ...]       Enable(set)/delete/list plugin configurations.
sl@0
    69
							First argument must be the name of the configuration
sl@0
    70
							to be changed and any following arguments are treated as values of
sl@0
    71
							this configuration. The configuration keyword can not use any white 
sl@0
    72
							characters (e.g. space or tabulation key).
sl@0
    73
-b [<size> ...]         Buffer size, 1-1024 Kb rounded up to nearest page size, 4Kb.
sl@0
    74
-n [<size> ...]         Notification size, 0-1024 Kb rounded up to nearest page size, 4Kb.
sl@0
    75
-m [<mode> ...]         Buffer mode, 'circular' or 'straight'. Default is straight.
sl@0
    76
 */
sl@0
    77
sl@0
    78
sl@0
    79
//ulogger commands
sl@0
    80
_LIT(KCmdEnable,				"e");
sl@0
    81
_LIT(KCmdDisable,				"d");
sl@0
    82
_LIT(KCmdList,					"l");
sl@0
    83
_LIT(KCmdPrimaryFilter,			"f");
sl@0
    84
_LIT(KCmdSecondaryFilter,		"s");
sl@0
    85
_LIT(KCmdSecondaryFilterToggle,	"S");
sl@0
    86
_LIT(KCmdOutputPlugin,		 	"o");
sl@0
    87
_LIT(KCmdInputPlugin,		 	"i");
sl@0
    88
_LIT(KCmdPluginConfigurations, 	"c");
sl@0
    89
_LIT(KCmdBuffer, 				"b");
sl@0
    90
_LIT(KCmdNotification,		 	"n");
sl@0
    91
_LIT(KCmdBufferMode, 			"m");
sl@0
    92
_LIT(KCmdVerboseMode,			"v");
sl@0
    93
_LIT(KCmdStart,					"r");
sl@0
    94
_LIT(KCmdStop,	  				"q");
sl@0
    95
_LIT(KCmdRestart,	  			"t");
sl@0
    96
_LIT(KCmdHelp,		  			"h");
sl@0
    97
_LIT(KCmdMan,					"H");
sl@0
    98
_LIT(KCmdVersion,				"?");
sl@0
    99
_LIT(KCmdIndicator, 			"-");
sl@0
   100
_LIT(KCmdAll,					"all");
sl@0
   101
_LIT(KCmdBufferModeCircular,	"circular");
sl@0
   102
_LIT(KCmdBufferModeStraight,	"straight");
sl@0
   103
sl@0
   104
sl@0
   105
/**
sl@0
   106
@internalTechnology
sl@0
   107
@prototype
sl@0
   108
*/
sl@0
   109
enum TCommand
sl@0
   110
 	{		
sl@0
   111
 	EUnknown = 0,
sl@0
   112
 	ERunAsService,     // function not yet implemented in server!
sl@0
   113
 	EDontRunAsService, // function not yet implemented in server!
sl@0
   114
 	EStart,
sl@0
   115
 	EStop,
sl@0
   116
 	ERestart,
sl@0
   117
 	ESetPrimaryFilter,
sl@0
   118
 	EGetPrimaryFilters,
sl@0
   119
 	ERemovePrimaryFilter,
sl@0
   120
 	ESetSecondaryFilter,
sl@0
   121
 	EGetSecondaryFilters,
sl@0
   122
 	ERemoveSecondaryFilter,
sl@0
   123
 	EGetSecondaryFiltering,
sl@0
   124
 	EEnableSecondaryFiltering,
sl@0
   125
 	EDisableSecondaryFiltering,
sl@0
   126
 	ESetActivePlugin,
sl@0
   127
 	EGetActivePlugin,
sl@0
   128
 	EGetInstalledPlugins,
sl@0
   129
 	ESetActiveInputPlugin,
sl@0
   130
 	EGetActiveInputPlugin,
sl@0
   131
 	EDeactivateInputPlugin,
sl@0
   132
 	EGetInputPlugins,
sl@0
   133
	ESetPluginSettings,
sl@0
   134
	EGetPluginSettings,
sl@0
   135
 	ERemovePluginSettings,
sl@0
   136
 	EResizeTraceBuffer,
sl@0
   137
 	EGetTraceBufferSize,
sl@0
   138
 	ESetDataNotificationSize,
sl@0
   139
 	EGetDataNotificationSize,
sl@0
   140
 	ESetBufferMode,
sl@0
   141
	EGetBufferMode,
sl@0
   142
	EHelp,
sl@0
   143
	EManPage,
sl@0
   144
	EVersion
sl@0
   145
 	};
sl@0
   146
sl@0
   147
/**
sl@0
   148
@internalTechnology
sl@0
   149
@prototype
sl@0
   150
 */
sl@0
   151
class TCommandLookup
sl@0
   152
 {
sl@0
   153
 public:
sl@0
   154
 	TCommandLookup(const TDesC* aMainCommand, const TDesC*	aSubCommand, const TCommand aCommand)
sl@0
   155
 		: iMainCommand(aMainCommand), iSubCommand(aSubCommand), iCommand(aCommand)
sl@0
   156
 		{}
sl@0
   157
 	
sl@0
   158
 	//data
sl@0
   159
 	const TDesC* 	iMainCommand;
sl@0
   160
 	const TDesC*	iSubCommand;
sl@0
   161
 	TCommand 	iCommand;
sl@0
   162
 };
sl@0
   163
sl@0
   164
 
sl@0
   165
/**
sl@0
   166
Interface to execute command. 
sl@0
   167
sl@0
   168
@internalTechnology
sl@0
   169
@prototype
sl@0
   170
 */ 
sl@0
   171
class MCommandImpl
sl@0
   172
	{
sl@0
   173
	public:
sl@0
   174
		virtual TInt DoCommandL(TCommand aCommand, const RArray<TPtrC>& aValues) = 0;
sl@0
   175
	};
sl@0
   176
 
sl@0
   177
 
sl@0
   178
/**
sl@0
   179
This is a utility class to parse command line arguments and to generate accurate event 
sl@0
   180
to execute required command. 
sl@0
   181
To use this class properly, MCommandImpl interface must be implemented and pointer to it 
sl@0
   182
must be passed during object construction.
sl@0
   183
sl@0
   184
@internalTechnology
sl@0
   185
@prototype
sl@0
   186
 */
sl@0
   187
class CCommand : public CBase
sl@0
   188
	{
sl@0
   189
	public:
sl@0
   190
		IMPORT_C static CCommand* NewL(MCommandImpl* aCommandImpl);
sl@0
   191
		IMPORT_C static CCommand* NewLC(MCommandImpl* aCommandImpl);
sl@0
   192
		IMPORT_C ~CCommand();
sl@0
   193
		IMPORT_C void ConstructL();
sl@0
   194
		IMPORT_C TInt HandleCommandL(const RArray<TPtrC>& aArgs);
sl@0
   195
			
sl@0
   196
sl@0
   197
	private:
sl@0
   198
		CCommand(MCommandImpl* aCommandImpl);
sl@0
   199
		TInt PrepareCommandL(RArray<TPtrC>& aArgs);
sl@0
   200
		
sl@0
   201
		//data
sl@0
   202
		MCommandImpl* iCommandImpl;
sl@0
   203
		TBool 		  iVerbose;
sl@0
   204
		RArray<TCommandLookup> iCommandsLookup;
sl@0
   205
	};
sl@0
   206
	
sl@0
   207
#endif /*ULOGGERCOMMANDS_H_*/