sl@0
|
1 |
// Copyright (c) 2006-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 Client API header
|
sl@0
|
15 |
//
|
sl@0
|
16 |
//
|
sl@0
|
17 |
|
sl@0
|
18 |
/**
|
sl@0
|
19 |
@file
|
sl@0
|
20 |
@publishedPartner
|
sl@0
|
21 |
@prototype
|
sl@0
|
22 |
*/
|
sl@0
|
23 |
|
sl@0
|
24 |
#ifndef ULOGGERCLIENT_H
|
sl@0
|
25 |
#define ULOGGERCLIENT_H
|
sl@0
|
26 |
|
sl@0
|
27 |
#include <e32std.h> // RSessionBase
|
sl@0
|
28 |
#include <e32base.h>
|
sl@0
|
29 |
#include "uloggerdatatypes.h"
|
sl@0
|
30 |
|
sl@0
|
31 |
namespace Ulogger
|
sl@0
|
32 |
{
|
sl@0
|
33 |
|
sl@0
|
34 |
/**
|
sl@0
|
35 |
Client-side session to the ULogger server.
|
sl@0
|
36 |
This class should be used to configure ULogger server.
|
sl@0
|
37 |
*/
|
sl@0
|
38 |
class RULogger : public RSessionBase
|
sl@0
|
39 |
{
|
sl@0
|
40 |
|
sl@0
|
41 |
public:
|
sl@0
|
42 |
/*
|
sl@0
|
43 |
Default constructor.
|
sl@0
|
44 |
*/
|
sl@0
|
45 |
IMPORT_C RULogger();
|
sl@0
|
46 |
|
sl@0
|
47 |
/*
|
sl@0
|
48 |
Default destructor.
|
sl@0
|
49 |
Closes the client session.
|
sl@0
|
50 |
*/
|
sl@0
|
51 |
IMPORT_C ~RULogger();
|
sl@0
|
52 |
|
sl@0
|
53 |
/**
|
sl@0
|
54 |
Connects a client to the ULogger server.
|
sl@0
|
55 |
If the server isn't already running it will be started.
|
sl@0
|
56 |
To end the server session, use Close().
|
sl@0
|
57 |
|
sl@0
|
58 |
@return KErrNone, if successful, otherwise one of the other system-wide
|
sl@0
|
59 |
error codes returned by RProcess:Create() or
|
sl@0
|
60 |
RSessionBase::CreateSession().
|
sl@0
|
61 |
*/
|
sl@0
|
62 |
IMPORT_C TInt Connect();
|
sl@0
|
63 |
|
sl@0
|
64 |
/**
|
sl@0
|
65 |
Not yet supported, does nothing and returns KErrNotSupported.
|
sl@0
|
66 |
|
sl@0
|
67 |
Starts/stops running ULogger as a service. Running ULogger as a service
|
sl@0
|
68 |
means that ULogger is always active in the background, which is necessary
|
sl@0
|
69 |
if the objective is to connect to ULogger from a remote machine, so that
|
sl@0
|
70 |
ULogger is then listening for remote connections.
|
sl@0
|
71 |
If ULogger is not running as a service, it is only active when it is
|
sl@0
|
72 |
handling a client request or it is currenty logging traces (i.e. the Start()
|
sl@0
|
73 |
function was called).
|
sl@0
|
74 |
|
sl@0
|
75 |
@param aRunAsService The flag to indicate whether the server should run as a
|
sl@0
|
76 |
service or not
|
sl@0
|
77 |
@return KErrNotSupported, as this function is not yet implemented in the server.
|
sl@0
|
78 |
*/
|
sl@0
|
79 |
IMPORT_C TInt RunAsService(TBool aRunAsService);
|
sl@0
|
80 |
|
sl@0
|
81 |
/**
|
sl@0
|
82 |
Starts outputting trace packets.
|
sl@0
|
83 |
Pre-requisite: This will only output trace packets containing filter identifers that
|
sl@0
|
84 |
match enabled filters. Use SetPrimaryFiltersEnabled(), SetSecondaryFiltersEnabled() and
|
sl@0
|
85 |
SetSecondaryFilteringEnabled() to enable the relevant filters.
|
sl@0
|
86 |
|
sl@0
|
87 |
@return KErrNone, if sending the Start message to the server was successful;
|
sl@0
|
88 |
KErrCorrupt, if the ULogger configuration file is corrupt;
|
sl@0
|
89 |
KErrServerTerminated, if the server is no longer present;
|
sl@0
|
90 |
KErrServerBusy, if there are no message slots available;
|
sl@0
|
91 |
KErrNoMemory, if there is insufficient memory available;
|
sl@0
|
92 |
KErrInUse, if server was started previously;
|
sl@0
|
93 |
otherwise one of the other system-wide error codes.
|
sl@0
|
94 |
*/
|
sl@0
|
95 |
IMPORT_C TInt Start();
|
sl@0
|
96 |
|
sl@0
|
97 |
/**
|
sl@0
|
98 |
Stops outputting trace packets.
|
sl@0
|
99 |
|
sl@0
|
100 |
@return KErrNone, if sending the Stop message to the server was successful;
|
sl@0
|
101 |
KErrServerTerminated, if the server is no longer present;
|
sl@0
|
102 |
KErrServerBusy, if there are no message slots available;
|
sl@0
|
103 |
KErrNoMemory, if there is insufficient memory available;
|
sl@0
|
104 |
KErrNotReady, if ULogger wasn't started previously.
|
sl@0
|
105 |
*/
|
sl@0
|
106 |
IMPORT_C TInt Stop();
|
sl@0
|
107 |
|
sl@0
|
108 |
/**
|
sl@0
|
109 |
Restarts server.
|
sl@0
|
110 |
|
sl@0
|
111 |
@return KErrNone, if sending the Restart message to the server was successful;
|
sl@0
|
112 |
KErrCorrupt, if the ULogger configuration file is corrupt;
|
sl@0
|
113 |
KErrServerTerminated, if the server is no longer present;
|
sl@0
|
114 |
KErrServerBusy, if there are no message slots available;
|
sl@0
|
115 |
KErrNoMemory, if there is insufficient memory available;
|
sl@0
|
116 |
otherwise one of the other system-wide error codes.
|
sl@0
|
117 |
*/
|
sl@0
|
118 |
IMPORT_C TInt Restart();
|
sl@0
|
119 |
|
sl@0
|
120 |
/**
|
sl@0
|
121 |
Enables/disables the specified primary filters.
|
sl@0
|
122 |
This allows output of trace packets containing primary filter identifiers that match the
|
sl@0
|
123 |
enabled primary filters.
|
sl@0
|
124 |
Note: If a trace packet contains a secondary filter identifier, and secondary filtering is
|
sl@0
|
125 |
enabled, the matching secondary filter must also be enabled to allow this packet to be output.
|
sl@0
|
126 |
|
sl@0
|
127 |
@param aFilters The primary filters to enable/disable
|
sl@0
|
128 |
@param aEnabled The boolean to specify the action. ETrue to enable and EFalse to disable.
|
sl@0
|
129 |
@return KErrNone, if sending the SetPrimaryFiltersEnabled message to the
|
sl@0
|
130 |
server was successful;
|
sl@0
|
131 |
KErrArgument, if the specified array of filters contains more than
|
sl@0
|
132 |
KMaxPrimaryFiltersLimit elements or the array is empty;
|
sl@0
|
133 |
KErrCorrupt, if the ULogger configuration file is corrupt;
|
sl@0
|
134 |
otherwise one of the other system-wide error codes.
|
sl@0
|
135 |
*/
|
sl@0
|
136 |
IMPORT_C TInt SetPrimaryFiltersEnabled(const CArrayFixFlat<TUint8>& aFilters, TBool aEnabled);
|
sl@0
|
137 |
|
sl@0
|
138 |
/**
|
sl@0
|
139 |
Gets all enabled primary filters.
|
sl@0
|
140 |
|
sl@0
|
141 |
@param aFilters The array to be populated with enabled filters
|
sl@0
|
142 |
@return KErrNone, if sending the PrimaryFiltersEnabled message to the
|
sl@0
|
143 |
server was successful;
|
sl@0
|
144 |
KErrCorrupt, if the ULogger configuration file is corrupt;
|
sl@0
|
145 |
otherwise one of the other system-wide error codes.
|
sl@0
|
146 |
*/
|
sl@0
|
147 |
IMPORT_C TInt GetPrimaryFiltersEnabled(CArrayFixFlat<TUint8>& aFilters);
|
sl@0
|
148 |
|
sl@0
|
149 |
/**
|
sl@0
|
150 |
Enables/disables the specified secondary filters.
|
sl@0
|
151 |
This allows output of trace packets containing secondary filter identifiers that match the
|
sl@0
|
152 |
enabled secondary filters.
|
sl@0
|
153 |
Note1: Secondary filters are only relevant when secondary filtering is
|
sl@0
|
154 |
enabled (see SetSecondaryFilteringEnabled()). If secondary filtering
|
sl@0
|
155 |
is disabled, trace packets are logged regardless of any secondary filter identifiers.
|
sl@0
|
156 |
Note2: Enabling secondary filters will automatically enable secondary filtering.
|
sl@0
|
157 |
Note3: Primary filtering is always enabled and therefore there is no
|
sl@0
|
158 |
equivalent method for enabling/disabling primary filtering.
|
sl@0
|
159 |
|
sl@0
|
160 |
@param aFilters The secondary filters to enable/disable
|
sl@0
|
161 |
@param aEnabled The boolean to specify the action. ETrue to enable and EFalse to disable.
|
sl@0
|
162 |
@return KErrNone, if sending the SetSecondaryFiltersEnabled message to the
|
sl@0
|
163 |
server was successful;
|
sl@0
|
164 |
KErrArgument, if the specified array of filters contains more than
|
sl@0
|
165 |
KMaxSecondaryFiltersLimit elements, the array is empty or
|
sl@0
|
166 |
number of currently set filters plus number of elements in aFilters array
|
sl@0
|
167 |
is greather than KMaxSecondaryFiltersLimit;
|
sl@0
|
168 |
KErrCorrupt, if the ULogger configuration file is corrupt;
|
sl@0
|
169 |
otherwise one of the other system-wide error codes.
|
sl@0
|
170 |
*/
|
sl@0
|
171 |
IMPORT_C TInt SetSecondaryFiltersEnabled(const RArray<TUint32>& aFilters, TBool aEnabled);
|
sl@0
|
172 |
|
sl@0
|
173 |
/**
|
sl@0
|
174 |
Gets all enabled secondary filters.
|
sl@0
|
175 |
|
sl@0
|
176 |
@param aFilters The array to be populated with enabled filters
|
sl@0
|
177 |
@return KErrNone, if sending the SecondaryFiltersEnabled message to the
|
sl@0
|
178 |
server was successful;
|
sl@0
|
179 |
KErrNoMemory, if there is insufficient memory available;
|
sl@0
|
180 |
KErrCorrupt, if the ULogger configuration file is corrupt;
|
sl@0
|
181 |
otherwise one of the other system-wide error codes.
|
sl@0
|
182 |
*/
|
sl@0
|
183 |
IMPORT_C TInt GetSecondaryFiltersEnabled(RArray<TUint32>& aFilters);
|
sl@0
|
184 |
|
sl@0
|
185 |
/**
|
sl@0
|
186 |
Enables/disables filtering on secondary filters.
|
sl@0
|
187 |
When secondary filtering is enabled, only those trace packets containing a
|
sl@0
|
188 |
secondary filter identifier matching an enabled secondary filter are output
|
sl@0
|
189 |
(see SetSecondaryFiltersEnabled()). Note that trace packets must also contain
|
sl@0
|
190 |
a primary filter identifier matching an enabled primary filter in order to be output
|
sl@0
|
191 |
(see SetPrimaryFilterEnabled()).
|
sl@0
|
192 |
|
sl@0
|
193 |
@param aEnabled The boolean to specify the action. ETrue to enable and EFalse to disable.
|
sl@0
|
194 |
@return KErrNone, if sending the SetSecondaryFilteringEnabled message to the
|
sl@0
|
195 |
server was successful;
|
sl@0
|
196 |
KErrCorrupt, if the ULogger configuration file is corrupt;
|
sl@0
|
197 |
otherwise one of the other system-wide error codes.
|
sl@0
|
198 |
*/
|
sl@0
|
199 |
IMPORT_C TInt SetSecondaryFilteringEnabled(TBool aEnabled);
|
sl@0
|
200 |
|
sl@0
|
201 |
/**
|
sl@0
|
202 |
Gets secondary filtering enabled value.
|
sl@0
|
203 |
|
sl@0
|
204 |
@param aEnabled The boolean to be populated with the secondary filtering enabled value
|
sl@0
|
205 |
@return KErrNone, if sending the SecondaryFilteringEnabled message to the
|
sl@0
|
206 |
server was successful;
|
sl@0
|
207 |
otherwise one of the other system-wide error codes.
|
sl@0
|
208 |
*/
|
sl@0
|
209 |
IMPORT_C TInt GetSecondaryFilteringEnabled(TBool& aEnabled);
|
sl@0
|
210 |
|
sl@0
|
211 |
/**
|
sl@0
|
212 |
Sets which output plug-in is to be used for outputting trace packets.
|
sl@0
|
213 |
The plug-in that is passed to this method needs to be one of the
|
sl@0
|
214 |
plug-ins reported by InstalledOutputPlugins();
|
sl@0
|
215 |
|
sl@0
|
216 |
@param aPluginName The name of the plug-in to be used, needs to be one of
|
sl@0
|
217 |
the names returned by InstalledOutputPlugins()
|
sl@0
|
218 |
@return KErrNone, if sending the SetActiveOutputPlugin message to the server
|
sl@0
|
219 |
was successful;
|
sl@0
|
220 |
KErrAlreadyExists, if aPluginName value was previously set;
|
sl@0
|
221 |
KErrNotFound, if aPluginName does not match the name of an existing Ulogger output plug-in;
|
sl@0
|
222 |
KErrNoMemory, if there is insufficient memory available;
|
sl@0
|
223 |
KErrArgument, if passed descriptor is empty;
|
sl@0
|
224 |
otherwise one of the other system-wide error codes.
|
sl@0
|
225 |
*/
|
sl@0
|
226 |
IMPORT_C TInt ActivateOutputPlugin(const TDesC8& aPluginName);
|
sl@0
|
227 |
|
sl@0
|
228 |
/**
|
sl@0
|
229 |
Gets the active output plug-in.
|
sl@0
|
230 |
|
sl@0
|
231 |
@param aPluginName The 8-bit descriptor to be populated with the name of
|
sl@0
|
232 |
the active output plug-in (max length: KMaxPath).
|
sl@0
|
233 |
@return KErrNone, if sending the ActiveOutputPlugin message to the
|
sl@0
|
234 |
server was successful;
|
sl@0
|
235 |
KErrOverflow, if the passed-in descriptor is smaller than the length
|
sl@0
|
236 |
of the plug-in name;
|
sl@0
|
237 |
KErrNotFound, if no output plug-in has been set;
|
sl@0
|
238 |
otherwise one of the other system-wide error codes.
|
sl@0
|
239 |
*/
|
sl@0
|
240 |
IMPORT_C TInt GetActiveOutputPlugin(TDes8& aPluginName);
|
sl@0
|
241 |
|
sl@0
|
242 |
/**
|
sl@0
|
243 |
Gets all the installed output plug-ins.
|
sl@0
|
244 |
|
sl@0
|
245 |
@param aPluginNames The array to be populated with the installed plug-in filename and plug-in names.
|
sl@0
|
246 |
@return KErrNone, if sending the InstalledOutputPlugins message to the
|
sl@0
|
247 |
server was successful;
|
sl@0
|
248 |
KErrNoMemory, if there is insufficient memory available;
|
sl@0
|
249 |
otherwise one of the other system-wide error codes.
|
sl@0
|
250 |
*/
|
sl@0
|
251 |
IMPORT_C TInt GetInstalledOutputPlugins(CArrayPtrFlat<HBufC8>& aPluginNames);
|
sl@0
|
252 |
|
sl@0
|
253 |
/**
|
sl@0
|
254 |
Sets which input plug-in is to be used for sending messages to ULogger from a
|
sl@0
|
255 |
remote machine. This is only relevant for the remote control functionality
|
sl@0
|
256 |
of ULogger, which allows a remote machine to control the operation of
|
sl@0
|
257 |
ULogger, instead of a client on the device using RULogger.
|
sl@0
|
258 |
The plug-in that is passed to this method needs to be one of the
|
sl@0
|
259 |
plug-ins reported by GetInstalledInputPlugins.
|
sl@0
|
260 |
|
sl@0
|
261 |
@param aPluginName The name of the input plug-in to be activated.
|
sl@0
|
262 |
@return KErrNone, if sending the SetActiveInputPlugin message to the server
|
sl@0
|
263 |
was successful;
|
sl@0
|
264 |
KErrAlreadyExists, if aPluginName value was previously set;
|
sl@0
|
265 |
KErrNotFound, if aPluginName does not match the name of an existing Ulogger input plug-in;
|
sl@0
|
266 |
KErrNoMemory, if there is insufficient memory available;
|
sl@0
|
267 |
KErrArgument, if passed descriptor is empty;
|
sl@0
|
268 |
otherwise one of the other system-wide error codes.
|
sl@0
|
269 |
*/
|
sl@0
|
270 |
IMPORT_C TInt ActivateInputPlugin(const TDesC8& aPluginName);
|
sl@0
|
271 |
|
sl@0
|
272 |
/**
|
sl@0
|
273 |
Gets the active input plug-in.
|
sl@0
|
274 |
|
sl@0
|
275 |
@param aPluginName The 8-bit descriptor to be populated with the name of
|
sl@0
|
276 |
the active plug-in (max length: KMaxPath).
|
sl@0
|
277 |
@return KErrNone, if sending the ActiveInputPlugin message to the
|
sl@0
|
278 |
server was successful;
|
sl@0
|
279 |
KErrOverflow, if the passed-in descriptor is smaller than the length
|
sl@0
|
280 |
of the plug-in name;
|
sl@0
|
281 |
KErrNotFound, if no input plug-in has been set;
|
sl@0
|
282 |
otherwise one of the other system-wide error codes.
|
sl@0
|
283 |
*/
|
sl@0
|
284 |
IMPORT_C TInt GetActiveInputPlugin(TDes8& aPluginName);
|
sl@0
|
285 |
|
sl@0
|
286 |
/**
|
sl@0
|
287 |
Deactivates the currently active input plug-in.
|
sl@0
|
288 |
|
sl@0
|
289 |
@return KErrNone, if sending the DeActivateInputPlugin message to the server
|
sl@0
|
290 |
was successful;
|
sl@0
|
291 |
KErrNotFound, if no input plug-in has been set;
|
sl@0
|
292 |
otherwise one of the other system-wide error codes.
|
sl@0
|
293 |
*/
|
sl@0
|
294 |
IMPORT_C TInt DeActivateInputPlugin();
|
sl@0
|
295 |
|
sl@0
|
296 |
/**
|
sl@0
|
297 |
Gets all installed input plug-ins.
|
sl@0
|
298 |
|
sl@0
|
299 |
@param aPluginNames The array to be populated with the installed input plug-in names.
|
sl@0
|
300 |
@return KErrNone, if sending the GetInstalledInputPlugins message to the
|
sl@0
|
301 |
server was successful;
|
sl@0
|
302 |
otherwise one of the other system-wide error codes.
|
sl@0
|
303 |
*/
|
sl@0
|
304 |
IMPORT_C TInt GetInstalledInputPlugins(CArrayPtrFlat<HBufC8>& aPluginNames);
|
sl@0
|
305 |
|
sl@0
|
306 |
/**
|
sl@0
|
307 |
Adds a configuration to a plug-in (output or input). This is specific to the plug-in.
|
sl@0
|
308 |
|
sl@0
|
309 |
Example1: aPluginName="uloggerfileplugin", aConfiguration.SetKey("output_path"), aConfiguration.SetValue(_L("c:\\logs\\ulogger\\tracelogs.btl"))
|
sl@0
|
310 |
Example2: aPluginName="uloggerserialplugin", aConfiguration.SetKey("baudrate") , aConfiguration.SetValue("115200")
|
sl@0
|
311 |
|
sl@0
|
312 |
@param aPluginName The plug-in name (without the .dll extension)
|
sl@0
|
313 |
@param aConfiguration TPluginConfiguration (key-value type configuration)
|
sl@0
|
314 |
@return KErrNone, if sending the SetPluginConfigurations message to the
|
sl@0
|
315 |
server was successful;
|
sl@0
|
316 |
KErrNotFound, if aPluginName does not match the name of an existing ULogger plug-in (output or input);
|
sl@0
|
317 |
KErrArgument, if aPluginName is an empty descriptor;
|
sl@0
|
318 |
otherwise one of the other system-wide error codes.
|
sl@0
|
319 |
*/
|
sl@0
|
320 |
IMPORT_C TInt SetPluginConfigurations(const TDesC8& aPluginName, const TPluginConfiguration& aConfiguration);
|
sl@0
|
321 |
|
sl@0
|
322 |
/**
|
sl@0
|
323 |
Gets all configurationas for the specified plug-in (output or input).
|
sl@0
|
324 |
|
sl@0
|
325 |
@param aPluginName The name of the plug-in. This is mapped to the plug-in
|
sl@0
|
326 |
file name, it can be retrieved by calling
|
sl@0
|
327 |
GetInstalledOutputPlugins and GetInstalledInputPlugins
|
sl@0
|
328 |
@param aConfigurations The array that is to be populated with plug-in
|
sl@0
|
329 |
configuration items. Ownership of any objects
|
sl@0
|
330 |
appended to this array is passed to the caller.
|
sl@0
|
331 |
@return KErrNone, if sending the PluginConfigurations message to the
|
sl@0
|
332 |
server was successful;
|
sl@0
|
333 |
KErrNotFound, if aPluginName does not match the name of an existing ULogger plug-in (output or input);
|
sl@0
|
334 |
KErrArgument, if aPluginName is an empty descriptor;
|
sl@0
|
335 |
otherwise one of the other system-wide error codes.
|
sl@0
|
336 |
|
sl@0
|
337 |
*/
|
sl@0
|
338 |
IMPORT_C TInt GetPluginConfigurations(const TDesC8& aPluginName, RPointerArray<TPluginConfiguration>& aConfigurations);
|
sl@0
|
339 |
|
sl@0
|
340 |
/**
|
sl@0
|
341 |
Removes all the configurations of the specified plug-in
|
sl@0
|
342 |
|
sl@0
|
343 |
@param aPluginName The plug-in name whose settings are to be removed
|
sl@0
|
344 |
@return KErrNone, if sending the RemovePluginConfigurations message to the
|
sl@0
|
345 |
server was successful;
|
sl@0
|
346 |
KErrNotFound, if aPluginName does not match the name of an existing ULogger plug-in (output or input)
|
sl@0
|
347 |
or the plug-in had no settings;
|
sl@0
|
348 |
KErrArgument, if aPluginName is an empty descriptor;
|
sl@0
|
349 |
otherwise one of the other system-wide error codes.
|
sl@0
|
350 |
*/
|
sl@0
|
351 |
IMPORT_C TInt RemovePluginConfigurations(const TDesC8& aPluginName);
|
sl@0
|
352 |
|
sl@0
|
353 |
/**
|
sl@0
|
354 |
Sets the size of the trace buffer, specified in KB (default: 1024KB).
|
sl@0
|
355 |
The trace buffer is the buffer that UTrace uses to hold the trace packets
|
sl@0
|
356 |
before they are output (using the currently active output plug-in).
|
sl@0
|
357 |
See also the documentation of SetNotificationSize().
|
sl@0
|
358 |
|
sl@0
|
359 |
@param aSize The desired new trace buffer size in KB
|
sl@0
|
360 |
@return KErrNone, if sending the SetBufferSize message to the server was
|
sl@0
|
361 |
successful;
|
sl@0
|
362 |
KErrArgument, if aSize value is not in range [1-1024];
|
sl@0
|
363 |
KErrGeneral, if aSize value is smaller than data notification size;
|
sl@0
|
364 |
otherwise one of the other system-wide error codes.
|
sl@0
|
365 |
*/
|
sl@0
|
366 |
IMPORT_C TInt SetBufferSize(TInt aSize);
|
sl@0
|
367 |
|
sl@0
|
368 |
/**
|
sl@0
|
369 |
Gets the size of the trace buffer in KB.
|
sl@0
|
370 |
See SetBufferSize() for an explanation of the trace buffer size.
|
sl@0
|
371 |
|
sl@0
|
372 |
@param aSize The TInt to be populated with the trace buffer size in KB.
|
sl@0
|
373 |
@return KErrNone, if sending the BufferSize message to the server was
|
sl@0
|
374 |
successful;
|
sl@0
|
375 |
otherwise one of the other system-wide error codes.
|
sl@0
|
376 |
*/
|
sl@0
|
377 |
IMPORT_C TInt GetBufferSize(TInt& aSize);
|
sl@0
|
378 |
|
sl@0
|
379 |
/**
|
sl@0
|
380 |
Sets the data notification size, specified in KB (default: 512KB).
|
sl@0
|
381 |
The data notification size is a threshold on the trace buffer usage, above
|
sl@0
|
382 |
which the trace buffer is flushed, i.e. all the trace packets in the trace buffer
|
sl@0
|
383 |
are output using the active output plug-in.
|
sl@0
|
384 |
See also the documentation of SetBufferSize().
|
sl@0
|
385 |
|
sl@0
|
386 |
@param aSize The desired new data notification size in KB
|
sl@0
|
387 |
@return KErrNone, if sending the SetNotificationSize message to the server
|
sl@0
|
388 |
was successful;
|
sl@0
|
389 |
KErrArgument, if aSize value is not in range [0-1024];
|
sl@0
|
390 |
KErrGeneral, if aSize value is greater than trace buffer size;
|
sl@0
|
391 |
otherwise one of the other system-wide error codes.
|
sl@0
|
392 |
*/
|
sl@0
|
393 |
IMPORT_C TInt SetNotificationSize(TInt aSize);
|
sl@0
|
394 |
|
sl@0
|
395 |
/**
|
sl@0
|
396 |
Gets the data notification size.
|
sl@0
|
397 |
See SetNotificationSize() for an explanation of the data notification size.
|
sl@0
|
398 |
|
sl@0
|
399 |
@param aSize The TInt to be populated with the data notification size in KB.
|
sl@0
|
400 |
@return KErrNone, if sending the NotificationSize message to the server was
|
sl@0
|
401 |
successful;
|
sl@0
|
402 |
otherwise one of the other system-wide error codes.
|
sl@0
|
403 |
*/
|
sl@0
|
404 |
IMPORT_C TInt GetNotificationSize(TInt& aSize);
|
sl@0
|
405 |
|
sl@0
|
406 |
/**
|
sl@0
|
407 |
Sets the trace buffer mode.
|
sl@0
|
408 |
|
sl@0
|
409 |
@param aMode The buffer mode: 1 if Straight
|
sl@0
|
410 |
0 if Circular
|
sl@0
|
411 |
@return KErrNone, if sending the SetBufferMode message to the server was
|
sl@0
|
412 |
successful;
|
sl@0
|
413 |
KErrArgument, if the specified mode is not one of 0 or 1;
|
sl@0
|
414 |
otherwise one of the other system-wide error codes.
|
sl@0
|
415 |
*/
|
sl@0
|
416 |
IMPORT_C TInt SetBufferMode(TInt aMode);
|
sl@0
|
417 |
|
sl@0
|
418 |
/**
|
sl@0
|
419 |
Gets the trace buffer mode.
|
sl@0
|
420 |
|
sl@0
|
421 |
@param aMode The TInt to be populated with the buffer mode: 1 if Straight
|
sl@0
|
422 |
0 if Circular
|
sl@0
|
423 |
@return KErrNone, if sending the BufferMode message to the server was
|
sl@0
|
424 |
successful;
|
sl@0
|
425 |
otherwise one of the other system-wide error codes.
|
sl@0
|
426 |
*/
|
sl@0
|
427 |
IMPORT_C TInt GetBufferMode(TInt& aMode);
|
sl@0
|
428 |
|
sl@0
|
429 |
/**
|
sl@0
|
430 |
Gets the client side version number.
|
sl@0
|
431 |
|
sl@0
|
432 |
@return The client side version number.
|
sl@0
|
433 |
*/
|
sl@0
|
434 |
IMPORT_C TVersion Version();
|
sl@0
|
435 |
|
sl@0
|
436 |
private:
|
sl@0
|
437 |
TInt StartServer();
|
sl@0
|
438 |
|
sl@0
|
439 |
private:
|
sl@0
|
440 |
TUint32 iReserved1; // For future BC
|
sl@0
|
441 |
TUint32 iReserved2; // For future BC
|
sl@0
|
442 |
};
|
sl@0
|
443 |
|
sl@0
|
444 |
} // namespace
|
sl@0
|
445 |
|
sl@0
|
446 |
#endif // ULOGGERCLIENT_H
|