LCOV - code coverage report
Current view: top level - app/platform - fd_config_macros.c (source / functions) Hit Total Coverage
Test: cov.lcov Lines: 0 62 0.0 %
Date: 2026-03-19 18:19:27 Functions: 0 0 -

          Line data    Source code
       1             : /* Macros for extracting config values out of a pod */
       2             : 
       3             : #define CFG_POP( type, cfg_path )                                      \
       4           0 :   do {                                                                 \
       5           0 :     char const * key = #cfg_path;                                      \
       6           0 :     fd_pod_info_t info[1];                                             \
       7           0 :     if( fd_pod_query( pod, key, info ) ) break;                        \
       8           0 :     if( FD_UNLIKELY( !fdctl_cfg_get_##type( &config->cfg_path, sizeof(config->cfg_path), \
       9           0 :         info, key ) ) )                                                \
      10           0 :       return NULL;                                                     \
      11           0 :     fd_pod_remove( pod, key );                                         \
      12           0 :   } while(0)
      13             : 
      14             : #define CFG_POP1( type, toml_path, cfg_path )                          \
      15           0 :   do {                                                                 \
      16           0 :     char const * key = #toml_path;                                      \
      17           0 :     fd_pod_info_t info[1];                                             \
      18           0 :     if( fd_pod_query( pod, key, info ) ) break;                        \
      19           0 :     if( FD_UNLIKELY( !fdctl_cfg_get_##type( &config->cfg_path, sizeof(config->cfg_path), \
      20           0 :         info, key ) ) )                                                \
      21           0 :       return NULL;                                                     \
      22           0 :     fd_pod_remove( pod, key );                                         \
      23           0 :   } while(0)
      24             : 
      25             : #define CFG_POP_ARRAY( type, cfg_path )                                \
      26           0 :   do {                                                                 \
      27           0 :     char const * key = #cfg_path;                                      \
      28           0 :     fd_pod_info_t info[1];                                             \
      29           0 :     if( fd_pod_query( pod, key, info ) ) break;                        \
      30           0 :     if( FD_UNLIKELY( info->val_type!=FD_POD_VAL_TYPE_SUBPOD ) ) {      \
      31           0 :       FD_LOG_WARNING(( "`%s`: expected array", key ));                 \
      32           0 :       return NULL;                                                     \
      33           0 :     }                                                                  \
      34           0 :     ulong  arr_len = sizeof( config->cfg_path ) / sizeof( config->cfg_path[ 0 ] ); \
      35           0 :     ulong  j       = 0UL;                                              \
      36           0 :     for( fd_pod_iter_t iter = fd_pod_iter_init( info->val ); !fd_pod_iter_done( iter ); iter = fd_pod_iter_next( iter ) ) { \
      37           0 :       if( FD_UNLIKELY( j>=arr_len ) ) {                                \
      38           0 :         FD_LOG_WARNING(( "`%s`: too many values (max %lu)", key, arr_len )); \
      39           0 :         return NULL;                                                   \
      40           0 :       }                                                                \
      41           0 :       fd_pod_info_t sub_info = fd_pod_iter_info( iter );               \
      42           0 :       fdctl_cfg_get_##type( &config->cfg_path[j], sizeof(config->cfg_path[j]), &sub_info, key ); \
      43           0 :       j++;                                                             \
      44           0 :     }                                                                  \
      45           0 :     config->cfg_path ## _cnt = j;                                      \
      46           0 :     fd_pod_remove( pod, key );                                         \
      47           0 :   } while(0)
      48             : 
      49             : #define CFG_POP1_ARRAY( type, toml_path, cfg_path )                    \
      50           0 :   do {                                                                 \
      51           0 :     char const * key = #toml_path;                                     \
      52           0 :     fd_pod_info_t info[1];                                             \
      53           0 :     if( fd_pod_query( pod, key, info ) ) break;                        \
      54           0 :     if( FD_UNLIKELY( info->val_type!=FD_POD_VAL_TYPE_SUBPOD ) ) {      \
      55           0 :       FD_LOG_WARNING(( "`%s`: expected array", key ));                 \
      56           0 :       return NULL;                                                     \
      57           0 :     }                                                                  \
      58           0 :     ulong  arr_len = sizeof( config->cfg_path ) / sizeof( config->cfg_path[ 0 ] ); \
      59           0 :     ulong  j       = 0UL;                                              \
      60           0 :     for( fd_pod_iter_t iter = fd_pod_iter_init( info->val ); !fd_pod_iter_done( iter ); iter = fd_pod_iter_next( iter ) ) { \
      61           0 :       if( FD_UNLIKELY( j>=arr_len ) ) {                                \
      62           0 :         FD_LOG_WARNING(( "`%s`: too many values (max %lu)", key, arr_len )); \
      63           0 :         return NULL;                                                   \
      64           0 :       }                                                                \
      65           0 :       fd_pod_info_t sub_info = fd_pod_iter_info( iter );               \
      66           0 :       fdctl_cfg_get_##type( &config->cfg_path[j], sizeof(config->cfg_path[j]), &sub_info, key ); \
      67           0 :       j++;                                                             \
      68           0 :     }                                                                  \
      69           0 :     config->cfg_path ## _cnt = j;                                      \
      70           0 :     fd_pod_remove( pod, key );                                         \
      71           0 :   } while(0)
      72             : 
      73             : #define CFG_POP_TABLE( type, toml_path, cfg_path, cfg_field, field_idx )              \
      74             :   do {                                                                                \
      75             :     char const * key = #toml_path;                                                    \
      76             :     fd_pod_info_t info[1];                                                            \
      77             :     if( fd_pod_query( pod, key, info ) ) break;                                       \
      78             :     if( FD_UNLIKELY( info->val_type!=FD_POD_VAL_TYPE_SUBPOD ) ) {                     \
      79             :       FD_LOG_WARNING(( "`%s`: expected table", key ));                                \
      80             :       return NULL;                                                                    \
      81             :     }                                                                                 \
      82             :     ulong table_len = fd_pod_cnt( info->val );                                        \
      83             :     ulong j         = 0UL;                                                            \
      84             :     for( fd_pod_iter_t iter = fd_pod_iter_init( info->val ); !fd_pod_iter_done( iter ); iter = fd_pod_iter_next( iter ) ) { \
      85             :       if( FD_UNLIKELY( j>=table_len ) ) {                                             \
      86             :         FD_LOG_WARNING(( "`%s`: too many values (max %lu)", key, table_len ));        \
      87             :         return NULL;                                                                  \
      88             :       }                                                                               \
      89             :       fd_pod_info_t sub_info = fd_pod_iter_info( iter );                              \
      90             :       if( FD_UNLIKELY( sub_info.val_type!=FD_POD_VAL_TYPE_SUBPOD ) ) continue;        \
      91             :       fd_pod_info_t list[ 256UL ];                                                    \
      92             :       ulong fields_cnt         = fd_pod_cnt( sub_info.val );                          \
      93             :       if( FD_UNLIKELY( fields_cnt>256UL ) ) {                                         \
      94             :         FD_LOG_WARNING(( "`%s`: Too many subpods (%lu) in table", sub_info.key, fields_cnt )); \
      95             :         return NULL;                                                                  \
      96             :       }                                                                               \
      97             :       fd_pod_info_t * fields   = fd_pod_list( sub_info.val, list );                   \
      98             :       FD_TEST( field_idx<fields_cnt );                                                \
      99             :       fd_pod_info_t field_info = fields[ field_idx ];                                 \
     100             :       char table_toml_path[ PATH_MAX ];                                               \
     101             :       char const * cfg_field_str = #cfg_field;                                        \
     102             :       FD_TEST( fd_cstr_printf_check( table_toml_path, PATH_MAX, NULL, "%s.%lu.%s", key, j, cfg_field_str ) ); \
     103             :       fdctl_cfg_get_##type( &config->cfg_path[j].cfg_field, sizeof(config->cfg_path[j].cfg_field), &field_info, table_toml_path ); \
     104             :       j++;                                                                            \
     105             :     }                                                                                 \
     106             :     config->cfg_path ## _cnt = j;                                                     \
     107             :   } while(0)
     108             : 
     109             : #define CFG_POP_TABLE_FINI( toml_path ) \
     110             :   do {                                  \
     111             :     fd_pod_remove( pod, #toml_path );   \
     112             :   } while(0)

Generated by: LCOV version 1.14