Kea  1.9.9-git
logging_info.h
Go to the documentation of this file.
1 // Copyright (C) 2014-2019 Internet Systems Consortium, Inc. ("ISC")
2 //
3 // This Source Code Form is subject to the terms of the Mozilla Public
4 // License, v. 2.0. If a copy of the MPL was not distributed with this
5 // file, You can obtain one at http://mozilla.org/MPL/2.0/.
6 
7 #ifndef DHCPSRV_LOGGING_INFO_H
8 #define DHCPSRV_LOGGING_INFO_H
9 
10 #include <log/logger_level.h>
12 #include <cc/cfg_to_element.h>
13 #include <cc/user_context.h>
14 #include <stdint.h>
15 #include <vector>
16 
17 namespace isc {
18 namespace process {
19 
24 public:
25 
30  std::string output_;
31 
33  int maxver_;
34 
36  uint64_t maxsize_;
37 
39  bool flush_;
40 
43  std::string pattern_;
44 
50  bool equals(const LoggingDestination& other) const;
51 
54  : output_("stdout"), maxver_(1), maxsize_(10240000), flush_(true), pattern_("") {
55  }
56 
60  virtual isc::data::ElementPtr toElement() const;
61 };
62 
82 public:
83 
85  std::string name_;
86 
89 
94 
96  std::vector<LoggingDestination> destinations_;
97 
99  LoggingInfo();
100 
103  destinations_.clear();
104  }
105 
111  bool equals(const LoggingInfo& other) const;
112 
118  bool operator==(const LoggingInfo& other) const {
119  return (equals(other));
120  }
121 
127  bool operator!=(const LoggingInfo& other) const {
128  return (!equals(other));
129  }
130 
133 
137  virtual isc::data::ElementPtr toElement() const;
138 };
139 
141 typedef std::vector<isc::process::LoggingInfo> LoggingInfoStorage;
142 
143 }
144 }
145 
146 #endif // DHCPSRV_LOGGING_INFO_H
LoggingDestination()
Default constructor.
Definition: logging_info.h:53
void clearDestinations()
Removes logging destinations.
Definition: logging_info.h:102
std::vector< LoggingDestination > destinations_
specific logging destinations
Definition: logging_info.h:96
Base class for user context.
Definition: user_context.h:22
boost::shared_ptr< Element > ElementPtr
Definition: data.h:20
bool equals(const LoggingInfo &other) const
Compares two objects for equality.
Definition: logging_info.cc:69
bool equals(const LoggingDestination &other) const
Compares two objects for equality.
Definition: logging_info.cc:19
std::vector< isc::process::LoggingInfo > LoggingInfoStorage
storage for logging information in log4cplus format
Definition: logging_info.h:141
structure that describes one logging entry
Definition: logging_info.h:81
isc::log::LoggerSpecification toSpec() const
Converts logger configuration to a spec.
std::string pattern_
defines the log format pattern It dictates what additional elements are output
Definition: logging_info.h:43
std::string output_
defines logging destination output
Definition: logging_info.h:30
Abstract class for configuration Cfg_* classes.
uint64_t maxsize_
Maximum log file size.
Definition: logging_info.h:36
Severity
Severity Levels.
Definition: logger_level.h:23
LoggingInfo()
Default constructor.
Definition: logging_info.cc:45
Defines single logging destination.
Definition: logging_info.h:23
virtual isc::data::ElementPtr toElement() const
Unparse a configuration object.
Definition: logging_info.cc:28
Defines the logger used by the top-level component of kea-dhcp-ddns.
bool operator==(const LoggingInfo &other) const
Compares two objects for equality.
Definition: logging_info.h:118
isc::log::Severity severity_
describes logging severity
Definition: logging_info.h:88
virtual isc::data::ElementPtr toElement() const
Unparse a configuration object.
int debuglevel_
debuglevel (used when severity_ == DEBUG)
Definition: logging_info.h:93
bool operator!=(const LoggingInfo &other) const
Compares two objects for inequality.
Definition: logging_info.h:127
std::string name_
logging name
Definition: logging_info.h:85
int maxver_
Maximum number of log files in rotation.
Definition: logging_info.h:33
bool flush_
Immediate flush.
Definition: logging_info.h:39