2017-07-05 15:19:40 +00:00
|
|
|
/* ***** BEGIN LICENSE BLOCK *****
|
|
|
|
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
|
|
|
*
|
|
|
|
* Copyright (C) 2002-2017 Németh László
|
|
|
|
*
|
|
|
|
* The contents of this file are subject to the Mozilla Public License Version
|
|
|
|
* 1.1 (the "License"); you may not use this file except in compliance with
|
|
|
|
* the License. You may obtain a copy of the License at
|
|
|
|
* http://www.mozilla.org/MPL/
|
|
|
|
*
|
|
|
|
* Software distributed under the License is distributed on an "AS IS" basis,
|
|
|
|
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
|
|
|
* for the specific language governing rights and limitations under the
|
|
|
|
* License.
|
|
|
|
*
|
|
|
|
* Hunspell is based on MySpell which is Copyright (C) 2002 Kevin Hendricks.
|
|
|
|
*
|
|
|
|
* Contributor(s): David Einstein, Davide Prina, Giuseppe Modugno,
|
|
|
|
* Gianluca Turconi, Simon Brouwer, Noll János, Bíró Árpád,
|
|
|
|
* Goldman Eleonóra, Sarlós Tamás, Bencsáth Boldizsár, Halácsy Péter,
|
|
|
|
* Dvornik László, Gefferth András, Nagy Viktor, Varga Dániel, Chris Halls,
|
|
|
|
* Rene Engelhard, Bram Moolenaar, Dafydd Jones, Harri Pitkänen
|
|
|
|
*
|
|
|
|
* Alternatively, the contents of this file may be used under the terms of
|
|
|
|
* either the GNU General Public License Version 2 or later (the "GPL"), or
|
|
|
|
* the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
|
|
|
* in which case the provisions of the GPL or the LGPL are applicable instead
|
|
|
|
* of those above. If you wish to allow use of your version of this file only
|
|
|
|
* under the terms of either the GPL or the LGPL, and not to allow others to
|
|
|
|
* use your version of this file under the terms of the MPL, indicate your
|
|
|
|
* decision by deleting the provisions above and replace them with the notice
|
|
|
|
* and other provisions required by the GPL or the LGPL. If you do not delete
|
|
|
|
* the provisions above, a recipient may use your version of this file under
|
|
|
|
* the terms of any one of the MPL, the GPL or the LGPL.
|
|
|
|
*
|
|
|
|
* ***** END LICENSE BLOCK ***** */
|
|
|
|
/*
|
|
|
|
* Copyright 2002 Kevin B. Hendricks, Stratford, Ontario, Canada
|
|
|
|
* And Contributors. All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
*
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
*
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
*
|
|
|
|
* 3. All modifications to the source code must be clearly marked as
|
|
|
|
* such. Binary redistributions based on modified source code
|
|
|
|
* must be clearly marked as modified versions in the documentation
|
|
|
|
* and/or other materials provided with the distribution.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY KEVIN B. HENDRICKS AND CONTRIBUTORS
|
|
|
|
* ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
|
|
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
|
|
|
|
* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
|
|
|
|
* KEVIN B. HENDRICKS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
|
|
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
|
|
|
|
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
|
|
|
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
* SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
#ifndef MYSPELLMGR_HXX_
|
|
|
|
#define MYSPELLMGR_HXX_
|
2011-08-07 08:13:20 +00:00
|
|
|
|
2017-07-05 15:19:40 +00:00
|
|
|
#include "hunvisapi.h"
|
|
|
|
#include "w_char.hxx"
|
|
|
|
#include "atypes.hxx"
|
|
|
|
#include <string>
|
|
|
|
#include <vector>
|
2011-08-07 08:13:20 +00:00
|
|
|
|
2017-07-05 15:19:40 +00:00
|
|
|
#define SPELL_XML "<?xml?>"
|
2011-08-07 08:13:20 +00:00
|
|
|
|
|
|
|
#define MAXSUGGESTION 15
|
|
|
|
#define MAXSHARPS 5
|
|
|
|
|
2017-07-05 15:19:40 +00:00
|
|
|
#ifndef MAXWORDLEN
|
|
|
|
#define MAXWORDLEN 100
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if defined __GNUC__ && (__GNUC__ > 3 || (__GNUC__ == 3 && __GNUC_MINOR__ >= 1))
|
|
|
|
# define H_DEPRECATED __attribute__((__deprecated__))
|
|
|
|
#elif defined(_MSC_VER) && (_MSC_VER >= 1300)
|
|
|
|
# define H_DEPRECATED __declspec(deprecated)
|
|
|
|
#else
|
|
|
|
# define H_DEPRECATED
|
|
|
|
#endif
|
2011-08-07 08:13:20 +00:00
|
|
|
|
2017-07-05 15:19:40 +00:00
|
|
|
class HunspellImpl;
|
2011-08-07 08:13:20 +00:00
|
|
|
|
2017-07-05 15:19:40 +00:00
|
|
|
class LIBHUNSPELL_DLL_EXPORTED Hunspell {
|
|
|
|
private:
|
|
|
|
Hunspell(const Hunspell&);
|
|
|
|
Hunspell& operator=(const Hunspell&);
|
2011-08-07 08:13:20 +00:00
|
|
|
|
2017-07-05 15:19:40 +00:00
|
|
|
private:
|
|
|
|
HunspellImpl* m_Impl;
|
2011-08-07 08:13:20 +00:00
|
|
|
|
2017-07-05 15:19:40 +00:00
|
|
|
public:
|
2011-08-07 08:13:20 +00:00
|
|
|
/* Hunspell(aff, dic) - constructor of Hunspell class
|
|
|
|
* input: path of affix file and dictionary file
|
2017-07-05 15:19:40 +00:00
|
|
|
*
|
|
|
|
* In WIN32 environment, use UTF-8 encoded paths started with the long path
|
|
|
|
* prefix \\\\?\\ to handle system-independent character encoding and very
|
|
|
|
* long path names (without the long path prefix Hunspell will use fopen()
|
|
|
|
* with system-dependent character encoding instead of _wfopen()).
|
2011-08-07 08:13:20 +00:00
|
|
|
*/
|
2017-07-05 15:19:40 +00:00
|
|
|
Hunspell(const char* affpath, const char* dpath, const char* key = NULL);
|
2011-08-07 08:13:20 +00:00
|
|
|
~Hunspell();
|
|
|
|
|
|
|
|
/* load extra dictionaries (only dic files) */
|
2017-07-05 15:19:40 +00:00
|
|
|
int add_dic(const char* dpath, const char* key = NULL);
|
2011-08-07 08:13:20 +00:00
|
|
|
|
|
|
|
/* spell(word) - spellcheck word
|
2017-07-05 15:19:40 +00:00
|
|
|
* output: false = bad word, true = good word
|
|
|
|
*
|
2011-08-07 08:13:20 +00:00
|
|
|
* plus output:
|
|
|
|
* info: information bit array, fields:
|
2017-07-05 15:19:40 +00:00
|
|
|
* SPELL_COMPOUND = a compound word
|
2011-08-07 08:13:20 +00:00
|
|
|
* SPELL_FORBIDDEN = an explicit forbidden word
|
|
|
|
* root: root (stem), when input is a word with affix(es)
|
|
|
|
*/
|
2017-07-05 15:19:40 +00:00
|
|
|
bool spell(const std::string& word, int* info = NULL, std::string* root = NULL);
|
|
|
|
H_DEPRECATED int spell(const char* word, int* info = NULL, char** root = NULL);
|
2011-08-07 08:13:20 +00:00
|
|
|
|
|
|
|
/* suggest(suggestions, word) - search suggestions
|
|
|
|
* input: pointer to an array of strings pointer and the (bad) word
|
|
|
|
* array of strings pointer (here *slst) may not be initialized
|
|
|
|
* output: number of suggestions in string array, and suggestions in
|
|
|
|
* a newly allocated array of strings (*slts will be NULL when number
|
|
|
|
* of suggestion equals 0.)
|
|
|
|
*/
|
2017-07-05 15:19:40 +00:00
|
|
|
std::vector<std::string> suggest(const std::string& word);
|
|
|
|
H_DEPRECATED int suggest(char*** slst, const char* word);
|
2011-08-07 08:13:20 +00:00
|
|
|
|
2017-07-05 15:19:40 +00:00
|
|
|
/* Suggest words from suffix rules
|
|
|
|
* suffix_suggest(suggestions, root_word)
|
|
|
|
* input: pointer to an array of strings pointer and the word
|
|
|
|
* array of strings pointer (here *slst) may not be initialized
|
|
|
|
* output: number of suggestions in string array, and suggestions in
|
|
|
|
* a newly allocated array of strings (*slts will be NULL when number
|
|
|
|
* of suggestion equals 0.)
|
|
|
|
*/
|
|
|
|
std::vector<std::string> suffix_suggest(const std::string& root_word);
|
|
|
|
H_DEPRECATED int suffix_suggest(char*** slst, const char* root_word);
|
2011-08-07 08:13:20 +00:00
|
|
|
|
|
|
|
/* deallocate suggestion lists */
|
2017-07-05 15:19:40 +00:00
|
|
|
H_DEPRECATED void free_list(char*** slst, int n);
|
2011-08-07 08:13:20 +00:00
|
|
|
|
2017-07-05 15:19:40 +00:00
|
|
|
const std::string& get_dict_encoding() const;
|
|
|
|
char* get_dic_encoding();
|
2011-08-07 08:13:20 +00:00
|
|
|
|
2017-07-05 15:19:40 +00:00
|
|
|
/* morphological functions */
|
2011-08-07 08:13:20 +00:00
|
|
|
|
2017-07-05 15:19:40 +00:00
|
|
|
/* analyze(result, word) - morphological analysis of the word */
|
|
|
|
std::vector<std::string> analyze(const std::string& word);
|
|
|
|
H_DEPRECATED int analyze(char*** slst, const char* word);
|
2011-08-07 08:13:20 +00:00
|
|
|
|
2017-07-05 15:19:40 +00:00
|
|
|
/* stem(word) - stemmer function */
|
|
|
|
std::vector<std::string> stem(const std::string& word);
|
|
|
|
H_DEPRECATED int stem(char*** slst, const char* word);
|
2011-08-07 08:13:20 +00:00
|
|
|
|
2017-07-05 15:19:40 +00:00
|
|
|
/* stem(analysis, n) - get stems from a morph. analysis
|
|
|
|
* example:
|
|
|
|
* char ** result, result2;
|
|
|
|
* int n1 = analyze(&result, "words");
|
|
|
|
* int n2 = stem(&result2, result, n1);
|
|
|
|
*/
|
|
|
|
std::vector<std::string> stem(const std::vector<std::string>& morph);
|
|
|
|
H_DEPRECATED int stem(char*** slst, char** morph, int n);
|
|
|
|
|
|
|
|
/* generate(result, word, word2) - morphological generation by example(s) */
|
|
|
|
std::vector<std::string> generate(const std::string& word, const std::string& word2);
|
|
|
|
H_DEPRECATED int generate(char*** slst, const char* word, const char* word2);
|
|
|
|
|
|
|
|
/* generate(result, word, desc, n) - generation by morph. description(s)
|
|
|
|
* example:
|
|
|
|
* char ** result;
|
|
|
|
* char * affix = "is:plural"; // description depends from dictionaries, too
|
|
|
|
* int n = generate(&result, "word", &affix, 1);
|
|
|
|
* for (int i = 0; i < n; i++) printf("%s\n", result[i]);
|
|
|
|
*/
|
|
|
|
std::vector<std::string> generate(const std::string& word, const std::vector<std::string>& pl);
|
|
|
|
H_DEPRECATED int generate(char*** slst, const char* word, char** desc, int n);
|
2011-08-07 08:13:20 +00:00
|
|
|
|
|
|
|
/* functions for run-time modification of the dictionary */
|
|
|
|
|
|
|
|
/* add word to the run-time dictionary */
|
2017-07-05 15:19:40 +00:00
|
|
|
|
|
|
|
int add(const std::string& word);
|
2011-08-07 08:13:20 +00:00
|
|
|
|
|
|
|
/* add word to the run-time dictionary with affix flags of
|
|
|
|
* the example (a dictionary word): Hunspell will recognize
|
|
|
|
* affixed forms of the new word, too.
|
|
|
|
*/
|
2017-07-05 15:19:40 +00:00
|
|
|
|
|
|
|
int add_with_affix(const std::string& word, const std::string& example);
|
2011-08-07 08:13:20 +00:00
|
|
|
|
|
|
|
/* remove word from the run-time dictionary */
|
|
|
|
|
2017-07-05 15:19:40 +00:00
|
|
|
int remove(const std::string& word);
|
2011-08-07 08:13:20 +00:00
|
|
|
|
|
|
|
/* other */
|
|
|
|
|
|
|
|
/* get extra word characters definied in affix file for tokenization */
|
2017-07-05 15:19:40 +00:00
|
|
|
const char* get_wordchars() const;
|
|
|
|
const std::string& get_wordchars_cpp() const;
|
|
|
|
const std::vector<w_char>& get_wordchars_utf16() const;
|
2011-08-07 08:13:20 +00:00
|
|
|
|
2017-07-05 15:19:40 +00:00
|
|
|
struct cs_info* get_csconv();
|
2011-08-07 08:13:20 +00:00
|
|
|
|
2017-07-05 15:19:40 +00:00
|
|
|
const char* get_version() const;
|
|
|
|
const std::string& get_version_cpp() const;
|
2011-08-07 08:13:20 +00:00
|
|
|
|
2017-07-05 15:19:40 +00:00
|
|
|
int get_langnum() const;
|
2011-08-07 08:13:20 +00:00
|
|
|
|
2017-07-05 15:19:40 +00:00
|
|
|
/* need for putdic */
|
|
|
|
bool input_conv(const std::string& word, std::string& dest);
|
|
|
|
H_DEPRECATED int input_conv(const char* word, char* dest, size_t destsize);
|
2011-08-07 08:13:20 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|