Update contrib.
2 * Copyright (c) 1998-2009 Nokia Corporation and/or its subsidiary(-ies).
4 * This component and the accompanying materials are made available
5 * under the terms of the License "Eclipse Public License v1.0"
6 * which accompanies this distribution, and is available
7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
9 * Initial Contributors:
10 * Nokia Corporation - initial contribution.
23 const TInt KBufferSize = 1024;
25 EXPORT_C TBool Utils::CompareFileL(const TDesC& aFileName1, const TDesC& aFileName2, TInt &aError)
29 TInt err1, err2, size1, size2;
30 TBool success = EFalse;
32 // checks files are different
33 if(aFileName1 == aFileName2)
35 aError = KErrNotFound;
39 User::LeaveIfError(fs.Connect());
40 CleanupClosePushL(fs);
43 err1 = file1.Open(fs, aFileName1, EFileRead);
46 CleanupStack::PopAndDestroy(); // fs
47 aError = KErrNotFound;
50 CleanupClosePushL(file1);
53 err2 = file2.Open(fs, aFileName2, EFileRead);
56 CleanupStack::PopAndDestroy(2); // fs, file1
57 aError = KErrNotFound;
60 CleanupClosePushL(file2);
62 TBool finished = EFalse;
63 HBufC8 *fileBuf1 = HBufC8::NewLC(KBufferSize);
64 HBufC8 *fileBuf2 = HBufC8::NewLC(KBufferSize);
65 TPtr8 filePtr1(fileBuf1->Des());
66 TPtr8 filePtr2(fileBuf2->Des());
71 // compares size, no need to do any more checking if they are different
77 // reads in buffer from each file
78 // cannot rely on max length of descriptor so pass in size of
80 err1 = file1.Read(filePtr1,KBufferSize);
81 err2 = file2.Read(filePtr2,KBufferSize);
82 // checks if an error has occured
83 if(err1 != KErrNone && err2 != KErrNone)
88 // executes a binary compare
89 if(fileBuf1->Compare(*fileBuf2)!=0)
91 // binary compare failed, file are different
96 if(fileBuf1->Length() != KBufferSize)
103 CleanupStack::PopAndDestroy(5); // fs, file1, file2, fileBuf1, fileBuf2