LCOV - differential code coverage report
Current view: top level - contrib/btree_gist - btree_macaddr.c (source / functions) Coverage Total Hit CBC
Current: Differential Code Coverage 16@8cea358b128 vs 17@8cea358b128 Lines: 100.0 % 69 69 69
Current Date: 2024-04-14 14:21:10 Functions: 100.0 % 21 21 21
Baseline: 16@8cea358b128 Branches: 100.0 % 10 10 10
Baseline Date: 2024-04-14 14:21:09 Line coverage date bins:
Legend: Lines: hit not hit | Branches: + taken - not taken # not executed (240..) days: 100.0 % 69 69 69
Function coverage date bins:
(240..) days: 100.0 % 21 21 21
Branch coverage date bins:
(240..) days: 100.0 % 10 10 10

 Age         Owner                    Branch data    TLA  Line data    Source code
                                  1                 :                : /*
                                  2                 :                :  * contrib/btree_gist/btree_macaddr.c
                                  3                 :                :  */
                                  4                 :                : #include "postgres.h"
                                  5                 :                : 
                                  6                 :                : #include "btree_gist.h"
                                  7                 :                : #include "btree_utils_num.h"
                                  8                 :                : #include "utils/builtins.h"
                                  9                 :                : #include "utils/inet.h"
                                 10                 :                : 
                                 11                 :                : typedef struct
                                 12                 :                : {
                                 13                 :                :     macaddr     lower;
                                 14                 :                :     macaddr     upper;
                                 15                 :                :     char        pad[4];         /* make struct size = sizeof(gbtreekey16) */
                                 16                 :                : } macKEY;
                                 17                 :                : 
                                 18                 :                : /*
                                 19                 :                : ** OID ops
                                 20                 :                : */
 7261 teodor@sigaev.ru           21                 :CBC           2 : PG_FUNCTION_INFO_V1(gbt_macad_compress);
 3306 heikki.linnakangas@i       22                 :              2 : PG_FUNCTION_INFO_V1(gbt_macad_fetch);
 7261 teodor@sigaev.ru           23                 :              2 : PG_FUNCTION_INFO_V1(gbt_macad_union);
                                 24                 :              2 : PG_FUNCTION_INFO_V1(gbt_macad_picksplit);
                                 25                 :              2 : PG_FUNCTION_INFO_V1(gbt_macad_consistent);
                                 26                 :              2 : PG_FUNCTION_INFO_V1(gbt_macad_penalty);
                                 27                 :              2 : PG_FUNCTION_INFO_V1(gbt_macad_same);
                                 28                 :                : 
                                 29                 :                : 
                                 30                 :                : static bool
 2581 andrew@dunslane.net        31                 :           1679 : gbt_macadgt(const void *a, const void *b, FmgrInfo *flinfo)
                                 32                 :                : {
 7168 bruce@momjian.us           33                 :           1679 :     return DatumGetBool(DirectFunctionCall2(macaddr_gt, PointerGetDatum(a), PointerGetDatum(b)));
                                 34                 :                : }
                                 35                 :                : static bool
 2581 andrew@dunslane.net        36                 :            162 : gbt_macadge(const void *a, const void *b, FmgrInfo *flinfo)
                                 37                 :                : {
 7168 bruce@momjian.us           38                 :            162 :     return DatumGetBool(DirectFunctionCall2(macaddr_ge, PointerGetDatum(a), PointerGetDatum(b)));
                                 39                 :                : }
                                 40                 :                : 
                                 41                 :                : static bool
 2581 andrew@dunslane.net        42                 :            852 : gbt_macadeq(const void *a, const void *b, FmgrInfo *flinfo)
                                 43                 :                : {
 7168 bruce@momjian.us           44                 :            852 :     return DatumGetBool(DirectFunctionCall2(macaddr_eq, PointerGetDatum(a), PointerGetDatum(b)));
                                 45                 :                : }
                                 46                 :                : 
                                 47                 :                : static bool
 2581 andrew@dunslane.net        48                 :            613 : gbt_macadle(const void *a, const void *b, FmgrInfo *flinfo)
                                 49                 :                : {
 7168 bruce@momjian.us           50                 :            613 :     return DatumGetBool(DirectFunctionCall2(macaddr_le, PointerGetDatum(a), PointerGetDatum(b)));
                                 51                 :                : }
                                 52                 :                : 
                                 53                 :                : static bool
 2581 andrew@dunslane.net        54                 :           1979 : gbt_macadlt(const void *a, const void *b, FmgrInfo *flinfo)
                                 55                 :                : {
 7168 bruce@momjian.us           56                 :           1979 :     return DatumGetBool(DirectFunctionCall2(macaddr_lt, PointerGetDatum(a), PointerGetDatum(b)));
                                 57                 :                : }
                                 58                 :                : 
                                 59                 :                : 
                                 60                 :                : static int
 2581 andrew@dunslane.net        61                 :           5865 : gbt_macadkey_cmp(const void *a, const void *b, FmgrInfo *flinfo)
                                 62                 :                : {
 4599 peter_e@gmx.net            63                 :           5865 :     macKEY     *ia = (macKEY *) (((const Nsrt *) a)->t);
                                 64                 :           5865 :     macKEY     *ib = (macKEY *) (((const Nsrt *) b)->t);
                                 65                 :                :     int         res;
                                 66                 :                : 
 5247 teodor@sigaev.ru           67                 :           5865 :     res = DatumGetInt32(DirectFunctionCall2(macaddr_cmp, MacaddrPGetDatum(&ia->lower), MacaddrPGetDatum(&ib->lower)));
                                 68         [ +  + ]:           5865 :     if (res == 0)
                                 69                 :            731 :         return DatumGetInt32(DirectFunctionCall2(macaddr_cmp, MacaddrPGetDatum(&ia->upper), MacaddrPGetDatum(&ib->upper)));
                                 70                 :                : 
                                 71                 :           5134 :     return res;
                                 72                 :                : }
                                 73                 :                : 
                                 74                 :                : 
                                 75                 :                : static const gbtree_ninfo tinfo =
                                 76                 :                : {
                                 77                 :                :     gbt_t_macad,
                                 78                 :                :     sizeof(macaddr),
                                 79                 :                :     16,                         /* sizeof(gbtreekey16) */
                                 80                 :                :     gbt_macadgt,
                                 81                 :                :     gbt_macadge,
                                 82                 :                :     gbt_macadeq,
                                 83                 :                :     gbt_macadle,
                                 84                 :                :     gbt_macadlt,
                                 85                 :                :     gbt_macadkey_cmp,
                                 86                 :                :     NULL
                                 87                 :                : };
                                 88                 :                : 
                                 89                 :                : 
                                 90                 :                : /**************************************************
                                 91                 :                :  * macaddr ops
                                 92                 :                :  **************************************************/
                                 93                 :                : 
                                 94                 :                : 
                                 95                 :                : 
                                 96                 :                : static uint64
 7168 bruce@momjian.us           97                 :           2824 : mac_2_uint64(macaddr *m)
                                 98                 :                : {
                                 99                 :           2824 :     unsigned char *mi = (unsigned char *) m;
                                100                 :           2824 :     uint64      res = 0;
                                101                 :                :     int         i;
                                102                 :                : 
                                103         [ +  + ]:          19768 :     for (i = 0; i < 6; i++)
                                104                 :          16944 :         res += (((uint64) mi[i]) << ((uint64) ((5 - i) * 8)));
                                105                 :           2824 :     return res;
                                106                 :                : }
                                107                 :                : 
                                108                 :                : 
                                109                 :                : 
                                110                 :                : Datum
 7261 teodor@sigaev.ru          111                 :            607 : gbt_macad_compress(PG_FUNCTION_ARGS)
                                112                 :                : {
 7168 bruce@momjian.us          113                 :            607 :     GISTENTRY  *entry = (GISTENTRY *) PG_GETARG_POINTER(0);
                                114                 :                : 
 3307 heikki.linnakangas@i      115                 :            607 :     PG_RETURN_POINTER(gbt_num_compress(entry, &tinfo));
                                116                 :                : }
                                117                 :                : 
                                118                 :                : Datum
 3306                           119                 :              8 : gbt_macad_fetch(PG_FUNCTION_ARGS)
                                120                 :                : {
                                121                 :              8 :     GISTENTRY  *entry = (GISTENTRY *) PG_GETARG_POINTER(0);
                                122                 :                : 
                                123                 :              8 :     PG_RETURN_POINTER(gbt_num_fetch(entry, &tinfo));
                                124                 :                : }
                                125                 :                : 
                                126                 :                : Datum
 7261 teodor@sigaev.ru          127                 :           1824 : gbt_macad_consistent(PG_FUNCTION_ARGS)
                                128                 :                : {
 7168 bruce@momjian.us          129                 :           1824 :     GISTENTRY  *entry = (GISTENTRY *) PG_GETARG_POINTER(0);
                                130                 :           1824 :     macaddr    *query = (macaddr *) PG_GETARG_POINTER(1);
 5844 tgl@sss.pgh.pa.us         131                 :           1824 :     StrategyNumber strategy = (StrategyNumber) PG_GETARG_UINT16(2);
                                132                 :                : 
                                133                 :                :     /* Oid      subtype = PG_GETARG_OID(3); */
                                134                 :           1824 :     bool       *recheck = (bool *) PG_GETARG_POINTER(4);
 7168 bruce@momjian.us          135                 :           1824 :     macKEY     *kkk = (macKEY *) DatumGetPointer(entry->key);
                                136                 :                :     GBT_NUMKEY_R key;
                                137                 :                : 
                                138                 :                :     /* All cases served by this function are exact */
 5844 tgl@sss.pgh.pa.us         139                 :           1824 :     *recheck = false;
                                140                 :                : 
 5421 bruce@momjian.us          141                 :           1824 :     key.lower = (GBT_NUMKEY *) &kkk->lower;
                                142                 :           1824 :     key.upper = (GBT_NUMKEY *) &kkk->upper;
                                143                 :                : 
 1536 alvherre@alvh.no-ip.      144                 :           1824 :     PG_RETURN_BOOL(gbt_num_consistent(&key, (void *) query, &strategy,
                                145                 :                :                                       GIST_LEAF(entry), &tinfo, fcinfo->flinfo));
                                146                 :                : }
                                147                 :                : 
                                148                 :                : 
                                149                 :                : Datum
 7261 teodor@sigaev.ru          150                 :            352 : gbt_macad_union(PG_FUNCTION_ARGS)
                                151                 :                : {
 7168 bruce@momjian.us          152                 :            352 :     GistEntryVector *entryvec = (GistEntryVector *) PG_GETARG_POINTER(0);
 3621 tgl@sss.pgh.pa.us         153                 :            352 :     void       *out = palloc0(sizeof(macKEY));
                                154                 :                : 
 7168 bruce@momjian.us          155                 :            352 :     *(int *) PG_GETARG_POINTER(1) = sizeof(macKEY);
 2581 andrew@dunslane.net       156                 :            352 :     PG_RETURN_POINTER(gbt_num_union((void *) out, entryvec, &tinfo, fcinfo->flinfo));
                                157                 :                : }
                                158                 :                : 
                                159                 :                : 
                                160                 :                : Datum
 7261 teodor@sigaev.ru          161                 :            706 : gbt_macad_penalty(PG_FUNCTION_ARGS)
                                162                 :                : {
 7168 bruce@momjian.us          163                 :            706 :     macKEY     *origentry = (macKEY *) DatumGetPointer(((GISTENTRY *) PG_GETARG_POINTER(0))->key);
                                164                 :            706 :     macKEY     *newentry = (macKEY *) DatumGetPointer(((GISTENTRY *) PG_GETARG_POINTER(1))->key);
                                165                 :            706 :     float      *result = (float *) PG_GETARG_POINTER(2);
                                166                 :                :     uint64      iorg[2],
                                167                 :                :                 inew[2];
                                168                 :                : 
                                169                 :            706 :     iorg[0] = mac_2_uint64(&origentry->lower);
                                170                 :            706 :     iorg[1] = mac_2_uint64(&origentry->upper);
                                171                 :            706 :     inew[0] = mac_2_uint64(&newentry->lower);
                                172                 :            706 :     inew[1] = mac_2_uint64(&newentry->upper);
                                173                 :                : 
 6756                           174   [ +  +  +  +  :            706 :     penalty_num(result, iorg[0], iorg[1], inew[0], inew[1]);
                                              +  + ]
                                175                 :                : 
 7168                           176                 :            706 :     PG_RETURN_POINTER(result);
                                177                 :                : }
                                178                 :                : 
                                179                 :                : Datum
 7261 teodor@sigaev.ru          180                 :              3 : gbt_macad_picksplit(PG_FUNCTION_ARGS)
                                181                 :                : {
 1536 alvherre@alvh.no-ip.      182                 :              3 :     PG_RETURN_POINTER(gbt_num_picksplit((GistEntryVector *) PG_GETARG_POINTER(0),
                                183                 :                :                                         (GIST_SPLITVEC *) PG_GETARG_POINTER(1),
                                184                 :                :                                         &tinfo, fcinfo->flinfo));
                                185                 :                : }
                                186                 :                : 
                                187                 :                : Datum
 7261 teodor@sigaev.ru          188                 :            351 : gbt_macad_same(PG_FUNCTION_ARGS)
                                189                 :                : {
 7168 bruce@momjian.us          190                 :            351 :     macKEY     *b1 = (macKEY *) PG_GETARG_POINTER(0);
                                191                 :            351 :     macKEY     *b2 = (macKEY *) PG_GETARG_POINTER(1);
                                192                 :            351 :     bool       *result = (bool *) PG_GETARG_POINTER(2);
                                193                 :                : 
 2581 andrew@dunslane.net       194                 :            351 :     *result = gbt_num_same((void *) b1, (void *) b2, &tinfo, fcinfo->flinfo);
 7168 bruce@momjian.us          195                 :            351 :     PG_RETURN_POINTER(result);
                                196                 :                : }
        

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