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 268 269 270 271
|
/*-----------------------------------------------------------------------
File : ekb_create.c
Author: Stephan Schulz
Contents
Create a new, empty knowledge base for E.
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> Fri Jul 23 17:46:15 MET DST 1999
New
-----------------------------------------------------------------------*/
#include <sys/types.h>
#include <sys/stat.h>
#include <cio_commandline.h>
#include <cio_output.h>
#include <cle_kbdesc.h>
#include <e_version.h>
/*---------------------------------------------------------------------*/
/* Data types */
/*---------------------------------------------------------------------*/
#define NAME "ekb_create"
typedef enum
{
OPT_NOOPT=0,
OPT_HELP,
OPT_VERSION,
OPT_VERBOSE,
OPT_NEG_NO,
OPT_NEG_PROP,
OPT_SELECT_EVAL
}OptionCodes;
/*---------------------------------------------------------------------*/
/* Global Variables */
/*---------------------------------------------------------------------*/
OptCell opts[] =
{
{OPT_HELP,
'h', "help",
NoArg, NULL,
"Print a short description of program usage and options."},
{OPT_VERSION,
'V', "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_NEG_NO,
'n', "negative-example-number",
ReqArg, NULL,
"Set the (maximum) number of negative examples to pick if the "
"proof listing does not describe a successful proof."},
{OPT_NEG_PROP,
'p', "negative-example-proportion",
ReqArg, NULL,
"Set the maximum number of negative examples (expressed as a "
"proportion of the positive examples) to pick if the proof "
"listing does describe a successful proof"},
{OPT_NOOPT,
'\0', NULL,
NoArg, NULL,
NULL}
};
double neg_proportion = 1.0;
long neg_examples = 0;
/*---------------------------------------------------------------------*/
/* 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;
KBDesc_p handle;
char *basename = "E_KNOWLEDGE";
DStr_p name;
FILE *out;
assert(argv[0]);
InitIO(NAME);
state = process_options(argc, argv);
if(state->argc > 1)
{
Error("Only one non-option argument (name of the knowledge base)"
" expected", USAGE_ERROR);
}
if(state->argc == 1)
{
basename = state->argv[0];
}
else
{
VERBOUT("Using default name\n");
}
VERBOUT("Creating base directory...\n");
if(mkdir(basename,S_IRWXU|S_IRWXG))
{
DStr_p errpos = DStrAlloc();
TmpErrno = errno;
DStrAppendStr(errpos, "Cannot create base directory '");
DStrAppendStr(errpos, basename);
DStrAppendStr(errpos, "'");
SysError(DStrView(errpos), FILE_ERROR);
DStrFree(errpos);
}
VERBOUT("...successful.\nCreating files...\n");
name = DStrAlloc();
handle = KBDescAlloc(KB_VERSION, neg_proportion,neg_examples);
out = OutOpen(KBFileName(name, basename, "description"));
KBDescPrint(out, handle);
OutClose(out);
KBDescFree(handle);
out = OutOpen(KBFileName(name, basename, "signature"));
fprintf(out,
"# Special function symbols that are not generalized.\n"
"# You need to hand-hack this at the moment.\n");
OutClose(out);
out = OutOpen(KBFileName(name, basename, "problems"));
fprintf(out,
"# Example names and features. \n");
OutClose(out);
out = OutOpen(KBFileName(name, basename, "clausepatterns"));
fprintf(out,
"# Individual annotated patterns. \n");
OutClose(out);
VERBOUT("...done.\nCreating subdirectory FILES...\n");
if(mkdir(KBFileName(name, basename, "FILES"), S_IRWXU|S_IRWXG))
{
DStr_p errpos = DStrAlloc();
TmpErrno = errno;
DStrAppendStr(errpos, "Cannot create base directory '");
DStrAppendStr(errpos, DStrView(name));
DStrAppendStr(errpos, "'");
SysError(DStrView(errpos), FILE_ERROR);
DStrFree(errpos);
}
VERBOUT("...done.\nNew knowledge base complete.\n");
DStrFree(name);
CLStateFree(state);
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_NEG_NO:
neg_examples = CLStateGetIntArg(handle, arg);
break;
case OPT_NEG_PROP:
neg_proportion = CLStateGetFloatArg(handle, arg);
if(neg_proportion < 0)
{
Error("Option -p (--negative-example-proportion)"
"requires positive argument.}", USAGE_ERROR);
}
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\
Create an empty knowledge base with name <name> for E.\n\n");
PrintOptions(stdout, opts, "Options\n\n");
fprintf(out, "\n\n" E_FOOTER);
}
/*---------------------------------------------------------------------*/
/* End of File */
/*---------------------------------------------------------------------*/
|