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
|
<?php
/**
* The SpellChecker_aspell:: class provides a driver for the 'aspell' program.
*
* $Horde: imp/lib/SpellChecker/aspell.php,v 1.5.2.7 2008/05/08 06:48:08 slusarz Exp $
*
* Copyright 2005-2008 The Horde Project (http://www.horde.org/)
*
* See the enclosed file COPYING for license information (LGPL). If you
* did not receive this file, see http://www.fsf.org/copyleft/lgpl.html.
*
* @author Chuck Hagenbuch <chuck@horde.org>
* @package IMP_SpellChecker
*/
class IMP_SpellChecker_aspell extends IMP_SpellChecker {
var $_path = 'aspell';
/**
*
*/
function spellCheck($text)
{
if ($this->_html) {
$input = $text;
} else {
$words = $this->_getWords($text);
if (!count($words)) {
return array('bad' => array(), 'suggestions' => array());
}
$input = implode(' ', $words);
}
$charset = NLS::getCharset();
// Descriptor array.
$descspec = array(
0 => array('pipe', 'r'),
1 => array('pipe', 'w'),
2 => array('pipe', 'w')
);
$process = proc_open($this->_cmd(), $descspec, $pipes);
if (!is_resource($process)) {
require_once 'PEAR.php';
return PEAR::raiseError('spellcheck failed', null, null, null,
$this->_cmd());
}
// Write to stdin.
if ($this->_encoding) {
$input = String::convertCharset($input, $charset, $this->_encoding);
}
fwrite($pipes[0], $input);
fclose($pipes[0]);
// Read stdout.
$out = '';
while (!feof($pipes[1])) {
$out .= fread($pipes[1], 8192);
}
fclose($pipes[1]);
// Read stderr.
$err = '';
while (!feof($pipes[2])) {
$err .= fread($pipes[2], 8192);
}
fclose($pipes[2]);
// We can't rely on the return value of proc_close:
// http://bugs.php.net/bug.php?id=29123
proc_close($process);
if (strlen($out) === 0) {
require_once 'PEAR.php';
if ($this->_encoding) {
$err = String::convertCharset($err, $this->_encoding, $charset);
}
return PEAR::raiseError('spellcheck failed: ' . $err);
}
if ($this->_encoding) {
$out = String::convertCharset($out, $this->_encoding, $charset);
}
// Parse output.
$bad = array();
$suggestions = array();
$lines = explode("\n", $out);
foreach ($lines as $line) {
$line = trim($line);
if (empty($line)) {
continue;
}
@list(,$word,) = explode(' ', $line, 3);
if ($this->_inLocalDictionary($word) || in_array($word, $bad)) {
continue;
}
switch ($line[0]) {
case '#':
// Misspelling with no suggestions.
$bad[] = $word;
$suggestions[] = array();
break;
case '&':
// Suggestions.
$bad[] = $word;
$suggestions[] = array_slice(explode(', ', substr($line, strpos($line, ':') + 2)), 0, $this->_maxSuggestions);
break;
}
}
return array('bad' => $bad, 'suggestions' => $suggestions);
}
function _cmd()
{
$args = '';
switch ($this->_suggestMode) {
case SPELLCHECKER_SUGGEST_FAST:
$args .= ' --sug-mode=fast';
break;
case SPELLCHECKER_SUGGEST_SLOW:
$args .= ' --sug-mode=bad-spellers';
break;
default:
$args .= ' --sug-mode=normal';
}
if ($this->_encoding) {
$args .= ' --encoding=' . escapeshellarg($this->_encoding);
}
$args .= ' --lang=' . escapeshellarg($this->_locale);
if ($this->_html) {
$args .= ' -H';
}
return sprintf('%s -a %s', $this->_path, $args);
}
}
|