os/persistentdata/persistentstorage/dbms/security/SC_DomainLoader.h
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/persistentdata/persistentstorage/dbms/security/SC_DomainLoader.h	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,65 @@
     1.4 +// Copyright (c) 2004-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 +// CPolicyDomainLoader class
    1.18 +// 
    1.19 +//
    1.20 +
    1.21 +#ifndef __SC_DOMAINLOADER_H__
    1.22 +#define __SC_DOMAINLOADER_H__
    1.23 +
    1.24 +#include <e32base.h>
    1.25 +#include "D32Map.h"
    1.26 +#include "SC_Policy.h"
    1.27 +
    1.28 +namespace DBSC
    1.29 +{
    1.30 +
    1.31 +/**
    1.32 +CPolicyDomainLoader is a special policy file loader.
    1.33 +The "special" thing is that it will trap all errors during processing of
    1.34 +the binary policy files. If there is an error, the loader will check it
    1.35 +anld leave if it is KErrNoMemory. The rest of errors, which are caused by
    1.36 +things such as file system problems, hardware problems and binary policy file problems 
    1.37 +(bad format, bad names,...), will be supressed.
    1.38 +@internalComponent
    1.39 +*/
    1.40 +NONSHARABLE_CLASS(CPolicyDomainLoader) : public CBase
    1.41 +	{
    1.42 +public:
    1.43 +	static CPolicyDomainLoader* NewLC(RFs& aFs, const TDesC& aPolicyDir, 
    1.44 +									  RMap<TInt,CPolicyDomain*>& aPDCollection);
    1.45 +	virtual ~CPolicyDomainLoader();
    1.46 +	void RunL();
    1.47 +
    1.48 +private:
    1.49 +	inline CPolicyDomainLoader(RFs& aFs, const TDesC& aPolicyDir, 
    1.50 +							   RMap<TInt,CPolicyDomain*>& aPDCollection);
    1.51 +	void ConstructL();
    1.52 +	void CreatePolicyDomainL(TInt aPolicyFileIndex);
    1.53 +	void DoCreatePolicyDomainL(TInt aPolicyFileIndex);
    1.54 +	TUid CreatePolicyFilePathL(TInt aPolicyFileIndex);
    1.55 +
    1.56 +private:
    1.57 +	RFs&						iFs;
    1.58 +	const TDesC&				iPolicyDir;
    1.59 +	RMap<TInt, CPolicyDomain*>&	iPDCollection;
    1.60 +	CDir*						iFoundPolicyFiles;
    1.61 +	TParse						iParser;
    1.62 +	TBuf<KMaxPath>				iPolicyFilePath;
    1.63 +
    1.64 +	};
    1.65 +
    1.66 +} //end of - namespace DBSC
    1.67 +
    1.68 +#endif//__SC_DOMAINLOADER_H__