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
|
// crm_expr_classify.c - Controllable Regex Mutilator, version v1.0
// Copyright 2001-2006 William S. Yerazunis, all rights reserved.
//
// This software is licensed to the public under the Free Software
// Foundation's GNU GPL, version 2. You may obtain a copy of the
// GPL by visiting the Free Software Foundations web site at
// www.fsf.org, and a copy is included in this distribution.
//
// Other licenses may be negotiated; contact the
// author for details.
//
// include some standard files
#include "crm114_sysincludes.h"
// include any local crm114 configuration file
#include "crm114_config.h"
// include the crm114 data structures file
#include "crm114_structs.h"
// include the routine declarations file
#include "crm114.h"
// OSBF declarations
#include "crm114_osbf.h"
// the command line argc, argv
extern int prog_argc;
extern char **prog_argv;
// the auxilliary input buffer (for WINDOW input)
extern char *newinputbuf;
// the globals used when we need a big buffer - allocated once, used
// wherever needed. These are sized to the same size as the data window.
extern char *inbuf;
extern char *outbuf;
extern char *tempbuf;
// Dispatch a LEARN statement
//
int crm_expr_learn (CSL_CELL *csl, ARGPARSE_BLOCK *apb)
{
char box_text [MAX_PATTERN];
char errstr [MAX_PATTERN];
long i;
char *txt;
long start;
long len;
// get start/length of the text we're going to learn:
//
crm_get_pgm_arg (box_text, MAX_PATTERN, apb->b1start, apb->b1len);
// Use crm_restrictvar to get start & length to look at.
i = crm_restrictvar(box_text, apb->b1len,
NULL,
&txt,
&start,
&len,
errstr);
if ( i < 0)
{
long curstmt;
long fev;
fev = 0;
curstmt = csl->cstmt;
if (i == -1)
fev = nonfatalerror (errstr, "");
if (i == -2)
fev = fatalerror (errstr, "");
//
// did the FAULT handler change the next statement to execute?
// If so, continue from there, otherwise, we FAIL.
if (curstmt == csl->cstmt)
{
csl->cstmt = csl->mct[csl->cstmt]->fail_index - 1;
csl->aliusstk [ csl->mct[csl->cstmt]->nest_level ] = -1;
};
return (fev);
};
// get our flags... the only ones we're interested in here
// are the ones that specify _which_ algorithm to use.
if (apb->sflags & CRM_OSB_BAYES )
{
return (crm_expr_osb_bayes_learn (csl, apb, txt, start, len));
}
else
if (apb->sflags & CRM_CORRELATE)
{
return (crm_expr_correlate_learn (csl, apb, txt, start, len));
}
else
if (apb->sflags & CRM_OSB_WINNOW)
{
return (crm_expr_osb_winnow_learn (csl, apb, txt, start, len));
}
else
if (apb->sflags & CRM_OSBF )
{
return (crm_expr_osbf_bayes_learn (csl, apb, txt, start, len));
}
else
if (apb->sflags & CRM_HYPERSPACE)
{
return(crm_expr_osb_hyperspace_learn(csl, apb, txt, start, len));
}
else
{
return (crm_expr_markov_learn (csl, apb, txt, start, len));
};
return (0);
}
// Dispatch a CLASSIFY statement
//
int crm_expr_classify (CSL_CELL *csl, ARGPARSE_BLOCK *apb)
{
char box_text [MAX_PATTERN];
char errstr [MAX_PATTERN];
long i;
char *txt;
long start;
long len;
// get start/length of the text we're going to classify:
//
crm_get_pgm_arg (box_text, MAX_PATTERN, apb->b1start, apb->b1len);
// Use crm_restrictvar to get start & length to look at.
i = crm_restrictvar(box_text, apb->b1len,
NULL,
&txt,
&start,
&len,
errstr);
if ( i > 0)
{
long curstmt;
long fev;
fev = 0;
curstmt = csl->cstmt;
if (i == 1)
fev = nonfatalerror (errstr, "");
if (i == 2)
fev = fatalerror (errstr, "");
//
// did the FAULT handler change the next statement to execute?
// If so, continue from there, otherwise, we FAIL.
if (curstmt == csl->cstmt)
{
csl->cstmt = csl->mct[csl->cstmt]->fail_index - 1;
csl->aliusstk [ csl->mct[csl->cstmt]->nest_level ] = -1;
};
return (fev);
};
// get our flags... the only ones we're interested in here
// are the ones that specify _which_ algorithm to use.
if (apb->sflags & CRM_OSB_BAYES)
{
return (crm_expr_osb_bayes_classify (csl, apb, txt, start, len));
}
else
if (apb->sflags & CRM_CORRELATE)
{
return (crm_expr_correlate_classify (csl, apb, txt, start, len));
}
else
if (apb->sflags & CRM_OSB_WINNOW)
{
return (crm_expr_osb_winnow_classify (csl, apb, txt, start, len));
}
else
if (apb->sflags & CRM_OSBF )
{
return (crm_expr_osbf_bayes_classify (csl, apb, txt, start, len));
}
else
if (apb->sflags & CRM_HYPERSPACE)
{
return (crm_expr_osb_hyperspace_classify (csl, apb, txt, start, len));
}
else
{
return (crm_expr_markov_classify (csl, apb, txt, start, len));
};
return (0);
}
|