]> git.sur5r.net Git - freertos/blob - Demo/ColdFire_MCF52259_CodeWarrior/HTTPDemo.c
Comment the command line interpreter and lwIP sockets based server code.
[freertos] / Demo / ColdFire_MCF52259_CodeWarrior / HTTPDemo.c
1 /*\r
2     FreeRTOS V7.0.1 - Copyright (C) 2011 Real Time Engineers Ltd.\r
3         \r
4 \r
5     ***************************************************************************\r
6      *                                                                       *\r
7      *    FreeRTOS tutorial books are available in pdf and paperback.        *\r
8      *    Complete, revised, and edited pdf reference manuals are also       *\r
9      *    available.                                                         *\r
10      *                                                                       *\r
11      *    Purchasing FreeRTOS documentation will not only help you, by       *\r
12      *    ensuring you get running as quickly as possible and with an        *\r
13      *    in-depth knowledge of how to use FreeRTOS, it will also help       *\r
14      *    the FreeRTOS project to continue with its mission of providing     *\r
15      *    professional grade, cross platform, de facto standard solutions    *\r
16      *    for microcontrollers - completely free of charge!                  *\r
17      *                                                                       *\r
18      *    >>> See http://www.FreeRTOS.org/Documentation for details. <<<     *\r
19      *                                                                       *\r
20      *    Thank you for using FreeRTOS, and thank you for your support!      *\r
21      *                                                                       *\r
22     ***************************************************************************\r
23 \r
24 \r
25     This file is part of the FreeRTOS distribution.\r
26 \r
27     FreeRTOS is free software; you can redistribute it and/or modify it under\r
28     the terms of the GNU General Public License (version 2) as published by the\r
29     Free Software Foundation AND MODIFIED BY the FreeRTOS exception.\r
30     >>>NOTE<<< The modification to the GPL is included to allow you to\r
31     distribute a combined work that includes FreeRTOS without being obliged to\r
32     provide the source code for proprietary components outside of the FreeRTOS\r
33     kernel.  FreeRTOS is distributed in the hope that it will be useful, but\r
34     WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY\r
35     or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for\r
36     more details. You should have received a copy of the GNU General Public\r
37     License and the FreeRTOS license exception along with FreeRTOS; if not it\r
38     can be viewed here: http://www.freertos.org/a00114.html and also obtained\r
39     by writing to Richard Barry, contact details for whom are available on the\r
40     FreeRTOS WEB site.\r
41 \r
42     1 tab == 4 spaces!\r
43 \r
44     http://www.FreeRTOS.org - Documentation, latest information, license and\r
45     contact details.\r
46 \r
47     http://www.SafeRTOS.com - A version that is certified for use in safety\r
48     critical systems.\r
49 \r
50     http://www.OpenRTOS.com - Commercial support, development, porting,\r
51     licensing and training services.\r
52 */\r
53 \r
54 /*\r
55     Implements a simplistic WEB server.  Every time a connection is made and\r
56     data is received a dynamic page that shows the current TCP/IP statistics\r
57     is generated and returned.  The connection is then closed.\r
58 \r
59     This file was adapted from a FreeRTOS lwIP slip demo supplied by a third\r
60     party.\r
61 */\r
62 \r
63 /* ------------------------ System includes ------------------------------- */\r
64 \r
65 \r
66 /* ------------------------ FreeRTOS includes ----------------------------- */\r
67 #include "FreeRTOS.h"\r
68 #include "task.h"\r
69 #include "semphr.h"\r
70 \r
71 /* ------------------------ lwIP includes --------------------------------- */\r
72 #include "lwip/api.h"\r
73 #include "lwip/tcpip.h"\r
74 #include "lwip/ip.h"\r
75 #include "lwip/memp.h"\r
76 #include "lwip/stats.h"\r
77 #include "netif/loopif.h"\r
78 \r
79 /* ------------------------ Project includes ------------------------------ */\r
80 #include "common.h"\r
81 \r
82 #include "HTTPDemo.h"\r
83 \r
84 /* ------------------------ Defines --------------------------------------- */\r
85 /* The size of the buffer in which the dynamic WEB page is created. */\r
86 #define webMAX_PAGE_SIZE        ( 1024 ) /*FSL: buffer containing array*/\r
87 \r
88 /* Standard GET response. */\r
89 #define webHTTP_OK  "HTTP/1.0 200 OK\r\nContent-type: text/html\r\n\r\n"\r
90 \r
91 /* The port on which we listen. */\r
92 #define webHTTP_PORT            ( 80 )\r
93 \r
94 /* Delay on close error. */\r
95 #define webSHORT_DELAY          ( 10 )\r
96 \r
97 /* Format of the dynamic page that is returned on each connection. */\r
98 #define webHTML_START \\r
99 "<html>\\r
100 <head>\\r
101 </head>\\r
102 <BODY onLoad=\"window.setTimeout(&quot;location.href='index.html'&quot;,1000)\"bgcolor=\"#CCCCff\">\\r
103 \r\n\r\nPage Hits = "\r
104 \r
105 #define webHTML_END \\r
106 "\r\n" \\r
107 "</pre>\r\n" \\r
108 "</BODY>\r\n" \\r
109 "</html>"\r
110 \r
111 #if INCLUDE_uxTaskGetStackHighWaterMark\r
112         static volatile unsigned portBASE_TYPE uxHighWaterMark_web = 0;\r
113 #endif\r
114 \r
115 /* ------------------------ Prototypes ------------------------------------ */\r
116 static void     vProcessConnection( struct netconn *pxNetCon );\r
117 \r
118 /*------------------------------------------------------------*/\r
119 \r
120 /*\r
121  * Process an incoming connection on port 80.\r
122  *\r
123  * This simply checks to see if the incoming data contains a GET request, and\r
124  * if so sends back a single dynamically created page.  The connection is then\r
125  * closed.  A more complete implementation could create a task for each\r
126  * connection.\r
127  */\r
128 static void vProcessConnection( struct netconn *pxNetCon )\r
129 {\r
130     static portCHAR cDynamicPage[webMAX_PAGE_SIZE], cPageHits[11];\r
131     struct netbuf  *pxRxBuffer;\r
132     portCHAR       *pcRxString;\r
133     unsigned portSHORT usLength;\r
134     static unsigned portLONG ulPageHits = 0;\r
135 \r
136     /* We expect to immediately get data. */\r
137     pxRxBuffer = netconn_recv( pxNetCon );\r
138 \r
139     if( pxRxBuffer != NULL )\r
140     {\r
141         /* Where is the data? */\r
142         netbuf_data( pxRxBuffer, ( void * )&pcRxString, &usLength );\r
143 \r
144         /* Is this a GET?  We don't handle anything else. */\r
145         if( !strncmp( pcRxString, "GET", 3 ) )\r
146         {\r
147             pcRxString = cDynamicPage;\r
148 \r
149             /* Update the hit count. */\r
150             ulPageHits++;\r
151             sprintf( cPageHits, "%d", (int)ulPageHits );\r
152 \r
153             /* Write out the HTTP OK header. */            \r
154             netconn_write( pxNetCon, webHTTP_OK, ( u16_t ) strlen( webHTTP_OK ), NETCONN_COPY );\r
155 \r
156             /* Generate the dynamic page...\r
157             \r
158                ... First the page header. */\r
159             strcpy( cDynamicPage, webHTML_START );\r
160             /* ... Then the hit count... */\r
161             strcat( cDynamicPage, cPageHits );\r
162             \r
163             strcat( cDynamicPage,\r
164                     "<p><pre>Task          State  Priority  Stack      #<br>************************************************<br>" );\r
165             /* ... Then the list of tasks and their status... */\r
166             vTaskList( ( signed portCHAR * )cDynamicPage + strlen( cDynamicPage ) );            \r
167             \r
168             /* ... Finally the page footer. */\r
169             strcat( cDynamicPage, webHTML_END );\r
170 \r
171             /* Write out the dynamically generated page. */\r
172             netconn_write( pxNetCon, cDynamicPage, ( u16_t ) strlen( cDynamicPage ), NETCONN_COPY );\r
173         }\r
174         netbuf_delete( pxRxBuffer );\r
175     }\r
176     netconn_close( pxNetCon );\r
177 }\r
178 \r
179 /*------------------------------------------------------------*/\r
180 \r
181 void vlwIPInit( void )\r
182 {\r
183     /* Initialize lwIP and its interface layer. */\r
184     tcpip_init( NULL, NULL );\r
185 }\r
186 \r
187 /*------------------------------------------------------------*/\r
188 \r
189 void vBasicWEBServer( void *pvParameters )\r
190 {\r
191     struct netconn *pxHTTPListener, *pxNewConnection;\r
192     struct ip_addr  xIpAddr, xNetMast, xGateway;\r
193     static struct netif fec523x_if;\r
194         extern err_t ethernetif_init(struct netif *netif);\r
195 \r
196     /* Parameters are not used - suppress compiler error. */\r
197     ( void )pvParameters;\r
198 \r
199         vlwIPInit();\r
200 \r
201     /* Create and configure the FEC interface. */\r
202     IP4_ADDR( &xIpAddr, configIP_ADDR0, configIP_ADDR1, configIP_ADDR2, configIP_ADDR3 );\r
203     IP4_ADDR( &xNetMast, configNET_MASK0, configNET_MASK1, configNET_MASK2, configNET_MASK3 );\r
204     IP4_ADDR( &xGateway, configGW_ADDR0, configGW_ADDR1, configGW_ADDR2, configGW_ADDR3 );\r
205     netif_add( &fec523x_if, &xIpAddr, &xNetMast, &xGateway, NULL, ethernetif_init, tcpip_input );\r
206 \r
207     /* make it the default interface */\r
208     netif_set_default( &fec523x_if );\r
209 \r
210     /* bring it up */\r
211     netif_set_up( &fec523x_if );\r
212 \r
213     /* Create a new tcp connection handle */\r
214     pxHTTPListener = netconn_new( NETCONN_TCP );\r
215     netconn_bind( pxHTTPListener, NULL, webHTTP_PORT );\r
216     netconn_listen( pxHTTPListener );\r
217 \r
218     /* Loop forever */\r
219     for( ;; )\r
220     {   \r
221         /* Wait for connection. */\r
222         pxNewConnection = netconn_accept( pxHTTPListener );\r
223 \r
224         if( pxNewConnection != NULL )\r
225         {\r
226             /* Service connection. */\r
227             vProcessConnection( pxNewConnection );\r
228             while( netconn_delete( pxNewConnection ) != ERR_OK )\r
229             {\r
230                 vTaskDelay( webSHORT_DELAY );\r
231             }\r
232         }\r
233     }\r
234 }\r