imgtools/imgcheck/src/vidchecker.cpp
author timothy.murphy@nokia.com
Thu, 25 Mar 2010 13:43:28 +0000
branchfix
changeset 408 a819f9223567
parent 0 044383f39525
child 590 360bd6b35136
permissions -rw-r--r--
fix: stop using "magic" numbers in string operations for the copyannofile2log feature fix: When using the copylogfromannofile workaround, extract the build ID and build duration and add to the log as these are useful for analysis. The log should now be identical to the stdout file. fix: Remove extra blank lines from output in copylogfromannofile mode.

/*
* Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
* Initial Contributors:
* Nokia Corporation - initial contribution.
*
* Contributors:
*
* Description: 
* VidChecker class is to 
* 1. extract all VIDs from all executables present in ROM/ROFS sections.
* 2. Validate them.
* 3. Put the validated data into Reporter class Instance.
*
*/


/**
 @file
 @internalComponent
 @released
*/
#include "vidchecker.h"

/** 
Constructor intializes the iVidValList member.

@internalComponent
@released

@param aCmdPtr - pointer to an processed CmdLineHandler object
@param aImageReaderList - List of ImageReader insatance pointers
*/
VidChecker::VidChecker(CmdLineHandler* aCmdPtr, ImageReaderPtrList& aImageReaderList)
:Checker(aCmdPtr, aImageReaderList)
{
	iVidValList = iCmdLine->VidValueList();
	iVidValList.push_back(KDefaultVid);
}

/**
Destructor

@internalComponent
@released
*/
VidChecker::~VidChecker()
{
	iVidValList.clear();
}

/**
Fucntion responsible to Prepare the ROM and ROFS image VID data

@internalComponent
@released

@param ImgVsExeStatus - Global integrated container which contains image, exes and attribute value status.
*/
void VidChecker::Check(ImgVsExeStatus& aImgVsExeStatus)
{
	ImageReaderPtrList::iterator begin = iImageReaderList.begin();
	ImageReaderPtrList::iterator end = iImageReaderList.end();

	ExeVsIdDataMap::iterator exeBegin;
	ExeVsIdDataMap::iterator exeEnd;

	String imageName;

	while(begin != end)
	{
		ImageReader* imageReader = *begin;
		imageName = imageReader->ImageName();
		ExceptionReporter(GATHERINGIDDATA, (char*)KVid.c_str(),(char*)imageName.c_str()).Log();
		imageReader->PrepareExeVsIdMap();
		ExeVsIdDataMap& exeVsIdDataMa = (ExeVsIdDataMap&)imageReader->GetExeVsIdMap();
		exeBegin = exeVsIdDataMa.begin();
		exeEnd = exeVsIdDataMa.end();
		if((aImgVsExeStatus[imageName].size() == 0) 
			|| (aImgVsExeStatus[imageName][exeBegin->first].iIdData == KNull))
		{
			while(exeBegin != exeEnd)
			{
				aImgVsExeStatus[imageName][exeBegin->first].iIdData = exeBegin->second;
				aImgVsExeStatus[imageName][exeBegin->first].iExeName = exeBegin->first;
				++exeBegin;
			}
		}
		++begin;
	}
}

/**
Function responsible to Validate and write the VID data into Reporter.

@internalComponent
@released

@param aExeContainer - Global integrated container which contains all the attribute, values and the status.
*/
void VidChecker::PrepareAndWriteData(ExeContainer* aExeContainer)
{
	ExeAttribute* exeAtt = KNull;
	
	IdData* idData = KNull;

	idData = aExeContainer->iIdData;
	exeAtt = new ExeAttribute;
	if(!exeAtt)
	{
		throw ExceptionReporter(NOMEMORY, __FILE__, __LINE__);
	}
	exeAtt->iAttName = KVid;
	exeAtt->iAttValue = Common::IntToString(idData->iVid);
	if(!iNoCheck)
	{
		FillExeVidStatus(idData);
		exeAtt->iAttStatus = idData->iVidStatus;
	}
	else
	{
		exeAtt->iAttStatus = KNull;
	}
	if(iAllExecutables || (exeAtt->iAttStatus == KInValid) || iNoCheck)
	{
		aExeContainer->iExeAttList.push_back(exeAtt);
	}
}

/**
Function responsible to Validate the executble VID.
1. Compare the executable VID with all the iVidValList entries, if any one of the
comparison is success then the VID status is Valid.
2. Otherwise Invalid.

@internalComponent
@released

@param aIdData - Executable's IdData data instance.
*/
void VidChecker::FillExeVidStatus(IdData* aIdData)
{
	aIdData->iVidStatus.assign(KInValid);
	UnIntList::iterator vidValBegin = iVidValList.begin();
	UnIntList::iterator vidValEnd = iVidValList.end();

	while(vidValBegin != vidValEnd)
	{
		if((*vidValBegin) == aIdData->iVid)
		{
			aIdData->iVidStatus = KValid;
			break;
		}
		++vidValBegin;
	}
}