Implemented logic for ability to activate webcheck through signals.
[bpdyndnsd] / src / logger.h
CommitLineData
254bbf53
BS
1/** @file
2 * @brief Logger class header. This class represents the Logging facility.
3 *
4 *
5 *
6 * @copyright Intra2net AG
7 * @license GPLv2
8*/
9
10#ifndef LOGGER_H
11#define LOGGER_H
12
88a594e8 13#include <string>
2dd2db3e 14#include <list>
7f3ced8c 15
88a594e8
BS
16#include <boost/program_options.hpp>
17#include <boost/shared_ptr.hpp>
27baf279 18
31af6a2e
BS
19#include <curl/curl.h>
20
254bbf53
BS
21class Logger
22{
88a594e8 23
8bca3c5d 24private:
88a594e8 25
8bca3c5d
BS
26 int Loglevel;
27 bool Syslog;
cbbdeb6c
BS
28 std::string ExternalWarningLog;
29 int ExternalWarningLevel;
254bbf53
BS
30
31public:
32
88a594e8
BS
33 typedef boost::shared_ptr<Logger> Ptr;
34
254bbf53
BS
35 Logger();
36
37 ~Logger();
38
ce70569b 39 void log_notice(const std::string& msg) const;
59c8d63c 40
cbbdeb6c 41 void log_warning(const std::string& msg, int loglevel) const;
59c8d63c 42
ce70569b 43 void log_error(const std::string& msg) const;
59c8d63c 44
e8d4a6f8 45 void set_loglevel(const int _loglevel);
8bca3c5d 46
b38684ce 47 int get_loglevel() const;
8bca3c5d 48
e8d4a6f8 49 void set_syslog(const bool _syslog);
8bca3c5d 50
b38684ce 51 bool get_syslog() const;
8bca3c5d 52
cbbdeb6c 53 void set_log_facility(const int _loglevel, const bool _syslog, const std::string& _external_error_log, const int _external_error_level);
8bca3c5d 54
92beaba3 55 void print_usage(const boost::shared_ptr<boost::program_options::options_description> opt_desc) const;
254bbf53 56
b38684ce 57 void print_version() const;
254bbf53 58
b38684ce 59 void print_cmd_parsed() const;
254bbf53 60
b38684ce 61 void print_conf_files_parsed() const;
667c672c 62
e8d4a6f8 63 void print_destructor_call(const std::string& _class) const;
254bbf53 64
e8d4a6f8 65 void print_constructor_call(const std::string& _class) const;
254bbf53 66
e8d4a6f8 67 void print_update_service(const std::string& service) const;
254bbf53 68
e8d4a6f8 69 void print_unknown_cmd_option(const std::string& unknown_option) const;
254bbf53 70
e8d4a6f8 71 void print_unknown_protocol(const std::string& protocol) const;
254bbf53 72
e8d4a6f8 73 void print_load_service_conf(const std::string& filename) const;
254bbf53 74
e8d4a6f8 75 void print_load_main_conf(const std::string& filename) const;
254bbf53 76
8a00a649 77 void print_unknown_service_conf_option(const std::string& service_conf_file, const std::string& unknown_option) const;
254bbf53 78
e8d4a6f8 79 void print_unknown_main_conf_option(const std::string& unknown_option) const;
254bbf53 80
e8d4a6f8 81 void print_error_opening_r(const std::string& filename) const;
667c672c 82
e8d4a6f8 83 void print_error_opening_rw(const std::string& filename) const;
254bbf53 84
e8d4a6f8 85 void print_error_config_path(const std::string& config_path) const;
254bbf53 86
e8d4a6f8 87 void print_conf_loaded(const std::string& config_path) const;
254bbf53 88
e8d4a6f8 89 void print_conf_not_loaded(const std::string& config_path) const;
254bbf53 90
b38684ce 91 void print_missing_cmd_service_option() const;
388f4ab0 92
8a00a649
BS
93 void print_missing_service_conf_option(const std::string& service_conf_file) const;
94
e8d4a6f8 95 void print_runnig_as_daemon(const int pid) const;
388f4ab0 96
e8d4a6f8 97 void print_daemon_mode(const bool daemon_mode) const;
388f4ab0 98
b38684ce 99 void print_error_fork() const;
388f4ab0 100
e8d4a6f8 101 void print_pid_found(const int pid) const;
388f4ab0 102
e8d4a6f8 103 void print_process_already_running(const int pid) const;
c5675c01 104
b38684ce 105 void print_caught_sigterm() const;
c5675c01 106
b38684ce 107 void print_caught_siguser1() const;
c5675c01 108
b38684ce 109 void print_caught_sighup() const;
8bca3c5d 110
64ff14c3
BS
111 void print_caught_siguser2() const;
112
113 void print_caught_sigrtmin() const;
114
e8d4a6f8 115 void print_error_setting_signal(const std::string& signal) const;
8bca3c5d 116
b38684ce 117 void print_init_log_facility() const;
8bca3c5d 118
b38684ce 119 void print_offline_mode() const;
27baf279 120
b38684ce 121 void print_serialized_objects_success() const;
27baf279 122
b38684ce 123 void print_deserialized_objects_success() const;
27baf279 124
62df5f33 125 void print_service_object(const std::string& message, const std::string& protocol, const std::string& hostname, const std::string& login, const std::string& password, const int update_interval, const int max_updates_within_interval, const int dns_cache_ttl , const std::string& actual_ip, std::list<time_t> lastupdated) const;
5d38cfe6 126
ce70569b 127 void print_exception_serialize(const std::string& errMsg) const;
667c672c 128
ce70569b 129 void print_exception_deserialize(const std::string& errMsg) const;
667c672c 130
e8d4a6f8 131 void print_error_kill_child(const int pid) const;
667c672c 132
e8d4a6f8 133 void print_child_killed(const int pid) const;
584b9407 134
e8d4a6f8 135 void print_no_object_file(const std::string& object_file) const;
0665b239 136
e8d4a6f8 137 void print_hostname(const std::string& hostname) const;
0665b239 138
c3dea5dc 139 void print_own_ipv4(const std::string& ip_addr_v4, const std::string& hostname) const;
019dc0d9 140
c3dea5dc 141 void print_own_ipv6(const std::string& ip_addr_v6, const std::string& hostname) const;
0665b239 142
ce70569b 143 void print_error_hostname_to_ip(const std::string& errMsg, const std::string& hostname) const;
68c6b4af 144
e8d4a6f8 145 void print_update_service_successful(const std::string& service) const;
1c0908b5
BS
146
147 void print_webcheck_no_ip() const;
148
1d2e2f56
BS
149 void print_no_wan_ip() const;
150
e8d4a6f8 151 void print_webcheck_url_connection_problem(const char * curl_err_buff, const std::string& url) const;
1c0908b5 152
e8d4a6f8 153 void print_webcheck_error(const char * curl_err_buff, const std::string& url) const;
1c0908b5 154
e8d4a6f8 155 void print_received_curl_data(const std::string& curl_data) const;
1c0908b5 156
e8d4a6f8 157 void print_regex_found_ip(const std::string& ip) const;
1c0908b5 158
e8d4a6f8 159 void print_regex_ip_not_found(const std::string& data) const;
3c0cd271 160
e8d4a6f8 161 void print_multiple_cmd_option(const std::string& message) const;
3c0cd271 162
8a00a649
BS
163 void print_multiple_service_conf_option(const std::string& service_conf_file, const std::string& message) const;
164
165 void print_multiple_main_conf_option(const std::string& main_conf_file, const std::string& message) const;
166
08a5a621 167 void print_update_not_allowed(const time_t current_time, const time_t old_time, const int MaxUpdatesWithinInterval, const std::string& service) const;
3c0cd271
BS
168
169 void print_update_service_failure(const std::string& service) const;
e304c27b
BS
170
171 void print_starting_shutdown() const;
172
173 void print_shutdown_succeeded() const;
174
175 void print_shutdown_parent_succeeded() const;
176
177 void print_starting_shutdown_parent() const;
0541cd71
BS
178
179 void print_recheck_dns_entry(const std::string& hostname, const int lastupdated, const int dns_cache_ttl, const int current_time) const;
180
8a00a649
BS
181 void print_missing_cmd_proxy_option() const;
182
183 void print_missing_conf_proxy_option(const std::string& main_conf_filename) const;
2dd2db3e
BS
184
185 void print_no_domain_part(const std::string& hostname) const;
d5a516ba 186
c730deea 187 void print_curl_error_init(const std::string& err_msg, const CURLcode curl_err_code) const;
31af6a2e
BS
188
189 void print_curl_error(const std::string& url, const CURLcode curl_err_code) const;
d5a516ba 190
c730deea 191 void print_curl_error(const std::string& url, const CURLcode curl_err_code, const char * curl_err_buff) const;
d5a516ba
BS
192
193 void print_curl_data(const std::string& curl_writedata_buff) const;
194
a03fb896 195 void print_service_not_authorized(const std::string& service, const std::string& username, const std::string& password) const;
d5a516ba 196
31af6a2e
BS
197 void print_service_not_initialized(const std::string& service) const;
198
d5a516ba 199 void print_http_status_code(const std::string& url, const long http_code) const;
b6228761
BS
200
201 void print_update_failure(const std::string& url, const std::string& curl_data) const;
1a00eac6 202
b17fd691
BS
203 void print_update_failure(const std::string& url, const long http_status_code) const;
204
1a00eac6 205 void print_invalid_hostname(const std::string& hostname) const;
4ef36a12
BS
206
207 void print_ip_is_local(const std::string& ip) const;
208
209 void print_regex_match(const std::string& regex, const std::string& matching_string) const;
a78b44b5
BS
210
211 void print_no_regex_match(const std::string& regex, const std::string& not_matching_string) const;
212
213 void print_could_not_parse_received_data(const std::string& curl_data) const;
214
215 void print_could_not_get_initial_gnudip_data() const;
216
217 void print_gnudip_requires_servername() const;
a2f5be94
BS
218
219 void print_exception_md5_sum(const std::string& what) const;
a03fb896
BS
220
221 void print_network_error(const std::string& what) const;
222
223 void print_undefined_protocol_error(const std::string& protocol, const std::string& error) const;
d77313ea
BS
224
225 void print_error_external_logging(const std::string& external_prog) const;
c1b8cb79
BS
226
227 void print_error_parsing_config_file(const std::string& filename, const std::string& error) const;
228
229 void print_error_parsing_cmd(const std::string& error) const;
2b0f7c11 230
c730deea 231 void print_webcheck_exceed_interval( const time_t last_webcheck, const int webcheck_interval, const time_t current_time ) const;
1af7c124 232
c730deea 233 void print_check_service_update(const std::string& hostname, const time_t current_time, const time_t lastupdated) const;
1af7c124
BS
234
235 void print_cached_dns_entry(const std::string& hostname, const std::string& ip_dns_recheck, const std::string& ip_last_update, const std::string& ip_host) const;
236
237 void print_update_service_firttime(const std::string& hostname, const std::string& ip_dns_recheck, const std::string& ip_host) const;
238
08a5a621 239 void print_update_service(const std::string& hostname, const std::string& ip_dns_recheck, const std::string& ip_last_update, const std::string& ip_host, const time_t lastupdated) const;
1af7c124 240
08a5a621 241 void print_update_service_ttl_expired(const std::string& hostname, const std::string& ip_dns_recheck, const std::string& ip_last_update, const std::string& ip_host, const time_t lastupdated, const int dns_cache_ttl, const time_t current_time) const;
1af7c124 242
08a5a621 243 void print_update_service_ttl_not_expired(const std::string& hostname, const std::string& ip_dns_recheck, const std::string& ip_last_update, const std::string& ip_host, const time_t lastupdated, const int dns_cache_ttl, const time_t current_time) const;
1af7c124 244
08a5a621 245 void print_no_update_needed(const std::string& hostname, const std::string& ip_dns_recheck, const std::string& ip_last_update, const std::string& ip_host, const time_t lastupdated) const;
1d2e2f56
BS
246
247 void print_error_getting_local_wan_ip(const std::string& system_call, const std::string& error) const;
254bbf53
BS
248};
249
250#endif