LCOV - differential code coverage report
Current view: top level - src/backend/tsearch - to_tsany.c (source / functions) Coverage Total Hit UBC CBC
Current: Differential Code Coverage 16@8cea358b128 vs 17@8cea358b128 Lines: 96.5 % 284 274 10 274
Current Date: 2024-04-14 14:21:10 Functions: 92.3 % 26 24 2 24
Baseline: 16@8cea358b128 Branches: 69.1 % 136 94 42 94
Baseline Date: 2024-04-14 14:21:09 Line coverage date bins:
Legend: Lines: hit not hit | Branches: + taken - not taken # not executed (180,240] days: 50.0 % 2 1 1 1
(240..) days: 96.8 % 282 273 9 273
Function coverage date bins:
(240..) days: 92.3 % 26 24 2 24
Branch coverage date bins:
(180,240] days: 50.0 % 2 1 1 1
(240..) days: 69.4 % 134 93 41 93

 Age         Owner                    Branch data    TLA  Line data    Source code
                                  1                 :                : /*-------------------------------------------------------------------------
                                  2                 :                :  *
                                  3                 :                :  * to_tsany.c
                                  4                 :                :  *      to_ts* function definitions
                                  5                 :                :  *
                                  6                 :                :  * Portions Copyright (c) 1996-2024, PostgreSQL Global Development Group
                                  7                 :                :  *
                                  8                 :                :  *
                                  9                 :                :  * IDENTIFICATION
                                 10                 :                :  *    src/backend/tsearch/to_tsany.c
                                 11                 :                :  *
                                 12                 :                :  *-------------------------------------------------------------------------
                                 13                 :                :  */
                                 14                 :                : #include "postgres.h"
                                 15                 :                : 
                                 16                 :                : #include "tsearch/ts_cache.h"
                                 17                 :                : #include "tsearch/ts_utils.h"
                                 18                 :                : #include "utils/builtins.h"
                                 19                 :                : #include "utils/jsonfuncs.h"
                                 20                 :                : 
                                 21                 :                : 
                                 22                 :                : /*
                                 23                 :                :  * Opaque data structure, which is passed by parse_tsquery() to pushval_morph().
                                 24                 :                :  */
                                 25                 :                : typedef struct MorphOpaque
                                 26                 :                : {
                                 27                 :                :     Oid         cfg_id;
                                 28                 :                : 
                                 29                 :                :     /*
                                 30                 :                :      * Single tsquery morph could be parsed into multiple words.  When these
                                 31                 :                :      * words reside in adjacent positions, they are connected using this
                                 32                 :                :      * operator.  Usually, that is OP_PHRASE, which requires word positions of
                                 33                 :                :      * a complex morph to exactly match the tsvector.
                                 34                 :                :      */
                                 35                 :                :     int         qoperator;
                                 36                 :                : } MorphOpaque;
                                 37                 :                : 
                                 38                 :                : typedef struct TSVectorBuildState
                                 39                 :                : {
                                 40                 :                :     ParsedText *prs;
                                 41                 :                :     Oid         cfgId;
                                 42                 :                : } TSVectorBuildState;
                                 43                 :                : 
                                 44                 :                : static void add_to_tsvector(void *_state, char *elem_value, int elem_len);
                                 45                 :                : 
                                 46                 :                : 
                                 47                 :                : Datum
 6081 tgl@sss.pgh.pa.us          48                 :UBC           0 : get_current_ts_config(PG_FUNCTION_ARGS)
                                 49                 :                : {
                                 50                 :              0 :     PG_RETURN_OID(getTSCurrentConfig(true));
                                 51                 :                : }
                                 52                 :                : 
                                 53                 :                : /*
                                 54                 :                :  * to_tsvector
                                 55                 :                :  */
                                 56                 :                : static int
 6081 tgl@sss.pgh.pa.us          57                 :CBC        6229 : compareWORD(const void *a, const void *b)
                                 58                 :                : {
                                 59                 :                :     int         res;
                                 60                 :                : 
 1536 alvherre@alvh.no-ip.       61                 :           6229 :     res = tsCompareString(((const ParsedWord *) a)->word, ((const ParsedWord *) a)->len,
 2489 tgl@sss.pgh.pa.us          62                 :           6229 :                           ((const ParsedWord *) b)->word, ((const ParsedWord *) b)->len,
                                 63                 :                :                           false);
                                 64                 :                : 
 5812                            65         [ +  + ]:           6229 :     if (res == 0)
                                 66                 :                :     {
 4599 peter_e@gmx.net            67         [ +  + ]:            525 :         if (((const ParsedWord *) a)->pos.pos == ((const ParsedWord *) b)->pos.pos)
 5812 tgl@sss.pgh.pa.us          68                 :             12 :             return 0;
                                 69                 :                : 
 4599 peter_e@gmx.net            70         [ +  + ]:            513 :         res = (((const ParsedWord *) a)->pos.pos > ((const ParsedWord *) b)->pos.pos) ? 1 : -1;
                                 71                 :                :     }
                                 72                 :                : 
 5812 tgl@sss.pgh.pa.us          73                 :           6217 :     return res;
                                 74                 :                : }
                                 75                 :                : 
                                 76                 :                : static int
 4311 peter_e@gmx.net            77                 :            338 : uniqueWORD(ParsedWord *a, int32 l)
                                 78                 :                : {
                                 79                 :                :     ParsedWord *ptr,
                                 80                 :                :                *res;
                                 81                 :                :     int         tmppos;
                                 82                 :                : 
 6081 tgl@sss.pgh.pa.us          83         [ +  + ]:            338 :     if (l == 1)
                                 84                 :                :     {
                                 85                 :             13 :         tmppos = LIMITPOS(a->pos.pos);
                                 86                 :             13 :         a->alen = 2;
                                 87                 :             13 :         a->pos.apos = (uint16 *) palloc(sizeof(uint16) * a->alen);
                                 88                 :             13 :         a->pos.apos[0] = 1;
                                 89                 :             13 :         a->pos.apos[1] = tmppos;
                                 90                 :             13 :         return l;
                                 91                 :                :     }
                                 92                 :                : 
                                 93                 :            325 :     res = a;
                                 94                 :            325 :     ptr = a + 1;
                                 95                 :                : 
                                 96                 :                :     /*
                                 97                 :                :      * Sort words with its positions
                                 98                 :                :      */
  432 peter@eisentraut.org       99                 :            325 :     qsort(a, l, sizeof(ParsedWord), compareWORD);
                                100                 :                : 
                                101                 :                :     /*
                                102                 :                :      * Initialize first word and its first position
                                103                 :                :      */
 6081 tgl@sss.pgh.pa.us         104                 :            325 :     tmppos = LIMITPOS(a->pos.pos);
                                105                 :            325 :     a->alen = 2;
                                106                 :            325 :     a->pos.apos = (uint16 *) palloc(sizeof(uint16) * a->alen);
                                107                 :            325 :     a->pos.apos[0] = 1;
                                108                 :            325 :     a->pos.apos[1] = tmppos;
                                109                 :                : 
                                110                 :                :     /*
                                111                 :                :      * Summarize position information for each word
                                112                 :                :      */
                                113         [ +  + ]:           2096 :     while (ptr - a < l)
                                114                 :                :     {
                                115         [ +  + ]:           1771 :         if (!(ptr->len == res->len &&
                                116         [ +  + ]:           1015 :               strncmp(ptr->word, res->word, res->len) == 0))
                                117                 :                :         {
                                118                 :                :             /*
                                119                 :                :              * Got a new word, so put it in result
                                120                 :                :              */
                                121                 :           1444 :             res++;
                                122                 :           1444 :             res->len = ptr->len;
                                123                 :           1444 :             res->word = ptr->word;
                                124                 :           1444 :             tmppos = LIMITPOS(ptr->pos.pos);
                                125                 :           1444 :             res->alen = 2;
                                126                 :           1444 :             res->pos.apos = (uint16 *) palloc(sizeof(uint16) * res->alen);
                                127                 :           1444 :             res->pos.apos[0] = 1;
                                128                 :           1444 :             res->pos.apos[1] = tmppos;
                                129                 :                :         }
                                130                 :                :         else
                                131                 :                :         {
                                132                 :                :             /*
                                133                 :                :              * The word already exists, so adjust position information. But
                                134                 :                :              * before we should check size of position's array, max allowed
                                135                 :                :              * value for position and uniqueness of position
                                136                 :                :              */
                                137                 :            327 :             pfree(ptr->word);
 6045 teodor@sigaev.ru          138   [ +  -  +  - ]:            327 :             if (res->pos.apos[0] < MAXNUMPOS - 1 && res->pos.apos[res->pos.apos[0]] != MAXENTRYPOS - 1 &&
 5995 bruce@momjian.us          139         [ +  + ]:            327 :                 res->pos.apos[res->pos.apos[0]] != LIMITPOS(ptr->pos.pos))
                                140                 :                :             {
 6081 tgl@sss.pgh.pa.us         141         [ +  + ]:            315 :                 if (res->pos.apos[0] + 1 >= res->alen)
                                142                 :                :                 {
                                143                 :            252 :                     res->alen *= 2;
                                144                 :            252 :                     res->pos.apos = (uint16 *) repalloc(res->pos.apos, sizeof(uint16) * res->alen);
                                145                 :                :                 }
                                146   [ +  -  +  - ]:            315 :                 if (res->pos.apos[0] == 0 || res->pos.apos[res->pos.apos[0]] != LIMITPOS(ptr->pos.pos))
                                147                 :                :                 {
                                148                 :            315 :                     res->pos.apos[res->pos.apos[0] + 1] = LIMITPOS(ptr->pos.pos);
                                149                 :            315 :                     res->pos.apos[0]++;
                                150                 :                :                 }
                                151                 :                :             }
                                152                 :                :         }
                                153                 :           1771 :         ptr++;
                                154                 :                :     }
                                155                 :                : 
                                156                 :            325 :     return res + 1 - a;
                                157                 :                : }
                                158                 :                : 
                                159                 :                : /*
                                160                 :                :  * make value of tsvector, given parsed text
                                161                 :                :  *
                                162                 :                :  * Note: frees prs->words and subsidiary data.
                                163                 :                :  */
                                164                 :                : TSVector
 5995 bruce@momjian.us          165                 :            398 : make_tsvector(ParsedText *prs)
                                166                 :                : {
                                167                 :                :     int         i,
                                168                 :                :                 j,
 6081 tgl@sss.pgh.pa.us         169                 :            398 :                 lenstr = 0,
                                170                 :                :                 totallen;
                                171                 :                :     TSVector    in;
                                172                 :                :     WordEntry  *ptr;
                                173                 :                :     char       *str;
                                174                 :                :     int         stroff;
                                175                 :                : 
                                176                 :                :     /* Merge duplicate words */
 2462                           177         [ +  + ]:            398 :     if (prs->curwords > 0)
                                178                 :            338 :         prs->curwords = uniqueWORD(prs->words, prs->curwords);
                                179                 :                : 
                                180                 :                :     /* Determine space needed */
 6081                           181         [ +  + ]:           2180 :     for (i = 0; i < prs->curwords; i++)
                                182                 :                :     {
 6018                           183                 :           1782 :         lenstr += prs->words[i].len;
 6081                           184         [ +  - ]:           1782 :         if (prs->words[i].alen)
                                185                 :                :         {
 6018                           186                 :           1782 :             lenstr = SHORTALIGN(lenstr);
 6081                           187                 :           1782 :             lenstr += sizeof(uint16) + prs->words[i].pos.apos[0] * sizeof(WordEntryPos);
                                188                 :                :         }
                                189                 :                :     }
                                190                 :                : 
 6018                           191         [ -  + ]:            398 :     if (lenstr > MAXSTRPOS)
 6018 tgl@sss.pgh.pa.us         192         [ #  # ]:UBC           0 :         ereport(ERROR,
                                193                 :                :                 (errcode(ERRCODE_PROGRAM_LIMIT_EXCEEDED),
                                194                 :                :                  errmsg("string is too long for tsvector (%d bytes, max %d bytes)", lenstr, MAXSTRPOS)));
                                195                 :                : 
 6081 tgl@sss.pgh.pa.us         196                 :CBC         398 :     totallen = CALCDATASIZE(prs->curwords, lenstr);
                                197                 :            398 :     in = (TSVector) palloc0(totallen);
                                198                 :            398 :     SET_VARSIZE(in, totallen);
                                199                 :            398 :     in->size = prs->curwords;
                                200                 :                : 
                                201                 :            398 :     ptr = ARRPTR(in);
 6018                           202                 :            398 :     str = STRPTR(in);
                                203                 :            398 :     stroff = 0;
 6081                           204         [ +  + ]:           2180 :     for (i = 0; i < prs->curwords; i++)
                                205                 :                :     {
                                206                 :           1782 :         ptr->len = prs->words[i].len;
 6018                           207                 :           1782 :         ptr->pos = stroff;
                                208                 :           1782 :         memcpy(str + stroff, prs->words[i].word, prs->words[i].len);
                                209                 :           1782 :         stroff += prs->words[i].len;
 6081                           210                 :           1782 :         pfree(prs->words[i].word);
                                211         [ +  - ]:           1782 :         if (prs->words[i].alen)
                                212                 :                :         {
 5995 bruce@momjian.us          213                 :           1782 :             int         k = prs->words[i].pos.apos[0];
                                214                 :                :             WordEntryPos *wptr;
                                215                 :                : 
 6018 tgl@sss.pgh.pa.us         216         [ -  + ]:           1782 :             if (k > 0xFFFF)
 6018 tgl@sss.pgh.pa.us         217         [ #  # ]:UBC           0 :                 elog(ERROR, "positions array too long");
                                218                 :                : 
 6081 tgl@sss.pgh.pa.us         219                 :CBC        1782 :             ptr->haspos = 1;
 6018                           220                 :           1782 :             stroff = SHORTALIGN(stroff);
                                221                 :           1782 :             *(uint16 *) (str + stroff) = (uint16) k;
 6081                           222                 :           1782 :             wptr = POSDATAPTR(in, ptr);
 6018                           223         [ +  + ]:           3879 :             for (j = 0; j < k; j++)
                                224                 :                :             {
 6081                           225                 :           2097 :                 WEP_SETWEIGHT(wptr[j], 0);
                                226                 :           2097 :                 WEP_SETPOS(wptr[j], prs->words[i].pos.apos[j + 1]);
                                227                 :                :             }
 6018                           228                 :           1782 :             stroff += sizeof(uint16) + k * sizeof(WordEntryPos);
 6081                           229                 :           1782 :             pfree(prs->words[i].pos.apos);
                                230                 :                :         }
                                231                 :                :         else
 6081 tgl@sss.pgh.pa.us         232                 :UBC           0 :             ptr->haspos = 0;
 6081 tgl@sss.pgh.pa.us         233                 :CBC        1782 :         ptr++;
                                234                 :                :     }
                                235                 :                : 
 2462                           236         [ +  + ]:            398 :     if (prs->words)
                                237                 :            356 :         pfree(prs->words);
                                238                 :                : 
 6081                           239                 :            398 :     return in;
                                240                 :                : }
                                241                 :                : 
                                242                 :                : Datum
                                243                 :            239 : to_tsvector_byid(PG_FUNCTION_ARGS)
                                244                 :                : {
                                245                 :            239 :     Oid         cfgId = PG_GETARG_OID(0);
 2590 noah@leadboat.com         246                 :            239 :     text       *in = PG_GETARG_TEXT_PP(1);
                                247                 :                :     ParsedText  prs;
                                248                 :                :     TSVector    out;
                                249                 :                : 
                                250   [ -  +  -  -  :            239 :     prs.lenwords = VARSIZE_ANY_EXHDR(in) / 6;   /* just estimation of word's
                                     -  -  -  -  +  
                                                 + ]
                                251                 :                :                                                  * number */
 2462 tgl@sss.pgh.pa.us         252         [ +  + ]:            239 :     if (prs.lenwords < 2)
 6081                           253                 :            169 :         prs.lenwords = 2;
  202                           254         [ -  + ]:             70 :     else if (prs.lenwords > MaxAllocSize / sizeof(ParsedWord))
  202 tgl@sss.pgh.pa.us         255                 :UBC           0 :         prs.lenwords = MaxAllocSize / sizeof(ParsedWord);
 6081 tgl@sss.pgh.pa.us         256                 :CBC         239 :     prs.curwords = 0;
                                257                 :            239 :     prs.pos = 0;
                                258                 :            239 :     prs.words = (ParsedWord *) palloc(sizeof(ParsedWord) * prs.lenwords);
                                259                 :                : 
 2590 noah@leadboat.com         260   [ -  +  -  -  :            239 :     parsetext(cfgId, &prs, VARDATA_ANY(in), VARSIZE_ANY_EXHDR(in));
                                     -  -  -  -  +  
                                           +  +  + ]
                                261                 :                : 
 6081 tgl@sss.pgh.pa.us         262         [ -  + ]:            239 :     PG_FREE_IF_COPY(in, 1);
                                263                 :                : 
 2462                           264                 :            239 :     out = make_tsvector(&prs);
                                265                 :                : 
                                266                 :            239 :     PG_RETURN_TSVECTOR(out);
                                267                 :                : }
                                268                 :                : 
                                269                 :                : Datum
 6081                           270                 :             27 : to_tsvector(PG_FUNCTION_ARGS)
                                271                 :                : {
 2590 noah@leadboat.com         272                 :             27 :     text       *in = PG_GETARG_TEXT_PP(0);
                                273                 :                :     Oid         cfgId;
                                274                 :                : 
 6081 tgl@sss.pgh.pa.us         275                 :             27 :     cfgId = getTSCurrentConfig(true);
                                276                 :             27 :     PG_RETURN_DATUM(DirectFunctionCall2(to_tsvector_byid,
                                277                 :                :                                         ObjectIdGetDatum(cfgId),
                                278                 :                :                                         PointerGetDatum(in)));
                                279                 :                : }
                                280                 :                : 
                                281                 :                : /*
                                282                 :                :  * Worker function for jsonb(_string)_to_tsvector(_byid)
                                283                 :                :  */
                                284                 :                : static TSVector
 2199 teodor@sigaev.ru          285                 :             75 : jsonb_to_tsvector_worker(Oid cfgId, Jsonb *jb, uint32 flags)
                                286                 :                : {
                                287                 :                :     TSVectorBuildState state;
                                288                 :                :     ParsedText  prs;
                                289                 :                : 
 2462 tgl@sss.pgh.pa.us         290                 :             75 :     prs.words = NULL;
                                291                 :             75 :     prs.curwords = 0;
                                292                 :             75 :     state.prs = &prs;
 2571 andrew@dunslane.net       293                 :             75 :     state.cfgId = cfgId;
                                294                 :                : 
 2199 teodor@sigaev.ru          295                 :             75 :     iterate_jsonb_values(jb, flags, &state, add_to_tsvector);
                                296                 :                : 
                                297                 :             75 :     return make_tsvector(&prs);
                                298                 :                : }
                                299                 :                : 
                                300                 :                : Datum
                                301                 :              9 : jsonb_string_to_tsvector_byid(PG_FUNCTION_ARGS)
                                302                 :                : {
                                303                 :              9 :     Oid         cfgId = PG_GETARG_OID(0);
                                304                 :              9 :     Jsonb      *jb = PG_GETARG_JSONB_P(1);
                                305                 :                :     TSVector    result;
                                306                 :                : 
                                307                 :              9 :     result = jsonb_to_tsvector_worker(cfgId, jb, jtiString);
                                308         [ -  + ]:              9 :     PG_FREE_IF_COPY(jb, 1);
                                309                 :                : 
 2462 tgl@sss.pgh.pa.us         310                 :              9 :     PG_RETURN_TSVECTOR(result);
                                311                 :                : }
                                312                 :                : 
                                313                 :                : Datum
 2199 teodor@sigaev.ru          314                 :             15 : jsonb_string_to_tsvector(PG_FUNCTION_ARGS)
                                315                 :                : {
 2400 tgl@sss.pgh.pa.us         316                 :             15 :     Jsonb      *jb = PG_GETARG_JSONB_P(0);
                                317                 :                :     Oid         cfgId;
                                318                 :                :     TSVector    result;
                                319                 :                : 
 2571 andrew@dunslane.net       320                 :             15 :     cfgId = getTSCurrentConfig(true);
 2199 teodor@sigaev.ru          321                 :             15 :     result = jsonb_to_tsvector_worker(cfgId, jb, jtiString);
                                322         [ -  + ]:             15 :     PG_FREE_IF_COPY(jb, 0);
                                323                 :                : 
                                324                 :             15 :     PG_RETURN_TSVECTOR(result);
                                325                 :                : }
                                326                 :                : 
                                327                 :                : Datum
                                328                 :             51 : jsonb_to_tsvector_byid(PG_FUNCTION_ARGS)
                                329                 :                : {
 2524 bruce@momjian.us          330                 :             51 :     Oid         cfgId = PG_GETARG_OID(0);
 2199 teodor@sigaev.ru          331                 :             51 :     Jsonb      *jb = PG_GETARG_JSONB_P(1);
                                332                 :             51 :     Jsonb      *jbFlags = PG_GETARG_JSONB_P(2);
                                333                 :                :     TSVector    result;
                                334                 :             51 :     uint32      flags = parse_jsonb_index_flags(jbFlags);
                                335                 :                : 
                                336                 :             39 :     result = jsonb_to_tsvector_worker(cfgId, jb, flags);
                                337         [ -  + ]:             39 :     PG_FREE_IF_COPY(jb, 1);
                                338         [ -  + ]:             39 :     PG_FREE_IF_COPY(jbFlags, 2);
                                339                 :                : 
                                340                 :             39 :     PG_RETURN_TSVECTOR(result);
                                341                 :                : }
                                342                 :                : 
                                343                 :                : Datum
                                344                 :             12 : jsonb_to_tsvector(PG_FUNCTION_ARGS)
                                345                 :                : {
                                346                 :             12 :     Jsonb      *jb = PG_GETARG_JSONB_P(0);
                                347                 :             12 :     Jsonb      *jbFlags = PG_GETARG_JSONB_P(1);
                                348                 :                :     Oid         cfgId;
                                349                 :                :     TSVector    result;
                                350                 :             12 :     uint32      flags = parse_jsonb_index_flags(jbFlags);
                                351                 :                : 
                                352                 :             12 :     cfgId = getTSCurrentConfig(true);
                                353                 :             12 :     result = jsonb_to_tsvector_worker(cfgId, jb, flags);
                                354         [ -  + ]:             12 :     PG_FREE_IF_COPY(jb, 0);
                                355         [ -  + ]:             12 :     PG_FREE_IF_COPY(jbFlags, 1);
                                356                 :                : 
                                357                 :             12 :     PG_RETURN_TSVECTOR(result);
                                358                 :                : }
                                359                 :                : 
                                360                 :                : /*
                                361                 :                :  * Worker function for json(_string)_to_tsvector(_byid)
                                362                 :                :  */
                                363                 :                : static TSVector
                                364                 :             75 : json_to_tsvector_worker(Oid cfgId, text *json, uint32 flags)
                                365                 :                : {
                                366                 :                :     TSVectorBuildState state;
                                367                 :                :     ParsedText  prs;
                                368                 :                : 
 2462 tgl@sss.pgh.pa.us         369                 :             75 :     prs.words = NULL;
                                370                 :             75 :     prs.curwords = 0;
                                371                 :             75 :     state.prs = &prs;
 2571 andrew@dunslane.net       372                 :             75 :     state.cfgId = cfgId;
                                373                 :                : 
 2199 teodor@sigaev.ru          374                 :             75 :     iterate_json_values(json, flags, &state, add_to_tsvector);
                                375                 :                : 
                                376                 :             75 :     return make_tsvector(&prs);
                                377                 :                : }
                                378                 :                : 
                                379                 :                : Datum
                                380                 :              9 : json_string_to_tsvector_byid(PG_FUNCTION_ARGS)
                                381                 :                : {
                                382                 :              9 :     Oid         cfgId = PG_GETARG_OID(0);
                                383                 :              9 :     text       *json = PG_GETARG_TEXT_P(1);
                                384                 :                :     TSVector    result;
                                385                 :                : 
                                386                 :              9 :     result = json_to_tsvector_worker(cfgId, json, jtiString);
 2462 tgl@sss.pgh.pa.us         387         [ -  + ]:              9 :     PG_FREE_IF_COPY(json, 1);
                                388                 :                : 
 2199 teodor@sigaev.ru          389                 :              9 :     PG_RETURN_TSVECTOR(result);
                                390                 :                : }
                                391                 :                : 
                                392                 :                : Datum
                                393                 :             15 : json_string_to_tsvector(PG_FUNCTION_ARGS)
                                394                 :                : {
                                395                 :             15 :     text       *json = PG_GETARG_TEXT_P(0);
                                396                 :                :     Oid         cfgId;
                                397                 :                :     TSVector    result;
                                398                 :                : 
                                399                 :             15 :     cfgId = getTSCurrentConfig(true);
                                400                 :             15 :     result = json_to_tsvector_worker(cfgId, json, jtiString);
                                401         [ -  + ]:             15 :     PG_FREE_IF_COPY(json, 0);
                                402                 :                : 
                                403                 :             15 :     PG_RETURN_TSVECTOR(result);
                                404                 :                : }
                                405                 :                : 
                                406                 :                : Datum
                                407                 :             51 : json_to_tsvector_byid(PG_FUNCTION_ARGS)
                                408                 :                : {
                                409                 :             51 :     Oid         cfgId = PG_GETARG_OID(0);
                                410                 :             51 :     text       *json = PG_GETARG_TEXT_P(1);
                                411                 :             51 :     Jsonb      *jbFlags = PG_GETARG_JSONB_P(2);
                                412                 :                :     TSVector    result;
                                413                 :             51 :     uint32      flags = parse_jsonb_index_flags(jbFlags);
                                414                 :                : 
                                415                 :             39 :     result = json_to_tsvector_worker(cfgId, json, flags);
                                416         [ -  + ]:             39 :     PG_FREE_IF_COPY(json, 1);
                                417         [ -  + ]:             39 :     PG_FREE_IF_COPY(jbFlags, 2);
                                418                 :                : 
 2462 tgl@sss.pgh.pa.us         419                 :             39 :     PG_RETURN_TSVECTOR(result);
                                420                 :                : }
                                421                 :                : 
                                422                 :                : Datum
 2571 andrew@dunslane.net       423                 :             12 : json_to_tsvector(PG_FUNCTION_ARGS)
                                424                 :                : {
 2524 bruce@momjian.us          425                 :             12 :     text       *json = PG_GETARG_TEXT_P(0);
 2199 teodor@sigaev.ru          426                 :             12 :     Jsonb      *jbFlags = PG_GETARG_JSONB_P(1);
                                427                 :                :     Oid         cfgId;
                                428                 :                :     TSVector    result;
                                429                 :             12 :     uint32      flags = parse_jsonb_index_flags(jbFlags);
                                430                 :                : 
 2571 andrew@dunslane.net       431                 :             12 :     cfgId = getTSCurrentConfig(true);
 2199 teodor@sigaev.ru          432                 :             12 :     result = json_to_tsvector_worker(cfgId, json, flags);
                                433         [ -  + ]:             12 :     PG_FREE_IF_COPY(json, 0);
                                434         [ -  + ]:             12 :     PG_FREE_IF_COPY(jbFlags, 1);
                                435                 :                : 
                                436                 :             12 :     PG_RETURN_TSVECTOR(result);
                                437                 :                : }
                                438                 :                : 
                                439                 :                : /*
                                440                 :                :  * Parse lexemes in an element of a json(b) value, add to TSVectorBuildState.
                                441                 :                :  */
                                442                 :                : static void
 2571 andrew@dunslane.net       443                 :            372 : add_to_tsvector(void *_state, char *elem_value, int elem_len)
                                444                 :                : {
                                445                 :            372 :     TSVectorBuildState *state = (TSVectorBuildState *) _state;
 2524 bruce@momjian.us          446                 :            372 :     ParsedText *prs = state->prs;
                                447                 :                :     int32       prevwords;
                                448                 :                : 
 2462 tgl@sss.pgh.pa.us         449         [ +  + ]:            372 :     if (prs->words == NULL)
                                450                 :                :     {
                                451                 :                :         /*
                                452                 :                :          * First time through: initialize words array to a reasonable size.
                                453                 :                :          * (parsetext() will realloc it bigger as needed.)
                                454                 :                :          */
 2199 teodor@sigaev.ru          455                 :            108 :         prs->lenwords = 16;
 2462 tgl@sss.pgh.pa.us         456                 :            108 :         prs->words = (ParsedWord *) palloc(sizeof(ParsedWord) * prs->lenwords);
                                457                 :            108 :         prs->curwords = 0;
                                458                 :            108 :         prs->pos = 0;
                                459                 :                :     }
                                460                 :                : 
                                461                 :            372 :     prevwords = prs->curwords;
                                462                 :                : 
 2571 andrew@dunslane.net       463                 :            372 :     parsetext(state->cfgId, prs, elem_value, elem_len);
                                464                 :                : 
                                465                 :                :     /*
                                466                 :                :      * If we extracted any words from this JSON element, advance pos to create
                                467                 :                :      * an artificial break between elements.  This is because we don't want
                                468                 :                :      * phrase searches to think that the last word in this element is adjacent
                                469                 :                :      * to the first word in the next one.
                                470                 :                :      */
 2462 tgl@sss.pgh.pa.us         471         [ +  + ]:            372 :     if (prs->curwords > prevwords)
                                472                 :            336 :         prs->pos += 1;
 2571 andrew@dunslane.net       473                 :            372 : }
                                474                 :                : 
                                475                 :                : 
                                476                 :                : /*
                                477                 :                :  * to_tsquery
                                478                 :                :  */
                                479                 :                : 
                                480                 :                : 
                                481                 :                : /*
                                482                 :                :  * This function is used for morph parsing.
                                483                 :                :  *
                                484                 :                :  * The value is passed to parsetext which will call the right dictionary to
                                485                 :                :  * lexize the word. If it turns out to be a stopword, we push a QI_VALSTOP
                                486                 :                :  * to the stack.
                                487                 :                :  *
                                488                 :                :  * All words belonging to the same variant are pushed as an ANDed list,
                                489                 :                :  * and different variants are ORed together.
                                490                 :                :  */
                                491                 :                : static void
 4311 peter_e@gmx.net           492                 :           1544 : pushval_morph(Datum opaque, TSQueryParserState state, char *strval, int lenval, int16 weight, bool prefix)
                                493                 :                : {
 2866 rhaas@postgresql.org      494                 :           1544 :     int32       count = 0;
                                495                 :                :     ParsedText  prs;
                                496                 :                :     uint32      variant,
                                497                 :           1544 :                 pos = 0,
                                498                 :           1544 :                 cntvar = 0,
                                499                 :           1544 :                 cntpos = 0,
                                500                 :           1544 :                 cnt = 0;
                                501                 :           1544 :     MorphOpaque *data = (MorphOpaque *) DatumGetPointer(opaque);
                                502                 :                : 
 6081 tgl@sss.pgh.pa.us         503                 :           1544 :     prs.lenwords = 4;
                                504                 :           1544 :     prs.curwords = 0;
                                505                 :           1544 :     prs.pos = 0;
                                506                 :           1544 :     prs.words = (ParsedWord *) palloc(sizeof(ParsedWord) * prs.lenwords);
                                507                 :                : 
 2929 teodor@sigaev.ru          508                 :           1544 :     parsetext(data->cfg_id, &prs, strval, lenval);
                                509                 :                : 
 6081 tgl@sss.pgh.pa.us         510         [ +  + ]:           1544 :     if (prs.curwords > 0)
                                511                 :                :     {
                                512         [ +  + ]:           2674 :         while (count < prs.curwords)
                                513                 :                :         {
                                514                 :                :             /*
                                515                 :                :              * Were any stop words removed? If so, fill empty positions with
                                516                 :                :              * placeholders linked by an appropriate operator.
                                517                 :                :              */
 2929 teodor@sigaev.ru          518   [ +  +  +  + ]:           1439 :             if (pos > 0 && pos + 1 < prs.words[count].pos.pos)
                                519                 :                :             {
                                520         [ +  + ]:             39 :                 while (pos + 1 < prs.words[count].pos.pos)
                                521                 :                :                 {
                                522                 :                :                     /* put placeholders for each missing stop word */
                                523                 :             24 :                     pushStop(state);
                                524         [ +  - ]:             24 :                     if (cntpos)
                                525                 :             24 :                         pushOperator(state, data->qoperator, 1);
                                526                 :             24 :                     cntpos++;
                                527                 :             24 :                     pos++;
                                528                 :                :                 }
                                529                 :                :             }
                                530                 :                : 
                                531                 :                :             /* save current word's position */
 2903 rhaas@postgresql.org      532                 :           1439 :             pos = prs.words[count].pos.pos;
                                533                 :                : 
                                534                 :                :             /* Go through all variants obtained from this token */
 6081 tgl@sss.pgh.pa.us         535                 :           1439 :             cntvar = 0;
                                536   [ +  +  +  + ]:           2914 :             while (count < prs.curwords && pos == prs.words[count].pos.pos)
                                537                 :                :             {
                                538                 :           1475 :                 variant = prs.words[count].nvariant;
                                539                 :                : 
                                540                 :                :                 /* Push all words belonging to the same variant */
                                541                 :           1475 :                 cnt = 0;
 2929 teodor@sigaev.ru          542                 :           1475 :                 while (count < prs.curwords &&
                                543   [ +  +  +  + ]:           3022 :                        pos == prs.words[count].pos.pos &&
                                544         [ +  + ]:           1583 :                        variant == prs.words[count].nvariant)
                                545                 :                :                 {
                                546                 :           1547 :                     pushValue(state,
                                547                 :           1547 :                               prs.words[count].word,
                                548                 :           1547 :                               prs.words[count].len,
                                549                 :                :                               weight,
 2489 tgl@sss.pgh.pa.us         550   [ +  +  -  + ]:           1547 :                               ((prs.words[count].flags & TSL_PREFIX) || prefix));
 6081                           551                 :           1547 :                     pfree(prs.words[count].word);
                                552         [ +  + ]:           1547 :                     if (cnt)
 2929 teodor@sigaev.ru          553                 :             72 :                         pushOperator(state, OP_AND, 0);
 6081 tgl@sss.pgh.pa.us         554                 :           1547 :                     cnt++;
                                555                 :           1547 :                     count++;
                                556                 :                :                 }
                                557                 :                : 
                                558         [ +  + ]:           1475 :                 if (cntvar)
 2929 teodor@sigaev.ru          559                 :             36 :                     pushOperator(state, OP_OR, 0);
 6081 tgl@sss.pgh.pa.us         560                 :           1475 :                 cntvar++;
                                561                 :                :             }
                                562                 :                : 
                                563         [ +  + ]:           1439 :             if (cntpos)
                                564                 :                :             {
                                565                 :                :                 /* distance may be useful */
 2903 rhaas@postgresql.org      566                 :            204 :                 pushOperator(state, data->qoperator, 1);
                                567                 :                :             }
                                568                 :                : 
 6081 tgl@sss.pgh.pa.us         569                 :           1439 :             cntpos++;
                                570                 :                :         }
                                571                 :                : 
                                572                 :           1235 :         pfree(prs.words);
                                573                 :                :     }
                                574                 :                :     else
 6064 teodor@sigaev.ru          575                 :            309 :         pushStop(state);
 6081 tgl@sss.pgh.pa.us         576                 :           1544 : }
                                577                 :                : 
                                578                 :                : Datum
                                579                 :            377 : to_tsquery_byid(PG_FUNCTION_ARGS)
                                580                 :                : {
 2590 noah@leadboat.com         581                 :            377 :     text       *in = PG_GETARG_TEXT_PP(1);
                                582                 :                :     TSQuery     query;
                                583                 :                :     MorphOpaque data;
                                584                 :                : 
 2929 teodor@sigaev.ru          585                 :            377 :     data.cfg_id = PG_GETARG_OID(0);
                                586                 :                : 
                                587                 :                :     /*
                                588                 :                :      * Passing OP_PHRASE as a qoperator makes tsquery require matching of word
                                589                 :                :      * positions of a complex morph exactly match the tsvector.  Also, when
                                590                 :                :      * the complex morphs are connected with OP_PHRASE operator, we connect
                                591                 :                :      * all their words into the OP_PHRASE sequence.
                                592                 :                :      */
 1169 akorotkov@postgresql      593                 :            377 :     data.qoperator = OP_PHRASE;
                                594                 :                : 
 2929 teodor@sigaev.ru          595                 :            377 :     query = parse_tsquery(text_to_cstring(in),
                                596                 :                :                           pushval_morph,
                                597                 :                :                           PointerGetDatum(&data),
                                598                 :                :                           0,
                                599                 :                :                           NULL);
                                600                 :                : 
 6081 tgl@sss.pgh.pa.us         601                 :            377 :     PG_RETURN_TSQUERY(query);
                                602                 :                : }
                                603                 :                : 
                                604                 :                : Datum
                                605                 :             66 : to_tsquery(PG_FUNCTION_ARGS)
                                606                 :                : {
 2590 noah@leadboat.com         607                 :             66 :     text       *in = PG_GETARG_TEXT_PP(0);
                                608                 :                :     Oid         cfgId;
                                609                 :                : 
 6081 tgl@sss.pgh.pa.us         610                 :             66 :     cfgId = getTSCurrentConfig(true);
                                611                 :             66 :     PG_RETURN_DATUM(DirectFunctionCall2(to_tsquery_byid,
                                612                 :                :                                         ObjectIdGetDatum(cfgId),
                                613                 :                :                                         PointerGetDatum(in)));
                                614                 :                : }
                                615                 :                : 
                                616                 :                : Datum
                                617                 :             30 : plainto_tsquery_byid(PG_FUNCTION_ARGS)
                                618                 :                : {
 2590 noah@leadboat.com         619                 :             30 :     text       *in = PG_GETARG_TEXT_PP(1);
                                620                 :                :     TSQuery     query;
                                621                 :                :     MorphOpaque data;
                                622                 :                : 
 2929 teodor@sigaev.ru          623                 :             30 :     data.cfg_id = PG_GETARG_OID(0);
                                624                 :                : 
                                625                 :                :     /*
                                626                 :                :      * parse_tsquery() with P_TSQ_PLAIN flag takes the whole input text as a
                                627                 :                :      * single morph.  Passing OP_PHRASE as a qoperator makes tsquery require
                                628                 :                :      * matching of all words independently on their positions.
                                629                 :                :      */
                                630                 :             30 :     data.qoperator = OP_AND;
                                631                 :                : 
                                632                 :             30 :     query = parse_tsquery(text_to_cstring(in),
                                633                 :                :                           pushval_morph,
                                634                 :                :                           PointerGetDatum(&data),
                                635                 :                :                           P_TSQ_PLAIN,
                                636                 :                :                           NULL);
                                637                 :                : 
                                638                 :             30 :     PG_RETURN_POINTER(query);
                                639                 :                : }
                                640                 :                : 
                                641                 :                : Datum
                                642                 :              6 : plainto_tsquery(PG_FUNCTION_ARGS)
                                643                 :                : {
 2590 noah@leadboat.com         644                 :              6 :     text       *in = PG_GETARG_TEXT_PP(0);
                                645                 :                :     Oid         cfgId;
                                646                 :                : 
 2929 teodor@sigaev.ru          647                 :              6 :     cfgId = getTSCurrentConfig(true);
                                648                 :              6 :     PG_RETURN_DATUM(DirectFunctionCall2(plainto_tsquery_byid,
                                649                 :                :                                         ObjectIdGetDatum(cfgId),
                                650                 :                :                                         PointerGetDatum(in)));
                                651                 :                : }
                                652                 :                : 
                                653                 :                : 
                                654                 :                : Datum
                                655                 :             24 : phraseto_tsquery_byid(PG_FUNCTION_ARGS)
                                656                 :                : {
 2590 noah@leadboat.com         657                 :             24 :     text       *in = PG_GETARG_TEXT_PP(1);
                                658                 :                :     TSQuery     query;
                                659                 :                :     MorphOpaque data;
                                660                 :                : 
 2929 teodor@sigaev.ru          661                 :             24 :     data.cfg_id = PG_GETARG_OID(0);
                                662                 :                : 
                                663                 :                :     /*
                                664                 :                :      * parse_tsquery() with P_TSQ_PLAIN flag takes the whole input text as a
                                665                 :                :      * single morph.  Passing OP_PHRASE as a qoperator makes tsquery require
                                666                 :                :      * matching of word positions.
                                667                 :                :      */
                                668                 :             24 :     data.qoperator = OP_PHRASE;
                                669                 :                : 
                                670                 :             24 :     query = parse_tsquery(text_to_cstring(in),
                                671                 :                :                           pushval_morph,
                                672                 :                :                           PointerGetDatum(&data),
                                673                 :                :                           P_TSQ_PLAIN,
                                674                 :                :                           NULL);
                                675                 :                : 
                                676                 :             24 :     PG_RETURN_TSQUERY(query);
                                677                 :                : }
                                678                 :                : 
                                679                 :                : Datum
 2929 teodor@sigaev.ru          680                 :UBC           0 : phraseto_tsquery(PG_FUNCTION_ARGS)
                                681                 :                : {
 2590 noah@leadboat.com         682                 :              0 :     text       *in = PG_GETARG_TEXT_PP(0);
                                683                 :                :     Oid         cfgId;
                                684                 :                : 
 6081 tgl@sss.pgh.pa.us         685                 :              0 :     cfgId = getTSCurrentConfig(true);
 2929 teodor@sigaev.ru          686                 :              0 :     PG_RETURN_DATUM(DirectFunctionCall2(phraseto_tsquery_byid,
                                687                 :                :                                         ObjectIdGetDatum(cfgId),
                                688                 :                :                                         PointerGetDatum(in)));
                                689                 :                : }
                                690                 :                : 
                                691                 :                : Datum
 2201 teodor@sigaev.ru          692                 :CBC         204 : websearch_to_tsquery_byid(PG_FUNCTION_ARGS)
                                693                 :                : {
                                694                 :            204 :     text       *in = PG_GETARG_TEXT_PP(1);
                                695                 :                :     MorphOpaque data;
                                696                 :            204 :     TSQuery     query = NULL;
                                697                 :                : 
                                698                 :            204 :     data.cfg_id = PG_GETARG_OID(0);
                                699                 :                : 
                                700                 :                :     /*
                                701                 :                :      * Passing OP_PHRASE as a qoperator makes tsquery require matching of word
                                702                 :                :      * positions of a complex morph exactly match the tsvector.  Also, when
                                703                 :                :      * the complex morphs are given in quotes, we connect all their words into
                                704                 :                :      * the OP_PHRASE sequence.
                                705                 :                :      */
 1169 akorotkov@postgresql      706                 :            204 :     data.qoperator = OP_PHRASE;
                                707                 :                : 
 2201 teodor@sigaev.ru          708                 :            204 :     query = parse_tsquery(text_to_cstring(in),
                                709                 :                :                           pushval_morph,
                                710                 :                :                           PointerGetDatum(&data),
                                711                 :                :                           P_TSQ_WEB,
                                712                 :                :                           NULL);
                                713                 :                : 
                                714                 :            204 :     PG_RETURN_TSQUERY(query);
                                715                 :                : }
                                716                 :                : 
                                717                 :                : Datum
                                718                 :             12 : websearch_to_tsquery(PG_FUNCTION_ARGS)
                                719                 :                : {
                                720                 :             12 :     text       *in = PG_GETARG_TEXT_PP(0);
                                721                 :                :     Oid         cfgId;
                                722                 :                : 
                                723                 :             12 :     cfgId = getTSCurrentConfig(true);
                                724                 :             12 :     PG_RETURN_DATUM(DirectFunctionCall2(websearch_to_tsquery_byid,
                                725                 :                :                                         ObjectIdGetDatum(cfgId),
                                726                 :                :                                         PointerGetDatum(in)));
                                727                 :                : }
        

Generated by: LCOV version 2.1-beta2-3-g6141622