-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathqueryLoop.c
66 lines (57 loc) · 1.66 KB
/
queryLoop.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
/*
* Filename: queryLoop.c
* Author: Christopher Yeh
* UserId: cs30xfv
* Date: 2/23/2019
* Sources of help: None
*/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "pa3.h"
#include "pa3Strings.h"
/* Helper method to see if string has valid characters */
int isWordAlpha( const char * word ) {
size_t i;
for ( i = 0 ; word[i] ; i++ ) {
if ( !isalpha( word[i] ) ) {
return 0;
}
}
return 1;
}
/*
* Function Name: queryLoop()
* Function Prototype: void queryLoop( queryTable_t * queryTable );
* Description: The interactive mode of the program. Prompts the user for a
* keyword from stdin. Assembles it into an anagram then calls
* executeQuery to see if we have any matches in the dictionary.
* Repeat until the user force closes.
* Parameters: queryTable - the passed in queryTable.
* Side Effects: None
* Error Conditions: None
* Return Value: None
*/
void queryLoop( queryTable_t * queryTable ) {
/* Prompt user for input */
fprintf( stdout, STR_USER_PROMPT );
/* Read word entered by user */
char buffer[BUFSIZ];
while ( fgets( buffer, BUFSIZ, stdin ) != NULL ) {
/* Replace '\n' with '\0' */
char * pos = strchr( buffer, '\n' );
if ( pos != NULL ) {
* pos = '\0';
}
if ( isWordAlpha( buffer ) != 1 ) { // If word contains non alphabetic char
fprintf( stdout, STR_NO_ANAGRAMS_FOUND );
} else {
anagram_t anagram;
memset( &anagram, 0, sizeof( anagram_t ) );
assembleAnagram( buffer, &anagram );
executeQuery( queryTable, &anagram );
}
fprintf( stdout, STR_USER_PROMPT );
}
fprintf( stdout, STR_NEWLINE_CHAR );
}