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.
18 #include <barsread2.h>
20 #include <ecom/ecomerrorcodes.h>
22 #include "Discoverer.h"
23 #include "EComEntryBase.h"
24 #include "EComUidCodes.h"
25 #include "DriveInfo.h"
27 const TInt KEcomResourceIndex=1;
28 const TInt KEComDllExtensionLength=4;
30 CPluginBase::CPluginBase():CBase()
34 CPluginBase::~CPluginBase()
41 CSecurePlugin::CSecurePlugin(const TEntry& aEntry):CPluginBase()
43 //only needs to copy the modified time here and construct the dll name
44 iDllModifiedTime=aEntry.iModified;
47 CSecurePlugin* CSecurePlugin::NewL(RFs& aFs,const TEntry& aEntry,const TDriveName& aDriveName, TBool aIsRO)
49 CSecurePlugin* self=new (ELeave) CSecurePlugin(aEntry);
50 CleanupStack::PushL(self);
51 self->ConstructL(aFs,aEntry,aDriveName, aIsRO);
56 void CSecurePlugin::ConstructL(RFs& aFs,const TEntry& aEntry,const TDriveName& aDriveName, TBool aIsRO)
58 TInt resourceNameOnlyLength=aEntry.iName.Length()-KExtensionLength;
59 TPtrC resourceNameOnly(aEntry.iName.Left(resourceNameOnlyLength));
61 //constructing the dll file name
62 iDllName=HBufC::NewL(KEComDllExtensionLength+resourceNameOnlyLength);
63 TPtr namePtr=iDllName->Des();
64 namePtr.Append(resourceNameOnly);
65 namePtr.Append(KDllExtension);
67 //Constructing the rsc file name
68 TFileName rscFileName;
69 rscFileName.Append(aDriveName);
70 rscFileName.Append(KResourcePlugins);
71 rscFileName.Append(resourceNameOnly);
72 rscFileName.Append(KRscExtension);
74 //Construct the CResourceFile
75 BaflUtils::NearestLanguageFile(aFs,rscFileName);
76 iRscFile=CResourceFile::NewL(aFs,rscFileName,0,0);
78 //Now get the secure id from resource and store in iDllThirdUid
79 //In addition, store the correct Interface Implementation Collection Uid in iDllSecondUid
80 RResourceReader theReader;
81 theReader.OpenLC(iRscFile,KEcomResourceIndex);
82 const TUid uid={theReader.ReadInt32L()};
83 if (uid == KUidEComResourceFormatV3)
85 // If the resource format is version 3, then the dll type must
86 // be of type "plugin3".
87 iDllSecondUid = KUidInterfaceImplementationCollection3;
91 iDllSecondUid = KUidInterfaceImplementationCollection;
94 if (uid==KUidEComResourceFormatV2 || uid==KUidEComResourceFormatV3)
96 iDllThirdUid.iUid=theReader.ReadInt32L();
101 //Construct resource file extension
104 // rscFileName is sane so we can use TParsePtrC instead of TParse
105 TParsePtrC fileNameParser(rscFileName);
106 TPtrC fileNameParserPtr = fileNameParser.Ext();
107 iRscFileExt = fileNameParserPtr.AllocL();
110 //Perform cleanup now
111 CleanupStack::PopAndDestroy(&theReader);
114 CSecurePlugin::~CSecurePlugin()
120 CSpiPlugin::CSpiPlugin():CPluginBase()
124 CSpiPlugin* CSpiPlugin::NewL(RResourceArchive& aRscArchive)
126 CSpiPlugin* self=new (ELeave) CSpiPlugin();
127 CleanupStack::PushL(self);
128 self->ConstructL(aRscArchive);
133 void CSpiPlugin::ConstructL(RResourceArchive& aRscArchive)
135 HBufC* resourceName = NULL;
136 iRscFile=aRscArchive.NextL(resourceName);
137 CleanupStack::PushL(resourceName);
139 //Now set the iDllName
140 iDllName=HBufC::NewL(KEComDllExtensionLength+resourceName->Length());
141 TPtr namePtr(iDllName->Des());
142 namePtr.Append(*resourceName);
143 namePtr.Append(KDllExtension);
145 //Now get the secure id from resource and store the uid in iDllThirdUid
146 RResourceReader theReader;
147 theReader.OpenLC(iRscFile,KEcomResourceIndex);
148 const TUid uid={theReader.ReadInt32L()};
149 if (uid == KUidEComResourceFormatV3)
151 // If the resource format is version 3, then the dll type must
152 // be of type "plugin3".
153 iDllSecondUid = KUidInterfaceImplementationCollection3;
157 iDllSecondUid = KUidInterfaceImplementationCollection;
161 if (uid==KUidEComResourceFormatV2 || uid==KUidEComResourceFormatV3)
163 dllUid.iUid=theReader.ReadInt32L();
168 CleanupStack::PopAndDestroy(&theReader);
170 //Now perform the necessary cleanup
171 CleanupStack::PopAndDestroy(resourceName);