mirror of
https://github.com/peter-tanner/Systems-programming-labs.git
synced 2024-11-30 10:50:19 +08:00
week 9 mywc all done
This commit is contained in:
parent
deeb3836ad
commit
c9a9de671b
5
Week 9/3_mywc/debugging.txt
Normal file
5
Week 9/3_mywc/debugging.txt
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
Debugging is twice as hard as writing the code in the first place.
|
||||||
|
Therefore, if you write the code as cleverly as possible, you are,
|
||||||
|
by definition, not smart enough to debug it.
|
||||||
|
|
||||||
|
--Brian Kernighan
|
|
@ -45,27 +45,52 @@
|
||||||
#include <stdbool.h>
|
#include <stdbool.h>
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <ctype.h>
|
#include <ctype.h>
|
||||||
|
#include <getopt.h>
|
||||||
|
|
||||||
void counter_stats(FILE *file, int *lines, int *words, int *characters)
|
#define OPTIONS "clLw"
|
||||||
|
|
||||||
|
typedef struct {
|
||||||
|
int count;
|
||||||
|
bool print;
|
||||||
|
} WC_STAT;
|
||||||
|
|
||||||
|
typedef struct {
|
||||||
|
WC_STAT lines;
|
||||||
|
WC_STAT words;
|
||||||
|
WC_STAT characters;
|
||||||
|
WC_STAT max_characters;
|
||||||
|
} WC_STATS;
|
||||||
|
|
||||||
|
// ACTUAL COUNTING HERE.
|
||||||
|
void counter_stats(FILE *file, WC_STATS *stats)
|
||||||
{
|
{
|
||||||
char buffer[BUFSIZ];
|
|
||||||
// PROCESS IN CHUNKS
|
// PROCESS IN CHUNKS
|
||||||
|
char buffer[BUFSIZ];
|
||||||
|
|
||||||
bool word = false;
|
bool word = false;
|
||||||
|
int line_characters = 0;
|
||||||
|
|
||||||
while ( fgets(buffer, BUFSIZ, file) != NULL ) {
|
while ( fgets(buffer, BUFSIZ, file) != NULL ) {
|
||||||
char *c = &buffer[0];
|
char *c = &buffer[0];
|
||||||
while ( *c != '\0' ) {
|
while ( *c != '\0' ) {
|
||||||
// COUNT WORDS
|
// COUNT WORDS.
|
||||||
if (word && isspace(*c)) {
|
if (word && isspace(*c)) {
|
||||||
(*words)++;
|
stats->words.count++;
|
||||||
word = false;
|
word = false;
|
||||||
} else if (!word) {
|
} else if (!word) {
|
||||||
word = true;
|
word = true;
|
||||||
}
|
}
|
||||||
// COUNT CHARACTERS
|
// COUNT CHARACTERS.
|
||||||
(*characters)++;
|
stats->characters.count++;
|
||||||
// COUNT NEWLINES
|
line_characters++;
|
||||||
|
// COUNT NEWLINES.
|
||||||
if ( *c == '\n' ) {
|
if ( *c == '\n' ) {
|
||||||
(*lines)++;
|
if (line_characters > stats->max_characters.count) {
|
||||||
|
// EXCLUDES NEWLINE IN COUNT (-1).
|
||||||
|
stats->max_characters.count = line_characters - 1;
|
||||||
|
}
|
||||||
|
stats->lines.count++;
|
||||||
|
line_characters = 0;
|
||||||
}
|
}
|
||||||
c++;
|
c++;
|
||||||
}
|
}
|
||||||
|
@ -73,7 +98,7 @@ void counter_stats(FILE *file, int *lines, int *words, int *characters)
|
||||||
}
|
}
|
||||||
|
|
||||||
// NUMBER OF LINES IN A FILE.
|
// NUMBER OF LINES IN A FILE.
|
||||||
void counter(char *path, int *lines, int *words, int *characters)
|
void counter(char *path, WC_STATS *stats)
|
||||||
{
|
{
|
||||||
FILE *file;
|
FILE *file;
|
||||||
if (path == NULL) {
|
if (path == NULL) {
|
||||||
|
@ -83,28 +108,70 @@ void counter(char *path, int *lines, int *words, int *characters)
|
||||||
}
|
}
|
||||||
|
|
||||||
if (file != NULL) {
|
if (file != NULL) {
|
||||||
counter_stats(file, lines, words, characters);
|
counter_stats(file, stats);
|
||||||
} else {
|
} else {
|
||||||
fprintf(stderr, "Error reading file.\n");
|
fprintf(stderr, "Error reading file.\n");
|
||||||
exit(EXIT_FAILURE);
|
exit(EXIT_FAILURE);
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
void process_options(WC_STATS *options, int argc, char **argv, char **filename)
|
||||||
|
{
|
||||||
|
int option;
|
||||||
|
while ( (option = getopt(argc, argv, OPTIONS)) != EOF ) {
|
||||||
|
switch (option) {
|
||||||
|
case 'c':
|
||||||
|
options->characters.print = true;
|
||||||
|
break;
|
||||||
|
case 'L':
|
||||||
|
options->max_characters.print = true;
|
||||||
|
break;
|
||||||
|
case 'l':
|
||||||
|
options->lines.print = true;
|
||||||
|
break;
|
||||||
|
case 'w':
|
||||||
|
options->words.print = true;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// DEFAULT OPTS.
|
||||||
|
if (optind == 1) {
|
||||||
|
options->words.print = true;
|
||||||
|
options->characters.print = true;
|
||||||
|
options->lines.print = true;
|
||||||
|
}
|
||||||
|
|
||||||
|
// getopt MOVES THE NON-OPTION ARGUMENTS (FILENAME) TO THE END OF ARGV.
|
||||||
|
if (optind < argc) {
|
||||||
|
*filename = argv[optind]; // ONLY USE FIRST FILENAME.
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
void print_stat(WC_STAT stat, char *fmt_str)
|
||||||
|
{
|
||||||
|
if (stat.print) {
|
||||||
|
printf(fmt_str, stat.count);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
void print_stats(WC_STATS *stats)
|
||||||
|
{
|
||||||
|
print_stat(stats->characters, "CHARACTERS %d\n");
|
||||||
|
print_stat(stats->words, "WORDS %d\n");
|
||||||
|
print_stat(stats->lines, "LINES %d\n");
|
||||||
|
print_stat(stats->max_characters, "LINE_MAX_CHARS %d\n");
|
||||||
}
|
}
|
||||||
|
|
||||||
int main(int argc, char *argv[])
|
int main(int argc, char *argv[])
|
||||||
{
|
{
|
||||||
char *file = argv[1];
|
WC_STATS *stats = malloc(sizeof(WC_STATS));
|
||||||
// CHECK IF WE ARE ACCEPTING INPUT FROM A PIPE.
|
char *file;
|
||||||
if (argc > 2) {
|
|
||||||
fprintf(stderr, "Usage: mywc [FILE]\n");
|
process_options(stats, argc, argv, &file); printf("%s\n", file);
|
||||||
exit(EXIT_FAILURE);
|
counter(file, stats);
|
||||||
}
|
print_stats(stats);
|
||||||
|
|
||||||
int lines;
|
|
||||||
int words;
|
|
||||||
int characters;
|
|
||||||
counter(argv[1], &lines, &words, &characters);
|
|
||||||
printf( "LINES %d, WORDS %d, CHARACTERS %d\n",
|
|
||||||
lines, words, characters );
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
Loading…
Reference in New Issue
Block a user