mirror of https://github.com/xfarrow/dircomp.git
Created header file
This commit is contained in:
parent
3cc0dc6b9c
commit
b52ad9f57b
40
dircomp.c
40
dircomp.c
|
@ -6,40 +6,15 @@ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
||||||
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <stdio.h>
|
# include "dircomp.h"
|
||||||
#include <stdlib.h>
|
|
||||||
#include <unistd.h>
|
|
||||||
#include <stdbool.h>
|
|
||||||
#include <dirent.h>
|
|
||||||
#include <openssl/sha.h>
|
|
||||||
#include <string.h>
|
|
||||||
#include <limits.h>
|
|
||||||
|
|
||||||
struct arguments{
|
|
||||||
char* directory1;
|
|
||||||
char* directory2;
|
|
||||||
bool r; // recursive
|
|
||||||
bool n; // compare names only
|
|
||||||
bool s; // compare hashes only
|
|
||||||
bool v; // verbose (default, at the moment)
|
|
||||||
bool h; // help
|
|
||||||
};
|
|
||||||
|
|
||||||
struct arguments get_arguments(int, char**);
|
|
||||||
void print_help(void);
|
|
||||||
void analyze_directories(char*, char*, struct arguments*);
|
|
||||||
unsigned char* get_sha1_file(char *);
|
|
||||||
|
|
||||||
int main(int argc, char* argv[]){
|
int main(int argc, char* argv[]){
|
||||||
struct arguments arguments = get_arguments(argc, argv);
|
struct arguments arguments = get_arguments(argc, argv);
|
||||||
|
|
||||||
if(arguments.h == true){
|
if(arguments.h == true){
|
||||||
print_help();
|
print_help();
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
analyze_directories(arguments.directory1, "", &arguments);
|
analyze_directories(arguments.directory1, "", &arguments);
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -79,15 +54,10 @@ struct arguments get_arguments(int argc, char** argv){
|
||||||
strcpy(provided_arguments.directory1, argv[optind]);
|
strcpy(provided_arguments.directory1, argv[optind]);
|
||||||
provided_arguments.directory2 = malloc( (strlen(argv[optind + 1]) * sizeof(char)) + 1);
|
provided_arguments.directory2 = malloc( (strlen(argv[optind + 1]) * sizeof(char)) + 1);
|
||||||
strcpy(provided_arguments.directory2, argv[optind + 1]);
|
strcpy(provided_arguments.directory2, argv[optind + 1]);
|
||||||
|
|
||||||
return provided_arguments;
|
return provided_arguments;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
void analyze_directories(char* directory1, char* directory2, struct arguments* arguments){
|
||||||
* References:
|
|
||||||
* https://www.gnu.org/software/libc/manual/html_node/Directory-Entries.html
|
|
||||||
*/
|
|
||||||
void analyze_directories(char* directory1, char* directory2, struct arguments* arguments){ // testing only
|
|
||||||
printf("\nAnalyzing directory %s\n", directory1);
|
printf("\nAnalyzing directory %s\n", directory1);
|
||||||
DIR *d;
|
DIR *d;
|
||||||
struct dirent *dir;
|
struct dirent *dir;
|
||||||
|
@ -114,10 +84,6 @@ void analyze_directories(char* directory1, char* directory2, struct arguments* a
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
|
||||||
* References:
|
|
||||||
* https://www.openssl.org/docs/man1.1.1/man3/SHA512_Init.html
|
|
||||||
*/
|
|
||||||
unsigned char* get_sha1_file(char *filename){
|
unsigned char* get_sha1_file(char *filename){
|
||||||
FILE* f = fopen(filename,"rb");
|
FILE* f = fopen(filename,"rb");
|
||||||
if(f == NULL){
|
if(f == NULL){
|
||||||
|
@ -128,13 +94,11 @@ unsigned char* get_sha1_file(char *filename){
|
||||||
// For a matter of efficiency, we do not read
|
// For a matter of efficiency, we do not read
|
||||||
// the whole file at once. It'd be heavy on RAM.
|
// the whole file at once. It'd be heavy on RAM.
|
||||||
// Instead, we read BYTES_TO_READ_AT_ONCE at time
|
// Instead, we read BYTES_TO_READ_AT_ONCE at time
|
||||||
|
|
||||||
#define BYTES_TO_READ_AT_ONCE 1048576 // 1MiB
|
#define BYTES_TO_READ_AT_ONCE 1048576 // 1MiB
|
||||||
unsigned int bytes; // how many bytes we have actually read from fread
|
unsigned int bytes; // how many bytes we have actually read from fread
|
||||||
#if BYTES_TO_READ_AT_ONCE > UINT_MAX
|
#if BYTES_TO_READ_AT_ONCE > UINT_MAX
|
||||||
#error Trying to read more bytes than what is possible to handle. Recompile using unsigned long or reduce BYTES_TO_READ_AT_ONCE
|
#error Trying to read more bytes than what is possible to handle. Recompile using unsigned long or reduce BYTES_TO_READ_AT_ONCE
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
SHA_CTX context;
|
SHA_CTX context;
|
||||||
unsigned char* hash = malloc(SHA_DIGEST_LENGTH * sizeof(unsigned char)); // result will be here
|
unsigned char* hash = malloc(SHA_DIGEST_LENGTH * sizeof(unsigned char)); // result will be here
|
||||||
unsigned char databuffer[BYTES_TO_READ_AT_ONCE];
|
unsigned char databuffer[BYTES_TO_READ_AT_ONCE];
|
||||||
|
|
|
@ -0,0 +1,41 @@
|
||||||
|
/*
|
||||||
|
|
||||||
|
THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
|
||||||
|
INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||||
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
||||||
|
|
||||||
|
*/
|
||||||
|
|
||||||
|
# ifndef DIRCOMP_GUARD
|
||||||
|
# define DIRCOMP_GUARD
|
||||||
|
|
||||||
|
#include <stdio.h>
|
||||||
|
#include <stdlib.h>
|
||||||
|
#include <unistd.h>
|
||||||
|
#include <stdbool.h>
|
||||||
|
#include <dirent.h>
|
||||||
|
#include <openssl/sha.h>
|
||||||
|
#include <string.h>
|
||||||
|
#include <limits.h>
|
||||||
|
|
||||||
|
struct arguments{
|
||||||
|
char* directory1;
|
||||||
|
char* directory2;
|
||||||
|
bool r; // recursive
|
||||||
|
bool n; // compare names only
|
||||||
|
bool s; // compare hashes only
|
||||||
|
bool v; // verbose (default, at the moment)
|
||||||
|
bool h; // help
|
||||||
|
};
|
||||||
|
|
||||||
|
struct arguments get_arguments(int, char**);
|
||||||
|
|
||||||
|
// Reference: https://www.gnu.org/software/libc/manual/html_node/Directory-Entries.html
|
||||||
|
void analyze_directories(char*, char*, struct arguments*);
|
||||||
|
|
||||||
|
// Reference: https://www.openssl.org/docs/man1.1.1/man3/SHA512_Init.html
|
||||||
|
unsigned char* get_sha1_file(char *);
|
||||||
|
|
||||||
|
void print_help(void);
|
||||||
|
|
||||||
|
#endif
|
Loading…
Reference in New Issue