File: udm-load-ispell-data.xml

package info (click to toggle)
php-doc 20081024-1
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 57,752 kB
  • ctags: 3,858
  • sloc: xml: 686,554; php: 19,446; perl: 610; cpp: 500; makefile: 336; sh: 114; awk: 28
file content (270 lines) | stat: -rw-r--r-- 10,395 bytes parent folder | download
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
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.11 $ -->
<refentry xmlns="http://docbook.org/ns/docbook" xml:id="function.udm-load-ispell-data">
 <refnamediv>
  <refname>udm_load_ispell_data</refname>
  <refpurpose>Load ispell data</refpurpose>
 </refnamediv>

 <refsect1 role="description">
  &reftitle.description;
  <methodsynopsis>
   <type>bool</type><methodname>udm_load_ispell_data</methodname>
   <methodparam><type>resource</type><parameter>agent</parameter></methodparam>
   <methodparam><type>int</type><parameter>var</parameter></methodparam>
   <methodparam><type>string</type><parameter>val1</parameter></methodparam>
   <methodparam><type>string</type><parameter>val2</parameter></methodparam>
   <methodparam><type>int</type><parameter>flag</parameter></methodparam>
  </methodsynopsis>
  <para>
   <function>udm_load_ispell_data</function> loads ispell data.
  </para>
  <para>
   After using this function to free memory allocated for ispell data, please
   use <function>udm_free_ispell_data</function>, even if you use UDM_ISPELL_TYPE_SERVER mode.
  </para>
 </refsect1>

 <refsect1 role="parameters">
  &reftitle.parameters;
  <para>
   <variablelist>
    <varlistentry>
     <term><parameter>agent</parameter></term>
     <listitem>
      <para>
       A link to Agent, received after call to
       <function>udm_alloc_agent</function>.
      </para>
     </listitem>
    </varlistentry>
    <varlistentry>
     <term><parameter>var</parameter></term>
     <listitem>
      <para>
       Indicates the source for ispell data. May have the following values:
       <itemizedlist>
        <listitem>
         <simpara>
          UDM_ISPELL_TYPE_DB - indicates that ispell data should be loaded from SQL.
          In this case, parameters <parameter>val1</parameter> and <parameter>val2</parameter>
          are ignored and should be left blank. <parameter>flag</parameter>
          should be equal to <literal>1</literal>.
         </simpara>
         <note>
          <para>
           <parameter>flag</parameter> indicates that after loading ispell data
           from defined source it should be sorted (it is necessary for correct
           functioning of ispell). In case of loading ispell data from files
           there may be several calls to <function>udm_load_ispell_data</function>,
           and there is no sense to sort data after every call, but only after
           the last one. Since in db mode all the data is loaded by one call,
           this parameter should have the value <literal>1</literal>. In this mode
           in case of error, e.g. if ispell tables are absent, the function will
           return &false; and code and error message will be accessible through
           <function>udm_error</function> and <function>udm_errno</function>.
          </para>
         </note>
        </listitem>
        <listitem>
         <para>
          UDM_ISPELL_TYPE_AFFIX - indicates that ispell data should be loaded from
          file and initiates loading affixes file. In this case <parameter>val1</parameter>
          defines double letter language code for which affixes are loaded,
          and <parameter>val2</parameter> - file path. Please note, that if
          a relative path entered, the module looks for the file not in UDM_CONF_DIR,
          but in relation to current path, i.e. to the path where the script is executed.
          In case of error in this mode, e.g. if file is absent, the function will return
          &false;, and an error message will be displayed. Error message text cannot be
          accessed through <function>udm_error</function> and <function>udm_errno</function>,
          since those functions can only return messages associated with SQL. Please,
          see <parameter>flag</parameter> parameter description in UDM_ISPELL_TYPE_DB.
         </para>
         <para>
          <example>
          <title><function>udm_load_ispell_data</function> example</title>
           <programlisting role="php">
<![CDATA[
<?php
if ((! udm_load_ispell_data($udm, UDM_ISPELL_TYPE_AFFIX, 'en', '/opt/ispell/en.aff', 0)) ||
    (! udm_load_ispell_data($udm, UDM_ISPELL_TYPE_AFFIX, 'ru', '/opt/ispell/ru.aff', 0)) ||
    (! udm_load_ispell_data($udm, UDM_ISPELL_TYPE_SPELL, 'en', '/opt/ispell/en.dict', 0)) ||
    (! udm_load_ispell_data($udm, UDM_ISPELL_TYPE_SPELL, 'ru', '/opt/ispell/ru.dict', 1))) {
    exit;
}
?>
]]>
           </programlisting>
          </example>
         </para>
         <note>
          <para>
           <parameter>flag</parameter> is equal to <literal>1</literal> only in the last call.
          </para>
         </note>
        </listitem>
        <listitem>
         <para>
          UDM_ISPELL_TYPE_SPELL - indicates that ispell data should be loaded from
          file and initiates loading of ispell dictionary file. In this case
          <parameter>val1</parameter> defines double letter language code for which
          affixes are loaded,
          and <parameter>val2</parameter> - file path. Please note, that if a relative
          path entered, the module looks for the file not in UDM_CONF_DIR, but in
          relation to current path, i.e. to the path where the script is executed.
          In case of error in this mode, e.g. if file is absent, the function will
          return &false;, and an error message will be displayed. Error message text
          cannot be accessed through <function>udm_error</function> and
          <function>udm_errno</function>, since those functions can only return messages
          associated with SQL. Please, see <parameter>flag</parameter> parameter
          description in UDM_ISPELL_TYPE_DB.
         </para>
         <informalexample>
          <programlisting role="php">
<![CDATA[
<?php
if ((! udm_load_ispell_data($udm, UDM_ISPELL_TYPE_AFFIX, 'en', '/opt/ispell/en.aff', 0)) ||
   (! udm_load_ispell_data($udm, UDM_ISPELL_TYPE_AFFIX, 'ru', '/opt/ispell/ru.aff', 0)) ||
   (! udm_load_ispell_data($udm, UDM_ISPELL_TYPE_SPELL, 'en', '/opt/ispell/en.dict', 0)) ||
   (! udm_load_ispell_data($udm, UDM_ISPELL_TYPE_SPELL, 'ru', '/opt/ispell/ru.dict', 1))) {
 exit;
 }
?>
]]>
          </programlisting>
         </informalexample>
         <note>
          <para>
           <parameter>flag</parameter> is equal to <literal>1</literal> only in the last call.
          </para>
         </note>
        </listitem>
        <listitem>
         <para>
          UDM_ISPELL_TYPE_SERVER - enables spell server support.
          <parameter>val1</parameter> parameter indicates
          address of the host running spell server. <parameter>val2</parameter> `
          is not used yet, but in future releases it is going to indicate number
          of port used by spell server. <parameter>flag</parameter> parameter in
          this case is not needed since ispell data is stored
          on spellserver already sorted.
         </para>
         <para>
          Spelld server reads spell-data from a separate configuration file
          (/usr/local/mnogosearch/etc/spelld.conf by default), sorts it and stores in
          memory. With clients server communicates in two ways: to indexer all the
          data is transferred (so that indexer starts faster), from search.cgi server
          receives word to normalize and then passes over to client (search.cgi) list
          of normalized word forms. This allows fastest, compared to db and text modes
          processing of search queries (by omitting loading and sorting all the spell data).
         </para>
         <para>
          <function>udm_load_ispell_data</function> function in UDM_ISPELL_TYPE_SERVER
          mode does not actually load ispell data, but only defines server address.
          In fact, server is automatically used by <function>udm_find</function>
          function when performing search. In case of errors, e.g. if spellserver
          is not running or invalid host indicated, there are no messages returned
          and ispell conversion does not work.
         </para>
         <note>
          <para>
           This function is available in mnoGoSearch 3.1.12 or later.
          </para>
         </note>
         <simpara>Example:</simpara>
         <informalexample>
          <programlisting role="php">
<![CDATA[
<?php
if (!udm_load_ispell_data($udm, UDM_ISPELL_TYPE_SERVER, '', '', 1)) {
    echo "Error loading ispell data from server<br />\n";
    exit;
}
?>
]]>
          </programlisting>
         </informalexample>
        </listitem>
       </itemizedlist>
      </para>
      <para>
       The fastest mode is UDM_ISPELL_TYPE_SERVER. UDM_ISPELL_TYPE_TEXT is slower
       and UDM_ISPELL_TYPE_DB is the slowest. The above pattern is &true; for
       mnoGoSearch 3.1.10 - 3.1.11. It is planned to speed up DB mode in future
       versions and it is going to be faster than TEXT mode.
      </para>
     </listitem>
    </varlistentry>
    <varlistentry>
     <term><parameter>val1</parameter></term>
     <listitem>
      <para>
      </para>
     </listitem>
    </varlistentry>
    <varlistentry>
     <term><parameter>val2</parameter></term>
     <listitem>
      <para>
      </para>
     </listitem>
    </varlistentry>
    <varlistentry>
     <term><parameter>flag</parameter></term>
     <listitem>
      <para>
      </para>
     </listitem>
    </varlistentry>
   </variablelist>
  </para>
 </refsect1>

 <refsect1 role="returnvalues">
  &reftitle.returnvalues;
  <para>
   &return.success;
  </para>
 </refsect1>

 <refsect1 role="examples">
  &reftitle.examples;
  <para>
   <example>
    <title><function>udm_load_ispell_data</function> example</title>
    <programlisting role="php">
<![CDATA[
<?php
if (! udm_load_ispell_data($udm, UDM_ISPELL_TYPE_DB, '', '', 1)) {
  printf("Error #%d: '%s'\n", udm_errno($udm), udm_error($udm));
  exit;
}
?>
]]>
    </programlisting>
   </example>
  </para>
 </refsect1>

</refentry>

<!-- Keep this comment at the end of the file
Local variables:
mode: sgml
sgml-omittag:t
sgml-shorttag:t
sgml-minimize-attributes:nil
sgml-always-quote-attributes:t
sgml-indent-step:1
sgml-indent-data:t
indent-tabs-mode:nil
sgml-parent-document:nil
sgml-default-dtd-file:"../../../../manual.ced"
sgml-exposed-tags:nil
sgml-local-catalogs:nil
sgml-local-ecat-files:nil
End:
vim600: syn=xml fen fdm=syntax fdl=2 si
vim: et tw=78 syn=sgml
vi: ts=1 sw=1
-->