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 config
|
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 |
|
sl@0
|
25 |
#ifndef ULOGGERSYSCONFIG_H
|
sl@0
|
26 |
#define ULOGGERSYSCONFIG_H
|
sl@0
|
27 |
|
sl@0
|
28 |
#include <e32base.h> //CBase
|
sl@0
|
29 |
|
sl@0
|
30 |
|
sl@0
|
31 |
namespace Ulogger
|
sl@0
|
32 |
{
|
sl@0
|
33 |
|
sl@0
|
34 |
class CConfigSettingsImpl;
|
sl@0
|
35 |
/**
|
sl@0
|
36 |
ULogger Configuration settings iterator class
|
sl@0
|
37 |
This class is used to iterate all the settings within a
|
sl@0
|
38 |
section in the configuration store.
|
sl@0
|
39 |
*/
|
sl@0
|
40 |
class CConfigSettingsIter : public CBase
|
sl@0
|
41 |
{
|
sl@0
|
42 |
friend class CConfigImpl;
|
sl@0
|
43 |
public:
|
sl@0
|
44 |
IMPORT_C static CConfigSettingsIter* NewL();
|
sl@0
|
45 |
|
sl@0
|
46 |
IMPORT_C ~CConfigSettingsIter();
|
sl@0
|
47 |
|
sl@0
|
48 |
IMPORT_C TBool Next(TPtrC8& aSetting,TPtrC8& aSettingValue);
|
sl@0
|
49 |
|
sl@0
|
50 |
IMPORT_C void Reset();
|
sl@0
|
51 |
|
sl@0
|
52 |
private:
|
sl@0
|
53 |
CConfigSettingsIter();
|
sl@0
|
54 |
CConfigSettingsImpl* iImpl;
|
sl@0
|
55 |
};
|
sl@0
|
56 |
|
sl@0
|
57 |
class CConfigImpl;
|
sl@0
|
58 |
/**
|
sl@0
|
59 |
ULogger Configuration class
|
sl@0
|
60 |
This class is provided to allow read and write access to
|
sl@0
|
61 |
the configuration store. It also allows the client to be
|
sl@0
|
62 |
notified when there is a configuration change.
|
sl@0
|
63 |
*/
|
sl@0
|
64 |
class CConfig : public CBase
|
sl@0
|
65 |
{
|
sl@0
|
66 |
public:
|
sl@0
|
67 |
IMPORT_C static CConfig* NewL(RHeap* aHeap,TFileName& aFilename);
|
sl@0
|
68 |
IMPORT_C static CConfig* NewLC(RHeap* aHeap,TFileName& aFilename);
|
sl@0
|
69 |
IMPORT_C ~CConfig();
|
sl@0
|
70 |
|
sl@0
|
71 |
IMPORT_C TInt GetSectionValues(const TDesC8& aSectionName,CConfigSettingsIter& aIter);
|
sl@0
|
72 |
IMPORT_C TInt GetOutputPlugins(CConfigSettingsIter& aIter);
|
sl@0
|
73 |
IMPORT_C TInt RemovePluginSettings(const TDesC8& aOutputChanId);
|
sl@0
|
74 |
|
sl@0
|
75 |
IMPORT_C TInt GetActiveFilters(CConfigSettingsIter& aIter,TInt aFilter);
|
sl@0
|
76 |
IMPORT_C TInt RemoveActiveFilter(const RArray<TUint32>& aFilter, const TInt &aFilterValue);
|
sl@0
|
77 |
//Get direct setting's value API
|
sl@0
|
78 |
|
sl@0
|
79 |
IMPORT_C TInt SetActiveFilter(const RArray<TUint32>& aFilter, const TDesC8 &aSectionName);
|
sl@0
|
80 |
IMPORT_C TInt SetTraceSettings(const TDesC8& aValue, const TDesC8& aSetting);
|
sl@0
|
81 |
|
sl@0
|
82 |
IMPORT_C TInt SetPluginSetting(const TDesC8& aOutputChanId,
|
sl@0
|
83 |
const TDesC8& aSetting,
|
sl@0
|
84 |
const TDesC8& aValue);
|
sl@0
|
85 |
IMPORT_C TInt SetActiveOutputPlugin(const TDesC8& aMediaName);
|
sl@0
|
86 |
|
sl@0
|
87 |
IMPORT_C TInt SetActiveInputPlugin(const TDesC8& aMediaName);
|
sl@0
|
88 |
|
sl@0
|
89 |
IMPORT_C TInt GetActivePlugins(CConfigSettingsIter& aIter);
|
sl@0
|
90 |
|
sl@0
|
91 |
IMPORT_C TInt GetTraceSettings(CConfigSettingsIter& aIter);
|
sl@0
|
92 |
|
sl@0
|
93 |
IMPORT_C TInt DeActivateOutputPlugin(const TDesC8& aMediaName);
|
sl@0
|
94 |
|
sl@0
|
95 |
IMPORT_C TInt DeActivateInputPlugin(const TDesC8& aMediaName);
|
sl@0
|
96 |
|
sl@0
|
97 |
private:
|
sl@0
|
98 |
|
sl@0
|
99 |
CConfig();
|
sl@0
|
100 |
CConfigImpl* iImpl;
|
sl@0
|
101 |
};
|
sl@0
|
102 |
}
|
sl@0
|
103 |
#endif //ULOGGERSYSCONFIG_H
|
sl@0
|
104 |
|