@@ -1220,21 +1220,21 @@ class Configuration {
1220
1220
/* *
1221
1221
* @brief Templated subconfig copy getter. Retrieves a shared pointer to a
1222
1222
* copy of the subConfig @ref esp::core::config::Configuration that has the
1223
- * passed @p name .
1223
+ * passed @p cfgName .
1224
1224
*
1225
1225
* @tparam Type to return. Must inherit from @ref
1226
1226
* esp::core::config::Configuration
1227
- * @param name The name of the Configuration to retrieve.
1227
+ * @param cfgName The name of the Configuration to retrieve.
1228
1228
* @return A pointer to a copy of the Configuration having the requested
1229
1229
* name, cast to the appropriate type, or nullptr if not found.
1230
1230
*/
1231
1231
1232
1232
template <typename T>
1233
- std::shared_ptr<T> getSubconfigCopy (const std::string& name ) const {
1233
+ std::shared_ptr<T> getSubconfigCopy (const std::string& cfgName ) const {
1234
1234
static_assert (std::is_base_of<Configuration, T>::value,
1235
1235
" Configuration : Desired subconfig must be derived from "
1236
1236
" core::config::Configuration" );
1237
- auto configIter = configMap_.find (name );
1237
+ auto configIter = configMap_.find (cfgName );
1238
1238
if (configIter != configMap_.end ()) {
1239
1239
// if exists return copy, so that consumers can modify it freely
1240
1240
return std::make_shared<T>(
@@ -1244,91 +1244,92 @@ class Configuration {
1244
1244
}
1245
1245
1246
1246
/* *
1247
- * @brief return pointer to read-only sub-Configuration of given @p name .
1247
+ * @brief return pointer to read-only sub-Configuration of given @p cfgName .
1248
1248
* Will fail if Configuration with given name dne.
1249
- * @param name The name of the desired Configuration.
1249
+ * @param cfgName The name of the desired Configuration.
1250
1250
*/
1251
1251
std::shared_ptr<const Configuration> getSubconfigView (
1252
- const std::string& name ) const {
1253
- auto configIter = configMap_.find (name );
1254
- CORRADE_ASSERT (
1255
- configIter != configMap_. end (),
1256
- " SubConfiguration with name " << name << " not found in Configuration." ,
1257
- nullptr );
1252
+ const std::string& cfgName ) const {
1253
+ auto configIter = configMap_.find (cfgName );
1254
+ CORRADE_ASSERT (configIter != configMap_. end (),
1255
+ " SubConfiguration with name "
1256
+ << cfgName << " not found in Configuration." ,
1257
+ nullptr );
1258
1258
// if exists return actual object
1259
1259
return configIter->second ;
1260
1260
}
1261
1261
1262
1262
/* *
1263
1263
* @brief Templated Version. Retrieves the stored shared pointer to the
1264
- * subConfig @ref esp::core::config::Configuration that has the passed @p name
1264
+ * subConfig @ref esp::core::config::Configuration that has the passed @p cfgName
1265
1265
* , cast to the specified type. This will create a shared pointer to a new
1266
1266
* sub-Configuration if none exists and return it, cast to specified type.
1267
1267
*
1268
1268
* Use this function when you wish to modify this Configuration's
1269
1269
* subgroup, possibly creating it in the process.
1270
1270
* @tparam The type to cast the @ref esp::core::config::Configuration to. Type
1271
1271
* is checked to verify that it inherits from Configuration.
1272
- * @param name The name of the Configuration to edit.
1272
+ * @param cfgName The name of the Configuration to edit.
1273
1273
* @return The actual pointer to the Configuration having the requested
1274
1274
* name, cast to the specified type.
1275
1275
*/
1276
1276
template <typename T>
1277
- std::shared_ptr<T> editSubconfig (const std::string& name ) {
1277
+ std::shared_ptr<T> editSubconfig (const std::string& cfgName ) {
1278
1278
static_assert (std::is_base_of<Configuration, T>::value,
1279
1279
" Configuration : Desired subconfig must be derived from "
1280
1280
" core::config::Configuration" );
1281
1281
// retrieve existing (or create new) subgroup, with passed name
1282
1282
return std::static_pointer_cast<T>(
1283
- addOrEditSubgroup<T>(name ).first ->second );
1283
+ addOrEditSubgroup<T>(cfgName ).first ->second );
1284
1284
}
1285
1285
1286
1286
/* *
1287
1287
* @brief move specified subgroup config into configMap at desired name.
1288
1288
* Will replace any subConfiguration at given name without warning if
1289
1289
* present.
1290
- * @param name The name of the subConfiguration to add
1290
+ * @param cfgName The name of the subConfiguration to add
1291
1291
* @param configPtr A pointer to a subConfiguration to add.
1292
1292
*/
1293
1293
template <typename T>
1294
- void setSubconfigPtr (const std::string& name, std::shared_ptr<T>& configPtr) {
1294
+ void setSubconfigPtr (const std::string& cfgName,
1295
+ std::shared_ptr<T>& configPtr) {
1295
1296
static_assert (std::is_base_of<Configuration, T>::value,
1296
1297
" Configuration : Desired subconfig must be derived from "
1297
1298
" core::config::Configuration" );
1298
1299
1299
- configMap_[name ] = std::move (configPtr);
1300
+ configMap_[cfgName ] = std::move (configPtr);
1300
1301
} // setSubconfigPtr
1301
1302
1302
1303
/* *
1303
1304
* @brief Removes and returns the named subconfig. If not found, returns an
1304
1305
* empty subconfig with a warning.
1305
- * @param name The name of the subConfiguration to delete
1306
+ * @param cfgName The name of the subConfiguration to delete
1306
1307
* @return a shared pointer to the removed subConfiguration.
1307
1308
*/
1308
- std::shared_ptr<Configuration> removeSubconfig (const std::string& name ) {
1309
- ConfigMapType::const_iterator mapIter = configMap_.find (name );
1309
+ std::shared_ptr<Configuration> removeSubconfig (const std::string& cfgName ) {
1310
+ ConfigMapType::const_iterator mapIter = configMap_.find (cfgName );
1310
1311
if (mapIter != configMap_.end ()) {
1311
1312
configMap_.erase (mapIter);
1312
1313
return mapIter->second ;
1313
1314
}
1314
- ESP_WARNING () << " Name :" << name
1315
+ ESP_WARNING () << " Name :" << cfgName
1315
1316
<< " not present in map of subConfigurations." ;
1316
1317
return {};
1317
1318
}
1318
1319
1319
1320
/* *
1320
1321
* @brief Retrieve the number of entries held by the subconfig with the
1321
1322
* given name
1322
- * @param name The name of the subconfig to query. If not found, returns 0
1323
+ * @param cfgName The name of the subconfig to query. If not found, returns 0
1323
1324
* with a warning.
1324
1325
* @return The number of entries in the named subconfig
1325
1326
*/
1326
- int getSubconfigNumEntries (const std::string& name ) const {
1327
- auto configIter = configMap_.find (name );
1327
+ int getSubconfigNumEntries (const std::string& cfgName ) const {
1328
+ auto configIter = configMap_.find (cfgName );
1328
1329
if (configIter != configMap_.end ()) {
1329
1330
return configIter->second ->getNumEntries ();
1330
1331
}
1331
- ESP_WARNING () << " No Subconfig found named :" << name ;
1332
+ ESP_WARNING () << " No Subconfig found named :" << cfgName ;
1332
1333
return 0 ;
1333
1334
}
1334
1335
@@ -1403,7 +1404,12 @@ class Configuration {
1403
1404
std::vector<T> getSubconfigValsOfTypeInVector (
1404
1405
const std::string& subCfgName) const {
1405
1406
const ConfigValType desiredType = configValTypeFor<T>();
1406
- const auto subCfg = getSubconfigView (subCfgName);
1407
+ auto configIter = configMap_.find (subCfgName);
1408
+ if (configIter == configMap_.end ()) {
1409
+ ESP_WARNING () << " No Subconfig found named :" << subCfgName;
1410
+ return {};
1411
+ }
1412
+ const auto subCfg = configIter->second ;
1407
1413
const auto & subCfgTags = subCfg->getKeysByType (desiredType, true );
1408
1414
std::vector<T> res;
1409
1415
res.reserve (subCfgTags.size ());
0 commit comments