00001 #ifndef _IT_DB_CONFIG_H_
00002 #define _IT_DB_CONFIG_H_
00003
00004
00005
00006
00007 #include <it_dsa/vector.h>
00008 #include <it_bus/types.h>
00009 #include <it_bus/api_defines.h>
00010 #include <it_bus/bus.h>
00011 #include <omg/orb.hh>
00012 #include <orbix/configuration.hh>
00013 #include <it_bus_pdk/db_exception.h>
00014 #include <it_bus/logging_defs.h>
00015
00016
00017
00018 struct __db;
00019 typedef struct __db DB;
00020 struct __db_env;
00021 typedef struct __db_env DB_ENV;
00022 struct __dbc;
00023 typedef struct __dbc DBC;
00024
00025 namespace IT_Bus
00026 {
00027 class DBEnv;
00028
00029 class IT_DBM_API DBConfig
00030 {
00031 public:
00032
00033 DBConfig(
00034 IT_Bus::Bus_ptr bus
00035 ) throw((DBException));
00036
00037 virtual
00038 ~DBConfig();
00039
00040 virtual void
00041 init_configuration();
00042
00043 virtual void
00044 init_env();
00045
00046 virtual DBEnv*
00047 get_env()
00048 throw((DBException));
00049
00050 virtual IT_Bus::Bus_ptr
00051 get_bus();
00052
00053
00054
00055 virtual const char*
00056 get_env_home();
00057
00058 virtual const char*
00059 get_env_name();
00060
00061 virtual IT_Config::ConfigList*
00062 get_replica_list();
00063
00064 virtual IT_Bool
00065 is_replicated();
00066
00067 virtual IT_Bool
00068 is_master();
00069
00070 virtual unsigned int
00071 get_pre_sync_wait_period();
00072
00073 virtual unsigned int
00074 get_sync_retry_attempts();
00075
00076 virtual IT_Long
00077 get_priority();
00078
00079 virtual IT_Long
00080 get_port();
00081
00082 virtual const char*
00083 get_replica_name();
00084
00085 virtual unsigned int
00086 get_db_open_retry_attempts();
00087
00088 virtual unsigned int
00089 get_inter_db_open_sleep_period();
00090
00091 virtual unsigned int
00092 get_ping_retry_interval();
00093
00094 virtual unsigned int
00095 get_max_ping_retries();
00096
00097 virtual unsigned int
00098 get_ping_lifetime();
00099
00100 virtual unsigned int
00101 get_roundtrip_timeout();
00102
00103 virtual unsigned int
00104 get_election_timeout();
00105
00106 virtual unsigned int
00107 get_cnxn_creation_timeout();
00108
00109 virtual const char*
00110 get_errfile_name();
00111
00112 virtual IT_Bool
00113 get_verbose_logging();
00114
00115 virtual IT_Bool
00116 get_download_files();
00117
00118 virtual unsigned long
00119 get_checkpoint_period();
00120
00121 virtual unsigned long
00122 get_max_buffered_msgs();
00123
00124 virtual unsigned long
00125 get_max_msg_buffer_size();
00126
00127 virtual IT_Bool
00128 get_allow_minority_master();
00129
00130 virtual IT_Bool
00131 get_auto_demotion();
00132
00133 virtual const char*
00134 get_orb_scope();
00135
00136 void
00137 mark_as_write_operations(
00138 const IT_Vector<IT_Bus::String>& operations,
00139 const IT_Bus::QName& service,
00140 const IT_Bus::String& port,
00141 const IT_Bus::String& wsdl_url
00142 ) throw((DBException));
00143
00144 private:
00145
00146 IT_Bus::Bus_var m_bus;
00147 DBEnv* m_db_env;
00148 CORBA::String_var m_db_home;
00149 CORBA::String_var m_db_env_name;
00150 CORBA::String_var m_replica_name;
00151 CORBA::String_var m_orb_scope;
00152 IT_Config::ConfigList_var m_replicas_from_config;
00153 IT_Long m_priority;
00154 IT_Long m_port;
00155 IT_Long m_db_open_retry_attempts;
00156 IT_Long m_inter_db_open_sleep_period;
00157 IT_Long m_pre_sync_wait_period;
00158 IT_Long m_sync_retry_attempts;
00159 IT_Long m_max_ping_retries;
00160 IT_Long m_ping_lifetime;
00161 IT_Long m_ping_retry_interval;
00162 IT_Long m_roundtrip_timeout;
00163 IT_Long m_election_timeout;
00164 IT_Long m_cnxn_creation_timeout;
00165 CORBA::String_var m_errfile_name;
00166 IT_Bool m_verbose_logging;
00167 IT_Bool m_allow_minority_master;
00168 IT_Bool m_auto_demotion;
00169 IT_Bool m_download_files;
00170 IT_Long m_checkpoint_period;
00171 IT_Long m_max_buffered_msgs;
00172 IT_Long m_max_msg_buffer_size;
00173
00174
00175 DBConfig(const DBConfig&);
00176 void operator=(const DBConfig&);
00177
00178 IT_DECLARE_BUS_LOGGER_MEM
00179 };
00180 }
00181
00182 #endif