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.
25 #ifndef ULOGGERSYSCONFIG_H
26 #define ULOGGERSYSCONFIG_H
28 #include <e32base.h> //CBase
34 class CConfigSettingsImpl;
36 ULogger Configuration settings iterator class
37 This class is used to iterate all the settings within a
38 section in the configuration store.
40 class CConfigSettingsIter : public CBase
42 friend class CConfigImpl;
44 IMPORT_C static CConfigSettingsIter* NewL();
46 IMPORT_C ~CConfigSettingsIter();
48 IMPORT_C TBool Next(TPtrC8& aSetting,TPtrC8& aSettingValue);
50 IMPORT_C void Reset();
53 CConfigSettingsIter();
54 CConfigSettingsImpl* iImpl;
59 ULogger Configuration class
60 This class is provided to allow read and write access to
61 the configuration store. It also allows the client to be
62 notified when there is a configuration change.
64 class CConfig : public CBase
67 IMPORT_C static CConfig* NewL(RHeap* aHeap,TFileName& aFilename);
68 IMPORT_C static CConfig* NewLC(RHeap* aHeap,TFileName& aFilename);
71 IMPORT_C TInt GetSectionValues(const TDesC8& aSectionName,CConfigSettingsIter& aIter);
72 IMPORT_C TInt GetOutputPlugins(CConfigSettingsIter& aIter);
73 IMPORT_C TInt RemovePluginSettings(const TDesC8& aOutputChanId);
75 IMPORT_C TInt GetActiveFilters(CConfigSettingsIter& aIter,TInt aFilter);
76 IMPORT_C TInt RemoveActiveFilter(const RArray<TUint32>& aFilter, const TInt &aFilterValue);
77 //Get direct setting's value API
79 IMPORT_C TInt SetActiveFilter(const RArray<TUint32>& aFilter, const TDesC8 &aSectionName);
80 IMPORT_C TInt SetTraceSettings(const TDesC8& aValue, const TDesC8& aSetting);
82 IMPORT_C TInt SetPluginSetting(const TDesC8& aOutputChanId,
83 const TDesC8& aSetting,
84 const TDesC8& aValue);
85 IMPORT_C TInt SetActiveOutputPlugin(const TDesC8& aMediaName);
87 IMPORT_C TInt SetActiveInputPlugin(const TDesC8& aMediaName);
89 IMPORT_C TInt GetActivePlugins(CConfigSettingsIter& aIter);
91 IMPORT_C TInt GetTraceSettings(CConfigSettingsIter& aIter);
93 IMPORT_C TInt DeActivateOutputPlugin(const TDesC8& aMediaName);
95 IMPORT_C TInt DeActivateInputPlugin(const TDesC8& aMediaName);
103 #endif //ULOGGERSYSCONFIG_H