os/persistentdata/traceservices/tracefw/ulogger/inc/uloggerconfigmanager.h
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/persistentdata/traceservices/tracefw/ulogger/inc/uloggerconfigmanager.h	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,64 @@
     1.4 +// Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
     1.5 +// All rights reserved.
     1.6 +// This component and the accompanying materials are made available
     1.7 +// under the terms of "Eclipse Public License v1.0"
     1.8 +// which accompanies this distribution, and is available
     1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
    1.10 +//
    1.11 +// Initial Contributors:
    1.12 +// Nokia Corporation - initial contribution.
    1.13 +//
    1.14 +// Contributors:
    1.15 +//
    1.16 +// Description:
    1.17 +// ULogger config
    1.18 +//
    1.19 +
    1.20 +
    1.21 +
    1.22 +/**
    1.23 + @file
    1.24 + @internalTechnology
    1.25 + @prototype
    1.26 +*/
    1.27 +#ifndef ULOGGERCONFIGMANAGER_H_
    1.28 +#define ULOGGERCONFIGMANAGER_H_
    1.29 +#include "uloggersysconfig.h"
    1.30 +
    1.31 +namespace Ulogger
    1.32 +	{
    1.33 +	
    1.34 +	class CConfigFileManager : public CBase
    1.35 +	{
    1.36 +	public:
    1.37 +		IMPORT_C static CConfigFileManager* NewL();
    1.38 +		IMPORT_C TInt RefreshConfigFiles();
    1.39 +		IMPORT_C TInt GetSectionValues(const TDesC8& aSectionName, CConfigSettingsIter& aIter);
    1.40 +		IMPORT_C TInt GetOutputPlugins(CConfigSettingsIter& aIter);
    1.41 +		IMPORT_C TInt RemovePluginSettings(const TDesC8& aOutputChanId);
    1.42 +		IMPORT_C TInt GetActiveFilters(CConfigSettingsIter& aIter,TInt aFilter);
    1.43 +		IMPORT_C TInt RemoveActiveFilter(const RArray<TUint32>&  aFilter, const TInt &aFilterValue);
    1.44 +		//Get direct setting's value API
    1.45 +		IMPORT_C TInt SetActiveFilter(const RArray<TUint32>& aFilter, const TDesC8 &aSectionName);
    1.46 +		IMPORT_C TInt SetTraceSettings(const TDesC8&  aValue, const TDesC8& aSetting);
    1.47 +		IMPORT_C TInt SetPluginSetting(const TDesC8& aOutputChanId,
    1.48 +										const TDesC8& aSetting,
    1.49 +										const TDesC8& aValue);
    1.50 +		IMPORT_C TInt SetActiveOutputPlugin(const TDesC8& aMediaName);
    1.51 +		IMPORT_C TInt SetActiveInputPlugin(const TDesC8& aMediaName);
    1.52 +		IMPORT_C TInt GetActiveInputPlugins(CConfigSettingsIter& aIter);
    1.53 +		IMPORT_C TInt GetPluginSettings(CConfigSettingsIter& aIter);
    1.54 +		IMPORT_C TInt DeActivateOutputPlugin(const TDesC8& aMediaName);
    1.55 +		IMPORT_C TInt DeActivateInputPlugin(const TDesC8& aMediaName);
    1.56 +	private:
    1.57 +		TInt ConstructL();
    1.58 +		TInt InitializeFilesL();
    1.59 +		TInt CheckIfFileExistsInPathL(const TDesC& aFilename, const TDesC& aPath, TFileName& aFullFilePath);
    1.60 +		TInt CopyFileToSystemDriveL(TFileName &aFilePath);
    1.61 +	private:
    1.62 +		CConfig*	iConfig;
    1.63 +		TFileName iFilename;
    1.64 +	};
    1.65 +
    1.66 +}//namespace
    1.67 +#endif /*ULOGGERCONFIGMANAGER_H_*/