sl@0: // Copyright (c) 2006-2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: // All rights reserved. sl@0: // This component and the accompanying materials are made available sl@0: // under the terms of "Eclipse Public License v1.0" sl@0: // which accompanies this distribution, and is available sl@0: // at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: // sl@0: // Initial Contributors: sl@0: // Nokia Corporation - initial contribution. sl@0: // sl@0: // Contributors: sl@0: // sl@0: // Description: sl@0: // ULogger Client API header sl@0: // sl@0: // sl@0: sl@0: /** sl@0: @file sl@0: @publishedPartner sl@0: @prototype sl@0: */ sl@0: sl@0: #ifndef ULOGGERCLIENT_H sl@0: #define ULOGGERCLIENT_H sl@0: sl@0: #include // RSessionBase sl@0: #include sl@0: #include "uloggerdatatypes.h" sl@0: sl@0: namespace Ulogger sl@0: { sl@0: sl@0: /** sl@0: Client-side session to the ULogger server. sl@0: This class should be used to configure ULogger server. sl@0: */ sl@0: class RULogger : public RSessionBase sl@0: { sl@0: sl@0: public: sl@0: /* sl@0: Default constructor. sl@0: */ sl@0: IMPORT_C RULogger(); sl@0: sl@0: /* sl@0: Default destructor. sl@0: Closes the client session. sl@0: */ sl@0: IMPORT_C ~RULogger(); sl@0: sl@0: /** sl@0: Connects a client to the ULogger server. sl@0: If the server isn't already running it will be started. sl@0: To end the server session, use Close(). sl@0: sl@0: @return KErrNone, if successful, otherwise one of the other system-wide sl@0: error codes returned by RProcess:Create() or sl@0: RSessionBase::CreateSession(). sl@0: */ sl@0: IMPORT_C TInt Connect(); sl@0: sl@0: /** sl@0: Not yet supported, does nothing and returns KErrNotSupported. sl@0: sl@0: Starts/stops running ULogger as a service. Running ULogger as a service sl@0: means that ULogger is always active in the background, which is necessary sl@0: if the objective is to connect to ULogger from a remote machine, so that sl@0: ULogger is then listening for remote connections. sl@0: If ULogger is not running as a service, it is only active when it is sl@0: handling a client request or it is currenty logging traces (i.e. the Start() sl@0: function was called). sl@0: sl@0: @param aRunAsService The flag to indicate whether the server should run as a sl@0: service or not sl@0: @return KErrNotSupported, as this function is not yet implemented in the server. sl@0: */ sl@0: IMPORT_C TInt RunAsService(TBool aRunAsService); sl@0: sl@0: /** sl@0: Starts outputting trace packets. sl@0: Pre-requisite: This will only output trace packets containing filter identifers that sl@0: match enabled filters. Use SetPrimaryFiltersEnabled(), SetSecondaryFiltersEnabled() and sl@0: SetSecondaryFilteringEnabled() to enable the relevant filters. sl@0: sl@0: @return KErrNone, if sending the Start message to the server was successful; sl@0: KErrCorrupt, if the ULogger configuration file is corrupt; sl@0: KErrServerTerminated, if the server is no longer present; sl@0: KErrServerBusy, if there are no message slots available; sl@0: KErrNoMemory, if there is insufficient memory available; sl@0: KErrInUse, if server was started previously; sl@0: otherwise one of the other system-wide error codes. sl@0: */ sl@0: IMPORT_C TInt Start(); sl@0: sl@0: /** sl@0: Stops outputting trace packets. sl@0: sl@0: @return KErrNone, if sending the Stop message to the server was successful; sl@0: KErrServerTerminated, if the server is no longer present; sl@0: KErrServerBusy, if there are no message slots available; sl@0: KErrNoMemory, if there is insufficient memory available; sl@0: KErrNotReady, if ULogger wasn't started previously. sl@0: */ sl@0: IMPORT_C TInt Stop(); sl@0: sl@0: /** sl@0: Restarts server. sl@0: sl@0: @return KErrNone, if sending the Restart message to the server was successful; sl@0: KErrCorrupt, if the ULogger configuration file is corrupt; sl@0: KErrServerTerminated, if the server is no longer present; sl@0: KErrServerBusy, if there are no message slots available; sl@0: KErrNoMemory, if there is insufficient memory available; sl@0: otherwise one of the other system-wide error codes. sl@0: */ sl@0: IMPORT_C TInt Restart(); sl@0: sl@0: /** sl@0: Enables/disables the specified primary filters. sl@0: This allows output of trace packets containing primary filter identifiers that match the sl@0: enabled primary filters. sl@0: Note: If a trace packet contains a secondary filter identifier, and secondary filtering is sl@0: enabled, the matching secondary filter must also be enabled to allow this packet to be output. sl@0: sl@0: @param aFilters The primary filters to enable/disable sl@0: @param aEnabled The boolean to specify the action. ETrue to enable and EFalse to disable. sl@0: @return KErrNone, if sending the SetPrimaryFiltersEnabled message to the sl@0: server was successful; sl@0: KErrArgument, if the specified array of filters contains more than sl@0: KMaxPrimaryFiltersLimit elements or the array is empty; sl@0: KErrCorrupt, if the ULogger configuration file is corrupt; sl@0: otherwise one of the other system-wide error codes. sl@0: */ sl@0: IMPORT_C TInt SetPrimaryFiltersEnabled(const CArrayFixFlat& aFilters, TBool aEnabled); sl@0: sl@0: /** sl@0: Gets all enabled primary filters. sl@0: sl@0: @param aFilters The array to be populated with enabled filters sl@0: @return KErrNone, if sending the PrimaryFiltersEnabled message to the sl@0: server was successful; sl@0: KErrCorrupt, if the ULogger configuration file is corrupt; sl@0: otherwise one of the other system-wide error codes. sl@0: */ sl@0: IMPORT_C TInt GetPrimaryFiltersEnabled(CArrayFixFlat& aFilters); sl@0: sl@0: /** sl@0: Enables/disables the specified secondary filters. sl@0: This allows output of trace packets containing secondary filter identifiers that match the sl@0: enabled secondary filters. sl@0: Note1: Secondary filters are only relevant when secondary filtering is sl@0: enabled (see SetSecondaryFilteringEnabled()). If secondary filtering sl@0: is disabled, trace packets are logged regardless of any secondary filter identifiers. sl@0: Note2: Enabling secondary filters will automatically enable secondary filtering. sl@0: Note3: Primary filtering is always enabled and therefore there is no sl@0: equivalent method for enabling/disabling primary filtering. sl@0: sl@0: @param aFilters The secondary filters to enable/disable sl@0: @param aEnabled The boolean to specify the action. ETrue to enable and EFalse to disable. sl@0: @return KErrNone, if sending the SetSecondaryFiltersEnabled message to the sl@0: server was successful; sl@0: KErrArgument, if the specified array of filters contains more than sl@0: KMaxSecondaryFiltersLimit elements, the array is empty or sl@0: number of currently set filters plus number of elements in aFilters array sl@0: is greather than KMaxSecondaryFiltersLimit; sl@0: KErrCorrupt, if the ULogger configuration file is corrupt; sl@0: otherwise one of the other system-wide error codes. sl@0: */ sl@0: IMPORT_C TInt SetSecondaryFiltersEnabled(const RArray& aFilters, TBool aEnabled); sl@0: sl@0: /** sl@0: Gets all enabled secondary filters. sl@0: sl@0: @param aFilters The array to be populated with enabled filters sl@0: @return KErrNone, if sending the SecondaryFiltersEnabled message to the sl@0: server was successful; sl@0: KErrNoMemory, if there is insufficient memory available; sl@0: KErrCorrupt, if the ULogger configuration file is corrupt; sl@0: otherwise one of the other system-wide error codes. sl@0: */ sl@0: IMPORT_C TInt GetSecondaryFiltersEnabled(RArray& aFilters); sl@0: sl@0: /** sl@0: Enables/disables filtering on secondary filters. sl@0: When secondary filtering is enabled, only those trace packets containing a sl@0: secondary filter identifier matching an enabled secondary filter are output sl@0: (see SetSecondaryFiltersEnabled()). Note that trace packets must also contain sl@0: a primary filter identifier matching an enabled primary filter in order to be output sl@0: (see SetPrimaryFilterEnabled()). sl@0: sl@0: @param aEnabled The boolean to specify the action. ETrue to enable and EFalse to disable. sl@0: @return KErrNone, if sending the SetSecondaryFilteringEnabled message to the sl@0: server was successful; sl@0: KErrCorrupt, if the ULogger configuration file is corrupt; sl@0: otherwise one of the other system-wide error codes. sl@0: */ sl@0: IMPORT_C TInt SetSecondaryFilteringEnabled(TBool aEnabled); sl@0: sl@0: /** sl@0: Gets secondary filtering enabled value. sl@0: sl@0: @param aEnabled The boolean to be populated with the secondary filtering enabled value sl@0: @return KErrNone, if sending the SecondaryFilteringEnabled message to the sl@0: server was successful; sl@0: otherwise one of the other system-wide error codes. sl@0: */ sl@0: IMPORT_C TInt GetSecondaryFilteringEnabled(TBool& aEnabled); sl@0: sl@0: /** sl@0: Sets which output plug-in is to be used for outputting trace packets. sl@0: The plug-in that is passed to this method needs to be one of the sl@0: plug-ins reported by InstalledOutputPlugins(); sl@0: sl@0: @param aPluginName The name of the plug-in to be used, needs to be one of sl@0: the names returned by InstalledOutputPlugins() sl@0: @return KErrNone, if sending the SetActiveOutputPlugin message to the server sl@0: was successful; sl@0: KErrAlreadyExists, if aPluginName value was previously set; sl@0: KErrNotFound, if aPluginName does not match the name of an existing Ulogger output plug-in; sl@0: KErrNoMemory, if there is insufficient memory available; sl@0: KErrArgument, if passed descriptor is empty; sl@0: otherwise one of the other system-wide error codes. sl@0: */ sl@0: IMPORT_C TInt ActivateOutputPlugin(const TDesC8& aPluginName); sl@0: sl@0: /** sl@0: Gets the active output plug-in. sl@0: sl@0: @param aPluginName The 8-bit descriptor to be populated with the name of sl@0: the active output plug-in (max length: KMaxPath). sl@0: @return KErrNone, if sending the ActiveOutputPlugin message to the sl@0: server was successful; sl@0: KErrOverflow, if the passed-in descriptor is smaller than the length sl@0: of the plug-in name; sl@0: KErrNotFound, if no output plug-in has been set; sl@0: otherwise one of the other system-wide error codes. sl@0: */ sl@0: IMPORT_C TInt GetActiveOutputPlugin(TDes8& aPluginName); sl@0: sl@0: /** sl@0: Gets all the installed output plug-ins. sl@0: sl@0: @param aPluginNames The array to be populated with the installed plug-in filename and plug-in names. sl@0: @return KErrNone, if sending the InstalledOutputPlugins message to the sl@0: server was successful; sl@0: KErrNoMemory, if there is insufficient memory available; sl@0: otherwise one of the other system-wide error codes. sl@0: */ sl@0: IMPORT_C TInt GetInstalledOutputPlugins(CArrayPtrFlat& aPluginNames); sl@0: sl@0: /** sl@0: Sets which input plug-in is to be used for sending messages to ULogger from a sl@0: remote machine. This is only relevant for the remote control functionality sl@0: of ULogger, which allows a remote machine to control the operation of sl@0: ULogger, instead of a client on the device using RULogger. sl@0: The plug-in that is passed to this method needs to be one of the sl@0: plug-ins reported by GetInstalledInputPlugins. sl@0: sl@0: @param aPluginName The name of the input plug-in to be activated. sl@0: @return KErrNone, if sending the SetActiveInputPlugin message to the server sl@0: was successful; sl@0: KErrAlreadyExists, if aPluginName value was previously set; sl@0: KErrNotFound, if aPluginName does not match the name of an existing Ulogger input plug-in; sl@0: KErrNoMemory, if there is insufficient memory available; sl@0: KErrArgument, if passed descriptor is empty; sl@0: otherwise one of the other system-wide error codes. sl@0: */ sl@0: IMPORT_C TInt ActivateInputPlugin(const TDesC8& aPluginName); sl@0: sl@0: /** sl@0: Gets the active input plug-in. sl@0: sl@0: @param aPluginName The 8-bit descriptor to be populated with the name of sl@0: the active plug-in (max length: KMaxPath). sl@0: @return KErrNone, if sending the ActiveInputPlugin message to the sl@0: server was successful; sl@0: KErrOverflow, if the passed-in descriptor is smaller than the length sl@0: of the plug-in name; sl@0: KErrNotFound, if no input plug-in has been set; sl@0: otherwise one of the other system-wide error codes. sl@0: */ sl@0: IMPORT_C TInt GetActiveInputPlugin(TDes8& aPluginName); sl@0: sl@0: /** sl@0: Deactivates the currently active input plug-in. sl@0: sl@0: @return KErrNone, if sending the DeActivateInputPlugin message to the server sl@0: was successful; sl@0: KErrNotFound, if no input plug-in has been set; sl@0: otherwise one of the other system-wide error codes. sl@0: */ sl@0: IMPORT_C TInt DeActivateInputPlugin(); sl@0: sl@0: /** sl@0: Gets all installed input plug-ins. sl@0: sl@0: @param aPluginNames The array to be populated with the installed input plug-in names. sl@0: @return KErrNone, if sending the GetInstalledInputPlugins message to the sl@0: server was successful; sl@0: otherwise one of the other system-wide error codes. sl@0: */ sl@0: IMPORT_C TInt GetInstalledInputPlugins(CArrayPtrFlat& aPluginNames); sl@0: sl@0: /** sl@0: Adds a configuration to a plug-in (output or input). This is specific to the plug-in. sl@0: sl@0: Example1: aPluginName="uloggerfileplugin", aConfiguration.SetKey("output_path"), aConfiguration.SetValue(_L("c:\\logs\\ulogger\\tracelogs.btl")) sl@0: Example2: aPluginName="uloggerserialplugin", aConfiguration.SetKey("baudrate") , aConfiguration.SetValue("115200") sl@0: sl@0: @param aPluginName The plug-in name (without the .dll extension) sl@0: @param aConfiguration TPluginConfiguration (key-value type configuration) sl@0: @return KErrNone, if sending the SetPluginConfigurations message to the sl@0: server was successful; sl@0: KErrNotFound, if aPluginName does not match the name of an existing ULogger plug-in (output or input); sl@0: KErrArgument, if aPluginName is an empty descriptor; sl@0: otherwise one of the other system-wide error codes. sl@0: */ sl@0: IMPORT_C TInt SetPluginConfigurations(const TDesC8& aPluginName, const TPluginConfiguration& aConfiguration); sl@0: sl@0: /** sl@0: Gets all configurationas for the specified plug-in (output or input). sl@0: sl@0: @param aPluginName The name of the plug-in. This is mapped to the plug-in sl@0: file name, it can be retrieved by calling sl@0: GetInstalledOutputPlugins and GetInstalledInputPlugins sl@0: @param aConfigurations The array that is to be populated with plug-in sl@0: configuration items. Ownership of any objects sl@0: appended to this array is passed to the caller. sl@0: @return KErrNone, if sending the PluginConfigurations message to the sl@0: server was successful; sl@0: KErrNotFound, if aPluginName does not match the name of an existing ULogger plug-in (output or input); sl@0: KErrArgument, if aPluginName is an empty descriptor; sl@0: otherwise one of the other system-wide error codes. sl@0: sl@0: */ sl@0: IMPORT_C TInt GetPluginConfigurations(const TDesC8& aPluginName, RPointerArray& aConfigurations); sl@0: sl@0: /** sl@0: Removes all the configurations of the specified plug-in sl@0: sl@0: @param aPluginName The plug-in name whose settings are to be removed sl@0: @return KErrNone, if sending the RemovePluginConfigurations message to the sl@0: server was successful; sl@0: KErrNotFound, if aPluginName does not match the name of an existing ULogger plug-in (output or input) sl@0: or the plug-in had no settings; sl@0: KErrArgument, if aPluginName is an empty descriptor; sl@0: otherwise one of the other system-wide error codes. sl@0: */ sl@0: IMPORT_C TInt RemovePluginConfigurations(const TDesC8& aPluginName); sl@0: sl@0: /** sl@0: Sets the size of the trace buffer, specified in KB (default: 1024KB). sl@0: The trace buffer is the buffer that UTrace uses to hold the trace packets sl@0: before they are output (using the currently active output plug-in). sl@0: See also the documentation of SetNotificationSize(). sl@0: sl@0: @param aSize The desired new trace buffer size in KB sl@0: @return KErrNone, if sending the SetBufferSize message to the server was sl@0: successful; sl@0: KErrArgument, if aSize value is not in range [1-1024]; sl@0: KErrGeneral, if aSize value is smaller than data notification size; sl@0: otherwise one of the other system-wide error codes. sl@0: */ sl@0: IMPORT_C TInt SetBufferSize(TInt aSize); sl@0: sl@0: /** sl@0: Gets the size of the trace buffer in KB. sl@0: See SetBufferSize() for an explanation of the trace buffer size. sl@0: sl@0: @param aSize The TInt to be populated with the trace buffer size in KB. sl@0: @return KErrNone, if sending the BufferSize message to the server was sl@0: successful; sl@0: otherwise one of the other system-wide error codes. sl@0: */ sl@0: IMPORT_C TInt GetBufferSize(TInt& aSize); sl@0: sl@0: /** sl@0: Sets the data notification size, specified in KB (default: 512KB). sl@0: The data notification size is a threshold on the trace buffer usage, above sl@0: which the trace buffer is flushed, i.e. all the trace packets in the trace buffer sl@0: are output using the active output plug-in. sl@0: See also the documentation of SetBufferSize(). sl@0: sl@0: @param aSize The desired new data notification size in KB sl@0: @return KErrNone, if sending the SetNotificationSize message to the server sl@0: was successful; sl@0: KErrArgument, if aSize value is not in range [0-1024]; sl@0: KErrGeneral, if aSize value is greater than trace buffer size; sl@0: otherwise one of the other system-wide error codes. sl@0: */ sl@0: IMPORT_C TInt SetNotificationSize(TInt aSize); sl@0: sl@0: /** sl@0: Gets the data notification size. sl@0: See SetNotificationSize() for an explanation of the data notification size. sl@0: sl@0: @param aSize The TInt to be populated with the data notification size in KB. sl@0: @return KErrNone, if sending the NotificationSize message to the server was sl@0: successful; sl@0: otherwise one of the other system-wide error codes. sl@0: */ sl@0: IMPORT_C TInt GetNotificationSize(TInt& aSize); sl@0: sl@0: /** sl@0: Sets the trace buffer mode. sl@0: sl@0: @param aMode The buffer mode: 1 if Straight sl@0: 0 if Circular sl@0: @return KErrNone, if sending the SetBufferMode message to the server was sl@0: successful; sl@0: KErrArgument, if the specified mode is not one of 0 or 1; sl@0: otherwise one of the other system-wide error codes. sl@0: */ sl@0: IMPORT_C TInt SetBufferMode(TInt aMode); sl@0: sl@0: /** sl@0: Gets the trace buffer mode. sl@0: sl@0: @param aMode The TInt to be populated with the buffer mode: 1 if Straight sl@0: 0 if Circular sl@0: @return KErrNone, if sending the BufferMode message to the server was sl@0: successful; sl@0: otherwise one of the other system-wide error codes. sl@0: */ sl@0: IMPORT_C TInt GetBufferMode(TInt& aMode); sl@0: sl@0: /** sl@0: Gets the client side version number. sl@0: sl@0: @return The client side version number. sl@0: */ sl@0: IMPORT_C TVersion Version(); sl@0: sl@0: private: sl@0: TInt StartServer(); sl@0: sl@0: private: sl@0: TUint32 iReserved1; // For future BC sl@0: TUint32 iReserved2; // For future BC sl@0: }; sl@0: sl@0: } // namespace sl@0: sl@0: #endif // ULOGGERCLIENT_H