bool CFGManager::setProperty(const cfgPropertyStruct &_propertyS) { utils::MutexLocker locker(&mutexCFGParams); CFGParam *param = NULL; CFGProperty property; property.setParamId(_propertyS.paramId); property.setPropertyIndex(_propertyS.propertyIndex); property.setPropertyType(_propertyS.propertyType); switch (_propertyS.propertyType) { case boolProperty: property.setValue(_propertyS.bValue); break; case doubleProperty: property.setValue(_propertyS.dValue); break; case intProperty: property.setValue(_propertyS.iValue); break; case stringProperty: property.setValue(_propertyS.sValue); break; default: return false; } // switch if( getParam(¶m, _propertyS.paramId) ) { return param->setProperty(property); } else { return false; } }
bool CFGManager::setPropertyValue(const string &_group, const string &_name, const string &_propertyName, const string &rValue) { utils::MutexLocker locker(&mutexCFGParams); CFGParam *param = NULL; if( getParam(¶m, _group, _name) ) { CFGProperty property; property.setParamId( param->getId() ); property.setPropertyIndex( param->getPropertyIndexByName(_propertyName) ); property.setPropertyType(stringProperty); property.setValue(rValue); if( setProperty(property) ) { return true; } else { return false; } } else { return false; } }