os/ossrv/lowlevellibsandfws/pluginfw/Framework/frame/EComEntryBase.cpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
// Copyright (c) 2005-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
//
sl@0
    15
sl@0
    16
#include <e32uid.h>
sl@0
    17
#include <bautils.h>
sl@0
    18
#include <barsread2.h>
sl@0
    19
#include <baspi.h>
sl@0
    20
#include <ecom/ecomerrorcodes.h>
sl@0
    21
sl@0
    22
#include "Discoverer.h"
sl@0
    23
#include "EComEntryBase.h"
sl@0
    24
#include "EComUidCodes.h"
sl@0
    25
#include "DriveInfo.h"
sl@0
    26
sl@0
    27
const TInt KEcomResourceIndex=1;
sl@0
    28
const TInt KEComDllExtensionLength=4;
sl@0
    29
sl@0
    30
CPluginBase::CPluginBase():CBase()
sl@0
    31
{
sl@0
    32
}
sl@0
    33
sl@0
    34
CPluginBase::~CPluginBase()
sl@0
    35
{
sl@0
    36
	delete iDllName;
sl@0
    37
	delete iRscFile;
sl@0
    38
}
sl@0
    39
sl@0
    40
//
sl@0
    41
CSecurePlugin::CSecurePlugin(const TEntry& aEntry):CPluginBase()
sl@0
    42
{
sl@0
    43
	//only needs to copy the modified time here and construct the dll name
sl@0
    44
	iDllModifiedTime=aEntry.iModified;
sl@0
    45
}
sl@0
    46
sl@0
    47
CSecurePlugin* CSecurePlugin::NewL(RFs& aFs,const TEntry& aEntry,const TDriveName& aDriveName, TBool aIsRO)
sl@0
    48
{
sl@0
    49
	CSecurePlugin* self=new (ELeave) CSecurePlugin(aEntry);
sl@0
    50
	CleanupStack::PushL(self);
sl@0
    51
	self->ConstructL(aFs,aEntry,aDriveName, aIsRO);
sl@0
    52
	CleanupStack::Pop();
sl@0
    53
	return self;
sl@0
    54
}
sl@0
    55
sl@0
    56
void CSecurePlugin::ConstructL(RFs& aFs,const TEntry& aEntry,const TDriveName& aDriveName, TBool aIsRO)
sl@0
    57
{
sl@0
    58
	TInt resourceNameOnlyLength=aEntry.iName.Length()-KExtensionLength;
sl@0
    59
	TPtrC resourceNameOnly(aEntry.iName.Left(resourceNameOnlyLength));
sl@0
    60
sl@0
    61
	//constructing the dll file name	
sl@0
    62
	iDllName=HBufC::NewL(KEComDllExtensionLength+resourceNameOnlyLength);
sl@0
    63
	TPtr namePtr=iDllName->Des();
sl@0
    64
	namePtr.Append(resourceNameOnly);
sl@0
    65
	namePtr.Append(KDllExtension);	
sl@0
    66
sl@0
    67
	//Constructing the rsc file name
sl@0
    68
	TFileName rscFileName;
sl@0
    69
	rscFileName.Append(aDriveName);
sl@0
    70
	rscFileName.Append(KResourcePlugins);
sl@0
    71
	rscFileName.Append(resourceNameOnly);
sl@0
    72
	rscFileName.Append(KRscExtension);
sl@0
    73
sl@0
    74
	//Construct the CResourceFile
sl@0
    75
	BaflUtils::NearestLanguageFile(aFs,rscFileName);
sl@0
    76
	iRscFile=CResourceFile::NewL(aFs,rscFileName,0,0);
sl@0
    77
sl@0
    78
	//Now get the secure id from resource and store in iDllThirdUid
sl@0
    79
	//In addition, store the correct Interface Implementation Collection Uid in iDllSecondUid
sl@0
    80
	RResourceReader theReader;
sl@0
    81
	theReader.OpenLC(iRscFile,KEcomResourceIndex);
sl@0
    82
	const TUid uid={theReader.ReadInt32L()};
sl@0
    83
	if (uid == KUidEComResourceFormatV3)		
sl@0
    84
		{
sl@0
    85
		// If the resource format is version 3, then the dll type must
sl@0
    86
		// be of type "plugin3".
sl@0
    87
		iDllSecondUid = KUidInterfaceImplementationCollection3;
sl@0
    88
		}
sl@0
    89
	else
sl@0
    90
		{
sl@0
    91
		iDllSecondUid = KUidInterfaceImplementationCollection;	
sl@0
    92
		}
sl@0
    93
			
sl@0
    94
	if (uid==KUidEComResourceFormatV2 || uid==KUidEComResourceFormatV3)
sl@0
    95
		{
sl@0
    96
		iDllThirdUid.iUid=theReader.ReadInt32L();
sl@0
    97
		}
sl@0
    98
	else
sl@0
    99
		iDllThirdUid=uid;
sl@0
   100
sl@0
   101
	//Construct resource file extension
sl@0
   102
	if(!aIsRO)
sl@0
   103
		{
sl@0
   104
		// rscFileName is sane so we can use TParsePtrC instead of TParse
sl@0
   105
		TParsePtrC fileNameParser(rscFileName);
sl@0
   106
		TPtrC fileNameParserPtr = fileNameParser.Ext();
sl@0
   107
		iRscFileExt = fileNameParserPtr.AllocL();
sl@0
   108
		}
sl@0
   109
	
sl@0
   110
	//Perform cleanup now
sl@0
   111
	CleanupStack::PopAndDestroy(&theReader);
sl@0
   112
}
sl@0
   113
sl@0
   114
CSecurePlugin::~CSecurePlugin()
sl@0
   115
{
sl@0
   116
	delete iRscFileExt;
sl@0
   117
}
sl@0
   118
sl@0
   119
//	
sl@0
   120
CSpiPlugin::CSpiPlugin():CPluginBase()
sl@0
   121
{
sl@0
   122
}
sl@0
   123
sl@0
   124
CSpiPlugin* CSpiPlugin::NewL(RResourceArchive& aRscArchive)
sl@0
   125
{
sl@0
   126
	CSpiPlugin* self=new (ELeave) CSpiPlugin();
sl@0
   127
	CleanupStack::PushL(self);
sl@0
   128
	self->ConstructL(aRscArchive);
sl@0
   129
	CleanupStack::Pop();
sl@0
   130
	return self;
sl@0
   131
}
sl@0
   132
sl@0
   133
void CSpiPlugin::ConstructL(RResourceArchive& aRscArchive)
sl@0
   134
{
sl@0
   135
	HBufC* resourceName = NULL;
sl@0
   136
	iRscFile=aRscArchive.NextL(resourceName);
sl@0
   137
	CleanupStack::PushL(resourceName);
sl@0
   138
	
sl@0
   139
	//Now set the iDllName
sl@0
   140
	iDllName=HBufC::NewL(KEComDllExtensionLength+resourceName->Length());
sl@0
   141
	TPtr namePtr(iDllName->Des());	
sl@0
   142
	namePtr.Append(*resourceName);
sl@0
   143
	namePtr.Append(KDllExtension);
sl@0
   144
		
sl@0
   145
	//Now get the secure id from resource and store the uid in iDllThirdUid
sl@0
   146
	RResourceReader theReader;
sl@0
   147
	theReader.OpenLC(iRscFile,KEcomResourceIndex);
sl@0
   148
	const TUid uid={theReader.ReadInt32L()};
sl@0
   149
	if (uid == KUidEComResourceFormatV3)		
sl@0
   150
		{
sl@0
   151
		// If the resource format is version 3, then the dll type must
sl@0
   152
		// be of type "plugin3".
sl@0
   153
		iDllSecondUid = KUidInterfaceImplementationCollection3;
sl@0
   154
		}
sl@0
   155
	else
sl@0
   156
		{
sl@0
   157
		iDllSecondUid = KUidInterfaceImplementationCollection;		
sl@0
   158
		}
sl@0
   159
	
sl@0
   160
	TUid dllUid;	
sl@0
   161
	if (uid==KUidEComResourceFormatV2 || uid==KUidEComResourceFormatV3)
sl@0
   162
		{
sl@0
   163
		dllUid.iUid=theReader.ReadInt32L();
sl@0
   164
		}
sl@0
   165
	else
sl@0
   166
		dllUid=uid;
sl@0
   167
	iDllThirdUid=dllUid;
sl@0
   168
	CleanupStack::PopAndDestroy(&theReader);
sl@0
   169
		
sl@0
   170
	//Now perform the necessary cleanup
sl@0
   171
	CleanupStack::PopAndDestroy(resourceName);
sl@0
   172
}
sl@0
   173
sl@0
   174
sl@0
   175