os/security/cryptomgmtlibs/securitytestfw/test/testhandler2/t_utils.cpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
/*
sl@0
     2
* Copyright (c) 1998-2009 Nokia Corporation and/or its subsidiary(-ies).
sl@0
     3
* All rights reserved.
sl@0
     4
* This component and the accompanying materials are made available
sl@0
     5
* under the terms of the License "Eclipse Public License v1.0"
sl@0
     6
* which accompanies this distribution, and is available
sl@0
     7
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
sl@0
     8
*
sl@0
     9
* Initial Contributors:
sl@0
    10
* Nokia Corporation - initial contribution.
sl@0
    11
*
sl@0
    12
* Contributors:
sl@0
    13
*
sl@0
    14
* Description: 
sl@0
    15
*
sl@0
    16
*/
sl@0
    17
sl@0
    18
sl@0
    19
#include <s32file.h>
sl@0
    20
#include "t_utils.h"
sl@0
    21
sl@0
    22
sl@0
    23
const TInt KBufferSize = 1024;
sl@0
    24
sl@0
    25
EXPORT_C TBool Utils::CompareFileL(const TDesC& aFileName1, const TDesC& aFileName2, TInt &aError)
sl@0
    26
	{
sl@0
    27
	RFile file1, file2;
sl@0
    28
	RFs fs;
sl@0
    29
	TInt err1, err2, size1, size2;
sl@0
    30
	TBool success = EFalse;
sl@0
    31
sl@0
    32
	// checks files are different
sl@0
    33
	if(aFileName1 == aFileName2)
sl@0
    34
		{
sl@0
    35
		aError = KErrNotFound;
sl@0
    36
		return(EFalse);
sl@0
    37
		};
sl@0
    38
sl@0
    39
	User::LeaveIfError(fs.Connect());
sl@0
    40
	CleanupClosePushL(fs);
sl@0
    41
sl@0
    42
	// opens first file
sl@0
    43
	err1 = file1.Open(fs, aFileName1, EFileRead);
sl@0
    44
	if (err1 != KErrNone)
sl@0
    45
		{
sl@0
    46
		CleanupStack::PopAndDestroy(); // fs
sl@0
    47
		aError = KErrNotFound;
sl@0
    48
		return(EFalse);
sl@0
    49
		}
sl@0
    50
	CleanupClosePushL(file1);
sl@0
    51
sl@0
    52
	//opens second file
sl@0
    53
	err2 = file2.Open(fs, aFileName2, EFileRead);
sl@0
    54
	if (err2 != KErrNone)
sl@0
    55
		{
sl@0
    56
		CleanupStack::PopAndDestroy(2); // fs, file1
sl@0
    57
		aError = KErrNotFound;
sl@0
    58
		return(EFalse);
sl@0
    59
		}
sl@0
    60
	CleanupClosePushL(file2);
sl@0
    61
sl@0
    62
	TBool finished = EFalse;
sl@0
    63
	HBufC8 *fileBuf1 = HBufC8::NewLC(KBufferSize);
sl@0
    64
	HBufC8 *fileBuf2 = HBufC8::NewLC(KBufferSize);
sl@0
    65
	TPtr8 filePtr1(fileBuf1->Des());
sl@0
    66
	TPtr8 filePtr2(fileBuf2->Des());
sl@0
    67
sl@0
    68
	file1.Size(size1);
sl@0
    69
	file2.Size(size2);
sl@0
    70
sl@0
    71
	// compares size, no need to do any more checking if they are different
sl@0
    72
	if(size1 == size2)
sl@0
    73
		{
sl@0
    74
		success = ETrue;
sl@0
    75
		do
sl@0
    76
			{
sl@0
    77
			// reads in buffer from each file
sl@0
    78
			// cannot rely on max length of descriptor so pass in size of 
sl@0
    79
			// buffer to read
sl@0
    80
			err1 = file1.Read(filePtr1,KBufferSize);
sl@0
    81
			err2 = file2.Read(filePtr2,KBufferSize);
sl@0
    82
			// checks if an error has occured
sl@0
    83
			if(err1 != KErrNone && err2 != KErrNone)
sl@0
    84
				{
sl@0
    85
				finished = ETrue;
sl@0
    86
				success = EFalse;
sl@0
    87
				};
sl@0
    88
			// executes a binary compare
sl@0
    89
			if(fileBuf1->Compare(*fileBuf2)!=0)
sl@0
    90
				{
sl@0
    91
				// binary compare failed, file are different
sl@0
    92
				finished = ETrue;
sl@0
    93
				success = EFalse;
sl@0
    94
				};
sl@0
    95
			// checks for EOF
sl@0
    96
			if(fileBuf1->Length() != KBufferSize)
sl@0
    97
				finished = ETrue;
sl@0
    98
			}
sl@0
    99
		while(!finished);
sl@0
   100
		};
sl@0
   101
sl@0
   102
	
sl@0
   103
	CleanupStack::PopAndDestroy(5); // fs, file1, file2, fileBuf1, fileBuf2
sl@0
   104
	return(success);
sl@0
   105
	};
sl@0
   106