File: score-easy.c

package info (click to toggle)
trn4 4.0-test77-18
  • links: PTS, VCS
  • area: non-free
  • in suites: sid, trixie
  • size: 4,016 kB
  • sloc: ansic: 48,332; sh: 6,795; tcl: 1,696; yacc: 662; perl: 108; makefile: 26
file content (220 lines) | stat: -rw-r--r-- 5,221 bytes parent folder | download | duplicates (11)
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
/* This file Copyright 1993 by Clifford A. Adams */
/* score-easy.c
 *
 * Simple interactive menus for scorefile tasks.
 */

#include "EXTERN.h"
#include "common.h"
#ifdef SCORE
#include "search.h"
#include "term.h"
#include "util.h"
#include "score.h"
#include "scorefile.h"
#include "INTERN.h"
#include "score-easy.h"

/* new line to return to the caller. */
static char sc_e_newline[LBUFLEN];

/* returns new string or NULL to abort. */
char*
sc_easy_append()
{
    char* s;
    bool q_done;	/* if TRUE, we are finished with current question */
    char filechar;
    long score;
    char ch;

    filechar = '\0';	/* GCC warning avoidance */
    s = sc_e_newline;
    printf("\nScorefile easy append mode.\n") FLUSH;
    q_done = FALSE;
    while (!q_done) {
	printf("0) Exit.\n") FLUSH;
	printf("1) List the current scorefile abbreviations.\n");
	printf("2) Add an entry to the global scorefile.\n");
	printf("3) Add an entry to this newsgroup's scorefile.\n");
	printf("4) Add an entry to another scorefile.\n");
	printf("5) Use a temporary scoring rule.\n");
	ch = menu_get_char();
	q_done = TRUE;
	switch (ch) {
	  case '0':
	    return NULL;
	  case '1':
	    strcpy(sc_e_newline,"?");
	    return sc_e_newline;
	  case '2':
	    filechar = '*';
	    break;
	  case '3':
	    filechar = '"';
	    break;
	  case '4':
	    filechar = '\0';
	    break;
	  case '5':
	    filechar = '!';
	    break;
	  case 'h':
	    printf("No help available (yet).\n") FLUSH;
	    q_done = FALSE;
	    break;
	  default:
	    q_done = FALSE;
	    break;
	}
    }
    while (filechar == '\0') {	/* choose one */
	printf("Type the (single character) abbreviation of the scorefile:");
	fflush(stdout);
	eat_typeahead();
	getcmd(buf);
	printf("%c\n",*buf) FLUSH;
	filechar = *buf;
	/* If error checking is done later, then an error should set
	 * filechar to '\0' and continue the while loop.
	 */
    }
    *s++ = filechar;
    *s++ = ' ';
    q_done = FALSE;
    while (!q_done) {
	printf("What type of line do you want to add?\n");
	printf("0) Exit.\n");
	printf("1) A scoring rule line.\n");
	printf("   (for the current article's author/subject)\n");
	printf("2) A command, comment, or other kind of line.\n");
	printf("   (use this for any other kind of line)\n");
	printf("\n[Other line formats will be supported later.]\n");
	ch = menu_get_char();
	q_done = TRUE;
	switch (ch) {
	  case '0':
	    return NULL;
	  case '1':
	    break;
	  case '2':
	    printf("Enter the line below:\n");
	    fflush(stdout);
	    buf[0] = '>';
	    buf[1] = FINISHCMD;
	    if (finish_command(TRUE)) {
		sprintf(s,"%s",buf+1);
		return sc_e_newline;
	    }
	    printf("\n");
	    q_done = FALSE;
	    break;
	  case 'h':
	    printf("No help available (yet).\n") FLUSH;
	    q_done = FALSE;
	    break;
	  default:
	    q_done = FALSE;
	    break;
	}
    }
    q_done = FALSE;
    while (!q_done) {
	printf("Enter a score amount (like 10 or -6):");
	fflush(stdout);
	buf[0] = ' ';
	buf[1] = FINISHCMD;
	if (finish_command(TRUE)) {
	    score = atoi(buf+1);
	    if (score == 0)
		if (buf[1] != '0')
		    continue;	/* the while loop */
	    sprintf(s,"%ld",score);
	    s = sc_e_newline+strlen(sc_e_newline); /* point at terminator  */
	    *s++ = ' ';
	    q_done = TRUE;
	} else
	    printf("\n") FLUSH;
    }
    q_done = FALSE;
    while (!q_done) {
	printf("Do you want to:\n");
	printf("0) Exit.\n");
	printf("1) Give the score to the current subject.\n");
	printf("2) Give the score to the current author.\n");
/* add some more options here later */
/* perhaps fold regular-expression question here? */
	ch = menu_get_char();
	q_done = TRUE;
	switch (ch) {
	  case '0':
	    return NULL;
	  case '1':
	    *s++ = 'S';
	    *s++ = '\0';
	    return sc_e_newline;
	  case '2':
	    *s++ = 'F';
	    *s++ = '\0';
	    return sc_e_newline;
	  case 'h':
	    printf("No help available (yet).\n") FLUSH;
	    q_done = FALSE;
	    break;
	  default:
	    q_done = FALSE;
	    break;
	}
    }
    /* later ask for headers, pattern-matching, etc... */
    return NULL;
}

/* returns new string or NULL to abort. */
char*
sc_easy_command()
{
    char* s;
    bool q_done;	/* if TRUE, we are finished with current question */
    char ch;

    s = sc_e_newline;
    printf("\nScoring easy command mode.\n") FLUSH;
    q_done = FALSE;
    while (!q_done) {
	printf("0) Exit.\n");
	printf("1) Add something to a scorefile.\n");
	printf("2) Rescore the articles in the current newsgroup.\n");
	printf("3) Explain the current article's score.\n");
	printf("   (show the rules that matched this article)\n");
	printf("4) Edit this newsgroup's scoring rule file.\n");
	/* later add an option to edit an arbitrary file */
	printf("5) Continue scoring unscored articles.\n");
	ch = menu_get_char();
	q_done = TRUE;
	switch (ch) {
	  case '0':
	    return NULL;
	  case '1':
	    return "\"";	/* do an append command */
	  case '2':
	    return "r";
	  case '3':
	    return "s";
	  case '4':
	    /* add more later */
	    return "e";
	  case '5':
	    return "f";
	  case 'h':
	    printf("No help available (yet).\n") FLUSH;
	    q_done = FALSE;
	    break;
	  default:
	    q_done = FALSE;
	    break;
	}
    }
    return NULL;
}
#endif /* SCORE */