]> git.sur5r.net Git - freertos/blob - Demo/ColdFire_MCF52259_CodeWarrior/HTTPDemo.c
Change to the file headers only.
[freertos] / Demo / ColdFire_MCF52259_CodeWarrior / HTTPDemo.c
1 /*\r
2     FreeRTOS V6.0.0 - Copyright (C) 2009 Real Time Engineers Ltd.\r
3 \r
4     ***************************************************************************\r
5     *                                                                         *\r
6     * If you are:                                                             *\r
7     *                                                                         *\r
8     *    + New to FreeRTOS,                                                   *\r
9     *    + Wanting to learn FreeRTOS or multitasking in general quickly       *\r
10     *    + Looking for basic training,                                        *\r
11     *    + Wanting to improve your FreeRTOS skills and productivity           *\r
12     *                                                                         *\r
13     * then take a look at the FreeRTOS eBook                                  *\r
14     *                                                                         *\r
15     *        "Using the FreeRTOS Real Time Kernel - a Practical Guide"        *\r
16     *                  http://www.FreeRTOS.org/Documentation                  *\r
17     *                                                                         *\r
18     * A pdf reference manual is also available.  Both are usually delivered   *\r
19     * to your inbox within 20 minutes to two hours when purchased between 8am *\r
20     * and 8pm GMT (although please allow up to 24 hours in case of            *\r
21     * exceptional circumstances).  Thank you for your support!                *\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 exception to the GPL is included to allow you to distribute\r
31     a combined work that includes FreeRTOS without being obliged to provide the\r
32     source code for proprietary components outside of the FreeRTOS kernel.\r
33     FreeRTOS is distributed in the hope that it will be useful, but WITHOUT\r
34     ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or\r
35     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