stats.h
上传用户:yyhongfa
上传日期:2013-01-18
资源大小:267k
文件大小:4k
开发平台:

C/C++

  1. /*
  2.  * Copyright (c) 2001-2004 Swedish Institute of Computer Science.
  3.  * All rights reserved. 
  4.  * 
  5.  * Redistribution and use in source and binary forms, with or without modification, 
  6.  * are permitted provided that the following conditions are met:
  7.  *
  8.  * 1. Redistributions of source code must retain the above copyright notice,
  9.  *    this list of conditions and the following disclaimer.
  10.  * 2. Redistributions in binary form must reproduce the above copyright notice,
  11.  *    this list of conditions and the following disclaimer in the documentation
  12.  *    and/or other materials provided with the distribution.
  13.  * 3. The name of the author may not be used to endorse or promote products
  14.  *    derived from this software without specific prior written permission. 
  15.  *
  16.  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED 
  17.  * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF 
  18.  * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT 
  19.  * SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, 
  20.  * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT 
  21.  * OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 
  22.  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 
  23.  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING 
  24.  * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY 
  25.  * OF SUCH DAMAGE.
  26.  *
  27.  * This file is part of the lwIP TCP/IP stack.
  28.  * 
  29.  * Author: Adam Dunkels <adam@sics.se>
  30.  *
  31.  */
  32. #ifndef __LWIP_STATS_H__
  33. #define __LWIP_STATS_H__
  34. #include "lwip/opt.h"
  35. //#include "arch/cc.h"
  36. #include "lwip/mem.h"
  37. #include "lwip/memp.h"
  38. #if LWIP_STATS
  39. struct stats_proto {
  40.   u16_t xmit;    /* Transmitted packets. */
  41.   u16_t rexmit;  /* Retransmitted packets. */
  42.   u16_t recv;    /* Received packets. */
  43.   u16_t fw;      /* Forwarded packets. */
  44.   u16_t drop;    /* Dropped packets. */
  45.   u16_t chkerr;  /* Checksum error. */
  46.   u16_t lenerr;  /* Invalid length error. */
  47.   u16_t memerr;  /* Out of memory error. */
  48.   u16_t rterr;   /* Routing error. */
  49.   u16_t proterr; /* Protocol error. */
  50.   u16_t opterr;  /* Error in options. */
  51.   u16_t err;     /* Misc error. */
  52.   u16_t cachehit;
  53. };
  54. struct stats_mem {
  55.   mem_size_t avail;
  56.   mem_size_t used;
  57.   mem_size_t max;  
  58.   mem_size_t err;
  59. };
  60. struct stats_pbuf {
  61.   u16_t avail;
  62.   u16_t used;
  63.   u16_t max;  
  64.   u16_t err;
  65.   u16_t alloc_locked;
  66.   u16_t refresh_locked;
  67. };
  68. struct stats_syselem {
  69.   u16_t used;
  70.   u16_t max;
  71.   u16_t err;
  72. };
  73. struct stats_sys {
  74.   struct stats_syselem sem;
  75.   struct stats_syselem mbox;
  76. };
  77. struct stats_ {
  78.   struct stats_proto link;
  79.   struct stats_proto ip_frag;
  80.   struct stats_proto ip;
  81.   struct stats_proto icmp;
  82.   struct stats_proto udp;
  83.   struct stats_proto tcp;
  84.   struct stats_pbuf pbuf;
  85.   struct stats_mem mem;
  86.   struct stats_mem memp[MEMP_MAX];
  87.   struct stats_sys sys;
  88. };
  89. extern struct stats_ lwip_stats;
  90. void stats_init(void);
  91. #define STATS_INC(x) ++lwip_stats.x
  92. #else
  93. #define stats_init()
  94. #define STATS_INC(x)
  95. #endif /* LWIP_STATS */
  96. #if TCP_STATS
  97. #define TCP_STATS_INC(x) STATS_INC(x)
  98. #else
  99. #define TCP_STATS_INC(x)
  100. #endif
  101. #if UDP_STATS
  102. #define UDP_STATS_INC(x) STATS_INC(x)
  103. #else
  104. #define UDP_STATS_INC(x)
  105. #endif
  106. #if ICMP_STATS
  107. #define ICMP_STATS_INC(x) STATS_INC(x)
  108. #else
  109. #define ICMP_STATS_INC(x)
  110. #endif
  111. #if IP_STATS
  112. #define IP_STATS_INC(x) STATS_INC(x)
  113. #else
  114. #define IP_STATS_INC(x)
  115. #endif
  116. #if IPFRAG_STATS
  117. #define IPFRAG_STATS_INC(x) STATS_INC(x)
  118. #else
  119. #define IPFRAG_STATS_INC(x)
  120. #endif
  121. #if LINK_STATS
  122. #define LINK_STATS_INC(x) STATS_INC(x)
  123. #else
  124. #define LINK_STATS_INC(x)
  125. #endif
  126. /* Display of statistics */
  127. #if LWIP_STATS_DISPLAY
  128. void stats_display(void);
  129. #else
  130. #define stats_display()
  131. #endif
  132. #endif /* __LWIP_STATS_H__ */