mirror of
https://github.com/reactos/reactos.git
synced 2024-11-04 22:00:55 +00:00
245 lines
5.9 KiB
C
245 lines
5.9 KiB
C
/*
|
|
* ReactOS Win32 Applications
|
|
* Copyright (C) 2005 ReactOS Team
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, write to the Free Software
|
|
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
*/
|
|
/*
|
|
* PROJECT: ReactOS Comp utility
|
|
* COPYRIGHT: See COPYING in the top level directory
|
|
* FILE: base/applications/cmdutils/comp/comp.c
|
|
* PURPOSE: Compares the contents of two files
|
|
* PROGRAMMERS: Ged Murphy (gedmurphy@gmail.com)
|
|
*/
|
|
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <assert.h>
|
|
|
|
#define WIN32_NO_STATUS
|
|
#include <windef.h>
|
|
#include <winbase.h>
|
|
|
|
#include <conutils.h>
|
|
|
|
#include "resource.h"
|
|
|
|
#define STRBUF 1024
|
|
|
|
/* getline: read a line, return length */
|
|
INT GetBuff(PBYTE buff, FILE* in)
|
|
{
|
|
return fread(buff, sizeof(BYTE), STRBUF, in);
|
|
}
|
|
|
|
INT FileSize(FILE* fd)
|
|
{
|
|
INT result = -1;
|
|
if (fseek(fd, 0, SEEK_END) == 0 && (result = ftell(fd)) != -1)
|
|
{
|
|
/* Restoring file pointer */
|
|
rewind(fd);
|
|
}
|
|
return result;
|
|
}
|
|
|
|
|
|
int wmain(int argc, WCHAR* argv[])
|
|
{
|
|
INT i;
|
|
|
|
/* File pointers */
|
|
FILE *fp1 = NULL;
|
|
FILE *fp2 = NULL;
|
|
|
|
INT BufLen1, BufLen2;
|
|
PBYTE Buff1 = NULL;
|
|
PBYTE Buff2 = NULL;
|
|
WCHAR File1[_MAX_PATH + 1], // File paths
|
|
File2[_MAX_PATH + 1];
|
|
BOOL bAscii = FALSE, // /A switch
|
|
bLineNos = FALSE; // /L switch
|
|
UINT LineNumber;
|
|
UINT Offset;
|
|
INT FileSizeFile1;
|
|
INT FileSizeFile2;
|
|
INT NumberOfOptions = 0;
|
|
INT FilesOK = 1;
|
|
INT Status = EXIT_SUCCESS;
|
|
|
|
/* Initialize the Console Standard Streams */
|
|
ConInitStdStreams();
|
|
|
|
/* Parse command line for options */
|
|
for (i = 1; i < argc; i++)
|
|
{
|
|
if (argv[i][0] == L'/')
|
|
{
|
|
switch (towlower(argv[i][1]))
|
|
{
|
|
case L'a':
|
|
bAscii = TRUE;
|
|
NumberOfOptions++;
|
|
break;
|
|
|
|
case L'l':
|
|
bLineNos = TRUE;
|
|
NumberOfOptions++;
|
|
break;
|
|
|
|
case L'?':
|
|
ConResPuts(StdOut, IDS_HELP);
|
|
return EXIT_SUCCESS;
|
|
|
|
default:
|
|
ConResPrintf(StdErr, IDS_INVALIDSWITCH, argv[i][1]);
|
|
ConResPuts(StdOut, IDS_HELP);
|
|
return EXIT_FAILURE;
|
|
}
|
|
}
|
|
}
|
|
|
|
if (argc - NumberOfOptions == 3)
|
|
{
|
|
wcsncpy(File1, argv[1 + NumberOfOptions], _MAX_PATH);
|
|
wcsncpy(File2, argv[2 + NumberOfOptions], _MAX_PATH);
|
|
}
|
|
else
|
|
{
|
|
ConResPuts(StdErr, IDS_BADSYNTAX);
|
|
return EXIT_FAILURE;
|
|
}
|
|
|
|
Buff1 = (PBYTE)malloc(STRBUF);
|
|
if (Buff1 == NULL)
|
|
{
|
|
ConPuts(StdErr, L"Can't get free memory for Buff1\n");
|
|
Status = EXIT_FAILURE;
|
|
goto Cleanup;
|
|
}
|
|
|
|
Buff2 = (PBYTE)malloc(STRBUF);
|
|
if (Buff2 == NULL)
|
|
{
|
|
ConPuts(StdErr, L"Can't get free memory for Buff2\n");
|
|
Status = EXIT_FAILURE;
|
|
goto Cleanup;
|
|
}
|
|
|
|
if ((fp1 = _wfopen(File1, L"rb")) == NULL)
|
|
{
|
|
ConResPrintf(StdErr, IDS_FILEERROR, File1);
|
|
Status = EXIT_FAILURE;
|
|
goto Cleanup;
|
|
}
|
|
if ((fp2 = _wfopen(File2, L"rb")) == NULL)
|
|
{
|
|
ConResPrintf(StdErr, IDS_FILEERROR, File2);
|
|
Status = EXIT_FAILURE;
|
|
goto Cleanup;
|
|
}
|
|
|
|
ConResPrintf(StdOut, IDS_COMPARING, File1, File2);
|
|
|
|
FileSizeFile1 = FileSize(fp1);
|
|
if (FileSizeFile1 == -1)
|
|
{
|
|
ConResPrintf(StdErr, IDS_FILESIZEERROR, File1);
|
|
Status = EXIT_FAILURE;
|
|
goto Cleanup;
|
|
}
|
|
|
|
FileSizeFile2 = FileSize(fp2);
|
|
if (FileSizeFile2 == -1)
|
|
{
|
|
ConResPrintf(StdErr, IDS_FILESIZEERROR, File2);
|
|
Status = EXIT_FAILURE;
|
|
goto Cleanup;
|
|
}
|
|
|
|
if (FileSizeFile1 != FileSizeFile2)
|
|
{
|
|
ConResPuts(StdOut, IDS_SIZEDIFFERS);
|
|
Status = EXIT_FAILURE;
|
|
goto Cleanup;
|
|
}
|
|
|
|
LineNumber = 1;
|
|
Offset = 0;
|
|
while (1)
|
|
{
|
|
BufLen1 = GetBuff(Buff1, fp1);
|
|
BufLen2 = GetBuff(Buff2, fp2);
|
|
|
|
if (ferror(fp1) || ferror(fp2))
|
|
{
|
|
ConResPuts(StdErr, IDS_READERROR);
|
|
Status = EXIT_FAILURE;
|
|
goto Cleanup;
|
|
}
|
|
|
|
if (!BufLen1 && !BufLen2)
|
|
break;
|
|
|
|
assert(BufLen1 == BufLen2);
|
|
for (i = 0; i < BufLen1; i++)
|
|
{
|
|
if (Buff1[i] != Buff2[i])
|
|
{
|
|
FilesOK = 0;
|
|
|
|
/* Reporting here a mismatch */
|
|
if (bLineNos)
|
|
ConResPrintf(StdOut, IDS_MISMATCHLINE, LineNumber);
|
|
else
|
|
ConResPrintf(StdOut, IDS_MISMATCHOFFSET, Offset);
|
|
|
|
if (bAscii)
|
|
{
|
|
ConResPrintf(StdOut, IDS_ASCIIDIFF, 1, Buff1[i]);
|
|
ConResPrintf(StdOut, IDS_ASCIIDIFF, 2, Buff2[i]);
|
|
}
|
|
else
|
|
{
|
|
ConResPrintf(StdOut, IDS_HEXADECIMALDIFF, 1, Buff1[i]);
|
|
ConResPrintf(StdOut, IDS_HEXADECIMALDIFF, 2, Buff2[i]);
|
|
}
|
|
}
|
|
|
|
Offset++;
|
|
|
|
if (Buff1[i] == '\n')
|
|
LineNumber++;
|
|
}
|
|
}
|
|
|
|
if (FilesOK)
|
|
ConResPuts(StdOut, IDS_MATCH);
|
|
|
|
Cleanup:
|
|
if (fp2)
|
|
fclose(fp2);
|
|
if (fp1)
|
|
fclose(fp1);
|
|
|
|
if (Buff2)
|
|
free(Buff2);
|
|
if (Buff1)
|
|
free(Buff1);
|
|
|
|
return Status;
|
|
}
|
|
|
|
/* EOF */
|