2013-06-04 26 views
0

我需要用C++編寫代碼來測量ping的丟包率 - 丟包率。 我看到IPHLPAPI庫在RTT上有很多統計信息,但沒有丟包。測量包丟失的ping-C++

如果有人知道這件事,它會很棒!

謝謝。

+0

你的問題需要一個更明確的目標,你實際上在問什麼。到目前爲止,你做了什麼,你確切地知道什麼? –

+0

o.k. 我有發送ping到特定IP地址的代碼。在ICMP響應中,存在具有所有參數的結構,例如RTT,DataSize ...但我還需要該ping的丟包。 我希望它更清楚一點。 – user1673206

+0

我之前做過這樣的事情,我只是在標準ping之上使用了一個小腳本,它在接收數據包的時間內計算了「丟失」數據包的數量。但是,如果您編寫自己的代碼,則只需發送一個數據包,然後等待回覆。如果在X秒內沒有回覆,它就是一個「丟失」的數據包。 (這裏X可能不是整數) –

回答

0

當涉及到網絡時,您可以使用POCO庫,它比ACE更小(ALOT小於boost),並且比ACE更具可讀性。

下面是一個使用ICMPClient 一個ping程序的源代碼,你會發現它在POCO_BASE/NET /例子/平/ src目錄

#include "Poco/Util/Application.h" 
#include "Poco/Util/Option.h" 
#include "Poco/Util/OptionSet.h" 
#include "Poco/Util/HelpFormatter.h" 
#include "Poco/Util/AbstractConfiguration.h" 
#include "Poco/Net/ICMPSocket.h" 
#include "Poco/Net/ICMPClient.h" 
#include "Poco/Net/IPAddress.h" 
#include "Poco/Net/ICMPEventArgs.h" 
#include "Poco/AutoPtr.h" 
#include "Poco/NumberParser.h" 
#include "Poco/Delegate.h" 
#include <iostream> 
#include <sstream> 


using Poco::Util::Application; 
using Poco::Util::Option; 
using Poco::Util::OptionSet; 
using Poco::Util::HelpFormatter; 
using Poco::Util::AbstractConfiguration; 
using Poco::Net::ICMPSocket; 
using Poco::Net::ICMPClient; 
using Poco::Net::IPAddress; 
using Poco::Net::ICMPEventArgs; 
using Poco::AutoPtr; 
using Poco::NumberParser; 
using Poco::Delegate; 


class Ping: public Application 
    /// This sample demonstrates the Poco::Net::ICMPClient in conjunction with 
    /// Poco Foundation C#-like events functionality. 
    /// 
    /// Try Ping --help (on Unix platforms) or Ping /help (elsewhere) for 
    /// more information. 
{ 
public: 
    Ping(): 
     _helpRequested(false), 
     _icmpClient(IPAddress::IPv4), 
     _repetitions(4), 
     _target("localhost") 
    { 
    } 

protected: 
    void initialize(Application& self) 
    { 
     loadConfiguration(); // load default configuration files, if present 
     Application::initialize(self); 

     _icmpClient.pingBegin += Delegate<Ping, ICMPEventArgs>(this, &Ping::onBegin); 
     _icmpClient.pingReply += Delegate<Ping, ICMPEventArgs>(this, &Ping::onReply); 
     _icmpClient.pingError += Delegate<Ping, ICMPEventArgs>(this, &Ping::onError); 
     _icmpClient.pingEnd += Delegate<Ping, ICMPEventArgs>(this, &Ping::onEnd); 
    } 

    void uninitialize() 
    { 
     _icmpClient.pingBegin -= Delegate<Ping, ICMPEventArgs>(this, &Ping::onBegin); 
     _icmpClient.pingReply -= Delegate<Ping, ICMPEventArgs>(this, &Ping::onReply); 
     _icmpClient.pingError -= Delegate<Ping, ICMPEventArgs>(this, &Ping::onError); 
     _icmpClient.pingEnd -= Delegate<Ping, ICMPEventArgs>(this, &Ping::onEnd); 

     Application::uninitialize(); 
    } 

    void defineOptions(OptionSet& options) 
    { 
     Application::defineOptions(options); 

     options.addOption(
      Option("help", "h", "display help information on command line arguments") 
       .required(false) 
       .repeatable(false)); 

     options.addOption(
      Option("repetitions", "r", "define the number of repetitions") 
       .required(false) 
       .repeatable(false) 
       .argument("repetitions")); 

     options.addOption(
      Option("target", "t", "define the target address") 
       .required(false) 
       .repeatable(false) 
       .argument("target")); 
    } 

    void handleOption(const std::string& name, const std::string& value) 
    { 
     Application::handleOption(name, value); 

     if (name == "help") 
      _helpRequested = true; 
     else if (name == "repetitions") 
      _repetitions = NumberParser::parse(value); 
     else if (name == "target") 
      _target = value; 
    } 

    void displayHelp() 
    { 
     HelpFormatter helpFormatter(options()); 
     helpFormatter.setCommand(commandName()); 
     helpFormatter.setUsage("OPTIONS"); 
     helpFormatter.setHeader(
      "A sample application that demonstrates the functionality of the " 
      "Poco::Net::ICMPClient class in conjunction with Poco::Events package functionality."); 
     helpFormatter.format(std::cout); 
    } 


    int main(const std::vector<std::string>& args) 
    { 
     if (_helpRequested) 
      displayHelp(); 
     else 
      _icmpClient.ping(_target, _repetitions); 

     return Application::EXIT_OK; 
    } 


    void onBegin(const void* pSender, ICMPEventArgs& args) 
    { 
     std::ostringstream os; 
     os << "Pinging " << args.hostName() << " [" << args.hostAddress() << "] with " << args.dataSize() << " bytes of data:" 
      << std::endl << "---------------------------------------------" << std::endl; 
     logger().information(os.str()); 
    } 

    void onReply(const void* pSender, ICMPEventArgs& args) 
    { 
     std::ostringstream os; 
     os << "Reply from " << args.hostAddress() 
      << " bytes=" << args.dataSize() 
      << " time=" << args.replyTime() << "ms" 
      << " TTL=" << args.ttl(); 
     logger().information(os.str()); 
    } 

    void onError(const void* pSender, ICMPEventArgs& args) 
    { 
     std::ostringstream os; 
     os << args.error(); 
     logger().information(os.str()); 
    } 

    void onEnd(const void* pSender, ICMPEventArgs& args) 
    { 
     std::ostringstream os; 
     os << std::endl << "--- Ping statistics for " << args.hostName() << " ---" 
      << std::endl << "Packets: Sent=" << args.sent() << ", Received=" << args.received() 
      << " Lost=" << args.repetitions() - args.received() << " (" << 100.0 - args.percent() << "% loss)," 
      << std::endl << "Approximate round trip times in milliseconds: " << std::endl 
      << "Minimum=" << args.minRTT() << "ms, Maximum=" << args.maxRTT() 
      << "ms, Average=" << args.avgRTT() << "ms" 
      << std::endl << "------------------------------------------"; 
     logger().information(os.str()); 
    } 

private: 
    bool  _helpRequested; 
    ICMPClient _icmpClient; 
    int   _repetitions; 
    std::string _target; 
}; 


int main(int argc, char** argv) 
{ 
    AutoPtr<Ping> pApp = new Ping; 
    try 
    { 
     pApp->init(argc, argv); 
    } 
    catch (Poco::Exception& exc) 
    { 
     pApp->logger().log(exc); 
     return Application::EXIT_CONFIG; 
    } 
    return pApp->run(); 
} 

您可以刪除記錄器/幫助的東西,使源位使用OnReply/OnError/OnEnd來計算丟包率

您發送4個數據包.... 3個數據包返回(OnReply)數據包丟失= 1-3/4 = 25%。

+0

謝謝!我會嘗試。 哪裏是POCO_BASE庫?它是否已經在我的電腦上?我需要下載它嗎? – user1673206