CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
List of all members | Public Member Functions | Private Member Functions | Private Attributes
smproxy::Configuration Class Reference

#include <Configuration.h>

Inheritance diagram for smproxy::Configuration:

Public Member Functions

virtual void actionPerformed (xdata::Event &isEvt)
 
 Configuration (xdata::InfoSpace *infoSpace, unsigned long instanceNumber)
 
struct AlarmParams getAlarmParams () const
 
struct DataRetrieverParams getDataRetrieverParams () const
 
struct DQMArchivingParams getDQMArchivingParams () const
 
struct stor::DQMProcessingParams getDQMProcessingParams () const
 
struct stor::EventServingParams getEventServingParams () const
 
struct QueueConfigurationParams getQueueConfigurationParams () const
 
void updateAllParams ()
 
virtual ~Configuration ()
 

Private Member Functions

void setAlarmDefaults ()
 
void setDataRetrieverDefaults (unsigned long instanceNumber)
 
void setDQMArchivingDefaults ()
 
void setDQMProcessingDefaults ()
 
void setEventServingDefaults ()
 
void setQueueConfigurationDefaults ()
 
void setupAlarmInfoSpaceParams (xdata::InfoSpace *infoSpace)
 
void setupDataRetrieverInfoSpaceParams (xdata::InfoSpace *)
 
void setupDQMArchivingInfoSpaceParams (xdata::InfoSpace *)
 
void setupDQMProcessingInfoSpaceParams (xdata::InfoSpace *)
 
void setupEventServingInfoSpaceParams (xdata::InfoSpace *)
 
void setupQueueConfigurationInfoSpaceParams (xdata::InfoSpace *)
 
void updateLocalAlarmData ()
 
void updateLocalDataRetrieverData ()
 
void updateLocalDQMArchivingData ()
 
void updateLocalDQMProcessingData ()
 
void updateLocalEventServingData ()
 
void updateLocalQueueConfigurationData ()
 

Private Attributes

xdata::Integer _DQMactiveConsumerTimeout
 
xdata::String _DQMconsumerQueuePolicy
 
xdata::Integer _DQMconsumerQueueSize
 
xdata::Integer activeConsumerTimeout_
 
struct AlarmParams alarmParamCopy_
 
xdata::Boolean allowMissingSM_
 
xdata::Boolean archiveDQM_
 
xdata::Integer archiveIntervalDQM_
 
xdata::String archiveTopLevelFolder_
 
xdata::Boolean collateDQM_
 
xdata::Integer compressionLevelDQM_
 
xdata::UnsignedInteger32 connectTrySleepTime_
 
xdata::String consumerQueuePolicy_
 
xdata::Integer consumerQueueSize_
 
xdata::Double corruptedEventRate_
 
struct DataRetrieverParams dataRetrieverParamCopy_
 
struct DQMArchivingParams dqmArchivingParamCopy_
 
struct stor::DQMProcessingParams dqmProcessingParamCopy_
 
struct stor::EventServingParams eventServeParamCopy_
 
xdata::String filePrefixDQM_
 
boost::mutex generalMutex_
 
xdata::UnsignedInteger32 headerRetryInterval_
 
xdata::UnsignedInteger32 maxConnectionRetries_
 
xdata::Double monitoringSleepSec_
 
struct QueueConfigurationParams queueConfigParamCopy_
 
xdata::Integer readyTimeDQM_
 
xdata::UnsignedInteger32 registrationQueueSize_
 
xdata::UnsignedInteger32 retryInterval_
 
xdata::Boolean sendAlarms_
 
xdata::UnsignedInteger32 sleepTimeIfIdle_
 
xdata::Vector< xdata::String > smRegistrationList_
 
xdata::Boolean useCompressionDQM_
 

Detailed Description

Class for managing configuration information from the infospace and providing local copies of that information that are updated only at requested times.

Author:
mommsen
Revision:
1.3
Date:
2011/05/09 11:03:25

Definition at line 90 of file Configuration.h.

Constructor & Destructor Documentation

smproxy::Configuration::Configuration ( xdata::InfoSpace *  infoSpace,
unsigned long  instanceNumber 
)

Constructs a Configuration instance for the specified infospace and application instance number.

Definition at line 14 of file Configuration.cc.

18  {
19  // default values are used to initialize infospace values,
20  // so they should be set first
21  setDataRetrieverDefaults(instanceNumber);
27 
33  setupAlarmInfoSpaceParams(infoSpace);
34  }
void setupDQMArchivingInfoSpaceParams(xdata::InfoSpace *)
void setupAlarmInfoSpaceParams(xdata::InfoSpace *infoSpace)
void setupQueueConfigurationInfoSpaceParams(xdata::InfoSpace *)
void setupEventServingInfoSpaceParams(xdata::InfoSpace *)
void setupDQMProcessingInfoSpaceParams(xdata::InfoSpace *)
void setupDataRetrieverInfoSpaceParams(xdata::InfoSpace *)
void setDataRetrieverDefaults(unsigned long instanceNumber)
virtual smproxy::Configuration::~Configuration ( )
inlinevirtual

Destructor.

Definition at line 103 of file Configuration.h.

104  {
105  // should we detach from the infospace???
106  }

Member Function Documentation

void smproxy::Configuration::actionPerformed ( xdata::Event &  isEvt)
virtual

Gets invoked when a operation is performed on the infospace that we are interested in knowing about.

Definition at line 307 of file Configuration.cc.

References generalMutex_.

308  {
309  boost::mutex::scoped_lock sl(generalMutex_);
310  }
boost::mutex generalMutex_
struct AlarmParams smproxy::Configuration::getAlarmParams ( ) const

Returns a copy of the alarm parameters. These values will be current as of the most recent global update of the local cache from the infospace (see the updateAllParams() method).

Definition at line 66 of file Configuration.cc.

67  {
68  boost::mutex::scoped_lock sl(generalMutex_);
69  return alarmParamCopy_;
70  }
struct AlarmParams alarmParamCopy_
boost::mutex generalMutex_
struct DataRetrieverParams smproxy::Configuration::getDataRetrieverParams ( ) const

Returns a copy of the event retriever parameters. These values will be current as of the most recent global update of the local cache from the infospace (see the updateAllParams() method) or the most recent update of only the event retrieved parameters (see the updateDataRetrieverParams() method).

Definition at line 36 of file Configuration.cc.

37  {
38  boost::mutex::scoped_lock sl(generalMutex_);
40  }
boost::mutex generalMutex_
struct DataRetrieverParams dataRetrieverParamCopy_
struct DQMArchivingParams smproxy::Configuration::getDQMArchivingParams ( ) const

Returns a copy of the DQM archiving parameters. These values will be current as of the most recent global update of the local cache from the infospace (see the updateAllParams() method).

Definition at line 54 of file Configuration.cc.

55  {
56  boost::mutex::scoped_lock sl(generalMutex_);
58  }
struct DQMArchivingParams dqmArchivingParamCopy_
boost::mutex generalMutex_
struct stor::DQMProcessingParams smproxy::Configuration::getDQMProcessingParams ( ) const

Returns a copy of the DQM processing parameters. These values will be current as of the most recent global update of the local cache from the infospace (see the updateAllParams() method).

Definition at line 48 of file Configuration.cc.

49  {
50  boost::mutex::scoped_lock sl(generalMutex_);
52  }
boost::mutex generalMutex_
struct stor::DQMProcessingParams dqmProcessingParamCopy_
struct stor::EventServingParams smproxy::Configuration::getEventServingParams ( ) const

Returns a copy of the event serving parameters. These values will be current as of the most recent global update of the local cache from the infospace (see the updateAllParams() method).

Definition at line 42 of file Configuration.cc.

43  {
44  boost::mutex::scoped_lock sl(generalMutex_);
45  return eventServeParamCopy_;
46  }
struct stor::EventServingParams eventServeParamCopy_
boost::mutex generalMutex_
struct QueueConfigurationParams smproxy::Configuration::getQueueConfigurationParams ( ) const

Returns a copy of the queue configuration parameters. These values will be current as of the most recent global update of the local cache from the infospace (see the updateAllParams() method).

Definition at line 60 of file Configuration.cc.

61  {
62  boost::mutex::scoped_lock sl(generalMutex_);
63  return queueConfigParamCopy_;
64  }
boost::mutex generalMutex_
struct QueueConfigurationParams queueConfigParamCopy_
void smproxy::Configuration::setAlarmDefaults ( )
private

Definition at line 137 of file Configuration.cc.

References alarmParamCopy_, smproxy::AlarmParams::corruptedEventRate_, and smproxy::AlarmParams::sendAlarms_.

138  {
139  // set defaults
142  }
struct AlarmParams alarmParamCopy_
void smproxy::Configuration::setDataRetrieverDefaults ( unsigned long  instanceNumber)
private

Definition at line 83 of file Configuration.cc.

References smproxy::DataRetrieverParams::allowMissingSM_, smproxy::DataRetrieverParams::connectTrySleepTime_, dataRetrieverParamCopy_, smproxy::DataRetrieverParams::headerRetryInterval_, smproxy::DataRetrieverParams::hostName_, smproxy::DataRetrieverParams::maxConnectionRetries_, pos, smproxy::DataRetrieverParams::retryInterval_, smproxy::DataRetrieverParams::sleepTimeIfIdle_, smproxy::DataRetrieverParams::smpsInstance_, and smproxy::DataRetrieverParams::smRegistrationList_.

84  {
85  dataRetrieverParamCopy_.smpsInstance_ = instanceNumber;
93  boost::posix_time::milliseconds(100);
94 
95  std::string tmpString(toolbox::net::getHostName());
96  // strip domainame
97  std::string::size_type pos = tmpString.find('.');
98  if (pos != std::string::npos) {
99  std::string basename = tmpString.substr(0,pos);
100  tmpString = basename;
101  }
103  }
SMRegistrationList smRegistrationList_
Definition: Configuration.h:30
stor::utils::Duration_t sleepTimeIfIdle_
Definition: Configuration.h:36
uint16_t size_type
struct DataRetrieverParams dataRetrieverParamCopy_
void smproxy::Configuration::setDQMArchivingDefaults ( )
private
void smproxy::Configuration::setDQMProcessingDefaults ( )
private
void smproxy::Configuration::setEventServingDefaults ( )
private

Definition at line 105 of file Configuration.cc.

References stor::EventServingParams::_DQMactiveConsumerTimeout, stor::EventServingParams::_DQMconsumerQueuePolicy, stor::EventServingParams::_DQMconsumerQueueSize, stor::EventServingParams::activeConsumerTimeout_, stor::EventServingParams::consumerQueuePolicy_, stor::EventServingParams::consumerQueueSize_, eventServeParamCopy_, and seconds().

void smproxy::Configuration::setQueueConfigurationDefaults ( )
private
void smproxy::Configuration::setupAlarmInfoSpaceParams ( xdata::InfoSpace *  infoSpace)
private

Definition at line 232 of file Configuration.cc.

References alarmParamCopy_, smproxy::AlarmParams::corruptedEventRate_, corruptedEventRate_, smproxy::AlarmParams::sendAlarms_, and sendAlarms_.

233  {
234  // copy the initial defaults to the xdata variables
237 
238  // bind the local xdata variables to the infospace
239  infoSpace->fireItemAvailable("sendAlarms", &sendAlarms_);
240  infoSpace->fireItemAvailable("corruptedEventRate", &corruptedEventRate_);
241  }
xdata::Boolean sendAlarms_
struct AlarmParams alarmParamCopy_
xdata::Double corruptedEventRate_
void smproxy::Configuration::setupDataRetrieverInfoSpaceParams ( xdata::InfoSpace *  infoSpace)
private

Definition at line 145 of file Configuration.cc.

References smproxy::DataRetrieverParams::allowMissingSM_, allowMissingSM_, smproxy::DataRetrieverParams::connectTrySleepTime_, connectTrySleepTime_, dataRetrieverParamCopy_, stor::utils::getXdataVector(), smproxy::DataRetrieverParams::headerRetryInterval_, headerRetryInterval_, smproxy::DataRetrieverParams::maxConnectionRetries_, maxConnectionRetries_, smproxy::DataRetrieverParams::retryInterval_, retryInterval_, smproxy::DataRetrieverParams::sleepTimeIfIdle_, sleepTimeIfIdle_, smproxy::DataRetrieverParams::smRegistrationList_, and smRegistrationList_.

146  {
147  // copy the initial defaults into the xdata variables
155 
156  // bind the local xdata variables to the infospace
157  infoSpace->fireItemAvailable("SMRegistrationList", &smRegistrationList_);
158  infoSpace->fireItemAvailable("allowMissingSM", &allowMissingSM_);
159  infoSpace->fireItemAvailable("maxConnectionRetries", &maxConnectionRetries_);
160  infoSpace->fireItemAvailable("connectTrySleepTime", &connectTrySleepTime_);
161  infoSpace->fireItemAvailable("headerRetryInterval", &headerRetryInterval_);
162  infoSpace->fireItemAvailable("retryInterval", &retryInterval_);
163  infoSpace->fireItemAvailable("sleepTimeIfIdle", &sleepTimeIfIdle_);
164  }
xdata::Boolean allowMissingSM_
SMRegistrationList smRegistrationList_
Definition: Configuration.h:30
xdata::UnsignedInteger32 connectTrySleepTime_
xdata::UnsignedInteger32 retryInterval_
stor::utils::Duration_t sleepTimeIfIdle_
Definition: Configuration.h:36
xdata::UnsignedInteger32 headerRetryInterval_
xdata::UnsignedInteger32 sleepTimeIfIdle_
struct DataRetrieverParams dataRetrieverParamCopy_
void getXdataVector(const std::vector< std::string > &, xdata::Vector< xdata::String > &)
Definition: Utils.cc:119
xdata::UnsignedInteger32 maxConnectionRetries_
xdata::Vector< xdata::String > smRegistrationList_
void smproxy::Configuration::setupDQMArchivingInfoSpaceParams ( xdata::InfoSpace *  infoSpace)
private

Definition at line 203 of file Configuration.cc.

References smproxy::DQMArchivingParams::archiveDQM_, archiveDQM_, smproxy::DQMArchivingParams::archiveIntervalDQM_, archiveIntervalDQM_, smproxy::DQMArchivingParams::archiveTopLevelFolder_, archiveTopLevelFolder_, dqmArchivingParamCopy_, smproxy::DQMArchivingParams::filePrefixDQM_, and filePrefixDQM_.

204  {
205  // copy the initial defaults to the xdata variables
210 
211  // bind the local xdata variables to the infospace
212  infoSpace->fireItemAvailable("archiveDQM", &archiveDQM_);
213  infoSpace->fireItemAvailable("archiveTopLevelFolder", &archiveTopLevelFolder_);
214  infoSpace->fireItemAvailable("archiveIntervalDQM", &archiveIntervalDQM_);
215  infoSpace->fireItemAvailable("filePrefixDQM", &filePrefixDQM_);
216  }
unsigned int archiveIntervalDQM_
Definition: Configuration.h:52
xdata::Boolean archiveDQM_
struct DQMArchivingParams dqmArchivingParamCopy_
xdata::String filePrefixDQM_
std::string archiveTopLevelFolder_
Definition: Configuration.h:50
xdata::String archiveTopLevelFolder_
xdata::Integer archiveIntervalDQM_
void smproxy::Configuration::setupDQMProcessingInfoSpaceParams ( xdata::InfoSpace *  infoSpace)
private

Definition at line 187 of file Configuration.cc.

References stor::DQMProcessingParams::collateDQM_, collateDQM_, stor::DQMProcessingParams::compressionLevelDQM_, compressionLevelDQM_, dqmProcessingParamCopy_, stor::DQMProcessingParams::readyTimeDQM_, readyTimeDQM_, stor::DQMProcessingParams::useCompressionDQM_, and useCompressionDQM_.

188  {
189  // copy the initial defaults to the xdata variables
194 
195  // bind the local xdata variables to the infospace
196  infoSpace->fireItemAvailable("collateDQM", &collateDQM_);
197  infoSpace->fireItemAvailable("readyTimeDQM", &readyTimeDQM_);
198  infoSpace->fireItemAvailable("useCompressionDQM", &useCompressionDQM_);
199  infoSpace->fireItemAvailable("compressionLevelDQM", &compressionLevelDQM_);
200  }
xdata::Boolean useCompressionDQM_
utils::Duration_t readyTimeDQM_
Definition: Configuration.h:63
xdata::Boolean collateDQM_
xdata::Integer compressionLevelDQM_
xdata::Integer readyTimeDQM_
struct stor::DQMProcessingParams dqmProcessingParamCopy_
void smproxy::Configuration::setupEventServingInfoSpaceParams ( xdata::InfoSpace *  infoSpace)
private

Definition at line 167 of file Configuration.cc.

References stor::EventServingParams::_DQMactiveConsumerTimeout, _DQMactiveConsumerTimeout, stor::EventServingParams::_DQMconsumerQueuePolicy, _DQMconsumerQueuePolicy, stor::EventServingParams::_DQMconsumerQueueSize, _DQMconsumerQueueSize, stor::EventServingParams::activeConsumerTimeout_, activeConsumerTimeout_, stor::EventServingParams::consumerQueuePolicy_, consumerQueuePolicy_, stor::EventServingParams::consumerQueueSize_, consumerQueueSize_, and eventServeParamCopy_.

168  {
169  // copy the initial defaults to the xdata variables
176 
177  // bind the local xdata variables to the infospace
178  infoSpace->fireItemAvailable("activeConsumerTimeout", &activeConsumerTimeout_);
179  infoSpace->fireItemAvailable("consumerQueueSize", &consumerQueueSize_);
180  infoSpace->fireItemAvailable("consumerQueuePolicy", &consumerQueuePolicy_);
181  infoSpace->fireItemAvailable("DQMactiveConsumerTimeout", &_DQMactiveConsumerTimeout);
182  infoSpace->fireItemAvailable("DQMconsumerQueueSize", &_DQMconsumerQueueSize);
183  infoSpace->fireItemAvailable("DQMconsumerQueuePolicy",&_DQMconsumerQueuePolicy);
184  }
xdata::Integer consumerQueueSize_
xdata::Integer _DQMconsumerQueueSize
struct stor::EventServingParams eventServeParamCopy_
xdata::Integer _DQMactiveConsumerTimeout
std::string consumerQueuePolicy_
Definition: Configuration.h:77
std::string _DQMconsumerQueuePolicy
Definition: Configuration.h:80
xdata::String _DQMconsumerQueuePolicy
utils::Duration_t activeConsumerTimeout_
Definition: Configuration.h:75
xdata::String consumerQueuePolicy_
xdata::Integer activeConsumerTimeout_
utils::Duration_t _DQMactiveConsumerTimeout
Definition: Configuration.h:78
void smproxy::Configuration::setupQueueConfigurationInfoSpaceParams ( xdata::InfoSpace *  infoSpace)
private

Definition at line 219 of file Configuration.cc.

References stor::utils::durationToSeconds(), smproxy::QueueConfigurationParams::monitoringSleepSec_, monitoringSleepSec_, queueConfigParamCopy_, smproxy::QueueConfigurationParams::registrationQueueSize_, and registrationQueueSize_.

220  {
221  // copy the initial defaults to the xdata variables
225 
226  // bind the local xdata variables to the infospace
227  infoSpace->fireItemAvailable("registrationQueueSize", &registrationQueueSize_);
228  infoSpace->fireItemAvailable("monitoringSleepSec", &monitoringSleepSec_);
229  }
xdata::Double monitoringSleepSec_
struct QueueConfigurationParams queueConfigParamCopy_
xdata::UnsignedInteger32 registrationQueueSize_
double durationToSeconds(Duration_t const &)
Definition: Utils.h:147
stor::utils::Duration_t monitoringSleepSec_
Definition: Configuration.h:62
void smproxy::Configuration::updateAllParams ( )
void smproxy::Configuration::updateLocalAlarmData ( )
private
void smproxy::Configuration::updateLocalDataRetrieverData ( )
private

Definition at line 243 of file Configuration.cc.

References smproxy::DataRetrieverParams::allowMissingSM_, allowMissingSM_, smproxy::DataRetrieverParams::connectTrySleepTime_, connectTrySleepTime_, dataRetrieverParamCopy_, stor::utils::getStdVector(), smproxy::DataRetrieverParams::headerRetryInterval_, headerRetryInterval_, smproxy::DataRetrieverParams::maxConnectionRetries_, maxConnectionRetries_, smproxy::DataRetrieverParams::retryInterval_, retryInterval_, smproxy::DataRetrieverParams::sleepTimeIfIdle_, sleepTimeIfIdle_, smproxy::DataRetrieverParams::smRegistrationList_, and smRegistrationList_.

Referenced by updateAllParams().

244  {
252  boost::posix_time::milliseconds(sleepTimeIfIdle_);
253  }
xdata::Boolean allowMissingSM_
SMRegistrationList smRegistrationList_
Definition: Configuration.h:30
xdata::UnsignedInteger32 connectTrySleepTime_
xdata::UnsignedInteger32 retryInterval_
stor::utils::Duration_t sleepTimeIfIdle_
Definition: Configuration.h:36
xdata::UnsignedInteger32 headerRetryInterval_
void getStdVector(xdata::Vector< xdata::String > &, std::vector< std::string > &)
Definition: Utils.cc:105
xdata::UnsignedInteger32 sleepTimeIfIdle_
struct DataRetrieverParams dataRetrieverParamCopy_
xdata::UnsignedInteger32 maxConnectionRetries_
xdata::Vector< xdata::String > smRegistrationList_
void smproxy::Configuration::updateLocalDQMArchivingData ( )
private

Definition at line 286 of file Configuration.cc.

References smproxy::DQMArchivingParams::archiveDQM_, archiveDQM_, smproxy::DQMArchivingParams::archiveIntervalDQM_, archiveIntervalDQM_, smproxy::DQMArchivingParams::archiveTopLevelFolder_, archiveTopLevelFolder_, dqmArchivingParamCopy_, smproxy::DQMArchivingParams::filePrefixDQM_, and filePrefixDQM_.

Referenced by updateAllParams().

void smproxy::Configuration::updateLocalDQMProcessingData ( )
private

Definition at line 277 of file Configuration.cc.

References stor::DQMProcessingParams::collateDQM_, collateDQM_, stor::DQMProcessingParams::compressionLevelDQM_, compressionLevelDQM_, dqmProcessingParamCopy_, stor::DQMProcessingParams::readyTimeDQM_, readyTimeDQM_, seconds(), stor::DQMProcessingParams::useCompressionDQM_, and useCompressionDQM_.

Referenced by updateAllParams().

void smproxy::Configuration::updateLocalEventServingData ( )
private

Definition at line 255 of file Configuration.cc.

References stor::EventServingParams::_DQMactiveConsumerTimeout, _DQMactiveConsumerTimeout, stor::EventServingParams::_DQMconsumerQueuePolicy, _DQMconsumerQueuePolicy, stor::EventServingParams::_DQMconsumerQueueSize, _DQMconsumerQueueSize, stor::EventServingParams::activeConsumerTimeout_, activeConsumerTimeout_, stor::EventServingParams::consumerQueuePolicy_, consumerQueuePolicy_, stor::EventServingParams::consumerQueueSize_, consumerQueueSize_, eventServeParamCopy_, and seconds().

Referenced by updateAllParams().

256  {
265 
266  // validation
268  {
270  }
272  {
274  }
275  }
xdata::Integer consumerQueueSize_
double seconds()
xdata::Integer _DQMconsumerQueueSize
struct stor::EventServingParams eventServeParamCopy_
xdata::Integer _DQMactiveConsumerTimeout
std::string consumerQueuePolicy_
Definition: Configuration.h:77
std::string _DQMconsumerQueuePolicy
Definition: Configuration.h:80
xdata::String _DQMconsumerQueuePolicy
utils::Duration_t activeConsumerTimeout_
Definition: Configuration.h:75
xdata::String consumerQueuePolicy_
xdata::Integer activeConsumerTimeout_
utils::Duration_t _DQMactiveConsumerTimeout
Definition: Configuration.h:78
void smproxy::Configuration::updateLocalQueueConfigurationData ( )
private

Member Data Documentation

xdata::Integer smproxy::Configuration::_DQMactiveConsumerTimeout
private
xdata::String smproxy::Configuration::_DQMconsumerQueuePolicy
private
xdata::Integer smproxy::Configuration::_DQMconsumerQueueSize
private
xdata::Integer smproxy::Configuration::activeConsumerTimeout_
private
struct AlarmParams smproxy::Configuration::alarmParamCopy_
private
xdata::Boolean smproxy::Configuration::allowMissingSM_
private
xdata::Boolean smproxy::Configuration::archiveDQM_
private
xdata::Integer smproxy::Configuration::archiveIntervalDQM_
private
xdata::String smproxy::Configuration::archiveTopLevelFolder_
private
xdata::Boolean smproxy::Configuration::collateDQM_
private
xdata::Integer smproxy::Configuration::compressionLevelDQM_
private
xdata::UnsignedInteger32 smproxy::Configuration::connectTrySleepTime_
private
xdata::String smproxy::Configuration::consumerQueuePolicy_
private
xdata::Integer smproxy::Configuration::consumerQueueSize_
private
xdata::Double smproxy::Configuration::corruptedEventRate_
private

Definition at line 226 of file Configuration.h.

Referenced by setupAlarmInfoSpaceParams(), and updateLocalAlarmData().

struct DataRetrieverParams smproxy::Configuration::dataRetrieverParamCopy_
private
struct DQMArchivingParams smproxy::Configuration::dqmArchivingParamCopy_
private
struct stor::DQMProcessingParams smproxy::Configuration::dqmProcessingParamCopy_
private
struct stor::EventServingParams smproxy::Configuration::eventServeParamCopy_
private
xdata::String smproxy::Configuration::filePrefixDQM_
private
boost::mutex smproxy::Configuration::generalMutex_
mutableprivate

Definition at line 195 of file Configuration.h.

Referenced by actionPerformed(), and updateAllParams().

xdata::UnsignedInteger32 smproxy::Configuration::headerRetryInterval_
private
xdata::UnsignedInteger32 smproxy::Configuration::maxConnectionRetries_
private
xdata::Double smproxy::Configuration::monitoringSleepSec_
private
struct QueueConfigurationParams smproxy::Configuration::queueConfigParamCopy_
private
xdata::Integer smproxy::Configuration::readyTimeDQM_
private
xdata::UnsignedInteger32 smproxy::Configuration::registrationQueueSize_
private
xdata::UnsignedInteger32 smproxy::Configuration::retryInterval_
private
xdata::Boolean smproxy::Configuration::sendAlarms_
private

Definition at line 225 of file Configuration.h.

Referenced by setupAlarmInfoSpaceParams(), and updateLocalAlarmData().

xdata::UnsignedInteger32 smproxy::Configuration::sleepTimeIfIdle_
private
xdata::Vector<xdata::String> smproxy::Configuration::smRegistrationList_
private
xdata::Boolean smproxy::Configuration::useCompressionDQM_
private