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
|
/*
mp_wordp.c
Wordprocessing functions.
mp - Programmer Text Editor
Copyright (C) 1991-2005 Angel Ortega <angel@triptico.com>
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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
http://www.triptico.com
*/
#include "config.h"
#include <stdio.h>
#ifdef CONFOPT_UNIX_LIKE
#include <string.h>
#include <stdlib.h>
#include <unistd.h>
#include <ctype.h>
#include <sys/types.h>
#include <sys/wait.h>
#endif
#include "mp_core.h"
#include "mp_conf.h"
#include "mp_lang.h"
#include "mp_video.h"
/******************
Data
*******************/
/* spellchecking active flag */
int mpw_spellcheck=0;
/* ispell command */
char mpw_ispell_command[128]="ispell";
int mpw_spell_cache_size=4096;
#ifdef CONFOPT_UNIX_LIKE
/* spellchecking cache controls */
struct spell_cache
{
char * word;
int color;
};
static struct spell_cache * sp_cache=NULL;
static int sp_cache_i=0;
/******************
Code
*******************/
static int spell_cmp(const void * p1, const void * p2)
/* bsearch/qsort function for spellchecking */
{
struct spell_cache * s1;
struct spell_cache * s2;
s1=(struct spell_cache *)p1;
s2=(struct spell_cache *)p2;
return(strcmp(s1->word, s2->word));
}
static int search_spell_cache(char * word)
/* searches the spell cache, returning the color if found or -1 otherwise */
{
struct spell_cache s;
struct spell_cache * r;
s.word=word;
r=bsearch(&s, sp_cache, sp_cache_i, sizeof(struct spell_cache), spell_cmp);
return(r == NULL ? -1 : r->color);
}
static void add_spell_cache(char * word, int color)
/* adds a word to the spell cache */
{
/* is cache full? */
if(sp_cache_i == mpw_spell_cache_size)
{
int n;
/* destroy everything */
for(n=0;n < sp_cache_i;n++)
free(sp_cache[n].word);
free(sp_cache);
sp_cache=NULL;
sp_cache_i=0;
}
sp_cache=realloc(sp_cache, (sp_cache_i + 1) * sizeof(struct spell_cache));
sp_cache[sp_cache_i].word=strdup(word);
sp_cache[sp_cache_i].color=color;
sp_cache_i++;
/* sort */
qsort(sp_cache, sp_cache_i, sizeof(struct spell_cache), spell_cmp);
}
#define FLUSH_LINE(i) { char c; do { if(read(i, &c, 1) == 0) break; } while(c != '\n'); }
/**
* mpw_spellcheck_word - Tests if a word is correctly spelled
* @word: the word to be checked
*
* Tests if @word is correctly spelled. Returns MP_COLOR_NORMAL in case it is
* or MP_COLOR_MISSPELLED otherwise.
*/
int mpw_spellcheck_word(char * word)
{
static int ipipe[2] = { -1, -1 };
char c, d;
int color;
if(! mpw_spellcheck)
{
/* is ispell pipe still open? */
if(ipipe[0] != -1)
{
int s;
close(ipipe[0]);
close(ipipe[1]);
wait(&s);
ipipe[0]=ipipe[1]=-1;
}
return(MP_COLOR_NORMAL);
}
/* open ispell pipe if necessary */
if(ipipe[0] == -1)
{
int p1[2], p2[2];
pipe(p1); pipe(p2);
if(fork() == 0)
{
/* child process; redirect stdin and stdout */
close(0); dup(p2[0]); close(p2[1]);
close(1); dup(p1[1]); close(p1[0]);
execlp(mpw_ispell_command, mpw_ispell_command, "-a", NULL);
/* still here? exec failed; close pipes and exit */
close(0); close(1);
exit(0);
}
ipipe[0]=p1[0]; close(p1[1]);
ipipe[1]=p2[1]; close(p2[0]);
/* read first character; if pipe couldn't be open, fail */
if(read(ipipe[0], &c, 1) == 0)
{
mpw_spellcheck=0;
mpv_alert(L("Can't execute '%s'"), mpw_ispell_command);
return(MP_COLOR_NORMAL);
}
FLUSH_LINE(ipipe[0]);
}
if(!isalpha(word[0]))
return(MP_COLOR_NORMAL);
/* is the word already in the cache? */
if((color=search_spell_cache(word)) != -1)
return(color);
/* write the word */
write(ipipe[1], word, strlen(word));
write(ipipe[1], &"\n", 1);
/* read first character's response */
read(ipipe[0], &c, 1);
/* read until the end of the line */
FLUSH_LINE(ipipe[0]);
/* flush possible subsequent commands, in case ispell
treats word as different words */
do {
read(ipipe[0], &d, 1);
if(d != '\n') FLUSH_LINE(ipipe[0]);
} while(d != '\n');
color=(c == '*' || c == '+' ? MP_COLOR_NORMAL : MP_COLOR_MISSPELLED);
/* add to cache */
add_spell_cache(word, color);
return(color);
}
#else /* CONFOPT_UNIX_LIKE */
int mpw_spellcheck_word(char * word)
/* dummy version */
{
if(mpw_spellcheck)
{
mpv_alert(L("Spellchecking is only available under Unix systems."), NULL);
mpw_spellcheck=0;
}
return(MP_COLOR_NORMAL);
}
#endif /* CONFOPT_UNIX_LIKE */
|