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 |
/**
|
sl@0
|
20 |
@file
|
sl@0
|
21 |
@internalTechnology
|
sl@0
|
22 |
@prototype
|
sl@0
|
23 |
*/
|
sl@0
|
24 |
#ifndef ULOGGERCONFIGMANAGER_H_
|
sl@0
|
25 |
#define ULOGGERCONFIGMANAGER_H_
|
sl@0
|
26 |
#include "uloggersysconfig.h"
|
sl@0
|
27 |
|
sl@0
|
28 |
namespace Ulogger
|
sl@0
|
29 |
{
|
sl@0
|
30 |
|
sl@0
|
31 |
class CConfigFileManager : public CBase
|
sl@0
|
32 |
{
|
sl@0
|
33 |
public:
|
sl@0
|
34 |
IMPORT_C static CConfigFileManager* NewL();
|
sl@0
|
35 |
IMPORT_C TInt RefreshConfigFiles();
|
sl@0
|
36 |
IMPORT_C TInt GetSectionValues(const TDesC8& aSectionName, CConfigSettingsIter& aIter);
|
sl@0
|
37 |
IMPORT_C TInt GetOutputPlugins(CConfigSettingsIter& aIter);
|
sl@0
|
38 |
IMPORT_C TInt RemovePluginSettings(const TDesC8& aOutputChanId);
|
sl@0
|
39 |
IMPORT_C TInt GetActiveFilters(CConfigSettingsIter& aIter,TInt aFilter);
|
sl@0
|
40 |
IMPORT_C TInt RemoveActiveFilter(const RArray<TUint32>& aFilter, const TInt &aFilterValue);
|
sl@0
|
41 |
//Get direct setting's value API
|
sl@0
|
42 |
IMPORT_C TInt SetActiveFilter(const RArray<TUint32>& aFilter, const TDesC8 &aSectionName);
|
sl@0
|
43 |
IMPORT_C TInt SetTraceSettings(const TDesC8& aValue, const TDesC8& aSetting);
|
sl@0
|
44 |
IMPORT_C TInt SetPluginSetting(const TDesC8& aOutputChanId,
|
sl@0
|
45 |
const TDesC8& aSetting,
|
sl@0
|
46 |
const TDesC8& aValue);
|
sl@0
|
47 |
IMPORT_C TInt SetActiveOutputPlugin(const TDesC8& aMediaName);
|
sl@0
|
48 |
IMPORT_C TInt SetActiveInputPlugin(const TDesC8& aMediaName);
|
sl@0
|
49 |
IMPORT_C TInt GetActiveInputPlugins(CConfigSettingsIter& aIter);
|
sl@0
|
50 |
IMPORT_C TInt GetPluginSettings(CConfigSettingsIter& aIter);
|
sl@0
|
51 |
IMPORT_C TInt DeActivateOutputPlugin(const TDesC8& aMediaName);
|
sl@0
|
52 |
IMPORT_C TInt DeActivateInputPlugin(const TDesC8& aMediaName);
|
sl@0
|
53 |
private:
|
sl@0
|
54 |
TInt ConstructL();
|
sl@0
|
55 |
TInt InitializeFilesL();
|
sl@0
|
56 |
TInt CheckIfFileExistsInPathL(const TDesC& aFilename, const TDesC& aPath, TFileName& aFullFilePath);
|
sl@0
|
57 |
TInt CopyFileToSystemDriveL(TFileName &aFilePath);
|
sl@0
|
58 |
private:
|
sl@0
|
59 |
CConfig* iConfig;
|
sl@0
|
60 |
TFileName iFilename;
|
sl@0
|
61 |
};
|
sl@0
|
62 |
|
sl@0
|
63 |
}//namespace
|
sl@0
|
64 |
#endif /*ULOGGERCONFIGMANAGER_H_*/
|