Update contrib.
1 // Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
24 #ifndef ULOGGERCOMMANDS_H_
25 #define ULOGGERCOMMANDS_H_
29 /** Ulogger command line syntax description.
30 ULogger is used to configure and enable/disable logging of trace data on device.
32 SYNOPSIS: ulogger [-rqtvhioH][-edl <config_options>...][-fsSoicbmn]...
35 ULogger groups the commands into execution and configuration commands
36 where options -rqtvhH belong to the former group and -edlbnmfsSoic to the latter.
37 Execution commands: -rqtvhioH, require no other arguments.
38 Configuration commands are further divided into:
39 -edl, these require one of the following options '-fsSoic'
40 to be present, these will fail if too many or missing options are given.
41 -fsSoicbmn, these will apply the arguments depending on provided option -edl.
45 -r Start logging (Run)
46 -q Stop logging (Quit)
47 -t Restart (restarT) while logging, to update configurations
48 -v Verbose mode, will list all results, or silent mode is
49 assumed and only error codes will be returned
51 -o List active output plugin.
52 -i List active input plugin.
54 -? The version of this tool and most usefull commands.
56 Configuration commands:
57 -e <-fsSoicbmn options> ... Enable/set either of option -fsSoicbmn
58 -d <-fsSoic options> ... Disable/delete either of option -fsSoic
59 -l <-fsSoicbmn options> ... List either of option -fsSoicbmn
60 -f [<filter> ...] Enable/disable/list primary filter 0-255
61 -s [<filter> ...] Enable/disable/list secondary filter 0-4294967295
62 -S Enable/disable/list secondary filtering.
63 Enable to filter on secondary filters,
64 Disable to log all traces irrespective of secondary filter.
65 By default filtering is enabled.
66 -o [<filename>] Enable/disable an output plugin, list all output plugins
67 -i [<filename>] Enable/disable an input plugin, list all input plugins
68 -c [<filename> <config> ...] Enable(set)/delete/list plugin configurations.
69 First argument must be the name of the configuration
70 to be changed and any following arguments are treated as values of
71 this configuration. The configuration keyword can not use any white
72 characters (e.g. space or tabulation key).
73 -b [<size> ...] Buffer size, 1-1024 Kb rounded up to nearest page size, 4Kb.
74 -n [<size> ...] Notification size, 0-1024 Kb rounded up to nearest page size, 4Kb.
75 -m [<mode> ...] Buffer mode, 'circular' or 'straight'. Default is straight.
80 _LIT(KCmdEnable, "e");
81 _LIT(KCmdDisable, "d");
83 _LIT(KCmdPrimaryFilter, "f");
84 _LIT(KCmdSecondaryFilter, "s");
85 _LIT(KCmdSecondaryFilterToggle, "S");
86 _LIT(KCmdOutputPlugin, "o");
87 _LIT(KCmdInputPlugin, "i");
88 _LIT(KCmdPluginConfigurations, "c");
89 _LIT(KCmdBuffer, "b");
90 _LIT(KCmdNotification, "n");
91 _LIT(KCmdBufferMode, "m");
92 _LIT(KCmdVerboseMode, "v");
95 _LIT(KCmdRestart, "t");
98 _LIT(KCmdVersion, "?");
99 _LIT(KCmdIndicator, "-");
100 _LIT(KCmdAll, "all");
101 _LIT(KCmdBufferModeCircular, "circular");
102 _LIT(KCmdBufferModeStraight, "straight");
112 ERunAsService, // function not yet implemented in server!
113 EDontRunAsService, // function not yet implemented in server!
119 ERemovePrimaryFilter,
121 EGetSecondaryFilters,
122 ERemoveSecondaryFilter,
123 EGetSecondaryFiltering,
124 EEnableSecondaryFiltering,
125 EDisableSecondaryFiltering,
128 EGetInstalledPlugins,
129 ESetActiveInputPlugin,
130 EGetActiveInputPlugin,
131 EDeactivateInputPlugin,
135 ERemovePluginSettings,
138 ESetDataNotificationSize,
139 EGetDataNotificationSize,
154 TCommandLookup(const TDesC* aMainCommand, const TDesC* aSubCommand, const TCommand aCommand)
155 : iMainCommand(aMainCommand), iSubCommand(aSubCommand), iCommand(aCommand)
159 const TDesC* iMainCommand;
160 const TDesC* iSubCommand;
166 Interface to execute command.
174 virtual TInt DoCommandL(TCommand aCommand, const RArray<TPtrC>& aValues) = 0;
179 This is a utility class to parse command line arguments and to generate accurate event
180 to execute required command.
181 To use this class properly, MCommandImpl interface must be implemented and pointer to it
182 must be passed during object construction.
187 class CCommand : public CBase
190 IMPORT_C static CCommand* NewL(MCommandImpl* aCommandImpl);
191 IMPORT_C static CCommand* NewLC(MCommandImpl* aCommandImpl);
192 IMPORT_C ~CCommand();
193 IMPORT_C void ConstructL();
194 IMPORT_C TInt HandleCommandL(const RArray<TPtrC>& aArgs);
198 CCommand(MCommandImpl* aCommandImpl);
199 TInt PrepareCommandL(RArray<TPtrC>& aArgs);
202 MCommandImpl* iCommandImpl;
204 RArray<TCommandLookup> iCommandsLookup;
207 #endif /*ULOGGERCOMMANDS_H_*/