* ./vslsisapd/src/configuration:

- Change: Internal rewrite of the check function, now named _doChange()
        and shared by all mutators.
    - Change: Logs now contains entries with the last correct value and are
        able to restore that value.
    - Change: LogWidget simplificated, only one message label. But now two
        buttons (Continue/Cancel).
    - Change: In ConfigurationWidget, two steps validation "mustExist" then
        "needRestart".
This commit is contained in:
Jean-Paul Chaput 2010-10-13 21:44:50 +00:00
parent 3db947d302
commit 45f9dcc394
9 changed files with 262 additions and 160 deletions

View File

@ -164,7 +164,10 @@ namespace {
, _getAttributeValue("value") , _getAttributeValue("value")
); );
} else { } else {
_parameter->setString ( _getAttributeValue("value"), false ); _parameter->setString ( _getAttributeValue("value")
, (Parameter::AllRequirements | Parameter::FromString)
& ~Parameter::TypeCheck
);
} }
if ( not attrRestart.empty() ) _parameter->setFlags ( Parameter::NeedRestart ); if ( not attrRestart.empty() ) _parameter->setFlags ( Parameter::NeedRestart );
@ -389,11 +392,7 @@ namespace Cfg {
, _layout (this) , _layout (this)
, _flags (0) , _flags (0)
, _logSets () , _logSets ()
{ { }
_logSets.reserve ( LogTypeSize );
for ( size_t ilog=0 ; ilog<LogTypeSize ; ++ilog )
_logSets.push_back ( set<string>() );
}
ConfigurationWidget* Configuration::buildWidget ( unsigned int flags ) ConfigurationWidget* Configuration::buildWidget ( unsigned int flags )
@ -443,15 +442,31 @@ namespace Cfg {
} }
void Configuration::addLog ( unsigned int type, const string& id ) const set<Configuration::LogEntry>& Configuration::getLogs ( unsigned int mask ) const
{ {
_logSets[ (type<LogTypeSize) ? type : 0 ].insert ( id ); static set<LogEntry> _failsafe;
map< unsigned int, set<LogEntry> >::const_iterator ilog = _logSets.find(mask);
if ( ilog != _logSets.end() ) return (*ilog).second;
return _failsafe;
}
void Configuration::addLog ( unsigned int mask, const string& id )
{
map< unsigned int, set<LogEntry> >::iterator ilog = _logSets.find(mask);
if ( ilog == _logSets.end() ) {
_logSets.insert ( make_pair(mask,set<LogEntry>()) );
ilog = _logSets.find(mask);
}
(*ilog).second.insert ( LogEntry(id) );
} }
void Configuration::removeLog ( unsigned int type, const string& id ) void Configuration::removeLog ( unsigned int mask, const string& id )
{ {
_logSets[ (type<LogTypeSize) ? type : 0 ].erase ( id ); map< unsigned int, set<LogEntry> >::iterator ilog = _logSets.find(mask);
if ( ilog != _logSets.end() ) (*ilog).second.erase ( id );
} }

View File

@ -194,21 +194,29 @@ namespace Cfg {
void ConfigurationWidget::applyClicked () void ConfigurationWidget::applyClicked ()
{ {
emit updateParameters(); emit updateParameters();
checkConfiguration (); if ( checkConfiguration(Configuration::LogNeedExist) == QDialog::Accepted ) {
if ( checkConfiguration(Configuration::LogRestart) == QDialog::Accepted ) {
emit confOk();
} else {
Configuration* configuration = Configuration::get();
configuration->restoreFromLogs(Configuration::LogRestart);
configuration->clearLogs (Configuration::LogRestart);
}
}
} }
void ConfigurationWidget::checkConfiguration () int ConfigurationWidget::checkConfiguration ( unsigned int mask )
{ {
Configuration* configuration = Configuration::get(); Configuration* configuration = Configuration::get();
if ( configuration->hasLogs() ) { if ( configuration->hasLogs(mask) ) {
if ( _log == NULL ) _log = new LogWidget(this); if ( _log == NULL ) _log = new LogWidget(this);
_log->updateLogs (); _log->updateLogs (mask);
_log->exec (); return _log->exec ();
} else {
emit checkOk();
} }
return QDialog::Accepted;
} }

View File

@ -46,15 +46,16 @@ namespace Cfg {
LogWidget::LogWidget ( QWidget* parent ) LogWidget::LogWidget ( QWidget* parent )
: QDialog (parent) : QDialog (parent)
, _restartMessage (new QLabel()) , _message (new QLabel())
, _needExistMessage(new QLabel()) , _contButton (new QPushButton())
, _cancelButton(new QPushButton())
{ {
setModal ( true ); setModal ( true );
setWindowTitle( tr("<Configuration Message>") ); setWindowTitle( tr("<Configuration Message>") );
setToolTip ( tr("You should better follow these instructions...") ); setToolTip ( tr("You should better follow these instructions...") );
_restartMessage->setTextFormat ( Qt::RichText ); _message->setTextFormat ( Qt::RichText );
_restartMessage->setText ( "<b>Oups! I did it again!</b>" ); _message->setText ( "<b>Oups! I did it again!</b>" );
QLabel* ok = new QLabel (); QLabel* ok = new QLabel ();
ok->setSizePolicy ( QSizePolicy::Preferred, QSizePolicy::MinimumExpanding ); ok->setSizePolicy ( QSizePolicy::Preferred, QSizePolicy::MinimumExpanding );
@ -62,20 +63,23 @@ namespace Cfg {
ok->setStyleSheet ( "QLabel { background-color: #FF9999;" ok->setStyleSheet ( "QLabel { background-color: #FF9999;"
" padding: 5px }" ); " padding: 5px }" );
QPushButton* okButton = new QPushButton (); _contButton->setSizePolicy ( QSizePolicy::Fixed, QSizePolicy::Fixed );
okButton->setSizePolicy ( QSizePolicy::Fixed, QSizePolicy::Fixed ); _contButton->setText ( tr("Continue") );
okButton->setText ( tr("Continue") );
_cancelButton->setSizePolicy ( QSizePolicy::Fixed, QSizePolicy::Fixed );
_cancelButton->setText ( tr("Cancel") );
QHBoxLayout* hLayout2 = new QHBoxLayout (); QHBoxLayout* hLayout2 = new QHBoxLayout ();
hLayout2->addStretch ( 1 ); hLayout2->addStretch ( 1 );
hLayout2->addWidget ( okButton, Qt::AlignCenter ); hLayout2->addWidget ( _contButton, Qt::AlignCenter );
hLayout2->addStretch ( 1 );
hLayout2->addWidget ( _cancelButton, Qt::AlignCenter );
hLayout2->addStretch ( 1 ); hLayout2->addStretch ( 1 );
QVBoxLayout* vLayout1 = new QVBoxLayout (); QVBoxLayout* vLayout1 = new QVBoxLayout ();
vLayout1->setContentsMargins ( 10, 10, 10, 10 ); vLayout1->setContentsMargins ( 10, 10, 10, 10 );
vLayout1->setSpacing ( 0 ); vLayout1->setSpacing ( 0 );
vLayout1->addWidget ( _restartMessage , Qt::AlignCenter ); vLayout1->addWidget ( _message, Qt::AlignCenter );
vLayout1->addWidget ( _needExistMessage, Qt::AlignCenter );
vLayout1->addSpacing ( 10 ); vLayout1->addSpacing ( 10 );
vLayout1->addLayout ( hLayout2, Qt::AlignCenter ); vLayout1->addLayout ( hLayout2, Qt::AlignCenter );
@ -87,7 +91,8 @@ namespace Cfg {
setLayout ( hLayout1 ); setLayout ( hLayout1 );
connect ( okButton, SIGNAL(clicked()), this, SLOT(accept()) ); connect ( _contButton , SIGNAL(clicked()), this, SLOT(accept()) );
connect ( _cancelButton, SIGNAL(clicked()), this, SLOT(reject()) );
} }
@ -97,34 +102,41 @@ namespace Cfg {
} }
void LogWidget::updateLogs () void LogWidget::updateLogs ( unsigned int mask )
{ {
Configuration* configuration = Configuration::get(); Configuration* configuration = Configuration::get();
for ( size_t ilog=0 ; ilog<Configuration::LogTypeSize ; ++ilog ) {
const set<string>& logs = configuration->getLogs(ilog);
QLabel* messageLabel = NULL;
QString contents; QString contents;
bool enableCont = true;
for ( size_t ibit=0 ; ibit < 32 ; ++ibit ) {
unsigned int bit = 1 << ibit;
const char* header = NULL; const char* header = NULL;
switch ( ilog ) { switch ( bit ) {
case Configuration::LogRestart: case Configuration::LogRestart:
messageLabel = _restartMessage;
header = "<b>Program needs restart for these parameters to take effect:</b><br>"; header = "<b>Program needs restart for these parameters to take effect:</b><br>";
break; break;
case Configuration::LogNeedExist: case Configuration::LogNeedExist:
messageLabel = _needExistMessage;
header = "<b>Those parameters needs file/path to exists:</b><br>"; header = "<b>Those parameters needs file/path to exists:</b><br>";
break; break;
} }
if ( messageLabel == NULL ) continue;
if ( (header == NULL) or not (mask & bit) ) continue;
mask &= ~bit;
const set<Configuration::LogEntry>& logs = configuration->getLogs(bit);
if ( not logs.empty() ) { if ( not logs.empty() ) {
switch ( bit ) {
case Configuration::LogRestart: break;
case Configuration::LogNeedExist: enableCont = false; break;
}
contents += header; contents += header;
set<string>::const_iterator iid = logs.begin(); set<Configuration::LogEntry>::const_iterator ientry = logs.begin();
for ( ; iid != logs.end() ; ++iid ) { for ( ; ientry != logs.end() ; ++ientry ) {
Parameter* p = configuration->getParameter((*iid)); Parameter* p = configuration->getParameter((*ientry).getId());
if ( p != NULL ) { if ( p != NULL ) {
WidgetDescription* desc = configuration->getLayout().getWidget ( p->getId() ); WidgetDescription* desc = configuration->getLayout().getWidget ( p->getId() );
@ -142,9 +154,9 @@ namespace Cfg {
} }
} }
} }
messageLabel->setText ( contents );
} }
_message->setText ( contents );
_contButton->setEnabled ( enableCont );
} }

View File

@ -36,6 +36,9 @@ namespace Cfg {
using std::cerr; using std::cerr;
using std::endl; using std::endl;
using std::string; using std::string;
using std::ostringstream;
using std::boolalpha;
using std::hex;
string Parameter::typeToString ( Parameter::Type type ) string Parameter::typeToString ( Parameter::Type type )
@ -131,20 +134,14 @@ namespace Cfg {
} }
bool Parameter::setString ( const std::string& s, bool check ) bool Parameter::setString ( const std::string& s, unsigned int flags )
{ {
if ( check and (_type != String) ) if ( (flags & TypeCheck) and (_type != String) )
cerr << "[ERROR] Parameter::setString(): Setting " << Parameter::typeToString(_type) cerr << "[ERROR] Parameter::setString(): Setting " << Parameter::typeToString(_type)
<< " parameter <" << _id << " parameter <" << _id
<< "> as " << Parameter::typeToString(String)<< " (type mismatch)." << endl; << "> as " << Parameter::typeToString(String)<< " (type mismatch)." << endl;
if ( _value == s ) return true; return _doChange ( flags, s, false, 0, 0.0 );
_value = s;
_onValueChanged();
_checkRequirements();
return true;
} }
@ -155,14 +152,7 @@ namespace Cfg {
<< " parameter <" << _id << " parameter <" << _id
<< "> as " << Parameter::typeToString(Bool)<< " (type mismatch)." << endl; << "> as " << Parameter::typeToString(Bool)<< " (type mismatch)." << endl;
std::ostringstream s; s << std::boolalpha << b; return _doChange ( AllRequirements, "", b, 0, 0.0 );
if ( _value == s.str() ) return true;
_value = s.str();
_onValueChanged();
_checkRequirements();
return true;
} }
@ -173,17 +163,7 @@ namespace Cfg {
<< " parameter <" << _id << " parameter <" << _id
<< "> as " << Parameter::typeToString(Int)<< " (type mismatch)." << endl; << "> as " << Parameter::typeToString(Int)<< " (type mismatch)." << endl;
bool success = checkValue(i); return _doChange ( AllRequirements, "", false, i, 0.0 );
if ( success ) {
std::ostringstream s; s << i;
if ( _value == s.str() ) return true;
_value = s.str();
_onValueChanged();
_checkRequirements();
}
return success;
} }
@ -194,17 +174,7 @@ namespace Cfg {
<< " parameter <" << _id << " parameter <" << _id
<< "> as " << Parameter::typeToString(Double)<< " (type mismatch)." << endl; << "> as " << Parameter::typeToString(Double)<< " (type mismatch)." << endl;
bool success = checkValue(d); return _doChange ( AllRequirements, "", false, 0, d );
if ( success ) {
std::ostringstream s; s << d;
if ( _value == s.str() ) return true;
_value = s.str();
_onValueChanged();
_checkRequirements();
}
return success;
} }
@ -215,37 +185,72 @@ namespace Cfg {
<< " parameter <" << _id << " parameter <" << _id
<< "> as " << Parameter::typeToString(Double)<< " (type mismatch)." << endl; << "> as " << Parameter::typeToString(Double)<< " (type mismatch)." << endl;
bool success = checkValue(d/100.0); return _doChange ( AllRequirements, "", false, 0, d );
if ( success ) {
std::ostringstream s; s << (d/100.0);
if ( _value == s.str() ) return true;
_value = s.str();
_onValueChanged();
_checkRequirements();
}
return success;
} }
void Parameter::_checkRequirements () const bool Parameter::_doChange ( unsigned int flags, const string& s, bool b, int i, double d )
{ {
Configuration* configuration = Configuration::get(); //cerr << "_doChange: " << _id << ":" << _value << " -> \"" << s << "\"|" << b << "|" << i << "|" << d;
if ( hasFlags(NeedRestart) ) { Configuration* configuration = Configuration::get();
ostringstream svalue;
bool success = true;
unsigned int type = (flags & FromString) ? String : _type;
switch ( type ) {
case Unknown:
break;
case String:
svalue << s;
break;
case Bool:
svalue << boolalpha << b;
break;
case Enumerate:
case Int:
svalue << i;
if ( flags & TypeCheck ) success = checkValue(i);
break;
case Double:
svalue << d;
if ( flags & TypeCheck ) success = checkValue(d);
break;
case Percentage:
svalue << (d/100.0);
if ( flags & TypeCheck ) success = checkValue(d/100.0);
break;
}
if ( not success ) {
//cerr << " (" << _flags << "," << _minInt << ") check failed." << endl;
return false;
}
if ( svalue.str() == _value ) {
//cerr << " no change." << endl;
return true;
}
if ( (flags & NeedRestart) and hasFlags(NeedRestart) ) {
configuration->addLog ( Configuration::LogRestart, _id ); configuration->addLog ( Configuration::LogRestart, _id );
} }
if ( hasFlags(MustExist) ) { if ( (flags & MustExist) and hasFlags(MustExist) ) {
if ( _type == String ) { if ( _type == String ) {
bfs::path filePath = ( asString() ); bfs::path filePath = ( svalue.str() );
if ( not bfs::exists(filePath) ) if ( not bfs::exists(filePath) )
configuration->addLog ( Configuration::LogNeedExist, _id ); configuration->addLog ( Configuration::LogNeedExist, _id );
else else
configuration->removeLog ( Configuration::LogNeedExist, _id ); configuration->removeLog ( Configuration::LogNeedExist, _id );
} }
} }
//cerr << " updated" << endl;
_value = svalue.str();
_onValueChanged();
return true;
} }

View File

@ -237,6 +237,8 @@ namespace Cfg {
void ParameterWidget::onUpdateValueCb ( Parameter* ) void ParameterWidget::onUpdateValueCb ( Parameter* )
{ {
//cerr << "onUpdateValue: " << _parameter->getId() << " -> " << _parameter->asString() << endl;
if ( _parameter->getType() == Parameter::String ) if ( _parameter->getType() == Parameter::String )
{ {
QLineEdit* lineEdit = qobject_cast<QLineEdit*>(_valueWidget); QLineEdit* lineEdit = qobject_cast<QLineEdit*>(_valueWidget);

View File

@ -43,7 +43,19 @@ namespace Cfg {
class Configuration { class Configuration {
public: public:
enum Flags { DriveValues=0x1, DriveLayout=0x2 }; enum Flags { DriveValues=0x1, DriveLayout=0x2 };
enum LogType { LogRestart=0, LogNeedExist, LogTypeSize }; enum LogType { LogRestart=0x1, LogNeedExist=0x2, AllLogs=0xFFFF };
public:
class LogEntry {
public:
inline LogEntry ( const std::string& id );
inline const std::string& getId () const;
inline const std::string& getValid () const;
inline void restore () const;
private:
std::string _id;
std::string _valid;
};
public: public:
static Configuration* get (); static Configuration* get ();
public: public:
@ -52,8 +64,7 @@ namespace Cfg {
ConfigurationDialog* buildDialog (); ConfigurationDialog* buildDialog ();
inline const std::map<const std::string,Parameter*>& inline const std::map<const std::string,Parameter*>&
getParameters () const; getParameters () const;
inline const std::set<std::string>& const std::set<LogEntry>& getLogs ( unsigned int ilog ) const;
getLogs ( unsigned int type ) const;
inline unsigned int getFlags () const; inline unsigned int getFlags () const;
inline const LayoutDescription& getLayout () const; inline const LayoutDescription& getLayout () const;
inline LayoutDescription& getLayout (); inline LayoutDescription& getLayout ();
@ -63,10 +74,11 @@ namespace Cfg {
, Parameter::Type type , Parameter::Type type
, const std::string& value ); , const std::string& value );
inline void setFlags ( unsigned int mask ); inline void setFlags ( unsigned int mask );
inline bool hasLogs () const; inline bool hasLogs ( unsigned int mask ) const;
void addLog ( unsigned int type, const std::string& id ); void addLog ( unsigned int mask, const std::string& id );
void removeLog ( unsigned int type, const std::string& id ); void removeLog ( unsigned int mask, const std::string& id );
inline void clearLogs (); inline void restoreFromLogs ( unsigned int mask );
inline void clearLogs ( unsigned int mask );
void print ( std::ostream& ) const; void print ( std::ostream& ) const;
bool readFromFile ( const std::string& ); bool readFromFile ( const std::string& );
bool writeToFile ( const std::string&, unsigned int flags, const std::string& tabs="" ) const; bool writeToFile ( const std::string&, unsigned int flags, const std::string& tabs="" ) const;
@ -77,7 +89,7 @@ namespace Cfg {
std::map<const std::string,Parameter*> _parameters; std::map<const std::string,Parameter*> _parameters;
LayoutDescription _layout; LayoutDescription _layout;
unsigned int _flags; unsigned int _flags;
std::vector< std::set<std::string> > _logSets; std::map< unsigned int, std::set<LogEntry> > _logSets;
private: private:
Configuration (); Configuration ();
}; };
@ -87,25 +99,42 @@ namespace Cfg {
inline const std::map<const std::string,Parameter*>& Configuration::getParameters () const inline const std::map<const std::string,Parameter*>& Configuration::getParameters () const
{ return _parameters; } { return _parameters; }
inline const std::set<std::string>& Configuration::getLogs ( unsigned int type ) const
{ return _logSets[(type<LogTypeSize) ? type : 0]; }
inline const LayoutDescription& Configuration::getLayout () const { return _layout; } inline const LayoutDescription& Configuration::getLayout () const { return _layout; }
inline LayoutDescription& Configuration::getLayout () { return _layout; } inline LayoutDescription& Configuration::getLayout () { return _layout; }
inline unsigned int Configuration::getFlags () const { return _flags; } inline unsigned int Configuration::getFlags () const { return _flags; }
inline void Configuration::setFlags ( unsigned int mask ) { _flags |= mask; } inline void Configuration::setFlags ( unsigned int mask ) { _flags |= mask; }
inline bool Configuration::hasLogs () const
inline bool Configuration::hasLogs ( unsigned int mask ) const
{ {
for ( size_t ilog=0 ; ilog<_logSets.size() ; ++ilog ) std::map< unsigned int, std::set<LogEntry> >::const_iterator ilog = _logSets.begin();
if ( not _logSets[ilog].empty () ) return true; for ( ; ilog != _logSets.end() ; ++ilog )
if ( (mask & (*ilog).first) and not (*ilog).second.empty () ) return true;
return false; return false;
} }
inline void Configuration::clearLogs ()
inline void Configuration::restoreFromLogs ( unsigned int mask )
{ {
for ( size_t ilog=0 ; ilog<_logSets.size() ; ++ilog ) std::map< unsigned int, std::set<LogEntry> >::iterator ilog = _logSets.begin();
_logSets[ilog].clear (); for ( ; ilog != _logSets.end() ; ++ilog ) {
if ( mask & (*ilog).first ) {
std::set<LogEntry>::iterator ientry = (*ilog).second.begin();
for ( ; ientry != (*ilog).second.end() ; ++ientry ) {
//std::cerr << "Restoring " << (*ientry).getId() << " -> " << (*ientry).getValid() << std::endl;
(*ientry).restore ();
}
}
}
}
inline void Configuration::clearLogs ( unsigned int mask )
{
std::map< unsigned int, std::set<LogEntry> >::iterator ilog = _logSets.begin();
for ( ; ilog != _logSets.end() ; ++ilog ) {
if ( mask & (*ilog).first ) (*ilog).second.clear();
}
} }
@ -174,6 +203,29 @@ namespace Cfg {
} }
inline Configuration::LogEntry::LogEntry ( const std::string& id )
: _id (id)
, _valid("")
{
Parameter* parameter = Configuration::get()->getParameter(id);
if ( parameter != NULL ) _valid = parameter->asString();
}
inline const std::string& Configuration::LogEntry::getId () const { return _id; }
inline const std::string& Configuration::LogEntry::getValid () const { return _valid; }
inline void Configuration::LogEntry::restore () const
{
Parameter* parameter = Configuration::get()->getParameter(_id);
if ( parameter != NULL ) parameter->setString(_valid,false);
}
inline bool operator< ( const Configuration::LogEntry& lhs, const Configuration::LogEntry& rhs )
{ return lhs.getId() < rhs.getId(); }
} // End of Cfg namespace. } // End of Cfg namespace.

View File

@ -73,13 +73,13 @@ namespace Cfg {
, int span =1 , int span =1
, int flags =0 ); , int flags =0 );
void syncSlaves (); void syncSlaves ();
void checkConfiguration (); int checkConfiguration ( unsigned int mask );
void selectTab ( const std::string& ); void selectTab ( const std::string& );
public slots: public slots:
void applyClicked (); void applyClicked ();
signals: signals:
void updateParameters (); void updateParameters ();
void checkOk (); void confOk ();
private: private:
unsigned int _flags; unsigned int _flags;
QFont _boldFont; QFont _boldFont;

View File

@ -29,6 +29,7 @@
#include <QDialog> #include <QDialog>
class QLabel; class QLabel;
class QPushButton;
namespace Cfg { namespace Cfg {
@ -38,12 +39,13 @@ namespace Cfg {
Q_OBJECT; Q_OBJECT;
public: public:
LogWidget ( QWidget* parent=NULL); LogWidget ( QWidget* parent=NULL);
void updateLogs (); void updateLogs ( unsigned int mask );
private: private:
QLabel* _restartMessage;
QLabel* _needExistMessage;
protected:
virtual void closeEvent ( QCloseEvent* ); virtual void closeEvent ( QCloseEvent* );
private:
QLabel* _message;
QPushButton* _contButton;
QPushButton* _cancelButton;
}; };

View File

@ -52,6 +52,9 @@ namespace Cfg {
, IsPath = 0x08 , IsPath = 0x08
, NeedRestart = 0x10 , NeedRestart = 0x10
, MustExist = 0x20 , MustExist = 0x20
, TypeCheck = 0x40
, FromString = 0x80
, AllRequirements = HasMin|HasMax|IsFile|IsPath|NeedRestart|MustExist|TypeCheck
}; };
typedef boost::function< void(Parameter*) > ParameterChangedCb_t; typedef boost::function< void(Parameter*) > ParameterChangedCb_t;
public: public:
@ -98,7 +101,7 @@ namespace Cfg {
inline void addSlave ( const std::string& ); inline void addSlave ( const std::string& );
inline void setFlags ( int mask ); inline void setFlags ( int mask );
inline void unsetFlags ( int mask ); inline void unsetFlags ( int mask );
bool setString ( const std::string&, bool check=true ); bool setString ( const std::string&, unsigned int flags=AllRequirements );
bool setBool ( bool ); bool setBool ( bool );
bool setInt ( int ); bool setInt ( int );
bool setDouble ( double ); bool setDouble ( double );
@ -110,7 +113,7 @@ namespace Cfg {
inline void registerCb ( ParameterChangedCb_t ); inline void registerCb ( ParameterChangedCb_t );
private: private:
inline void _onValueChanged (); inline void _onValueChanged ();
void _checkRequirements () const; bool _doChange ( unsigned int flags, const std::string&, bool, int, double );
private: private:
// Attributes. // Attributes.
std::string _id; std::string _id;
@ -150,12 +153,15 @@ namespace Cfg {
// std::cerr << "flags:" << _flags << " " // std::cerr << "flags:" << _flags << " "
// << _minInt << " < " << value << " < " << _maxInt // << _minInt << " < " << value << " < " << _maxInt
// << " : " << std::boolalpha << ok << std::endl; // << " : " << std::boolalpha << ok << std::endl;
// std::cerr << " " << std::boolalpha << ok;
return ok; return ok;
} }
inline bool Parameter::checkValue ( double value ) const { inline bool Parameter::checkValue ( double value ) const {
// std::cerr << " (double) " << _minDouble << "<" << value << "<" << _maxDouble;
bool ok = not ( ( (_flags&HasMin) and (value < _minDouble) ) bool ok = not ( ( (_flags&HasMin) and (value < _minDouble) )
or ( (_flags&HasMax) and (value > _maxDouble) ) ); or ( (_flags&HasMax) and (value > _maxDouble) ) );
// std::cerr << " " << std::boolalpha << ok;
return ok; return ok;
} }