SOL9 2.0 Class: TcpStatistics

 SOL9 C++ Class Library  SOL9 Samples  SOL9 Tutorial  SOL9 FAQ  SOL9 ClassTree 

Source code

/*
 * TcpStatistics.h 
 * Copyright (c) 2011 Antillia.com TOSHIYUKI ARAI. ALL RIGHTS RESERVED. 
 */


// SOL9
// 2009/09/04

#pragma once
#include <sol/net/MibTable.h>

#include <sol/Arg.h>
#include <sol/String.h>

namespace SOL {
 
class TcpStatistics :public MibTable {
/*
typedef struct _MIB_TCPSTATS {
  DWORD dwRtoAlgorithm;
  DWORD dwRtoMin;
  DWORD dwRtoMax;
  DWORD dwMaxConn;
  DWORD dwActiveOpens;
  DWORD dwPassiveOpens;
  DWORD dwAttemptFails;
  DWORD dwEstabResets;
  DWORD dwCurrEstab;
  DWORD dwInSegs;
  DWORD dwOutSegs;
  DWORD dwRetransSegs;
  DWORD dwInErrs;
  DWORD dwOutRsts;
  DWORD dwNumConns;
}MIB_TCPSTATS, *PMIB_TCPSTATS;
*/
private:
    MIB_TCPSTATS table; 

private:
    ADDRESS_FAMILY  family;

public:
    TcpStatistics(ADDRESS_FAMILY f=AF_INET)
    :family(f)
    {
        clear();
    }

public:
    ~TcpStatistics() 
    {
        clear();
    }

public:
    virtual bool getTable()
    {
        clear();

        bool rc = false;
        
        DWORD r = NO_ERROR;
        if ((r = GetTcpStatisticsEx(&table, family)) == NO_ERROR){
            rc = true;
        } else {
            clear();
            throw r;
        }
        return rc;
    }

public:
    void clear()
    {
        memset(&table, 0, sizeof(table));
    }

public:
    const char* getRtoAlgorithm(int value)
    {
        //The retransmission time-out (RTO) algorithm in use

        static const ArgT<char> types[] = {

        {"TCP_RTO_OTHER", MIB_TCP_RTO_OTHER},
        {"TCP_RTO_CONSTANT", MIB_TCP_RTO_CONSTANT},
        {"TCP_RTO_RSRE", MIB_TCP_RTO_RSRE},
        {"TCP_RTO_VANJ", MIB_TCP_RTO_VANJ},
        };
 
        const char* name = "";
        int count = XtNumber(types);
        for (int i = 0; i<count; i++) {
            if (types[i].value == value) {
                name = types[i].name;
                break;
            }
        }
        return name;    
    }


/*
*/

public:
    virtual void display(MIB_TCPSTATS& table)
    {
        printf("RTO Algorithm : %s\n", getRtoAlgorithm(table.dwRtoAlgorithm));
        printf("RTO Minimum : %lu\n", table.dwRtoMin);
        printf("RTO Maximum : %lu\n", table.dwRtoMax);
        if (table.dwMaxConn == -1) {
            printf("Maximum Connections : Variable\n");

        } else {
            printf("Maximum Connections : %lu\n", table.dwMaxConn);
        }
        printf("Active Opens : %lu\n", table.dwActiveOpens);
        printf("Passive Opens : %lu\n", table.dwPassiveOpens);
        printf("Failed Connection Attempts : %lu\n", table.dwAttemptFails);
        printf("Reset Established Connections : %lu\n", table.dwEstabResets);
        printf("Currently Established Connections: %lu\n", table.dwCurrEstab);
        printf("Received Segments : %lu\n", table.dwInSegs);
        printf("Transmitted Segments : %lu\n", table.dwOutSegs);
        printf("Retransmitted Segments : %lu\n", table.dwRetransSegs);
        printf("Received Errors : %lu\n", table.dwInErrs);
        printf("Transmitted Segments with Reset : %lu\n", table.dwOutRsts);
        printf("Current Connections : %lu\n", table. dwNumConns);
        printf("\n");
    }


public:
    virtual void display()
    {
        getTable();

        display(table);
    } 
};

}

Last modified: 1 Feb 2012

Copyright (c) 2009-2012 Antillia.com ALL RIGHTS RESERVED.