Übersicht der Quellen

 
     
 
 
Anforderungen  |   Konzepte  |   Entwurf  |   Entwicklung  |   Qualitätssicherung  |   Lebenszyklus  |   Steuerung
 
 
 
 

Benutzer

Quelle  dict_ispell.c

  Sprache: C
 

/*-------------------------------------------------------------------------
 *
 * dict_ispell.c
 *  Ispell dictionary interface
 *
 * Portions Copyright (c) 1996-2025, PostgreSQL Global Development Group
 *
 *
 * IDENTIFICATION
 *   src/backend/tsearch/dict_ispell.c
 *
 *-------------------------------------------------------------------------
 */

#include "postgres.h"

#include "catalog/pg_collation_d.h"
#include "commands/defrem.h"
#include "tsearch/dicts/spell.h"
#include "tsearch/ts_public.h"
#include "utils/fmgrprotos.h"
#include "utils/formatting.h"


typedef struct
{
 StopList stoplist;
 IspellDict obj;
} DictISpell;

Datum
dispell_init(PG_FUNCTION_ARGS)
{
 List    *dictoptions = (List *) PG_GETARG_POINTER(0);
 DictISpell *d;
 bool  affloaded = false,
    dictloaded = false,
    stoploaded = false;
 ListCell   *l;

 d = (DictISpell *) palloc0(sizeof(DictISpell));

 NIStartBuild(&(d->obj));

 foreach(l, dictoptions)
 {
  DefElem    *defel = (DefElem *) lfirst(l);

  if (strcmp(defel->defname, "dictfile") == 0)
  {
   if (dictloaded)
    ereport(ERROR,
      (errcode(ERRCODE_INVALID_PARAMETER_VALUE),
       errmsg("multiple DictFile parameters")));
   NIImportDictionary(&(d->obj),
          get_tsearch_config_filename(defGetString(defel),
                 "dict"));
   dictloaded = true;
  }
  else if (strcmp(defel->defname, "afffile") == 0)
  {
   if (affloaded)
    ereport(ERROR,
      (errcode(ERRCODE_INVALID_PARAMETER_VALUE),
       errmsg("multiple AffFile parameters")));
   NIImportAffixes(&(d->obj),
       get_tsearch_config_filename(defGetString(defel),
              "affix"));
   affloaded = true;
  }
  else if (strcmp(defel->defname, "stopwords") == 0)
  {
   if (stoploaded)
    ereport(ERROR,
      (errcode(ERRCODE_INVALID_PARAMETER_VALUE),
       errmsg("multiple StopWords parameters")));
   readstoplist(defGetString(defel), &(d->stoplist), str_tolower);
   stoploaded = true;
  }
  else
  {
   ereport(ERROR,
     (errcode(ERRCODE_INVALID_PARAMETER_VALUE),
      errmsg("unrecognized Ispell parameter: \"%s\"",
       defel->defname)));
  }
 }

 if (affloaded && dictloaded)
 {
  NISortDictionary(&(d->obj));
  NISortAffixes(&(d->obj));
 }
 else if (!affloaded)
 {
  ereport(ERROR,
    (errcode(ERRCODE_INVALID_PARAMETER_VALUE),
     errmsg("missing AffFile parameter")));
 }
 else
 {
  ereport(ERROR,
    (errcode(ERRCODE_INVALID_PARAMETER_VALUE),
     errmsg("missing DictFile parameter")));
 }

 NIFinishBuild(&(d->obj));

 PG_RETURN_POINTER(d);
}

Datum
dispell_lexize(PG_FUNCTION_ARGS)
{
 DictISpell *d = (DictISpell *) PG_GETARG_POINTER(0);
 char    *in = (char *) PG_GETARG_POINTER(1);
 int32  len = PG_GETARG_INT32(2);
 char    *txt;
 TSLexeme   *res;
 TSLexeme   *ptr,
      *cptr;

 if (len <= 0)
  PG_RETURN_POINTER(NULL);

 txt = str_tolower(in, len, DEFAULT_COLLATION_OID);
 res = NINormalizeWord(&(d->obj), txt);

 if (res == NULL)
  PG_RETURN_POINTER(NULL);

 cptr = res;
 for (ptr = cptr; ptr->lexeme; ptr++)
 {
  if (searchstoplist(&(d->stoplist), ptr->lexeme))
  {
   pfree(ptr->lexeme);
   ptr->lexeme = NULL;
  }
  else
  {
   if (cptr != ptr)
    memcpy(cptr, ptr, sizeof(TSLexeme));
   cptr++;
  }
 }
 cptr->lexeme = NULL;

 PG_RETURN_POINTER(res);
}

Messung V0.5 in Prozent
C=93 H=94 G=93

¤ Dauer der Verarbeitung: 0.0 Sekunden  (vorverarbeitet am  2026-08-08) ¤

*© Formatika GbR, Deutschland






Wurzel

Suchen

PVS Prover

Isabelle Prover

NIST Cobol Testsuite

Cephes Mathematical Library

Vienna Development Method

Haftungshinweis

Die Informationen auf dieser Webseite wurden nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit, noch Qualität der bereit gestellten Informationen zugesichert.

Bemerkung:

Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.






                                                                                                                                                                                                                                                                                                                                                                                                     


Neuigkeiten

     Aktuelles
     Motto des Tages

Open Source Software

     Quellcodebibliothek
     Eigene Quellcodes
     Fremde Quellcodes
     Suchen

Jenseits des Üblichen ....
    

Besucherstatistik

Besucherstatistik

Statistik
#Sources=141584
#Domains=752002