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 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267
|
/*-----------------------------------------------------------------------
File : ekb_delete.c
Author: Stephan Schulz
Contents
Delete a training example from the knowledge base.
Copyright 1998, 1999 by the author.
This code is released under the GNU General Public Licence and
the GNU Lesser General Public License.
See the file COPYING in the main E directory for details..
Run "eprover -h" for contact information.
Changes
<1> Wed Jul 28 16:21:33 MET DST 1999
New
-----------------------------------------------------------------------*/
#include <cio_commandline.h>
#include <cio_output.h>
#include <cle_kbinsert.h>
#include <e_version.h>
/*---------------------------------------------------------------------*/
/* Data types */
/*---------------------------------------------------------------------*/
#define NAME "ekb_delete"
typedef enum
{
OPT_NOOPT=0,
OPT_HELP,
OPT_VERSION,
OPT_VERBOSE,
OPT_KB,
OPT_NAME
}OptionCodes;
/*---------------------------------------------------------------------*/
/* Global Variables */
/*---------------------------------------------------------------------*/
OptCell opts[] =
{
{OPT_HELP,
'h', "help",
NoArg, NULL,
"Print a short description of program usage and options."},
{OPT_VERSION,
'\0', "version",
NoArg, NULL,
"Print the version number of the program."},
{OPT_VERBOSE,
'v', "verbose",
OptArg, "1",
"Verbose comments on the progress of the program."},
{OPT_KB,
'k',"knowledge-base",
ReqArg, NULL,
"Select the knowledge base. If not given, select E_KNOWLEDGE."},
{OPT_NOOPT,
'\0', NULL,
NoArg, NULL,
NULL}
};
char* kb_name = "E_KNOWLEDGE";
char* ex_name;
ProblemType problemType = PROBLEM_NOT_INIT;
bool app_encode = false;
/*---------------------------------------------------------------------*/
/* Forward Declarations */
/*---------------------------------------------------------------------*/
CLState_p process_options(int argc, char* argv[]);
void print_help(FILE* out);
/*---------------------------------------------------------------------*/
/* Internal Functions */
/*---------------------------------------------------------------------*/
int main(int argc, char* argv[])
{
CLState_p state;
DStr_p name, store_file;
FILE *out;
ExampleSet_p proof_examples;
ExampleRep_p to_delete;
AnnoSet_p clause_examples;
TB_p annoterms;
Scanner_p in;
TypeBank_p typetable;
Sig_p sig;
assert(argv[0]);
InitIO(NAME);
state = process_options(argc, argv);
if(state->argc != 1)
{
Error("One argument (name of the problem to remove) required",
USAGE_ERROR);
}
assert(state->argv[0]);
ex_name = state->argv[0];
name = DStrAlloc();
/* Step 1: Read existing files: problems, clausepatterns, signature
*/
proof_examples = ExampleSetAlloc();
in = CreateScanner(StreamTypeFile,
KBFileName(name, kb_name, "problems"),
true, NULL, true);
ExampleSetParse(in, proof_examples);
DestroyScanner(in);
typetable = TypeBankAlloc();
sig = SigAlloc(typetable);
annoterms = TBAlloc(sig);
in = CreateScanner(StreamTypeFile,
KBFileName(name, kb_name, "clausepatterns"),
true, NULL, true);
clause_examples = AnnoSetParse(in, annoterms, KB_ANNOTATION_NO);
DestroyScanner(in);
VERBOUT("Old knowledge base files parsed successfully\n");
/* Step 2: Check validity of remove request */
to_delete = ExampleSetFindName(proof_examples, ex_name);
if(!to_delete)
{
DStr_p error = DStrAlloc();
DStrAppendStr(error, "Example name '");
DStrAppendStr(error, ex_name);
DStrAppendStr(error, "' does not exist in knowledge base");
Error(DStrView(error), USAGE_ERROR);
DStrFree(error);
}
/* Step 3: Remove examples and delete example file */
AnnoSetRemoveByIdent(clause_examples, to_delete->ident);
ExampleSetDeleteId(proof_examples, to_delete->ident);
store_file = DStrAlloc();
DStrAppendStr(store_file, KBFileName(name, kb_name, "FILES/"));
DStrAppendStr(store_file, ex_name);
FileRemove(DStrView(store_file));
DStrFree(store_file);
/* Step 4: Write everything back: problems, clausepatterns */
out = OutOpen(KBFileName(name, kb_name, "clausepatterns"));
AnnoSetPrint(out, clause_examples);
OutClose(out);
out = OutOpen(KBFileName(name, kb_name, "problems"));
ExampleSetPrint(out, proof_examples);
OutClose(out);
/* Finally clean up */
DStrFree(name);
AnnoSetFree(clause_examples);
annoterms->sig = NULL;
TBFree(annoterms);
SigFree(sig);
ExampleSetFree(proof_examples);
CLStateFree(state);
TypeBankFree(typetable);
ExitIO();
#ifdef CLB_MEMORY_DEBUG
MemFlushFreeList();
MemDebugPrintStats(stdout);
#endif
return 0;
}
/*-----------------------------------------------------------------------
//
// Function: process_options()
//
// Read and process the command line option, return (the pointer to)
// a CLState object containing the remaining arguments.
//
// Global Variables:
//
// Side Effects : Sets variables, may terminate with program
// description if option -h or --help was present
//
/----------------------------------------------------------------------*/
CLState_p process_options(int argc, char* argv[])
{
Opt_p handle;
CLState_p state;
char* arg;
state = CLStateAlloc(argc,argv);
while((handle = CLStateGetOpt(state, &arg, opts)))
{
switch(handle->option_code)
{
case OPT_VERBOSE:
Verbose = CLStateGetIntArg(handle, arg);
break;
case OPT_HELP:
print_help(stdout);
exit(NO_ERROR);
case OPT_VERSION:
printf(NAME " " VERSION "\n");
exit(NO_ERROR);
case OPT_KB:
kb_name = arg;
break;
case OPT_NAME:
ex_name = arg;
break;
default:
assert(false);
break;
}
}
return state;
}
void print_help(FILE* out)
{
fprintf(out, "\n\
\n"
NAME " " VERSION "\n\
\n\
Usage: " NAME " [options] <name>\n\
\n\
Remove the example <name> from an E knowledge base.\n\n");
PrintOptions(stdout, opts, "Options\n\n");
fprintf(out, "\n\n" E_FOOTER);
}
/*---------------------------------------------------------------------*/
/* End of File */
/*---------------------------------------------------------------------*/
|