]> git.sur5r.net Git - freertos/blob - Demo/WizNET_DEMO_TERN_186/HTTPTask.c
Update to V4.0.4. Add in STR912 port and demo.
[freertos] / Demo / WizNET_DEMO_TERN_186 / HTTPTask.c
1 /*\r
2         FreeRTOS.org V4.0.4 - Copyright (C) 2003-2006 Richard Barry.\r
3 \r
4         This file is part of the FreeRTOS.org distribution.\r
5 \r
6         FreeRTOS.org is free software; you can redistribute it and/or modify\r
7         it under the terms of the GNU General Public License as published by\r
8         the Free Software Foundation; either version 2 of the License, or\r
9         (at your option) any later version.\r
10 \r
11         FreeRTOS.org is distributed in the hope that it will be useful,\r
12         but WITHOUT ANY WARRANTY; without even the implied warranty of\r
13         MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\r
14         GNU General Public License for more details.\r
15 \r
16         You should have received a copy of the GNU General Public License\r
17         along with FreeRTOS.org; if not, write to the Free Software\r
18         Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA\r
19 \r
20         A special exception to the GPL can be applied should you wish to distribute\r
21         a combined work that includes FreeRTOS.org, without being obliged to provide\r
22         the source code for any proprietary components.  See the licensing section \r
23         of http://www.FreeRTOS.org for full details of how and when the exception\r
24         can be applied.\r
25 \r
26         ***************************************************************************\r
27         See http://www.FreeRTOS.org for documentation, latest information, license \r
28         and contact details.  Please ensure to read the configuration and relevant \r
29         port sections of the online documentation.\r
30         ***************************************************************************\r
31 */\r
32 \r
33 /* \r
34  * Very simple task that responds with a single WEB page to http requests.\r
35  *\r
36  * The WEB page displays task and system status.  A semaphore is used to \r
37  * wake the task when there is processing to perform as determined by the \r
38  * interrupts generated by the Ethernet interface.\r
39  */\r
40 \r
41 /* Standard includes. */\r
42 #include <string.h>\r
43 #include <stdio.h>\r
44 \r
45 /* Tern includes. */\r
46 #include "utils\system_common.h"\r
47 #include "i2chip_hw.h"\r
48 #include "socket.h"\r
49 \r
50 /* FreeRTOS.org includes. */\r
51 #include <FreeRTOS.h>\r
52 #include <task.h>\r
53 #include <semphr.h>\r
54 \r
55 /* The standard http port on which we are going to listen. */\r
56 #define httpPORT 80\r
57 \r
58 #define httpTX_WAIT 2\r
59 \r
60 /* Network address configuration. */\r
61 const unsigned portCHAR ucMacAddress[] =                        { 12, 128, 12, 34, 56, 78 };\r
62 const unsigned portCHAR ucGatewayAddress[] =            { 192, 168, 2, 1 };\r
63 const unsigned portCHAR ucIPAddress[] =                         { 172, 25, 218, 210 };\r
64 const unsigned portCHAR ucSubnetMask[] =                        { 255, 255, 255, 0 };\r
65 \r
66 /* The number of sockets this task is going to handle. */\r
67 #define httpSOCKET_NUM                       3\r
68 unsigned portCHAR ucConnection[ httpSOCKET_NUM ];\r
69 \r
70 /* The maximum data buffer size we can handle. */\r
71 #define httpSOCKET_BUFFER_SIZE  2048\r
72 \r
73 /* Standard HTTP response. */\r
74 #define httpOUTPUT_OK   "HTTP/1.0 200 OK\r\nContent-Type: text/html\r\n\r\n"\r
75 \r
76 /* Hard coded HTML components.  Other data is generated dynamically. */\r
77 #define HTML_OUTPUT_BEGIN "\\r
78 <HTML><head><meta http-equiv=\"Refresh\" content=\"1\;url=index.htm\"></head>\\r
79 <BODY bgcolor=\"#CCCCFF\"><font face=\"arial\"><H2>FreeRTOS.org<sup>tm</sup> + Tern E-Engine<sup>tm</sup></H2>\\r
80 <a href=\"http:\/\/www.FreeRTOS.org\">FreeRTOS.org Homepage</a><P>\\r
81 <HR>Task status table:\r\n\\r
82 <p><font face=\"courier\"><pre>Task          State  Priority  Stack     #<br>\\r
83 ************************************************<br>"\r
84 \r
85 #define HTML_OUTPUT_END   "\\r
86 </font></BODY></HTML>"\r
87 \r
88 /*-----------------------------------------------------------*/\r
89 \r
90 /*\r
91  * Initialise the data structures used to hold the socket status.\r
92  */\r
93 static void prvHTTPInit( void );\r
94 \r
95 /*\r
96  * Setup the Ethernet interface with the network addressing information.\r
97  */\r
98 static void prvNetifInit( void );\r
99 \r
100 /*\r
101  * Generate the dynamic components of the served WEB page and transmit the \r
102  * entire page through the socket.\r
103  */\r
104 static void prvTransmitHTTP( unsigned portCHAR socket );\r
105 /*-----------------------------------------------------------*/\r
106 \r
107 /* This variable is simply incremented by the idle task hook so the number of\r
108 iterations the idle task has performed can be displayed as part of the served\r
109 page. */\r
110 unsigned portLONG ulIdleLoops = 0UL;\r
111 \r
112 /* Data buffer shared by sockets. */\r
113 unsigned portCHAR ucSocketBuffer[ httpSOCKET_BUFFER_SIZE ];\r
114 \r
115 /* The semaphore used by the Ethernet ISR to signal that the task should wake\r
116 and process whatever caused the interrupt. */\r
117 xSemaphoreHandle xTCPSemaphore = NULL;\r
118 \r
119 /*-----------------------------------------------------------*/\r
120 void vHTTPTask( void * pvParameters )\r
121 {\r
122 portSHORT i, sLen;\r
123 unsigned portCHAR ucState;\r
124 \r
125         ( void ) pvParameters;\r
126 \r
127     /* Create the semaphore used to communicate between this task and the\r
128     WIZnet ISR. */\r
129     vSemaphoreCreateBinary( xTCPSemaphore );\r
130 \r
131         /* Make sure everything is setup before we start. */\r
132         prvNetifInit();\r
133         prvHTTPInit();\r
134 \r
135         for( ;; )\r
136         {\r
137                 /* Wait until the ISR tells us there is something to do. */\r
138         xSemaphoreTake( xTCPSemaphore, portMAX_DELAY );\r
139 \r
140                 /* Check each socket. */\r
141                 for( i = 0; i < httpSOCKET_NUM; i++ )\r
142                 {\r
143                         ucState = select( i, SEL_CONTROL );\r
144 \r
145                         switch (ucState)\r
146                         {\r
147                                 case SOCK_ESTABLISHED :  /* new connection established. */\r
148 \r
149                                         if( ( sLen = select( i, SEL_RECV ) ) > 0 )\r
150                                         {\r
151                                                 if( sLen > httpSOCKET_BUFFER_SIZE ) \r
152                                                 {\r
153                                                         sLen = httpSOCKET_BUFFER_SIZE;\r
154                                                 }\r
155 \r
156                                                 disable();\r
157                                                 \r
158                                                 sLen = recv( i, ucSocketBuffer, sLen );    \r
159 \r
160                                                 if( ucConnection[ i ] == 1 )\r
161                                                 {       \r
162                                                         /* This is our first time processing a HTTP\r
163                                                          request on this connection. */\r
164                                                         prvTransmitHTTP( i );\r
165                                                         ucConnection[i] = 0;\r
166                                                 }\r
167                                                 enable();\r
168                                         }\r
169                                         break;\r
170 \r
171                                 case SOCK_CLOSE_WAIT :\r
172 \r
173                                         close(i);\r
174                                         break;\r
175 \r
176                                 case SOCK_CLOSED :\r
177 \r
178                                         ucConnection[i] = 1;\r
179                                         socket( i, SOCK_STREAM, 80, 0x00 );\r
180                                         NBlisten( i ); /* reinitialize socket. */\r
181                                         break;\r
182                         }\r
183                 }\r
184         }\r
185 }\r
186 /*-----------------------------------------------------------*/\r
187 \r
188 static void prvHTTPInit( void )\r
189 {\r
190 unsigned portCHAR ucIndex;\r
191 \r
192         /* There are 4 total sockets available; we will claim 3 for HTTP. */\r
193         for(ucIndex = 0; ucIndex < httpSOCKET_NUM; ucIndex++)\r
194         {\r
195                 socket( ucIndex, SOCK_STREAM, httpPORT, 0x00 );\r
196                 NBlisten( ucIndex );\r
197                 ucConnection[ ucIndex ] = 1;\r
198         }\r
199 }\r
200 /*-----------------------------------------------------------*/\r
201 \r
202 static void prvNetifInit( void )\r
203 {\r
204         i2chip_init();\r
205         initW3100A();\r
206 \r
207         setMACAddr( ( unsigned portCHAR * ) ucMacAddress );\r
208         setgateway( ( unsigned portCHAR * ) ucGatewayAddress );\r
209         setsubmask( ( unsigned portCHAR * ) ucSubnetMask );\r
210         setIP( ( unsigned portCHAR * ) ucIPAddress );\r
211 \r
212         /* See definition of 'sysinit' in socket.c\r
213          - 8 KB transmit buffer, and 8 KB receive buffer available.  These buffers\r
214            are shared by all 4 channels.\r
215          - (0x55, 0x55) configures the send and receive buffers at \r
216                 httpSOCKET_BUFFER_SIZE bytes for each of the 4 channels. */\r
217         sysinit( 0x55, 0x55 );\r
218 }\r
219 /*-----------------------------------------------------------*/\r
220 \r
221 static void prvTransmitHTTP(unsigned portCHAR socket)\r
222 {\r
223 extern portSHORT usCheckStatus;\r
224 \r
225         /* Send the http and html headers. */\r
226         send( socket, ( unsigned portCHAR * ) httpOUTPUT_OK, strlen( httpOUTPUT_OK ) );\r
227         send( socket, ( unsigned portCHAR * ) HTML_OUTPUT_BEGIN, strlen( HTML_OUTPUT_BEGIN ) );\r
228 \r
229         /* Generate then send the table showing the status of each task. */\r
230         vTaskList( ucSocketBuffer );\r
231         send( socket, ( unsigned portCHAR * ) ucSocketBuffer, strlen( ucSocketBuffer ) );\r
232 \r
233         /* Send the number of times the idle task has looped. */\r
234     sprintf( ucSocketBuffer, "</pre></font><p><br>The idle task has looped 0x%08lx times<br>", ulIdleLoops );\r
235         send( socket, ( unsigned portCHAR * ) ucSocketBuffer, strlen( ucSocketBuffer ) );\r
236 \r
237         /* Send the tick count. */\r
238     sprintf( ucSocketBuffer, "The tick count is 0x%08lx<br>", xTaskGetTickCount() );\r
239         send( socket, ( unsigned portCHAR * ) ucSocketBuffer, strlen( ucSocketBuffer ) );\r
240 \r
241         /* Show a message indicating whether or not the check task has discovered \r
242         an error in any of the standard demo tasks. */\r
243     if( usCheckStatus == 0 )\r
244     {\r
245             sprintf( ucSocketBuffer, "No errors detected." );\r
246                 send( socket, ( unsigned portCHAR * ) ucSocketBuffer, strlen( ucSocketBuffer ) );\r
247     }\r
248     else\r
249     {\r
250             sprintf( ucSocketBuffer, "<font color=\"red\">An error has been detected in at least one task %x.</font><p>", usCheckStatus );\r
251                 send( socket, ( unsigned portCHAR * ) ucSocketBuffer, strlen( ucSocketBuffer ) );\r
252     }\r
253 \r
254         /* Finish the page off. */\r
255         send( socket, (unsigned portCHAR*)HTML_OUTPUT_END, strlen(HTML_OUTPUT_END));\r
256 \r
257         /* Must make sure the data is gone before closing the socket. */\r
258         while( !tx_empty( socket ) )\r
259     {\r
260         vTaskDelay( httpTX_WAIT );\r
261     }\r
262         close(socket);\r
263 }\r
264 /*-----------------------------------------------------------*/\r
265 \r
266 void vApplicationIdleHook( void )\r
267 {\r
268         ulIdleLoops++;\r
269 }\r
270 \r
271 \r
272 \r
273 \r
274 \r
275 \r
276 \r
277 \r
278 \r
279 \r
280 \r
281 \r
282 \r
283 \r
284 \r
285 \r
286 \r
287 \r
288 \r
289 \r