Moving file I/O to own file. Everything works except export.
This commit is contained in:
parent
1783b16024
commit
096cb2eb16
@ -21,6 +21,7 @@ include_directories(
|
|||||||
|
|
||||||
set(SRCS
|
set(SRCS
|
||||||
src/main.c
|
src/main.c
|
||||||
|
src/files.c
|
||||||
src/list.c)
|
src/list.c)
|
||||||
|
|
||||||
# Define the C flags.
|
# Define the C flags.
|
||||||
|
46
src/files.c
Normal file
46
src/files.c
Normal file
@ -0,0 +1,46 @@
|
|||||||
|
#include "files.h"
|
||||||
|
#include <stdio.h>
|
||||||
|
#include <gmp.h>
|
||||||
|
|
||||||
|
int inputPrimes(char *file, List *list) {
|
||||||
|
FILE *pFile = fopen(file, "r");
|
||||||
|
if(pFile == NULL) return 1;
|
||||||
|
mpz_t n;
|
||||||
|
mpz_init(n);
|
||||||
|
while(mpz_inp_raw(n, pFile) != 0) addToList(list, n);
|
||||||
|
if(fclose(pFile) != 0) return 2;
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
int outputPrimes(char *file, List *list) {
|
||||||
|
FILE *oFile = fopen(file, "w");
|
||||||
|
if(oFile == NULL) return 1;
|
||||||
|
printf("Saving primes to `%s'...\n", file);
|
||||||
|
puts("0%");
|
||||||
|
for(size_t i = 0; i < list->end; ++i) {
|
||||||
|
if(mpz_out_raw(oFile, list->list[i]) == 0) return 3;
|
||||||
|
if(i == list->end / 4) puts("25%");
|
||||||
|
else if(i == list->end / 2) puts("50%");
|
||||||
|
else if(i == list->end * 3 / 4) puts("75%");
|
||||||
|
}
|
||||||
|
puts("100%");
|
||||||
|
if(fclose(oFile) != 0) return 2;
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
int exportPrimes(char *file, List *list, int base) {
|
||||||
|
FILE *eFile = fopen(file, "w");
|
||||||
|
if(eFile == NULL) return 1;
|
||||||
|
printf("Exporting primes to `%s'...\n", file);
|
||||||
|
puts("0%");
|
||||||
|
for(size_t i = 0; i < list->end; ++i) {
|
||||||
|
if(mpz_out_str(eFile, list->list[i], base) == 0) return 3;
|
||||||
|
if(i == list->end / 4) puts("25%");
|
||||||
|
else if(i == list->end / 2) puts("50%");
|
||||||
|
else if(i == list->end * 3 / 4) puts("75%");
|
||||||
|
}
|
||||||
|
puts("100%");
|
||||||
|
if(fclose(eFile) != 0) return 2;
|
||||||
|
puts("Finished exporting primes.");
|
||||||
|
return 0;
|
||||||
|
}
|
36
src/files.h
Normal file
36
src/files.h
Normal file
@ -0,0 +1,36 @@
|
|||||||
|
/**
|
||||||
|
* @file files.h
|
||||||
|
* @author Deathsbreed <deathsbreed@themusicinnoise.net>
|
||||||
|
* @brief Functions to deal with file I/O of primes.
|
||||||
|
* @details Functions that input, output, and export primes from/to files.
|
||||||
|
*/
|
||||||
|
#pragma once
|
||||||
|
#include "list.h"
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Load primes from an Indivisible file into a List.
|
||||||
|
* @param file File to input primes from.
|
||||||
|
* @param list List to load primes into.
|
||||||
|
* @returns If 0 then load was successful, if 1 then failed to open,
|
||||||
|
* if 2 failed to close.
|
||||||
|
*/
|
||||||
|
int inputPrimes(char *file, List *list);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Output primes from a List into an Indivisible file.
|
||||||
|
* @param file File to output primes to.
|
||||||
|
* @param list List to read primes from.
|
||||||
|
* @returns If 0 then load was successful, if 1 then failed to open,
|
||||||
|
* if 2 failed to close, if 3 failed when writing.
|
||||||
|
*/
|
||||||
|
int outputPrimes(char *file, List *list);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Export primes from a List to a plain text file.
|
||||||
|
* @param file File to output primes as plain text to.
|
||||||
|
* @param list List to read primes from.
|
||||||
|
* @param base The base in which the primes will be written.
|
||||||
|
* @returns If 0 then load was successful, if 1 then failed to open,
|
||||||
|
* if 2 failed to close, if 3 failed when writing.
|
||||||
|
*/
|
||||||
|
int exportPrimes(char *file, List *list, int base);
|
106
src/main.c
106
src/main.c
@ -6,6 +6,7 @@
|
|||||||
#include <gmp.h>
|
#include <gmp.h>
|
||||||
|
|
||||||
#include "list.h"
|
#include "list.h"
|
||||||
|
#include "files.h"
|
||||||
|
|
||||||
#define VERSION "v1.0"
|
#define VERSION "v1.0"
|
||||||
|
|
||||||
@ -22,10 +23,11 @@ int main(int argc, char *argv[]) {
|
|||||||
int base = 10;
|
int base = 10;
|
||||||
char *ofile = NULL;
|
char *ofile = NULL;
|
||||||
char *ifile = NULL;
|
char *ifile = NULL;
|
||||||
|
char *efile = NULL;
|
||||||
|
|
||||||
// Parse commandline arguments
|
// Parse commandline arguments
|
||||||
int c;
|
int c;
|
||||||
while((c = getopt(argc, argv, "hvqb:o:i:")) != -1) {
|
while((c = getopt(argc, argv, "hvqb:o:i:e:")) != -1) {
|
||||||
switch(c) {
|
switch(c) {
|
||||||
case 'h':
|
case 'h':
|
||||||
f_help = true;
|
f_help = true;
|
||||||
@ -51,9 +53,12 @@ int main(int argc, char *argv[]) {
|
|||||||
case 'i':
|
case 'i':
|
||||||
ifile = optarg;
|
ifile = optarg;
|
||||||
break;
|
break;
|
||||||
|
case 'e':
|
||||||
|
efile = optarg;
|
||||||
|
break;
|
||||||
default:
|
default:
|
||||||
printUsage(argv[0]);
|
printUsage(argv[0]);
|
||||||
exit(1);
|
return 1;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -66,6 +71,7 @@ int main(int argc, char *argv[]) {
|
|||||||
puts(" -b <base> base in which to print primes between 2 and 62 (default 10)");
|
puts(" -b <base> base in which to print primes between 2 and 62 (default 10)");
|
||||||
puts(" -o <file> file to save primes to");
|
puts(" -o <file> file to save primes to");
|
||||||
puts(" -i <file> file to read primes from a previous session");
|
puts(" -i <file> file to read primes from a previous session");
|
||||||
|
puts(" -e <file> export input file to plain text format");
|
||||||
return 0;
|
return 0;
|
||||||
} else if(f_version) {
|
} else if(f_version) {
|
||||||
printf("Indivisible %s\n", VERSION);
|
printf("Indivisible %s\n", VERSION);
|
||||||
@ -76,10 +82,13 @@ int main(int argc, char *argv[]) {
|
|||||||
run = true;
|
run = true;
|
||||||
signal(SIGINT, leave);
|
signal(SIGINT, leave);
|
||||||
|
|
||||||
if(f_quiet) {
|
if(efile != NULL && ifile == NULL) {
|
||||||
puts("Use Ctrl+C (SIGINT) to exit.");
|
fprintf(stderr, "There must be an input file to export! Use `-h' for help.\n");
|
||||||
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
int exitCode = 0;
|
||||||
|
|
||||||
// Primes we've found
|
// Primes we've found
|
||||||
List primes;
|
List primes;
|
||||||
initList(&primes);
|
initList(&primes);
|
||||||
@ -88,6 +97,12 @@ int main(int argc, char *argv[]) {
|
|||||||
mpz_t num;
|
mpz_t num;
|
||||||
mpz_init(num);
|
mpz_init(num);
|
||||||
|
|
||||||
|
// Variable for half `num'
|
||||||
|
mpz_t halfNum;
|
||||||
|
mpz_init(halfNum);
|
||||||
|
|
||||||
|
if(efile == NULL) puts("Use Ctrl+C to exit.");
|
||||||
|
|
||||||
if(ifile == NULL) {
|
if(ifile == NULL) {
|
||||||
// Add 2, a known prime to this list
|
// Add 2, a known prime to this list
|
||||||
mpz_set_ui(num, 2);
|
mpz_set_ui(num, 2);
|
||||||
@ -95,6 +110,7 @@ int main(int argc, char *argv[]) {
|
|||||||
if(!f_quiet) {
|
if(!f_quiet) {
|
||||||
if(mpz_out_str(stdout, base, num) == 0) {
|
if(mpz_out_str(stdout, base, num) == 0) {
|
||||||
fprintf(stderr, "Could not print to `stdout'!\n");
|
fprintf(stderr, "Could not print to `stdout'!\n");
|
||||||
|
exitCode = 1;
|
||||||
goto releaseMemory;
|
goto releaseMemory;
|
||||||
}
|
}
|
||||||
printf("\n");
|
printf("\n");
|
||||||
@ -102,24 +118,37 @@ int main(int argc, char *argv[]) {
|
|||||||
mpz_add_ui(num, num, 1);
|
mpz_add_ui(num, num, 1);
|
||||||
} else {
|
} else {
|
||||||
// Load primes from file
|
// Load primes from file
|
||||||
FILE *pFile = fopen(ifile, "r");
|
int err = inputPrimes(ifile, &primes);
|
||||||
if(pFile == NULL) {
|
|
||||||
fprintf(stderr, "Failed to open primes file `%s'.\n", ifile);
|
if(err == 0) {
|
||||||
|
printf("Loaded %zu primes.\n", primes.end);
|
||||||
|
} else {
|
||||||
|
if(err == 1)
|
||||||
|
fprintf(stderr, "Failed to open Indivisible file `%s'.\n", ifile);
|
||||||
|
else if(err == 2)
|
||||||
|
fprintf(stderr, "Failed to close Indivisible file `%s'.\n", ifile);
|
||||||
|
exitCode = 1;
|
||||||
goto releaseMemory;
|
goto releaseMemory;
|
||||||
}
|
}
|
||||||
while(mpz_inp_raw(num, pFile) != 0) {
|
mpz_set(num, primes.list[primes.end]);
|
||||||
addToList(&primes, num);
|
|
||||||
}
|
|
||||||
if(fclose(pFile) != 0) {
|
|
||||||
fprintf(stderr, "Failed to close file `%s'.\n", ifile);
|
|
||||||
goto releaseMemory;
|
|
||||||
}
|
|
||||||
printf("Loaded %zu primes.\n", primes.end);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Variable for half `num'
|
if(efile != NULL) {
|
||||||
mpz_t halfNum;
|
int err = exportPrimes(efile, &primes, base);
|
||||||
mpz_init(halfNum);
|
|
||||||
|
if(err == 0) {
|
||||||
|
puts("Successfully exported primes.");
|
||||||
|
} else {
|
||||||
|
if(err == 1)
|
||||||
|
fprintf(stderr, "Failed to open/create plain text file `%s'.\n", efile);
|
||||||
|
else if(err == 2)
|
||||||
|
fprintf(stderr, "Failed to close plain text file `%s'.\n", efile);
|
||||||
|
else if(err == 3)
|
||||||
|
fprintf(stderr, "Failed to write prime to plain text file `%s'.\n", efile);
|
||||||
|
exitCode = 1;
|
||||||
|
}
|
||||||
|
goto releaseMemory;
|
||||||
|
}
|
||||||
|
|
||||||
do {
|
do {
|
||||||
// Calculate half of `num'
|
// Calculate half of `num'
|
||||||
@ -139,6 +168,7 @@ int main(int argc, char *argv[]) {
|
|||||||
if(!f_quiet) {
|
if(!f_quiet) {
|
||||||
if(mpz_out_str(stdout, base, num) == 0) {
|
if(mpz_out_str(stdout, base, num) == 0) {
|
||||||
fprintf(stderr, "Could not print to `stdout'!\n");
|
fprintf(stderr, "Could not print to `stdout'!\n");
|
||||||
|
exitCode = 1;
|
||||||
goto releaseMemory;
|
goto releaseMemory;
|
||||||
}
|
}
|
||||||
printf("\n");
|
printf("\n");
|
||||||
@ -150,42 +180,34 @@ nextPrime:
|
|||||||
} while(run);
|
} while(run);
|
||||||
|
|
||||||
printf("Found %zu primes.\n", primes.end);
|
printf("Found %zu primes.\n", primes.end);
|
||||||
// Clear GMP variables
|
|
||||||
mpz_clear(halfNum);
|
|
||||||
mpz_clear(num);
|
|
||||||
|
|
||||||
if(ofile != NULL) {
|
if(ofile != NULL) {
|
||||||
FILE *outFile = fopen(ofile, "w+");
|
int err = outputPrimes(ofile, &primes);
|
||||||
if(outFile == NULL) {
|
if(err == 0) {
|
||||||
fprintf(stderr, "Failed create file `%s'.\n", ofile);
|
puts("Successfully saved primes.");
|
||||||
|
} else {
|
||||||
|
if(err == 1)
|
||||||
|
fprintf(stderr, "Failed to open/create file `%s'.\n", ofile);
|
||||||
|
else if(err == 2)
|
||||||
|
fprintf(stderr, "Failed to close file `%s'.\n", ofile);
|
||||||
|
else if(err == 3)
|
||||||
|
fprintf(stderr, "Failed while writing a prime to `%s'.\n", ofile);
|
||||||
|
exitCode = 1;
|
||||||
goto releaseMemory;
|
goto releaseMemory;
|
||||||
}
|
}
|
||||||
printf("Writing primes to `%s'...\n", ofile);
|
|
||||||
puts("0%");
|
|
||||||
for(size_t i = 0; i < primes.end; ++i) {
|
|
||||||
if(mpz_out_raw(outFile, primes.list[i]) == 0) {
|
|
||||||
fprintf(stderr, "Error occurred while writing to file `%s'.\n", ofile);
|
|
||||||
goto releaseMemory;
|
|
||||||
}
|
|
||||||
if(i == primes.end / 4) puts("25%");
|
|
||||||
else if(i == primes.end / 2) puts("50%");
|
|
||||||
else if(i == primes.end * 3 / 4) puts("75%");
|
|
||||||
}
|
|
||||||
if(fclose(outFile) != 0) {
|
|
||||||
fprintf(stderr, "Failed to close file `%s'.\n", ofile);
|
|
||||||
goto releaseMemory;
|
|
||||||
}
|
|
||||||
puts("100%");
|
|
||||||
puts("Finished writing primes.");
|
|
||||||
}
|
}
|
||||||
|
|
||||||
releaseMemory:
|
releaseMemory:
|
||||||
puts("Clearing memory...");
|
puts("Clearing memory...");
|
||||||
|
// Clear GMP variables
|
||||||
|
mpz_clear(halfNum);
|
||||||
|
mpz_clear(num);
|
||||||
// Deinitialize the list
|
// Deinitialize the list
|
||||||
deInitList(&primes);
|
deInitList(&primes);
|
||||||
|
|
||||||
puts("Exit successful.");
|
puts("Exit successful.");
|
||||||
return 0;
|
return exitCode;
|
||||||
}
|
}
|
||||||
|
|
||||||
void printUsage(char *progName) {
|
void printUsage(char *progName) {
|
||||||
|
Loading…
Reference in New Issue
Block a user