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
|
/* KanjiPad - Japanese handwriting recognition front end
* Copyright (C) 1997 Owen Taylor
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
#include <ctype.h>
#include <fcntl.h>
#include <unistd.h>
#include <string.h>
#include <errno.h>
#include <netinet/in.h> /* for ntohl */
#include "jstroke.h"
#define MAX_STROKES 32
#define BUFLEN 1024
static char *stroke_dicts[MAX_STROKES];
void
load_database(char *fname)
{
int fd;
int i;
fd = open(fname, 0, O_RDONLY);
if (fd < 0)
{
fprintf(stderr,"Can't open %s\n", fname);
exit(1);
}
for (i=0;i<MAX_STROKES;i++)
stroke_dicts[i] = NULL;
while (1)
{
int bytes_read;
unsigned int nstrokes;
unsigned int len;
int buf[2];
bytes_read = read(fd,&buf,2*sizeof(int));
nstrokes = ntohl(buf[0]);
len = ntohl(buf[1]);
if ((bytes_read != 2*sizeof(int)) || (nstrokes > MAX_STROKES))
{
fprintf(stderr, "Corrupt stroke database");
exit(1);
}
if (nstrokes == 0)
break;
stroke_dicts[nstrokes] = malloc(len);
bytes_read = read(fd, stroke_dicts[nstrokes], len);
if (bytes_read != len)
{
fprintf(stderr, "Corrupt stroke database");
exit(1);
}
}
close(fd);
}
/* From Ken Lunde's _Understanding Japanese Information Processing_
O'Reilly, 1993 */
int
process_strokes (FILE *file)
{
RawStroke strokes[MAX_STROKES];
char *buffer = malloc(BUFLEN);
int buflen = BUFLEN;
int nstrokes = 0;
/* Read in strokes from standard in, all points for each stroke
* strung together on one line, until we get a blank line
*/
while (1)
{
char *p,*q;
int len;
if (!fgets(buffer, buflen, file))
return 0;
while ((strlen(buffer) == buflen - 1) && (buffer[buflen-2] != '\n'))
{
buflen += BUFLEN;
buffer = realloc(buffer, buflen);
if (!fgets(buffer+buflen-BUFLEN-1, BUFLEN+1, file))
return 0;
}
len = 0;
p = buffer;
while (1) {
while (isspace (*p)) p++;
if (*p == 0)
break;
strokes[nstrokes].m_x[len] = strtol (p, &q, 0);
if (p == q)
break;
p = q;
while (isspace (*p)) p++;
if (*p == 0)
break;
strokes[nstrokes].m_y[len] = strtol (p, &q, 0);
if (p == q)
break;
p = q;
len++;
}
if (len == 0)
break;
strokes[nstrokes].m_len = len;
nstrokes++;
if (nstrokes == MAX_STROKES)
break;
}
if (nstrokes != 0 && stroke_dicts[nstrokes])
{
int i;
ListMem *top_picks;
StrokeScorer *scorer = StrokeScorerCreate (stroke_dicts[nstrokes],
strokes, nstrokes);
if (scorer)
{
StrokeScorerProcess(scorer, -1);
top_picks = StrokeScorerTopPicks(scorer);
StrokeScorerDestroy(scorer);
for (i=0;i<top_picks->m_argc;i++)
{
unsigned char c[2];
c[0] = top_picks->m_argv[i][0];
c[1] = top_picks->m_argv[i][1];
printf("%c%c",c[0],c[1]);
}
free(top_picks);
}
printf("\n");
fflush(stdout);
}
return 1;
}
int
main(int argc, char **argv)
{
load_database(argv[1]);
while (process_strokes (stdin))
;
return 0;
}
|