summary |
shortlog | log |
commit |
commitdiff |
tree
first ⋅ prev ⋅ next
Guilherme Maciel Ferreira [Mon, 14 Mar 2011 12:42:55 +0000]
Re-organizing the headers files in order to...
- avoid hidden dependencies, by including the class header file first.
- keep a inclusion order of C headers, C++ headers, Boost headers and Project headers.
- be relative to the source directory, this keeps clear which package the source file belongs.
Guilherme Maciel Ferreira [Mon, 14 Mar 2011 12:44:52 +0000]
Explicit constructor to avoid implicit constructor-conversions-calls
Guilherme Maciel Ferreira [Fri, 11 Mar 2011 10:02:15 +0000]
PingScheduler now pings hosts IPs cyclically
- included a DNS resolver member variable to keep track of resolved IPs
- PingScheduler's constructor takes specific arguments instead of a generic Host object, this states clear which data the PingScheduler needs
Guilherme Maciel Ferreira [Fri, 11 Mar 2011 09:26:59 +0000]
Bring aboard the first scratch of a DNS resolver
- given a host DNS, this class resolves and keeps a list of IPs for that host
Guilherme Maciel Ferreira [Fri, 11 Mar 2011 09:48:39 +0000]
Aesthetic change to header files according to the project standard
Guilherme Maciel Ferreira [Thu, 10 Mar 2011 10:22:43 +0000]
Code improvements on BoostPinger
- included an assert to make sure a non-empty address is sent to the socket
- better names for the handlers methods
Guilherme Maciel Ferreira [Thu, 10 Mar 2011 14:34:25 +0000]
Moved Host class from ping directory to config directory, because it is a configuration item
Guilherme Maciel Ferreira [Thu, 10 Mar 2011 10:26:09 +0000]
Added TODO file, including known bugs report
Guilherme Maciel Ferreira [Thu, 10 Mar 2011 10:21:00 +0000]
More descriptions of the configuration in the Readme file
Guilherme Maciel Ferreira [Wed, 9 Mar 2011 09:40:34 +0000]
The echo reply timeout can be configured through parameter to BoostPinger
Guilherme Maciel Ferreira [Wed, 9 Mar 2011 08:47:23 +0000]
Renamed PingCheck class to PingScheduler.
- this name describes better the main purpose behind this class, which is to call the pinger in configured intervals
Guilherme Maciel Ferreira [Tue, 8 Mar 2011 17:56:29 +0000]
The application now pings many hosts in parallel
- uses an asynchronous approach, based on boost::asio::io_service::run() loop and asynchronous timers
Guilherme Maciel Ferreira [Tue, 8 Mar 2011 17:52:14 +0000]
Attribute renamed according to the code conventions
Guilherme Maciel Ferreira [Tue, 8 Mar 2011 17:51:37 +0000]
Included a section explaining the basics of the code
Guilherme Maciel Ferreira [Tue, 8 Mar 2011 10:14:28 +0000]
Code improvements
- stratified some functionalities into other methods;
- const-correctness
- added variables to clarify code
Guilherme Maciel Ferreira [Tue, 8 Mar 2011 09:01:53 +0000]
Removed unused class: PingManager
Guilherme Maciel Ferreira [Mon, 7 Mar 2011 15:35:45 +0000]
Removed unused header files
Guilherme Maciel Ferreira [Mon, 7 Mar 2011 14:30:28 +0000]
Fixed assertion range on times_to_ping
Guilherme Maciel Ferreira [Mon, 7 Mar 2011 09:17:18 +0000]
Changed integer types from std::size_t to uint, where it is required ordinary numbers
Guilherme Maciel Ferreira [Fri, 4 Mar 2011 16:22:51 +0000]
More information in the Readme file
Guilherme Maciel Ferreira [Fri, 4 Mar 2011 15:14:59 +0000]
The app reads a list of hosts instead of just one
Caveat: it pings the host sequentially, this is not the desirable behavior
Guilherme Maciel Ferreira [Thu, 3 Mar 2011 16:33:11 +0000]
Removed all namespace's "using" from header files (check C++ Coding Standards #59)
- writing headers with full namespace qualifiers to avoid type collision
- writing "using" only in implementation files to save namespace qualifier writing
Guilherme Maciel Ferreira [Thu, 3 Mar 2011 16:30:11 +0000]
Renamed config directory to conf, in order to avoid confusion with the directory name inside src
Guilherme Maciel Ferreira [Thu, 3 Mar 2011 15:15:10 +0000]
Moved ICMP abstraction classes to the icmp directory, leaving the ping directory only for ping classes
Guilherme Maciel Ferreira [Thu, 3 Mar 2011 10:38:24 +0000]
Moved PingCheck class to its own file, replaced the old one with a new semantic.
Guilherme Maciel Ferreira [Wed, 2 Mar 2011 16:53:00 +0000]
The program now pings in configured intervals
- the code is functional, but requires improvements!
Guilherme Maciel Ferreira [Wed, 2 Mar 2011 16:51:47 +0000]
Organizing the member functions according to the IPv4 header description
Guilherme Maciel Ferreira [Wed, 2 Mar 2011 16:50:32 +0000]
Avoiding unamed variables (they kill readability)
Guilherme Maciel Ferreira [Tue, 1 Mar 2011 15:01:57 +0000]
Pinger interface now allows to specify the number of pings to perform
Guilherme Maciel Ferreira [Tue, 1 Mar 2011 14:58:00 +0000]
Defined a rule for variable and constant numeric types
- using std::size_t for ordinary integers, those that do not impose size constraints
- using uint32_t, uint16_t or uint_8_t for integers which require specific sizes
Guilherme Maciel Ferreira [Mon, 28 Feb 2011 13:59:17 +0000]
Created an ICMP packet class abstraction and modularizing the BoostPinger
- Hide the ICMP packet management from BoostPinger class
- Split functionality in other methods (e.g send_echo_request() and print_echo_reply()
Guilherme Maciel Ferreira [Mon, 28 Feb 2011 10:49:31 +0000]
The method BoostPinger::get_identifier() is not static anymore, this allows to have more than one BoostPinger object at the same time
Guilherme Maciel Ferreira [Mon, 28 Feb 2011 10:30:47 +0000]
Renamed IcmpBody to IcmpData according to the RFC 792 (Echo or Echo Reply Message section)
Guilherme Maciel Ferreira [Mon, 28 Feb 2011 09:06:00 +0000]
Changed the ping() method interface, which requires just a destination string instead of a whole Host object
Guilherme Maciel Ferreira [Mon, 28 Feb 2011 08:31:09 +0000]
The BoostPinger now pings N times, instead of infinite pinging
- moved the io_service calls to inside the BoostPinger
- splited the BoostPinger::start_send(), the code responsible to send is inside BoostPinger::send()
Guilherme Maciel Ferreira [Fri, 25 Feb 2011 11:10:30 +0000]
Renamed the ipv4_header files to ipv4header, removed the '_' to keep the project standard
Guilherme Maciel Ferreira [Fri, 25 Feb 2011 11:10:30 +0000]
Renamed the ipv4_header files to ipv4header, removed the '_' to keep the project standard
Guilherme Maciel Ferreira [Fri, 25 Feb 2011 11:01:05 +0000]
Read the interval between each ping to the host
Guilherme Maciel Ferreira [Fri, 25 Feb 2011 10:56:32 +0000]
Refactored the checksum calculation and IcmpHeader class
- Included the checksum in the IcmpHeader constructor
- Created a type for ICMP package body, namely Icmpbody
- Transformed the compute_checksum template function into a template class, ChecksumCalculator, and defined an specialization type, namely IcmpChecksumCalculator
Guilherme Maciel Ferreira [Fri, 25 Feb 2011 10:32:02 +0000]
Renamed the icmp_header files to icmpheader, removed the '_' to keep the project standard
Guilherme Maciel Ferreira [Thu, 24 Feb 2011 15:13:33 +0000]
Added a constructor with arguments and reinforce the "ICMP type" variable's type
Guilherme Maciel Ferreira [Thu, 24 Feb 2011 14:23:00 +0000]
The header classes operate on specific data sizes, thus using types with named sizes on it states clear which size of the data is expected
Guilherme Maciel Ferreira [Thu, 24 Feb 2011 13:58:54 +0000]
Keep together the getters and setters who operate on the same data, this is the project's standard
Guilherme Maciel Ferreira [Thu, 24 Feb 2011 13:46:58 +0000]
Changed getter and setter methods names to keep standardized (and verb+object advice from chapter 7 of code complete)
Guilherme Maciel Ferreira [Wed, 23 Feb 2011 16:19:45 +0000]
Reorganization of the ConfigurationReader class interface
- Sticking methods together
- Providing more descriptive name to some methods
- Adding new methods to encapsulate some functionalities
Guilherme Maciel Ferreira [Wed, 23 Feb 2011 14:55:08 +0000]
Executable has the same name as the project
Guilherme Maciel Ferreira [Wed, 23 Feb 2011 14:22:05 +0000]
Moved boost library search to the main CMakeLists.txt file, so cmake knows right from the beginning which libraries are required
Guilherme Maciel Ferreira [Wed, 23 Feb 2011 09:49:21 +0000]
Renamed variables and constants to stick with company's coding style
Guilherme Maciel Ferreira [Tue, 22 Feb 2011 16:17:50 +0000]
Reading host name from file. This first attempt pings just one host
Guilherme Maciel Ferreira [Tue, 22 Feb 2011 16:12:40 +0000]
Improved Host interface by including const parameters and assertions
Guilherme Maciel Ferreira [Tue, 22 Feb 2011 15:03:45 +0000]
Config file clean up (KISS)
Guilherme Maciel Ferreira [Tue, 22 Feb 2011 15:01:32 +0000]
Source code ornamentation
Guilherme Maciel Ferreira [Tue, 22 Feb 2011 14:59:30 +0000]
Added assertions to document interface assumptions
Guilherme Maciel Ferreira [Tue, 22 Feb 2011 14:51:35 +0000]
Improved configuration classes abstraction and source code
- Replaced magic strings by named constants
- Renamed ConfigurationReader::read() to ConfigurationReader::parse() according to the interface provided by other methods
- Added a method to fill the Configuration object
- Sorry for sending too many changes in the same commit =(
Guilherme Maciel Ferreira [Tue, 22 Feb 2011 14:47:51 +0000]
Project name #define is sent to source code in compile time
Guilherme Maciel Ferreira [Mon, 21 Feb 2011 13:56:54 +0000]
Included the default configuration file
Guilherme Maciel Ferreira [Mon, 21 Feb 2011 13:43:48 +0000]
Aesthetic changes on include guards
Guilherme Maciel Ferreira [Mon, 21 Feb 2011 13:27:56 +0000]
Merged Host::ip and Host::dns into Host::address.
Guilherme Maciel Ferreira [Mon, 21 Feb 2011 12:58:51 +0000]
Fixed: deafault value passed to reply_buffer constructor
Guilherme Maciel Ferreira [Mon, 21 Feb 2011 09:49:10 +0000]
First version of command line and config file parsing
Guilherme Maciel Ferreira [Mon, 21 Feb 2011 09:43:54 +0000]
Added Effective C++ warnings level (-Weffc++)
- Detects possible misuses of C++ features
Guilherme Maciel Ferreira [Mon, 21 Feb 2011 10:01:20 +0000]
Improved CMakeLists.txt
Guilherme Maciel Ferreira [Mon, 21 Feb 2011 09:58:24 +0000]
Removed useless classes
Guilherme Maciel Ferreira [Wed, 16 Feb 2011 14:03:14 +0000]
Working version with better class distribution
Guilherme Maciel Ferreira [Mon, 14 Feb 2011 08:09:40 +0000]
Bring aboard first version of ping check project
- cmake project files
- UML diagram for Visual Paradigm
- network management using boost::asio
Thomas Jarosch [Thu, 27 Jan 2011 10:46:26 +0000]
Remove hotfix