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