os/persistentdata/traceservices/tracefw/ulogger/inc/uloggerclient.h
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/persistentdata/traceservices/tracefw/ulogger/inc/uloggerclient.h	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,446 @@
     1.4 +// Copyright (c) 2006-2009 Nokia Corporation and/or its subsidiary(-ies).
     1.5 +// All rights reserved.
     1.6 +// This component and the accompanying materials are made available
     1.7 +// under the terms of "Eclipse Public License v1.0"
     1.8 +// which accompanies this distribution, and is available
     1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
    1.10 +//
    1.11 +// Initial Contributors:
    1.12 +// Nokia Corporation - initial contribution.
    1.13 +//
    1.14 +// Contributors:
    1.15 +//
    1.16 +// Description:
    1.17 +// ULogger Client API header
    1.18 +// 
    1.19 +//
    1.20 +
    1.21 +/**
    1.22 + @file
    1.23 + @publishedPartner
    1.24 + @prototype
    1.25 +*/
    1.26 +
    1.27 +#ifndef ULOGGERCLIENT_H
    1.28 +#define ULOGGERCLIENT_H
    1.29 +
    1.30 +#include <e32std.h> // RSessionBase
    1.31 +#include <e32base.h>
    1.32 +#include "uloggerdatatypes.h"
    1.33 +
    1.34 +namespace Ulogger
    1.35 +{
    1.36 +
    1.37 +/**
    1.38 +Client-side session to the ULogger server.
    1.39 +This class should be used to configure ULogger server.
    1.40 +*/
    1.41 +class RULogger : public RSessionBase
    1.42 +	{	
    1.43 +
    1.44 +public:
    1.45 +	/*
    1.46 +	Default constructor.
    1.47 +	*/
    1.48 +	IMPORT_C RULogger();
    1.49 +
    1.50 +	/*
    1.51 +	Default destructor.
    1.52 +	Closes the client session.
    1.53 +	*/
    1.54 +	IMPORT_C ~RULogger();
    1.55 +
    1.56 +	/**
    1.57 +	Connects a client to the ULogger server.
    1.58 +	If the server isn't already running it will be started.
    1.59 +	To end the server session, use Close().
    1.60 +
    1.61 +	@return KErrNone, if successful, otherwise one of the other system-wide
    1.62 +	        error codes returned by RProcess:Create() or
    1.63 +	        RSessionBase::CreateSession().
    1.64 +	*/
    1.65 +	IMPORT_C TInt Connect();
    1.66 +
    1.67 +	/**
    1.68 +	Not yet supported, does nothing and returns KErrNotSupported.
    1.69 +
    1.70 +	Starts/stops running ULogger as a service. Running ULogger as a service
    1.71 +	means that ULogger is always active in the background, which is necessary
    1.72 +	if the objective is to connect to ULogger from a remote machine, so that 
    1.73 +	ULogger is then listening for remote connections.
    1.74 +	If ULogger is not running as a service, it is only active when it is
    1.75 +	handling a client request or it is currenty logging traces (i.e. the Start()
    1.76 +	function was called).
    1.77 +
    1.78 +	@param aRunAsService The flag to indicate whether the server should run as a
    1.79 +	                     service or not
    1.80 +	@return KErrNotSupported, as this function is not yet implemented in the server.
    1.81 +	*/
    1.82 +	IMPORT_C TInt RunAsService(TBool aRunAsService);
    1.83 +
    1.84 +	/**
    1.85 +	Starts outputting trace packets.
    1.86 +	Pre-requisite: This will only output trace packets containing filter identifers that 
    1.87 +	match enabled filters. Use SetPrimaryFiltersEnabled(), SetSecondaryFiltersEnabled() and
    1.88 +	SetSecondaryFilteringEnabled() to enable the relevant filters.
    1.89 +
    1.90 +	@return KErrNone, if sending the Start message to the server was successful;
    1.91 +			KErrCorrupt, if the ULogger configuration file is corrupt;
    1.92 +	        KErrServerTerminated, if the server is no longer present;
    1.93 +	        KErrServerBusy, if there are no message slots available;
    1.94 +	        KErrNoMemory, if there is insufficient memory available;
    1.95 +	        KErrInUse, if server was started previously;
    1.96 +	        otherwise one of the other system-wide error codes.
    1.97 +	*/	
    1.98 +	IMPORT_C TInt Start();
    1.99 +
   1.100 +	/**
   1.101 +	Stops outputting trace packets. 
   1.102 +
   1.103 +	@return KErrNone, if sending the Stop message to the server was successful;
   1.104 +	        KErrServerTerminated, if the server is no longer present;
   1.105 +	        KErrServerBusy, if there are no message slots available;
   1.106 +	        KErrNoMemory, if there is insufficient memory available;
   1.107 +	        KErrNotReady, if ULogger wasn't started previously.
   1.108 +	*/
   1.109 +	IMPORT_C TInt Stop();
   1.110 +
   1.111 +	/**
   1.112 +	Restarts server.
   1.113 +
   1.114 +	@return KErrNone, if sending the Restart message to the server was successful;
   1.115 +			KErrCorrupt, if the ULogger configuration file is corrupt;
   1.116 +	        KErrServerTerminated, if the server is no longer present;
   1.117 +	        KErrServerBusy, if there are no message slots available;
   1.118 +	        KErrNoMemory, if there is insufficient memory available;
   1.119 +	        otherwise one of the other system-wide error codes.
   1.120 +	*/
   1.121 +	IMPORT_C TInt Restart();
   1.122 +
   1.123 +	/**
   1.124 +	Enables/disables the specified primary filters.
   1.125 +	This allows output of trace packets containing primary filter identifiers that match the
   1.126 +	enabled primary filters.
   1.127 +	Note: If a trace packet contains a secondary filter identifier, and secondary filtering is
   1.128 +	enabled, the matching secondary filter must also be enabled to allow this packet to be output.
   1.129 +
   1.130 +	@param	aFilters	The primary filters to enable/disable
   1.131 +	@param	aEnabled    The boolean to specify the action. ETrue to enable and EFalse to disable.
   1.132 +	@return	KErrNone, if sending the SetPrimaryFiltersEnabled message to the
   1.133 +	                  server was successful;
   1.134 +	        KErrArgument, if the specified array of filters contains more than 
   1.135 +	                      KMaxPrimaryFiltersLimit elements or the array is empty;
   1.136 +	        KErrCorrupt, if the ULogger configuration file is corrupt;
   1.137 +            otherwise one of the other system-wide error codes.
   1.138 +	*/
   1.139 +	IMPORT_C TInt SetPrimaryFiltersEnabled(const CArrayFixFlat<TUint8>& aFilters, TBool aEnabled);
   1.140 +
   1.141 +	/**
   1.142 +	Gets all enabled primary filters.
   1.143 +
   1.144 +	@param	aFilters 	The array to be populated with enabled filters
   1.145 +	@return	KErrNone, if sending the PrimaryFiltersEnabled message to the
   1.146 +	                  server was successful;
   1.147 +	        KErrCorrupt, if the ULogger configuration file is corrupt;
   1.148 +	        otherwise one of the other system-wide error codes.
   1.149 +	*/
   1.150 +	IMPORT_C TInt GetPrimaryFiltersEnabled(CArrayFixFlat<TUint8>& aFilters);
   1.151 +
   1.152 +	/**
   1.153 +	Enables/disables the specified secondary filters.
   1.154 +	This allows output of trace packets containing secondary filter identifiers that match the 
   1.155 +	enabled secondary filters.
   1.156 +	Note1: Secondary filters are only relevant when secondary filtering is
   1.157 +	       enabled (see SetSecondaryFilteringEnabled()). If secondary filtering
   1.158 +	       is disabled, trace packets are logged regardless of any secondary filter identifiers. 
   1.159 +	Note2: Enabling secondary filters will automatically enable secondary filtering.
   1.160 +	Note3: Primary filtering is always enabled and therefore there is no
   1.161 +	       equivalent method for enabling/disabling primary filtering.
   1.162 +
   1.163 +	@param	aFilters 	The secondary filters to enable/disable
   1.164 +	@param	aEnabled 	The boolean to specify the action. ETrue to enable and EFalse to disable.
   1.165 +	@return	KErrNone, if sending the SetSecondaryFiltersEnabled message to the
   1.166 +	                  server was successful;
   1.167 +	        KErrArgument, if the specified array of filters contains more than 
   1.168 +	                      KMaxSecondaryFiltersLimit elements, the array is empty or 
   1.169 +	                      number of currently set filters plus number of elements in aFilters array
   1.170 +	                      is greather than KMaxSecondaryFiltersLimit;
   1.171 +	        KErrCorrupt, if the ULogger configuration file is corrupt;	                      
   1.172 +            otherwise one of the other system-wide error codes.
   1.173 +	*/
   1.174 +	IMPORT_C TInt SetSecondaryFiltersEnabled(const RArray<TUint32>& aFilters, TBool aEnabled);
   1.175 +
   1.176 +	/**
   1.177 +	Gets all enabled secondary filters.
   1.178 +
   1.179 +	@param	aFilters 	The array to be populated with enabled filters
   1.180 +	@return	KErrNone, if sending the SecondaryFiltersEnabled message to the
   1.181 +	                  server was successful;
   1.182 +	        KErrNoMemory, if there is insufficient memory available;
   1.183 +			KErrCorrupt, if the ULogger configuration file is corrupt;
   1.184 +	        otherwise one of the other system-wide error codes.
   1.185 +	*/
   1.186 +	IMPORT_C TInt GetSecondaryFiltersEnabled(RArray<TUint32>& aFilters);
   1.187 +
   1.188 +	/**
   1.189 +	Enables/disables filtering on secondary filters.
   1.190 +	When secondary filtering is enabled, only those trace packets containing a 
   1.191 +	secondary filter identifier matching an enabled secondary filter are output
   1.192 +	(see SetSecondaryFiltersEnabled()). Note that trace packets must also contain 
   1.193 +	a primary filter identifier matching an enabled primary filter in order to be output
   1.194 +	(see SetPrimaryFilterEnabled()).
   1.195 +
   1.196 +	@param	aEnabled     The boolean to specify the action. ETrue to enable and EFalse to disable.
   1.197 +	@return KErrNone, if sending the SetSecondaryFilteringEnabled message to the
   1.198 +	                  server was successful;
   1.199 +	       	KErrCorrupt, if the ULogger configuration file is corrupt; 
   1.200 +	        otherwise one of the other system-wide error codes.
   1.201 +	*/
   1.202 +	IMPORT_C TInt SetSecondaryFilteringEnabled(TBool aEnabled);
   1.203 +
   1.204 +	/**
   1.205 +	Gets secondary filtering enabled value.
   1.206 +
   1.207 +	@param	aEnabled 	The boolean to be populated with the secondary filtering enabled value
   1.208 +	@return	KErrNone, if sending the SecondaryFilteringEnabled message to the
   1.209 +	                  server was successful;
   1.210 +	        otherwise one of the other system-wide error codes.
   1.211 +	*/
   1.212 +	IMPORT_C TInt GetSecondaryFilteringEnabled(TBool& aEnabled);
   1.213 +
   1.214 +	/**
   1.215 +	Sets which output plug-in is to be used for outputting trace packets. 
   1.216 +	The plug-in that is passed to this method needs to be one of the
   1.217 +	plug-ins reported by InstalledOutputPlugins();
   1.218 +
   1.219 +	@param	aPluginName The name of the plug-in to be used, needs to be one of
   1.220 +	                    the names returned by InstalledOutputPlugins()
   1.221 +	@return	KErrNone, if sending the SetActiveOutputPlugin message to the server
   1.222 +	                  was successful;
   1.223 +	        KErrAlreadyExists, if aPluginName value was previously set;
   1.224 +	        KErrNotFound, if aPluginName does not match the name of an existing Ulogger output plug-in;
   1.225 +	        KErrNoMemory, if there is insufficient memory available;
   1.226 +	        KErrArgument, if passed descriptor is empty;
   1.227 +	        otherwise one of the other system-wide error codes.
   1.228 +	*/
   1.229 +	IMPORT_C TInt ActivateOutputPlugin(const TDesC8& aPluginName);
   1.230 +
   1.231 +	/**
   1.232 +	Gets the active output plug-in.
   1.233 +
   1.234 +	@param	aPluginName	The 8-bit descriptor to be populated with the name of
   1.235 +	                    the active output plug-in (max length: KMaxPath).
   1.236 +	@return	KErrNone, if sending the ActiveOutputPlugin message to the
   1.237 +	                  server was successful;
   1.238 +	        KErrOverflow, if the passed-in descriptor is smaller than the length
   1.239 +	                      of the plug-in name;
   1.240 +	        KErrNotFound, if no output plug-in has been set;
   1.241 +	        otherwise one of the other system-wide error codes.
   1.242 +	*/
   1.243 +	IMPORT_C TInt GetActiveOutputPlugin(TDes8& aPluginName);
   1.244 +
   1.245 +	/**
   1.246 +	Gets all the installed output plug-ins. 
   1.247 +
   1.248 +	@param	aPluginNames The array to be populated with the installed plug-in filename and plug-in names.
   1.249 +	@return	KErrNone, if sending the InstalledOutputPlugins message to the
   1.250 +	                  server was successful;
   1.251 +	        KErrNoMemory, if there is insufficient memory available;
   1.252 +	        otherwise one of the other system-wide error codes.
   1.253 +	*/
   1.254 +	IMPORT_C TInt GetInstalledOutputPlugins(CArrayPtrFlat<HBufC8>& aPluginNames);
   1.255 +
   1.256 +	/**
   1.257 +	Sets which input plug-in is to be used for sending messages to ULogger from a
   1.258 +	remote machine. This is only relevant for the remote control functionality
   1.259 +	of ULogger, which allows a remote machine to control the operation of
   1.260 +	ULogger, instead of a client on the device using RULogger.
   1.261 +	The plug-in that is passed to this method needs to be one of the
   1.262 +	plug-ins reported by GetInstalledInputPlugins.
   1.263 +
   1.264 +	@param	aPluginName	The name of the input plug-in to be activated.	
   1.265 +	@return	KErrNone, if sending the SetActiveInputPlugin message to the server
   1.266 +	                  was successful;
   1.267 +	        KErrAlreadyExists, if aPluginName value was previously set;
   1.268 +	        KErrNotFound, if aPluginName does not match the name of an existing Ulogger input plug-in;
   1.269 +	        KErrNoMemory, if there is insufficient memory available;
   1.270 +	        KErrArgument, if passed descriptor is empty;
   1.271 +	        otherwise one of the other system-wide error codes.
   1.272 +	*/
   1.273 +	IMPORT_C TInt ActivateInputPlugin(const TDesC8& aPluginName);	
   1.274 +
   1.275 +	/**
   1.276 +	Gets the active input plug-in.
   1.277 +
   1.278 +	@param	aPluginName	The 8-bit descriptor to be populated with the name of
   1.279 +	                    the active plug-in (max length: KMaxPath).
   1.280 +	@return	KErrNone, if sending the ActiveInputPlugin message to the
   1.281 +	                  server was successful;
   1.282 +	        KErrOverflow, if the passed-in descriptor is smaller than the length
   1.283 +	                      of the plug-in name;
   1.284 +	        KErrNotFound, if no input plug-in has been set;
   1.285 +	        otherwise one of the other system-wide error codes.
   1.286 +	*/
   1.287 +	IMPORT_C TInt GetActiveInputPlugin(TDes8& aPluginName);
   1.288 +
   1.289 +	/**
   1.290 +	Deactivates the currently active input plug-in.
   1.291 +
   1.292 +	@return	KErrNone, if sending the DeActivateInputPlugin message to the server
   1.293 +	                  was successful;
   1.294 +	        KErrNotFound, if no input plug-in has been set;
   1.295 +	        otherwise one of the other system-wide error codes.
   1.296 +	*/
   1.297 +	IMPORT_C TInt DeActivateInputPlugin();
   1.298 +
   1.299 +	/**
   1.300 +	Gets all installed input plug-ins.
   1.301 +
   1.302 +	@param	aPluginNames The array to be populated with the installed input plug-in names.
   1.303 +	@return	KErrNone, if sending the GetInstalledInputPlugins message to the
   1.304 +	                  server was successful;
   1.305 +	        otherwise one of the other system-wide error codes.
   1.306 +	*/
   1.307 +	IMPORT_C TInt GetInstalledInputPlugins(CArrayPtrFlat<HBufC8>& aPluginNames);
   1.308 +
   1.309 +	/**
   1.310 +	Adds a configuration to a plug-in (output or input). This is specific to the plug-in.
   1.311 +
   1.312 +	Example1: aPluginName="uloggerfileplugin",   aConfiguration.SetKey("output_path"), aConfiguration.SetValue(_L("c:\\logs\\ulogger\\tracelogs.btl"))
   1.313 +	Example2: aPluginName="uloggerserialplugin", aConfiguration.SetKey("baudrate") , aConfiguration.SetValue("115200")
   1.314 +
   1.315 +	@param aPluginName 	The plug-in name (without the .dll extension)
   1.316 +	@param aConfiguration TPluginConfiguration (key-value type configuration)
   1.317 +	@return	KErrNone, if sending the SetPluginConfigurations message to the
   1.318 +	                  server was successful;
   1.319 +	        KErrNotFound, if aPluginName does not match the name of an existing ULogger plug-in (output or input);
   1.320 +	        KErrArgument, if aPluginName is an empty descriptor;
   1.321 +	        otherwise one of the other system-wide error codes.
   1.322 +	*/
   1.323 +	IMPORT_C TInt SetPluginConfigurations(const TDesC8& aPluginName, const TPluginConfiguration& aConfiguration);
   1.324 +
   1.325 +	/**
   1.326 +	Gets all configurationas for the specified plug-in (output or input).
   1.327 +
   1.328 +	@param aPluginName 	The name of the plug-in. This is mapped to the plug-in
   1.329 +	                   file name, it can be retrieved by calling
   1.330 +	                   GetInstalledOutputPlugins and GetInstalledInputPlugins
   1.331 +	@param aConfigurations The array that is to be populated with plug-in
   1.332 +	                       configuration items. Ownership of any objects
   1.333 +	                       appended to this array is passed to the caller.
   1.334 +	@return	KErrNone, if sending the PluginConfigurations message to the
   1.335 +	                  server was successful;
   1.336 +            KErrNotFound, if aPluginName does not match the name of an existing ULogger plug-in (output or input);
   1.337 +            KErrArgument, if aPluginName is an empty descriptor;
   1.338 +	        otherwise one of the other system-wide error codes.
   1.339 +	          
   1.340 +	*/
   1.341 +	IMPORT_C TInt GetPluginConfigurations(const TDesC8& aPluginName, RPointerArray<TPluginConfiguration>& aConfigurations);
   1.342 +
   1.343 +	/**
   1.344 +	Removes all the configurations of the specified plug-in
   1.345 +
   1.346 +	@param	aPluginName	  The plug-in name whose settings are to be removed
   1.347 +	@return	KErrNone, if sending the RemovePluginConfigurations message to the
   1.348 +	                  server was successful;
   1.349 +	        KErrNotFound, if aPluginName does not match the name of an existing ULogger plug-in (output or input)
   1.350 +	        			  or the plug-in had no settings;
   1.351 +            KErrArgument, if aPluginName is an empty descriptor;
   1.352 +	        otherwise one of the other system-wide error codes.
   1.353 +	*/
   1.354 +	IMPORT_C TInt RemovePluginConfigurations(const TDesC8& aPluginName);
   1.355 +
   1.356 +	/**
   1.357 +	Sets the size of the trace buffer, specified in KB (default: 1024KB).
   1.358 +	The trace buffer is the buffer that UTrace uses to hold the trace packets
   1.359 +	before they are output (using the currently active output plug-in).
   1.360 +	See also the documentation of SetNotificationSize().
   1.361 +
   1.362 +	@param	aSize 		The desired new trace buffer size in KB
   1.363 +	@return	KErrNone, if sending the SetBufferSize message to the server was
   1.364 +	                  successful;
   1.365 +	        KErrArgument, if aSize value is not in range [1-1024];
   1.366 +	        KErrGeneral, if aSize value is smaller than data notification size;
   1.367 +            otherwise one of the other system-wide error codes.
   1.368 +	*/
   1.369 +	IMPORT_C TInt SetBufferSize(TInt aSize);
   1.370 +
   1.371 +	/**
   1.372 +	Gets the size of the trace buffer in KB.
   1.373 +	See SetBufferSize() for an explanation of the trace buffer size.
   1.374 +
   1.375 +	@param	aSize 		The TInt to be populated with the trace buffer size in KB.
   1.376 +	@return	KErrNone, if sending the BufferSize message to the server was
   1.377 +	                  successful;
   1.378 +	        otherwise one of the other system-wide error codes.
   1.379 +	*/
   1.380 +	IMPORT_C TInt GetBufferSize(TInt& aSize);
   1.381 +
   1.382 +   /**
   1.383 +	Sets the data notification size, specified in KB (default: 512KB).
   1.384 +	The data notification size is a threshold on the trace buffer usage, above
   1.385 +	which the trace buffer is flushed, i.e. all the trace packets in the trace buffer
   1.386 +	are output using the active output plug-in.
   1.387 +	See also the documentation of SetBufferSize().
   1.388 +
   1.389 +	@param	aSize 		The desired new data notification size in KB
   1.390 +	@return	KErrNone, if sending the SetNotificationSize message to the server
   1.391 +	                  was successful;
   1.392 +	        KErrArgument, if aSize value is not in range [0-1024];
   1.393 +	        KErrGeneral, if aSize value is greater than trace buffer size;
   1.394 +	        otherwise one of the other system-wide error codes.
   1.395 +	*/
   1.396 +	IMPORT_C TInt SetNotificationSize(TInt aSize);
   1.397 +
   1.398 +	/**
   1.399 +	Gets the data notification size.
   1.400 +	See SetNotificationSize() for an explanation of the data notification size.
   1.401 +
   1.402 +	@param	aSize 		The TInt to be populated with the data notification size in KB.
   1.403 +	@return	KErrNone, if sending the NotificationSize message to the server was
   1.404 +	                  successful;
   1.405 +	        otherwise one of the other system-wide error codes.
   1.406 +	*/		
   1.407 +	IMPORT_C TInt GetNotificationSize(TInt& aSize);
   1.408 +
   1.409 +	/**
   1.410 +	Sets the trace buffer mode.
   1.411 +
   1.412 +	@param	aMode		The buffer mode: 1 if Straight
   1.413 +										 0 if Circular
   1.414 +	@return	KErrNone, if sending the SetBufferMode message to the server was
   1.415 +	                  successful;
   1.416 +	        KErrArgument, if the specified mode is not one of 0 or 1;
   1.417 +	        otherwise one of the other system-wide error codes.
   1.418 +	*/
   1.419 +	IMPORT_C TInt SetBufferMode(TInt aMode);
   1.420 +
   1.421 +	/**
   1.422 +	Gets the trace buffer mode.
   1.423 +
   1.424 +	@param	aMode 		The TInt to be populated with the buffer mode: 1 if Straight
   1.425 +									 		                		   0 if Circular
   1.426 +	@return	KErrNone, if sending the BufferMode message to the server was
   1.427 +	                  successful;
   1.428 +	        otherwise one of the other system-wide error codes.
   1.429 +	*/
   1.430 +	IMPORT_C TInt GetBufferMode(TInt& aMode);
   1.431 +
   1.432 +	/**
   1.433 +	Gets the client side version number.
   1.434 +
   1.435 +	@return The client side version number.
   1.436 +	*/
   1.437 +	IMPORT_C TVersion Version();
   1.438 +
   1.439 +private:
   1.440 +	TInt StartServer();
   1.441 +
   1.442 +private:
   1.443 +	TUint32 iReserved1; // For future BC
   1.444 +	TUint32 iReserved2; // For future BC
   1.445 +	};
   1.446 +
   1.447 +} // namespace
   1.448 +
   1.449 +#endif // ULOGGERCLIENT_H