summaryrefslogtreecommitdiffstats
path: root/source/ct-Bot/pc/tcp-server.c
blob: 7d1f53b911b5d6cd2a9258ed24ad07df0cd57080 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
/*
 * c't-Sim - Robotersimulator fuer den c't-Bot
 * 
 * This program is free software; you can redistribute it
 * and/or modify it under the terms of the GNU General
 * Public License as published by the Free Software
 * Foundation; either version 2 of the License, or (at your
 * option) any later version. 
 * This program is distributed in the hope that it will be 
 * useful, but WITHOUT ANY WARRANTY; without even the implied
 * warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR 
 * PURPOSE. See the GNU General Public License for more details.
 * You should have received a copy of the GNU General Public 
 * License along with this program; if not, write to the Free 
 * Software Foundation, Inc., 59 Temple Place, Suite 330, Boston,
 * MA 02111-1307, USA.
 * 
 */

/*! @file 	tcp-server.c
 * @brief 	Demo-TCP-Server
 * @author 	Benjamin Benz (bbe@heise.de)
 * @date 	26.12.05
*/
#include "ct-Bot.h"

#ifdef PC

#include "bot-2-sim.h"
#include "tcp.h"
#include "display.h"
#include "command.h"

#include <time.h>
#include <sys/time.h>


/* Linux with glibc:
 *   _REENTRANT to grab thread-safe libraries
 *   _POSIX_SOURCE to get POSIX semantics
 */
#ifndef WIN32
#  define _REENTRANT
//#  define _POSIX_SOURCE
#else
//	#define WIN32
#endif

/* Hack for LinuxThreads */
#ifdef __linux__
#  define _P __P
#endif

#include <pthread.h>

#ifdef WIN32
	#include <winsock.h>
#else
	#include <arpa/inet.h>
	#include <sys/socket.h>
	#include <netinet/in.h>
#endif

#include <stdio.h>      // for printf() and fprintf()
#include <stdlib.h>     // for atoi() and exit()
#include <string.h>     // for memset()
#include <unistd.h>     // for close()

#include "global.h"

int server;                    /*!< Server-Socket */

struct sockaddr_in serverAddr; /*!< Lokale Adresse  */
struct sockaddr_in clientAddr; /*!< Client-Adresse  */
unsigned int clntLen;          /*!< Laenge der Datenstruktur der Client-Adresse */

/*!
 * Init TCP-Server
 */
void tcp_server_init(void){
	#ifdef DISPLAY_AVAILABLE
//		display_init();
	#endif
	
	#ifdef WIN32
	    WSADATA wsaData;
	    WORD wVersionRequested;
	    int err;
		
	    wVersionRequested = MAKEWORD( 2, 0 ); // 2.0 and above version of WinSock
	    err = WSAStartup( wVersionRequested, &wsaData );
	    if ( err != 0 ) {
	        fprintf(stderr, "Couldn't not find a usable WinSock DLL.\n");
	        exit(1); 
	    }
	#endif	
	
	
	// Create socket for incoming connections
	if ((server = socket(PF_INET, SOCK_STREAM, IPPROTO_TCP)) < 0){
		printf("socket() failed\n");
		exit(1);
	}
	
	int i=1;
	setsockopt(server,SOL_SOCKET,SO_REUSEADDR,(char*)&i,sizeof(i));
	
	memset(&serverAddr, 0, sizeof(serverAddr));   // Clean up
	serverAddr.sin_family = AF_INET;              // Internet address family
	serverAddr.sin_addr.s_addr = htonl(INADDR_ANY); // Any incoming interface
	serverAddr.sin_port = htons(PORT);      // Local port to listen on
	
	// Bind to the local address
	if (bind(server, (struct sockaddr *) &serverAddr, sizeof(serverAddr))	<0	){
		printf("bind() failed\n");
		exit(1);		
	}
	
	// Mark the socket so it will listen for incoming connections 
	if (listen(server, 5) < 0){
		printf("listen() failed\n");
		exit(1);
	}
}

/*!
 * Hauptschleife des TCP-Servers
 */
int tcp_server_run (int runs){
	char buffer[MAX_PAYLOAD];       // Buffer  
	struct timeval    start, stop;
	printf("TCP-Server alive\n");
	
	int seq=0;
//	tcp_server_init();		

//	printf("Initialized\n");
	
	for(;;){
	        /* Set the size of the in-out parameter */
		clntLen = sizeof(clientAddr);
		
		printf("Waiting for client\n");
		// Wait for a client to connect 
		if ((tcp_sock = accept(server, (struct sockaddr *) &clientAddr, &clntLen)) < 0)
			printf("accept() failed");
		
		printf("Connected to %s on Port: %d\n", inet_ntoa(clientAddr.sin_addr),PORT);

		int16 simultime=0;		
		int i;
		for(i=0;i<runs;i++){
			simultime+=10;

			command_write(CMD_SENS_IR, SUB_CMD_NORM ,(int16*)&simultime,(int16*)&simultime,0);
			command_write(CMD_SENS_ENC, SUB_CMD_NORM ,(int16*)&simultime,(int16*)&simultime,0);
			command_write(CMD_SENS_BORDER, SUB_CMD_NORM ,(int16*)&simultime,(int16*)&simultime,0);
			command_write(CMD_SENS_LINE, SUB_CMD_NORM ,(int16*)&simultime,(int16*)&simultime,0);
			command_write(CMD_SENS_LDR, SUB_CMD_NORM ,(int16*)&simultime,(int16*)&simultime,0);
			command_write(CMD_SENS_TRANS, SUB_CMD_NORM ,(int16*)&simultime,0,0);
			command_write(CMD_SENS_DOOR, SUB_CMD_NORM ,(int16*)&simultime,(int16*)&simultime,0);
			command_write(CMD_SENS_MOUSE, SUB_CMD_NORM ,(int16*)&simultime,(int16*)&simultime,0);
			command_write(CMD_SENS_ERROR, SUB_CMD_NORM ,(int16*)&simultime,(int16*)&simultime,0);
			command_write(CMD_SENS_RC5, SUB_CMD_NORM ,0,0,0);

			command_write(CMD_DONE, SUB_CMD_NORM ,(int16*)&simultime,0,0);
			flushSendBuffer();

			GETTIMEOFDAY(&stop, NULL);
			int t2= (stop.tv_sec - start.tv_sec)*1000000 + stop.tv_usec - start.tv_usec;
			printf("X-Token (%d) out after %d usec ",simultime,t2);


			received_command.request.command =0;
			while(received_command.request.command != CMD_DONE ){
				if (command_read() != 0){
					// Fehler
					printf("Probleme beim Lesen eines Kommandos\n");
				} else {
					// Alles ok, evtl. muessen wir aber eine Payload abholen
					if (received_command.payload != 0) {					
				//		printf ("fetching payload (%d bytes)\n",received_command.payload);
						low_read(buffer,received_command.payload);	
					}
					if (received_command.seq != seq){
						printf("Sequenzzaehler falsch! Erwartet: %d Empfangen %d \n",seq,received_command.seq);
					}
				}
				seq=received_command.seq+1;
			}
			GETTIMEOFDAY(&start, NULL);


			int t= (start.tv_sec - stop.tv_sec)*1000000 + start.tv_usec - stop.tv_usec;
			printf("X-Token (%d) back after %d usec\n",received_command.data_l,t);


			if (received_command.data_l != simultime){
				printf("Falschen X-Frame erhalten ==> Exit\n");
				exit(0);
			}
			
/*			
			printf("Rechenzeit: %d usec\n",(stop.tv_sec - start.tv_sec)*1000000 +stop.tv_usec - start.tv_usec);
			
			command_read();
			if 
			#ifdef LOG_AVAILABLE
				command_display(&received_command);
			#endif		
			
			received_command.request.direction=DIR_ANSWER;
			tcp_send_cmd(&received_command);
		*/
		}
		
		printf("TCP-Server hat seine %d runs durch und beendet sich. So long and thanks for all the fish\n",runs);
		
		#ifdef WIN32
			WSACleanup();
		#endif
		exit(0);
	}
	
	return 1;
}


/*!
 * Init TCP-test-Client
 */
void tcp_test_client_init(void){
	tcp_init();
	printf("Connecting Testclient to %s on Port: %d ", tcp_hostname, 10001);
	
    if ((tcp_sock=tcp_openConnection(tcp_hostname)) != -1)
        printf ("established \n");
    else {
		printf ("failed\n");
    	exit(1);
    }
}

/*!
 * Hauptschleife des TCP-Test-Clients
 */
int tcp_test_client_run (int runs){
	char buffer[255];
	
	int len=0;
	int i=0;
	
	if (runs > 0)
		printf("Answering %d frames\n",runs);
	else
		printf("Answering all frames\n");
		
	for(;;){
		if ((runs > 0) && (i > runs))
			break;
		i++;
		buffer[0]=0;
		len=0;

		len= tcp_read(&buffer,255);
		tcp_write(&buffer,len);
	}
	printf("Finished %d frames\n",runs);
	
	exit(1);
	return 1;
}

#endif