LCOV - code coverage report
Current view: top level - basic - sort-util.h (source / functions) Hit Total Coverage
Test: systemd_full.info Lines: 15 15 100.0 %
Date: 2019-08-23 13:36:53 Functions: 3 3 100.0 %
Legend: Lines: hit not hit | Branches: + taken - not taken # not executed Branches: 9 12 75.0 %

           Branch data     Line data    Source code
       1                 :            : /* SPDX-License-Identifier: LGPL-2.1+ */
       2                 :            : #pragma once
       3                 :            : 
       4                 :            : #include <stdlib.h>
       5                 :            : 
       6                 :            : #include "macro.h"
       7                 :            : 
       8                 :            : void *xbsearch_r(const void *key, const void *base, size_t nmemb, size_t size,
       9                 :            :                  __compar_d_fn_t compar, void *arg);
      10                 :            : 
      11                 :            : #define typesafe_bsearch_r(k, b, n, func, userdata)                     \
      12                 :            :         ({                                                              \
      13                 :            :                 const typeof(b[0]) *_k = k;                             \
      14                 :            :                 int (*_func_)(const typeof(b[0])*, const typeof(b[0])*, typeof(userdata)) = func; \
      15                 :            :                 xbsearch_r((const void*) _k, (b), (n), sizeof((b)[0]), (__compar_d_fn_t) _func_, userdata); \
      16                 :            :         })
      17                 :            : 
      18                 :            : /**
      19                 :            :  * Normal bsearch requires base to be nonnull. Here were require
      20                 :            :  * that only if nmemb > 0.
      21                 :            :  */
      22                 :   10380486 : static inline void* bsearch_safe(const void *key, const void *base,
      23                 :            :                                  size_t nmemb, size_t size, __compar_fn_t compar) {
      24         [ +  + ]:   10380486 :         if (nmemb <= 0)
      25                 :     143225 :                 return NULL;
      26                 :            : 
      27         [ -  + ]:   10237261 :         assert(base);
      28                 :   10237261 :         return bsearch(key, base, nmemb, size, compar);
      29                 :            : }
      30                 :            : 
      31                 :            : #define typesafe_bsearch(k, b, n, func)                                 \
      32                 :            :         ({                                                              \
      33                 :            :                 const typeof(b[0]) *_k = k;                             \
      34                 :            :                 int (*_func_)(const typeof(b[0])*, const typeof(b[0])*) = func; \
      35                 :            :                 bsearch_safe((const void*) _k, (b), (n), sizeof((b)[0]), (__compar_fn_t) _func_); \
      36                 :            :         })
      37                 :            : 
      38                 :            : /**
      39                 :            :  * Normal qsort requires base to be nonnull. Here were require
      40                 :            :  * that only if nmemb > 0.
      41                 :            :  */
      42                 :     502103 : static inline void qsort_safe(void *base, size_t nmemb, size_t size, __compar_fn_t compar) {
      43         [ +  + ]:     502103 :         if (nmemb <= 1)
      44                 :     146060 :                 return;
      45                 :            : 
      46         [ -  + ]:     356043 :         assert(base);
      47                 :     356043 :         qsort(base, nmemb, size, compar);
      48                 :            : }
      49                 :            : 
      50                 :            : /* A wrapper around the above, but that adds typesafety: the element size is automatically derived from the type and so
      51                 :            :  * is the prototype for the comparison function */
      52                 :            : #define typesafe_qsort(p, n, func)                                      \
      53                 :            :         ({                                                              \
      54                 :            :                 int (*_func_)(const typeof(p[0])*, const typeof(p[0])*) = func; \
      55                 :            :                 qsort_safe((p), (n), sizeof((p)[0]), (__compar_fn_t) _func_); \
      56                 :            :         })
      57                 :            : 
      58                 :     359276 : static inline void qsort_r_safe(void *base, size_t nmemb, size_t size, __compar_d_fn_t compar, void *userdata) {
      59         [ +  + ]:     359276 :         if (nmemb <= 1)
      60                 :     354320 :                 return;
      61                 :            : 
      62         [ -  + ]:       4956 :         assert(base);
      63                 :       4956 :         qsort_r(base, nmemb, size, compar, userdata);
      64                 :            : }
      65                 :            : 
      66                 :            : #define typesafe_qsort_r(p, n, func, userdata)                          \
      67                 :            :         ({                                                              \
      68                 :            :                 int (*_func_)(const typeof(p[0])*, const typeof(p[0])*, typeof(userdata)) = func; \
      69                 :            :                 qsort_r_safe((p), (n), sizeof((p)[0]), (__compar_d_fn_t) _func_, userdata); \
      70                 :            :         })

Generated by: LCOV version 1.14