LCOV - differential code coverage report
Current view: top level - src/backend/tsearch - regis.c (source / functions) Coverage Total Hit UBC CBC
Current: 0e5ff9b9b45a657aea12440478dc002e9b01f138 vs 0123ce131fca454009439dfa3b2266d1d40737d7 Lines: 78.4 % 125 98 27 98
Current Date: 2026-03-14 14:10:32 -0400 Functions: 83.3 % 6 5 1 5
Baseline: lcov-20260315-024220-baseline Branches: 60.8 % 97 59 38 59
Baseline Date: 2026-03-14 15:27:56 +0100 Line coverage date bins:
Legend: Lines:     hit not hit
Branches: + taken - not taken # not executed
(30,360] days: 81.2 % 16 13 3 13
(360..) days: 78.0 % 109 85 24 85
Function coverage date bins:
(360..) days: 83.3 % 6 5 1 5
Branch coverage date bins:
(30,360] days: 66.7 % 12 8 4 8
(360..) days: 60.0 % 85 51 34 51

 Age         Owner                    Branch data    TLA  Line data    Source code
                                  1                 :                : /*-------------------------------------------------------------------------
                                  2                 :                :  *
                                  3                 :                :  * regis.c
                                  4                 :                :  *      Fast regex subset
                                  5                 :                :  *
                                  6                 :                :  * Portions Copyright (c) 1996-2026, PostgreSQL Global Development Group
                                  7                 :                :  *
                                  8                 :                :  *
                                  9                 :                :  * IDENTIFICATION
                                 10                 :                :  *    src/backend/tsearch/regis.c
                                 11                 :                :  *
                                 12                 :                :  *-------------------------------------------------------------------------
                                 13                 :                :  */
                                 14                 :                : 
                                 15                 :                : #include "postgres.h"
                                 16                 :                : 
                                 17                 :                : #include "tsearch/dicts/regis.h"
                                 18                 :                : #include "tsearch/ts_locale.h"
                                 19                 :                : 
                                 20                 :                : #define RS_IN_ONEOF 1
                                 21                 :                : #define RS_IN_ONEOF_IN  2
                                 22                 :                : #define RS_IN_NONEOF    3
                                 23                 :                : #define RS_IN_WAIT  4
                                 24                 :                : 
                                 25                 :                : 
                                 26                 :                : /*
                                 27                 :                :  * Test whether a regex is of the subset supported here.
                                 28                 :                :  * Keep this in sync with RS_compile!
                                 29                 :                :  */
                                 30                 :                : bool
 6781 tgl@sss.pgh.pa.us          31                 :CBC         402 : RS_isRegis(const char *str)
                                 32                 :                : {
 6628                            33                 :            402 :     int         state = RS_IN_WAIT;
                                 34                 :            402 :     const char *c = str;
                                 35                 :                : 
                                 36         [ +  + ]:           2436 :     while (*c)
                                 37                 :                :     {
                                 38         [ +  + ]:           2100 :         if (state == RS_IN_WAIT)
                                 39                 :                :         {
   67 tmunro@postgresql.or       40         [ +  + ]:            532 :             if (t_isalpha_cstr(c))
                                 41                 :                :                  /* okay */ ;
 6628 tgl@sss.pgh.pa.us          42         [ +  + ]:            418 :             else if (t_iseq(c, '['))
                                 43                 :            352 :                 state = RS_IN_ONEOF;
                                 44                 :                :             else
                                 45                 :             66 :                 return false;
                                 46                 :                :         }
                                 47         [ +  + ]:           1568 :         else if (state == RS_IN_ONEOF)
                                 48                 :                :         {
                                 49         [ +  - ]:            352 :             if (t_iseq(c, '^'))
                                 50                 :            352 :                 state = RS_IN_NONEOF;
   67 tmunro@postgresql.or       51         [ #  # ]:UBC           0 :             else if (t_isalpha_cstr(c))
 6628 tgl@sss.pgh.pa.us          52                 :              0 :                 state = RS_IN_ONEOF_IN;
                                 53                 :                :             else
                                 54                 :              0 :                 return false;
                                 55                 :                :         }
 6628 tgl@sss.pgh.pa.us          56   [ +  -  +  - ]:CBC        1216 :         else if (state == RS_IN_ONEOF_IN || state == RS_IN_NONEOF)
                                 57                 :                :         {
   67 tmunro@postgresql.or       58         [ +  + ]:           1568 :             if (t_isalpha_cstr(c))
                                 59                 :                :                  /* okay */ ;
 6628 tgl@sss.pgh.pa.us          60         [ +  - ]:            352 :             else if (t_iseq(c, ']'))
                                 61                 :            352 :                 state = RS_IN_WAIT;
                                 62                 :                :             else
 6628 tgl@sss.pgh.pa.us          63                 :UBC           0 :                 return false;
                                 64                 :                :         }
                                 65                 :                :         else
                                 66         [ #  # ]:              0 :             elog(ERROR, "internal error in RS_isRegis: state %d", state);
   67 tmunro@postgresql.or       67                 :CBC        2034 :         c += pg_mblen_cstr(c);
                                 68                 :                :     }
                                 69                 :                : 
 6628 tgl@sss.pgh.pa.us          70                 :            336 :     return (state == RS_IN_WAIT);
                                 71                 :                : }
                                 72                 :                : 
                                 73                 :                : static RegisNode *
 6695 bruce@momjian.us           74                 :            384 : newRegisNode(RegisNode *prev, int len)
                                 75                 :                : {
                                 76                 :                :     RegisNode  *ptr;
                                 77                 :                : 
 6781 tgl@sss.pgh.pa.us          78                 :            384 :     ptr = (RegisNode *) palloc0(RNHDRSZ + len + 1);
                                 79         [ +  + ]:            384 :     if (prev)
                                 80                 :             48 :         prev->next = ptr;
                                 81                 :            384 :     return ptr;
                                 82                 :                : }
                                 83                 :                : 
                                 84                 :                : void
 6628                            85                 :            336 : RS_compile(Regis *r, bool issuffix, const char *str)
                                 86                 :                : {
 6781                            87                 :            336 :     int         len = strlen(str);
                                 88                 :            336 :     int         state = RS_IN_WAIT;
 6628                            89                 :            336 :     const char *c = str;
 6781                            90                 :            336 :     RegisNode  *ptr = NULL;
                                 91                 :                : 
                                 92                 :            336 :     memset(r, 0, sizeof(Regis));
                                 93                 :            336 :     r->issuffix = (issuffix) ? 1 : 0;
                                 94                 :                : 
                                 95         [ +  + ]:           2176 :     while (*c)
                                 96                 :                :     {
                                 97         [ +  + ]:           1840 :         if (state == RS_IN_WAIT)
                                 98                 :                :         {
   67 tmunro@postgresql.or       99         [ +  + ]:            384 :             if (t_isalpha_cstr(c))
                                100                 :                :             {
 6781 tgl@sss.pgh.pa.us         101         [ +  - ]:             48 :                 if (ptr)
                                102                 :             48 :                     ptr = newRegisNode(ptr, len);
                                103                 :                :                 else
 6781 tgl@sss.pgh.pa.us         104                 :UBC           0 :                     ptr = r->node = newRegisNode(NULL, len);
 6781 tgl@sss.pgh.pa.us         105                 :CBC          48 :                 ptr->type = RSF_ONEOF;
   67 tmunro@postgresql.or      106                 :             48 :                 ptr->len = ts_copychar_cstr(ptr->data, c);
                                107                 :                :             }
 6781 tgl@sss.pgh.pa.us         108         [ +  - ]:            336 :             else if (t_iseq(c, '['))
                                109                 :                :             {
                                110         [ -  + ]:            336 :                 if (ptr)
 6781 tgl@sss.pgh.pa.us         111                 :UBC           0 :                     ptr = newRegisNode(ptr, len);
                                112                 :                :                 else
 6781 tgl@sss.pgh.pa.us         113                 :CBC         336 :                     ptr = r->node = newRegisNode(NULL, len);
                                114                 :            336 :                 ptr->type = RSF_ONEOF;
                                115                 :            336 :                 state = RS_IN_ONEOF;
                                116                 :                :             }
                                117                 :                :             else                /* shouldn't get here */
 6628 tgl@sss.pgh.pa.us         118         [ #  # ]:UBC           0 :                 elog(ERROR, "invalid regis pattern: \"%s\"", str);
                                119                 :                :         }
 6781 tgl@sss.pgh.pa.us         120         [ +  + ]:CBC        1456 :         else if (state == RS_IN_ONEOF)
                                121                 :                :         {
                                122         [ +  - ]:            336 :             if (t_iseq(c, '^'))
                                123                 :                :             {
                                124                 :            336 :                 ptr->type = RSF_NONEOF;
                                125                 :            336 :                 state = RS_IN_NONEOF;
                                126                 :                :             }
   67 tmunro@postgresql.or      127         [ #  # ]:UBC           0 :             else if (t_isalpha_cstr(c))
                                128                 :                :             {
                                129                 :              0 :                 ptr->len = ts_copychar_cstr(ptr->data, c);
 6781 tgl@sss.pgh.pa.us         130                 :              0 :                 state = RS_IN_ONEOF_IN;
                                131                 :                :             }
                                132                 :                :             else                /* shouldn't get here */
 6628                           133         [ #  # ]:              0 :                 elog(ERROR, "invalid regis pattern: \"%s\"", str);
                                134                 :                :         }
 6781 tgl@sss.pgh.pa.us         135   [ +  -  +  - ]:CBC        1120 :         else if (state == RS_IN_ONEOF_IN || state == RS_IN_NONEOF)
                                136                 :                :         {
   67 tmunro@postgresql.or      137         [ +  + ]:           2240 :             if (t_isalpha_cstr(c))
                                138                 :            784 :                 ptr->len += ts_copychar_cstr(ptr->data + ptr->len, c);
 6781 tgl@sss.pgh.pa.us         139         [ +  - ]:            336 :             else if (t_iseq(c, ']'))
                                140                 :            336 :                 state = RS_IN_WAIT;
                                141                 :                :             else                /* shouldn't get here */
 6628 tgl@sss.pgh.pa.us         142         [ #  # ]:UBC           0 :                 elog(ERROR, "invalid regis pattern: \"%s\"", str);
                                143                 :                :         }
                                144                 :                :         else
 6781                           145         [ #  # ]:              0 :             elog(ERROR, "internal error in RS_compile: state %d", state);
   67 tmunro@postgresql.or      146                 :CBC        1840 :         c += pg_mblen_cstr(c);
                                147                 :                :     }
                                148                 :                : 
 6121 bruce@momjian.us          149         [ -  + ]:            336 :     if (state != RS_IN_WAIT)    /* shouldn't get here */
 6628 tgl@sss.pgh.pa.us         150         [ #  # ]:UBC           0 :         elog(ERROR, "invalid regis pattern: \"%s\"", str);
                                151                 :                : 
 6781 tgl@sss.pgh.pa.us         152                 :CBC         336 :     ptr = r->node;
                                153         [ +  + ]:            720 :     while (ptr)
                                154                 :                :     {
                                155                 :            384 :         r->nchar++;
                                156                 :            384 :         ptr = ptr->next;
                                157                 :                :     }
                                158                 :            336 : }
                                159                 :                : 
                                160                 :                : void
 6695 bruce@momjian.us          161                 :UBC           0 : RS_free(Regis *r)
                                162                 :                : {
 6781 tgl@sss.pgh.pa.us         163                 :              0 :     RegisNode  *ptr = r->node,
                                164                 :                :                *tmp;
                                165                 :                : 
                                166         [ #  # ]:              0 :     while (ptr)
                                167                 :                :     {
                                168                 :              0 :         tmp = ptr->next;
                                169                 :              0 :         pfree(ptr);
                                170                 :              0 :         ptr = tmp;
                                171                 :                :     }
                                172                 :                : 
                                173                 :              0 :     r->node = NULL;
                                174                 :              0 : }
                                175                 :                : 
                                176                 :                : static bool
 6781 tgl@sss.pgh.pa.us         177                 :CBC         354 : mb_strchr(char *str, char *c)
                                178                 :                : {
                                179                 :                :     int         clen,
                                180                 :                :                 plen,
                                181                 :                :                 i;
                                182                 :            354 :     char       *ptr = str;
                                183                 :            354 :     bool        res = false;
                                184                 :                : 
   67 tmunro@postgresql.or      185                 :            354 :     clen = pg_mblen_cstr(c);
 6781 tgl@sss.pgh.pa.us         186   [ +  +  +  - ]:           1164 :     while (*ptr && !res)
                                187                 :                :     {
   67 tmunro@postgresql.or      188                 :            810 :         plen = pg_mblen_cstr(ptr);
 6781 tgl@sss.pgh.pa.us         189         [ +  - ]:            810 :         if (plen == clen)
                                190                 :                :         {
                                191                 :            810 :             i = plen;
                                192                 :            810 :             res = true;
                                193         [ +  + ]:            828 :             while (i--)
                                194         [ +  + ]:            810 :                 if (*(ptr + i) != *(c + i))
                                195                 :                :                 {
                                196                 :            792 :                     res = false;
                                197                 :            792 :                     break;
                                198                 :                :                 }
                                199                 :                :         }
                                200                 :                : 
                                201                 :            810 :         ptr += plen;
                                202                 :                :     }
                                203                 :                : 
                                204                 :            354 :     return res;
                                205                 :                : }
                                206                 :                : 
                                207                 :                : bool
 6695 bruce@momjian.us          208                 :            354 : RS_execute(Regis *r, char *str)
                                209                 :                : {
 6781 tgl@sss.pgh.pa.us         210                 :            354 :     RegisNode  *ptr = r->node;
                                211                 :            354 :     char       *c = str;
                                212                 :            354 :     int         len = 0;
                                213                 :                : 
                                214         [ +  + ]:           2340 :     while (*c)
                                215                 :                :     {
                                216                 :           1986 :         len++;
   67 tmunro@postgresql.or      217                 :           1986 :         c += pg_mblen_cstr(c);
                                218                 :                :     }
                                219                 :                : 
 6781 tgl@sss.pgh.pa.us         220         [ +  + ]:            354 :     if (len < r->nchar)
                                221                 :             18 :         return 0;
                                222                 :                : 
                                223                 :            336 :     c = str;
                                224         [ +  - ]:            336 :     if (r->issuffix)
                                225                 :                :     {
                                226                 :            336 :         len -= r->nchar;
                                227         [ +  + ]:           1968 :         while (len-- > 0)
   67 tmunro@postgresql.or      228                 :           1632 :             c += pg_mblen_cstr(c);
                                229                 :                :     }
                                230                 :                : 
                                231                 :                : 
 6781 tgl@sss.pgh.pa.us         232         [ +  + ]:            690 :     while (ptr)
                                233                 :                :     {
                                234      [ +  +  - ]:            354 :         switch (ptr->type)
                                235                 :                :         {
                                236                 :             18 :             case RSF_ONEOF:
 5600 rhaas@postgresql.org      237         [ -  + ]:             18 :                 if (!mb_strchr((char *) ptr->data, c))
 6781 tgl@sss.pgh.pa.us         238                 :UBC           0 :                     return false;
 6781 tgl@sss.pgh.pa.us         239                 :CBC          18 :                 break;
                                240                 :            336 :             case RSF_NONEOF:
 5600 rhaas@postgresql.org      241         [ -  + ]:            336 :                 if (mb_strchr((char *) ptr->data, c))
 6781 tgl@sss.pgh.pa.us         242                 :UBC           0 :                     return false;
 6781 tgl@sss.pgh.pa.us         243                 :CBC         336 :                 break;
 6781 tgl@sss.pgh.pa.us         244                 :UBC           0 :             default:
                                245         [ #  # ]:              0 :                 elog(ERROR, "unrecognized regis node type: %d", ptr->type);
                                246                 :                :         }
 6781 tgl@sss.pgh.pa.us         247                 :CBC         354 :         ptr = ptr->next;
   67 tmunro@postgresql.or      248                 :            354 :         c += pg_mblen_cstr(c);
                                249                 :                :     }
                                250                 :                : 
 6781 tgl@sss.pgh.pa.us         251                 :            336 :     return true;
                                252                 :                : }
        

Generated by: LCOV version 2.4-beta