]> sjero.net Git - iperf/blob - src/ReportCSV.c
Original 2.0.2 iperf sources
[iperf] / src / ReportCSV.c
1 /*--------------------------------------------------------------- 
2  * Copyright (c) 1999,2000,2001,2002,2003                              
3  * The Board of Trustees of the University of Illinois            
4  * All Rights Reserved.                                           
5  *--------------------------------------------------------------- 
6  * Permission is hereby granted, free of charge, to any person    
7  * obtaining a copy of this software (Iperf) and associated       
8  * documentation files (the "Software"), to deal in the Software  
9  * without restriction, including without limitation the          
10  * rights to use, copy, modify, merge, publish, distribute,        
11  * sublicense, and/or sell copies of the Software, and to permit     
12  * persons to whom the Software is furnished to do
13  * so, subject to the following conditions: 
14  *
15  *     
16  * Redistributions of source code must retain the above 
17  * copyright notice, this list of conditions and 
18  * the following disclaimers. 
19  *
20  *     
21  * Redistributions in binary form must reproduce the above 
22  * copyright notice, this list of conditions and the following 
23  * disclaimers in the documentation and/or other materials 
24  * provided with the distribution. 
25  * 
26  *     
27  * Neither the names of the University of Illinois, NCSA, 
28  * nor the names of its contributors may be used to endorse 
29  * or promote products derived from this Software without
30  * specific prior written permission. 
31  * 
32  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 
33  * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES 
34  * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND 
35  * NONINFRINGEMENT. IN NO EVENT SHALL THE CONTIBUTORS OR COPYRIGHT 
36  * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, 
37  * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, 
38  * ARISING FROM, OUT OF OR IN CONNECTION WITH THE
39  * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 
40  * ________________________________________________________________
41  * National Laboratory for Applied Network Research 
42  * National Center for Supercomputing Applications 
43  * University of Illinois at Urbana-Champaign 
44  * http://www.ncsa.uiuc.edu
45  * ________________________________________________________________ 
46  *
47  * ReportCSV.c
48  * by Kevin Gibbs <kgibbs@nlanr.net>
49  *
50  * ________________________________________________________________ */
51
52 #include "headers.h"
53 #include "Settings.hpp"
54 #include "util.h"
55 #include "Reporter.h"
56 #include "report_CSV.h"
57 #include "Locale.h"
58
59 void CSV_timestamp( char *timestamp, int length );
60  
61 void CSV_stats( Transfer_Info *stats ) {
62     // $TIMESTAMP,$ID,$INTERVAL,$BYTE,$SPEED,$JITTER,$LOSS,$PACKET,$%LOSS
63     max_size_t speed = (max_size_t)(((double)stats->TotalLen * 8.0) / (stats->endTime - stats->startTime));
64     char timestamp[16];
65     CSV_timestamp( timestamp, sizeof(timestamp) );
66     if ( stats->mUDP != (char)kMode_Server ) {
67         // TCP Reporting
68         printf( reportCSV_bw_format, 
69                 timestamp, 
70                 (stats->reserved_delay == NULL ? ",,," : stats->reserved_delay),
71                 stats->transferID, 
72                 stats->startTime, 
73                 stats->endTime, 
74                 stats->TotalLen, 
75                 speed);
76     } else {
77         // UDP Reporting
78         printf( reportCSV_bw_jitter_loss_format, 
79                 timestamp, 
80                 (stats->reserved_delay == NULL ? ",,," : stats->reserved_delay),
81                 stats->transferID, 
82                 stats->startTime, 
83                 stats->endTime, 
84                 stats->TotalLen, 
85                 speed,
86                 stats->jitter*1000.0, 
87                 stats->cntError, 
88                 stats->cntDatagrams,
89                 (100.0 * stats->cntError) / stats->cntDatagrams, stats->cntOutofOrder );
90     }
91     if ( stats->free == 1 && stats->reserved_delay != NULL ) {
92         free( stats->reserved_delay );
93     }
94 }
95
96 void *CSV_peer( Connection_Info *stats, int ID ) {
97     
98     // copy the inet_ntop into temp buffers, to avoid overwriting
99     char local_addr[ REPORT_ADDRLEN ];
100     char remote_addr[ REPORT_ADDRLEN ];
101     char *buf = malloc( REPORT_ADDRLEN*2 + 10 );
102     struct sockaddr *local = ((struct sockaddr*)&stats->local);
103     struct sockaddr *peer = ((struct sockaddr*)&stats->peer);
104
105     if ( local->sa_family == AF_INET ) {
106         inet_ntop( AF_INET, &((struct sockaddr_in*)local)->sin_addr, 
107                    local_addr, REPORT_ADDRLEN);
108     }
109 #ifdef HAVE_IPV6
110       else {
111         inet_ntop( AF_INET6, &((struct sockaddr_in6*)local)->sin6_addr, 
112                    local_addr, REPORT_ADDRLEN);
113     }
114 #endif
115
116     if ( peer->sa_family == AF_INET ) {
117         inet_ntop( AF_INET, &((struct sockaddr_in*)peer)->sin_addr, 
118                    remote_addr, REPORT_ADDRLEN);
119     }
120 #ifdef HAVE_IPV6
121       else {
122         inet_ntop( AF_INET6, &((struct sockaddr_in6*)peer)->sin6_addr, 
123                    remote_addr, REPORT_ADDRLEN);
124     }
125 #endif
126
127     snprintf(buf, REPORT_ADDRLEN*2+10, reportCSV_peer, 
128              local_addr, ( local->sa_family == AF_INET ?
129                           ntohs(((struct sockaddr_in*)local)->sin_port) :
130 #ifdef HAVE_IPV6
131                           ntohs(((struct sockaddr_in6*)local)->sin6_port)),
132 #else
133                           0),
134 #endif
135             remote_addr, ( peer->sa_family == AF_INET ?
136                           ntohs(((struct sockaddr_in*)peer)->sin_port) :
137 #ifdef HAVE_IPV6
138                           ntohs(((struct sockaddr_in6*)peer)->sin6_port)));
139 #else
140                           0));
141 #endif
142     return buf;
143 }
144
145 void CSV_serverstats( Connection_Info *conn, Transfer_Info *stats ) {
146     stats->reserved_delay = CSV_peer( conn, stats->transferID );
147     stats->free = 1;
148     CSV_stats( stats );
149 }
150
151 void CSV_timestamp( char *timestamp, int length ) {
152     time_t times;
153     struct tm *timest;
154     times = time( NULL );
155     timest = localtime( &times );
156     strftime( timestamp, length,"%Y%m%d%H%M%S", timest );
157 }