Update contrib.
1 // Copyright (c) 2005-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.
14 // This class contains all the entry class which is used to register the
15 // plugin. The additional data and functionality is to take account of plugins
16 // that are discovered by their dll entry, rsc entry, and spi entry
20 #ifndef _EComEntryBase_H
21 #define _EComEntryBase_H
25 #include "RegistryData.h"
28 CPluginBase is the base class for ECOM plugins discovered through different
29 mechanism e.g through Dll, Rsc file or from Spi file.
31 class CPluginBase:public CBase
35 CResourceFile* RscFile() const{return iRscFile;}
36 virtual ~CPluginBase();
37 virtual HBufC* RscFileExt() const{ return NULL;}
40 iDllSecondUid: Identifies type of the Interface Implementation Collection. (collection or collection3)
41 It will be used by CLoadManager to decide how to initialise a plugin.
45 iDllThirdUid: Identifies a component uniquely.
49 TTime iDllModifiedTime;
52 CResourceFile* iRscFile;
59 class RResourceArchive;
61 CSecurePlugin refers to the new secure ecom plugin that is discovered through
62 resource file as a result of platform security. These resource files are stored
63 in <drive>\Resource\Plugins
65 class CSecurePlugin :public CPluginBase
68 static CSecurePlugin* NewL(RFs& aFs,const TEntry& aEntry,const TDriveName& aDriveName, TBool aIsRO);
69 virtual ~CSecurePlugin();
70 HBufC* RscFileExt() const{ return iRscFileExt;}
72 CSecurePlugin(const TEntry& aEntry);
73 void ConstructL(RFs& aFs,const TEntry& aEntry,const TDriveName& aDriveName, TBool aIsRO);
79 CSpiPlugin refers to ecom plugin that is discovered through reading the resource
80 archive(a spi file). The resource archive only applies to read only drive.
82 class CSpiPlugin :public CPluginBase
85 static CSpiPlugin* NewL(RResourceArchive& aRscArchive);
88 void ConstructL(RResourceArchive& aRscArchive);
92 #endif //_EComEntryBase_H