A sample program demonstrating a small but powerful web server using the Wifly module. This uses several libraries from others, but has a custom version of the WiflyInterface library, with numerous improvement to the mbed standard library.

Dependencies:   SW_HTTPServer WiflyInterface mbed C12832 IniManager

Here's the code

But you also might want to check out the SmartBoard-WiFly project page.

Basic Web Server

  • Serves static files from the selected file system. This is a compile-time setting, and a typical configuration supports gif, jpg, jpeg, ico, png, zip, gz, tar, txt, pdf, htm, and html.
  • It is designed to be small, thereby better supporting the limited resources of an embedded environment.

Advanced Web Services

  • Serves dynamically generated pages, where your software registers for a path, and then everything to that path activates your handler. Your handler then defines the header and body response.
  • Dynamic handlers can process GET query parameters (e.g. /dyn1?sky=blue&grass=green).
  • Dynamic handlers can process POST query parameters, as delivered from submission of a form.
  • Dynamic handlers can protect a resource with user:password access.

Run-Time Configurations

  • File System Support - using either the "local" file system supported by the magic chip, or from either an SD-Card or a USB flash drive.
  • Configurable to the maximum number of dynamic handlers (minimize memory requirements).
  • Configurable to the maximum number of name=value pairs for dynamic handlers (minimize memory requirements).

Compile-Time Configurations

  • Default filename for URL ending in '/' - default is 'index.htm'.
  • Configurable buffer sizes permit minimizing RAM requirements.
  • Configurable header response information.
  • Configurable for which serial port is used to communicate to the WiFly module.
  • Improved security option - to disable telnet access.

Diagnostics

  • API to determine the largest header (to more efficiently size the buffers).
  • API to gather the run-time characteristics - header processing time and content delivery time.

Limitations / Constraints

Known Issues

These are known issues, not yet resolved.

  1. Occasionally fails to serve a page - one test will constantly reload a web page every 30 seconds. It may run for hours, or minutes, then fail to load. Behaviors then are:
    • Hit the reload button in the browser and away it goes.
    • Hit the reload and you'll see the Wifly LEDs energize from the request, but no response by the web server. It appears that the embedded code does not "accept()" the connection in the TCP Socket Server.
      • In this case, the Wifly module has gone through an internal watchdog reset and the configuration parameters are such that it does not gracefully recover. Microchip is aware of this issue, but has not solved it.

Wifly Limitations

  • Single thread - it doesn't respond to overlapping requests (e.g. an embedded image may be requested before the main page completes transfer - the request is lost and the image not shown).
  • Single client - goes along with the single thread, but it doesn't support more than one client at a time.

Smart-Wifly-WebServer

  • Dynamic memory allocation - it does use dynamic memory allocation, which would be discouraged/avoided in many embedded systems. Here it uses it in parsing a request and it releases those resources upon completion of that request. If there is no other dynamic allocation that persists beyond a transaction, it should not cause memory fragmentation. Note that with multi-threading (if this is implemented with an OS), you then have race conditions that could cause fragmentation.

Web Server

Here's the web server in action. A combination of static pages served from the file system and dynamically generated pages.

/media/uploads/WiredHome/swsvr_1.pngPart of the main demo page,
which basically has all the
specifications, configurations, and limitations.
/media/uploads/WiredHome/swsvr_2.pngA zoomed out view of the same page.
/media/uploads/WiredHome/swsvr_3.pngIt would be possible to configure
the server via the web.
/media/uploads/WiredHome/swsvr_4.pngOne of the dynamically generated pages.
This one has parsed the query parameters.
/media/uploads/WiredHome/swsvr_5.pngA simple form which has a dynamic handler on the back end.
Here it takes the value associated with "leds"
and uses that to set the 4 LEDs on the mbed module.
/media/uploads/WiredHome/swsvr_6.pngA dynamic handler can require authentication.
/media/uploads/WiredHome/swsvr_7.pngSuccess!

But I've now gone so far beyond that in the current version. Here's what this one can do:

  1. It serves static web pages from a file system. I've only tested with the local file system and an SD card, but should work for any, so long as you remember that the local file system can't read subdirectories.
  2. It can serve dynamically generated web pages. This lets you accept name=value pairs using the URL (using either a GET or POST method). It can also accept them from forms. The demo lets you control the 4 LEDs from a form.
  3. As safely as possible it retrieves your credentials to the Wi-Fi Access Point. After using them, it overwrites that ram so they can't be as easily extracted.
  4. I made a large number of changes to the Wifly driver. It had too short of a timeout and I found quite a number of optimizations for performance and robustness.
  5. I have the start on a security feature - you can configure a resource to require user credentials to access it. The browser typically provides a username and password dialog. Take care however, as it does not support a secure (https) connection, so the credentials are not as securely transferred as I would like.

Optimizations I'd like to do:

  1. speed it up - I'm running the mbed to wifly module interface at 230K, which is about the top speed w/o flow control. There are other places where some time delays remain - I have eliminated a number of them.
  2. make it non-blocking, so other work can happen.
  3. integrate it with the rtos
  4. When a web page has referenced resources (e.g. an image tag), it rarely loads the image on the first try. I think the request for the resource comes in while it is still in the WiflyInterface cleaning up from the last connection. The Wifly module supports only a single connection at a time. I worked around this with a small bit of javascript to load the images after the web page.

But all in all I think it is a good start.

Program prerequisite

Here's the link to the program, but when you open it up, note a few very important items.

  1. Port Numbers listed in the constructor match the SmartBoard Baseboard.
  2. I sped up the communication baud rate to the mbed from the default 9600. Match your terminal program accordingly.
  3. Download this zip. Place it and an unzipped copy into the mbed local file system. These are the demo files.
  4. The typical ssid and password are not shown. See below to set yours.

ssid and password

You need to create a simple text file on your mbed root folder named "config.ini". The easiest way perhaps is to create "config.txt", add the information shown below and then rename it. This will be read at startup to connect you to the network. Something quite simple, like this:

[Wifi]
ssid=your_ssid
pass=your_pass_code

The program

And the program.

Import programSmart-WiFly-WebServer

A sample program demonstrating a small but powerful web server using the Wifly module. This uses several libraries from others, but has a custom version of the WiflyInterface library, with numerous improvement to the mbed standard library.

Committer:
WiredHome
Date:
Mon Aug 12 23:06:52 2013 +0000
Revision:
14:85c805890454
Parent:
13:14c6ce4ced9c
Child:
15:1f2b62130ffb
Added demo page for a simple password protected page.; Added demo page for how a server configuration may be created.

Who changed what in which revision?

UserRevisionLine numberNew contents of line
WiredHome 4:178df829d62b 1 /** @file main.cpp contains the main program that a user would write.
WiredHome 4:178df829d62b 2 * see the documentation above "main"
WiredHome 4:178df829d62b 3 */
WiredHome 4:178df829d62b 4 #include "mbed.h" // ver 63
WiredHome 10:b0b6da272a7b 5 //#include "SDFileSystem.h" // ver 2, standard
WiredHome 4:178df829d62b 6
WiredHome 4:178df829d62b 7 // Modified standard components
WiredHome 4:178df829d62b 8 #include "WiflyInterface.h" // ver 4+, derived from version 4 with my mods
WiredHome 4:178df829d62b 9
WiredHome 4:178df829d62b 10 // My components
WiredHome 12:479ff89c190b 11 #include "Utility.h"
WiredHome 12:479ff89c190b 12 #include "Credentials.h" // ver 0, credential manager
WiredHome 4:178df829d62b 13 #include "SW_HTTPServer.h" // ver 0, the initial release.
WiredHome 10:b0b6da272a7b 14 #include "DynamicPages.h" // my dynamically generated pages
WiredHome 14:85c805890454 15 #include "ServerConfig.h"
WiredHome 10:b0b6da272a7b 16 #define HTTP_SERVER_PORT 80
WiredHome 4:178df829d62b 17
WiredHome 4:178df829d62b 18 Serial pc(USBTX, USBRX);
WiredHome 11:183b3893eb7d 19 //BusOut testLEDs(LED2, LED1);
WiredHome 4:178df829d62b 20
WiredHome 14:85c805890454 21 LocalFileSystem local("local"); // some place to hold settings and maybe the static web pages
WiredHome 4:178df829d62b 22 //SDFileSystem sd(p5, p6, p7, p8, "sd"); // for the static web pages
WiredHome 4:178df829d62b 23
WiredHome 13:14c6ce4ced9c 24 // wifly active connection
WiredHome 13:14c6ce4ced9c 25 DigitalOut act(LED1);
WiredHome 13:14c6ce4ced9c 26 InterruptIn button(p24);
WiredHome 13:14c6ce4ced9c 27 DigitalIn actStatus(p24);
WiredHome 13:14c6ce4ced9c 28
WiredHome 13:14c6ce4ced9c 29 void flip() {
WiredHome 13:14c6ce4ced9c 30 act = actStatus;
WiredHome 13:14c6ce4ced9c 31 //pc.printf("**** FLIP %d\r\n", actStatus.read());
WiredHome 13:14c6ce4ced9c 32 }
WiredHome 4:178df829d62b 33
WiredHome 11:183b3893eb7d 34 // A time-bound hook on startup to permit the user to access the wifly module
WiredHome 11:183b3893eb7d 35 //
WiredHome 11:183b3893eb7d 36 void WiFlyShell(Wifly & wifly, PC & pc)
WiredHome 11:183b3893eb7d 37 {
WiredHome 11:183b3893eb7d 38 Timer userTimer;
WiredHome 12:479ff89c190b 39 const int baudrates[] = {2400, 4800, 9600, 19200, 38400, 57600, 115200, 230400};
WiredHome 11:183b3893eb7d 40 static int i = 0;
WiredHome 11:183b3893eb7d 41
WiredHome 11:183b3893eb7d 42 pc.printf("Pausing 5 sec for user to interact with WiFly (press <enter>).\r\n");
WiredHome 11:183b3893eb7d 43 userTimer.start();
WiredHome 11:183b3893eb7d 44 do {
WiredHome 11:183b3893eb7d 45 if (pc.readable()) {
WiredHome 11:183b3893eb7d 46 bool loop = true;
WiredHome 11:183b3893eb7d 47 int c = pc.getc();
WiredHome 11:183b3893eb7d 48 pc.printf("Shell opened to WiFly module: <esc> to exit,\r\n ctrl-B to reboot, ctrl-C to step baud\r\n");
WiredHome 11:183b3893eb7d 49 while (loop) {
WiredHome 11:183b3893eb7d 50 if (pc.readable()) {
WiredHome 11:183b3893eb7d 51 int c = pc.getc();
WiredHome 11:183b3893eb7d 52 switch (c) {
WiredHome 11:183b3893eb7d 53 case '\x1B': // <ESC>
WiredHome 11:183b3893eb7d 54 loop = false;
WiredHome 11:183b3893eb7d 55 break;
WiredHome 11:183b3893eb7d 56 case '\x02': // Ctrl-B
WiredHome 11:183b3893eb7d 57 wifly.reboot();
WiredHome 11:183b3893eb7d 58 break;
WiredHome 11:183b3893eb7d 59 case '\x03': // Ctrl-C
WiredHome 11:183b3893eb7d 60 pc.printf("Setting to %d baud.\r\n", baudrates[i]);
WiredHome 11:183b3893eb7d 61 wifly.baud(baudrates[i]);
WiredHome 11:183b3893eb7d 62 i++;
WiredHome 11:183b3893eb7d 63 if (i >= (sizeof(baudrates)/sizeof(baudrates[0])))
WiredHome 11:183b3893eb7d 64 i = 0;
WiredHome 11:183b3893eb7d 65 break;
WiredHome 11:183b3893eb7d 66 default:
WiredHome 11:183b3893eb7d 67 wifly.putc(c);
WiredHome 11:183b3893eb7d 68 break;
WiredHome 11:183b3893eb7d 69 }
WiredHome 11:183b3893eb7d 70 }
WiredHome 11:183b3893eb7d 71 if (wifly.readable())
WiredHome 11:183b3893eb7d 72 pc.putc(wifly.getc());
WiredHome 11:183b3893eb7d 73 }
WiredHome 11:183b3893eb7d 74 }
WiredHome 11:183b3893eb7d 75 } while (userTimer.read_ms() < 5000);
WiredHome 11:183b3893eb7d 76 pc.printf("shell closed.\r\n");
WiredHome 11:183b3893eb7d 77 }
WiredHome 11:183b3893eb7d 78
WiredHome 11:183b3893eb7d 79
WiredHome 11:183b3893eb7d 80
WiredHome 11:183b3893eb7d 81 /// Smart-WiFly-WebServer is the creation of a web server using a WiFly module.
WiredHome 10:b0b6da272a7b 82 ///
WiredHome 4:178df829d62b 83 /// This is a working version, but it is not using the standardized wifly
WiredHome 4:178df829d62b 84 /// library, which would not work for me... I had to make a number
WiredHome 11:183b3893eb7d 85 /// of changes to get it to work well. After trying to minmimize those
WiredHome 11:183b3893eb7d 86 /// changes, additional improvements became more and more clumsy, so
WiredHome 10:b0b6da272a7b 87 /// I have now been working to refactor where it makes sense, even as
WiredHome 11:183b3893eb7d 88 /// it further deviates from the mbed-library version.
WiredHome 4:178df829d62b 89 ///
WiredHome 4:178df829d62b 90 /// I created this because I couldn't find one that worked and wanted to
WiredHome 4:178df829d62b 91 /// learn the WiFly module. There are a lot of possible improvements:
WiredHome 4:178df829d62b 92 /// @li I think I'm not using the Socket interface as fully as I should.
WiredHome 10:b0b6da272a7b 93 /// @li I would like it to be faster (the interface from mbed to wifly is
WiredHome 10:b0b6da272a7b 94 /// limited to 230400 baud before it drops chars. HW handshake could
WiredHome 10:b0b6da272a7b 95 /// improve this, but the HW handshake pins on the LPC1768 are not
WiredHome 10:b0b6da272a7b 96 /// brought out.
WiredHome 4:178df829d62b 97 /// @li I would like to integrate this with the rtos.
WiredHome 10:b0b6da272a7b 98 /// @li If a page has multiple components (e.g. images), it appears
WiredHome 4:178df829d62b 99 /// unreliable. It doesn't see the request for the extra component.
WiredHome 4:178df829d62b 100 ///
WiredHome 4:178df829d62b 101 /// history:
WiredHome 4:178df829d62b 102 /// @li 20130602 added .txt to the supported types (e.g. robots.txt), so
WiredHome 4:178df829d62b 103 /// revised the credentials to .crd, which is an unsupported type
WiredHome 10:b0b6da272a7b 104 /// therefore won't be delivered to the user.
WiredHome 4:178df829d62b 105 ///
WiredHome 4:178df829d62b 106 /// @note Copyright &copy; 2013 by Smartware Computing, all rights reserved.
WiredHome 4:178df829d62b 107 /// Individuals may use this application for evaluation or non-commercial
WiredHome 4:178df829d62b 108 /// purposes. Within this restriction, changes may be made to this application
WiredHome 4:178df829d62b 109 /// as long as this copyright notice is retained. The user shall make
WiredHome 4:178df829d62b 110 /// clear that their work is a derived work, and not the original.
WiredHome 4:178df829d62b 111 /// Users of this application and sources accept this application "as is" and
WiredHome 4:178df829d62b 112 /// shall hold harmless Smartware Computing, for any undesired results while
WiredHome 4:178df829d62b 113 /// using this application - whether real or imagined.
WiredHome 4:178df829d62b 114 ///
WiredHome 4:178df829d62b 115 /// @author David Smart, Smartware Computing
WiredHome 4:178df829d62b 116 ///
WiredHome 10:b0b6da272a7b 117 int main()
WiredHome 10:b0b6da272a7b 118 {
WiredHome 4:178df829d62b 119 credentials cr; // handles the credentials
WiredHome 10:b0b6da272a7b 120
WiredHome 4:178df829d62b 121 pc.baud(460800); // I like a snappy terminal, so crank it up!
WiredHome 10:b0b6da272a7b 122
WiredHome 14:85c805890454 123 pc.printf("\r\nSmart WiFly - Build " __DATE__ " " __TIME__ "\r\n");
WiredHome 4:178df829d62b 124
WiredHome 4:178df829d62b 125 if (!ReadCredentials("/local/user.crd", &cr)) {
WiredHome 4:178df829d62b 126 pc.printf("**** ERROR, no /local/user.crd file was found. ****\r\n");
WiredHome 10:b0b6da272a7b 127 pc.printf(" Nothing else I can do until you fix this.\r\n");
WiredHome 8:50fc3ddf828a 128 wait(1.0);
WiredHome 10:b0b6da272a7b 129 error(" Waiting for user to fix this problem. \r\n"); // flash and die
WiredHome 4:178df829d62b 130 }
WiredHome 10:b0b6da272a7b 131
WiredHome 4:178df829d62b 132 // instantiate the WiflyInterface, then release the credentials
WiredHome 4:178df829d62b 133 WiflyInterface wifly(p28, p27, p23, p24, cr.ssid, cr.pass, WPA);
WiredHome 4:178df829d62b 134 FreeCredentials(&cr);
WiredHome 4:178df829d62b 135
WiredHome 12:479ff89c190b 136
WiredHome 12:479ff89c190b 137 // baud test
WiredHome 12:479ff89c190b 138 #if 0
WiredHome 12:479ff89c190b 139 wifly.init(); // start it up as a client of my network using DHCP
WiredHome 12:479ff89c190b 140 const int testBauds[] = {9600, 2400, 12345, 19200, 2400, 4800, 115200, 230400, 230400, 4800, 2400, 57600};
WiredHome 12:479ff89c190b 141 for (int i=0; i<(sizeof(testBauds)/sizeof(testBauds[0])); i++)
WiredHome 12:479ff89c190b 142 {
WiredHome 12:479ff89c190b 143 int r = wifly.baud(testBauds[i]);
WiredHome 12:479ff89c190b 144 pc.printf("wifly.baud(%d) returned %d\r\n\r\n", testBauds[i], r);
WiredHome 12:479ff89c190b 145 }
WiredHome 12:479ff89c190b 146 pc.printf("wifly.baud() test complete.\r\n");
WiredHome 12:479ff89c190b 147 while (1)
WiredHome 12:479ff89c190b 148 ;
WiredHome 12:479ff89c190b 149 #endif
WiredHome 12:479ff89c190b 150
WiredHome 11:183b3893eb7d 151 do {
WiredHome 10:b0b6da272a7b 152 wifly.init(); // start it up as a client of my network using DHCP
WiredHome 10:b0b6da272a7b 153 wifly.baud(230400); // Only 230K w/o HW flow control
WiredHome 10:b0b6da272a7b 154 if (wifly.connect())
WiredHome 10:b0b6da272a7b 155 break;
WiredHome 10:b0b6da272a7b 156 pc.printf(" Failed to connect, retrying...\r\n");
WiredHome 10:b0b6da272a7b 157 wait(1.0);
WiredHome 4:178df829d62b 158 wifly.reset();
WiredHome 10:b0b6da272a7b 159 } while (1);
WiredHome 11:183b3893eb7d 160
WiredHome 11:183b3893eb7d 161 WiFlyShell(wifly, pc);
WiredHome 4:178df829d62b 162
WiredHome 12:479ff89c190b 163 // Now let's instantiate the web server - along with a few settings:
WiredHome 12:479ff89c190b 164 // the Wifly object, the port of interest (typically 80),
WiredHome 12:479ff89c190b 165 // file system path to the static pages,
WiredHome 12:479ff89c190b 166 // the maximum parameters per transaction (in the query string),
WiredHome 12:479ff89c190b 167 // the maximum number of dynamic pages that can be registered,
WiredHome 12:479ff89c190b 168 // the serial port back thru USB (for development/logging)
WiredHome 14:85c805890454 169 HTTPServer svr(&wifly, HTTP_SERVER_PORT, "/local/", 15, 30, 10, &pc);
WiredHome 11:183b3893eb7d 170 pc.printf("Connect to this server at http://%s\r\n", wifly.getIPAddress());
WiredHome 10:b0b6da272a7b 171
WiredHome 4:178df829d62b 172 // But for even more fun, I'm registering a few dynamic pages
WiredHome 10:b0b6da272a7b 173 // which you see the handlers for in DynamicPages.cpp.
WiredHome 4:178df829d62b 174 // Here you can see the path to place on the URL.
WiredHome 4:178df829d62b 175 // ex. http://192.168.1.140/dyn
WiredHome 4:178df829d62b 176 svr.RegisterHandler("/dyn", SuperSimpleDynamicPage);
WiredHome 4:178df829d62b 177 svr.RegisterHandler("/dyn1", SimpleDynamicPage);
WiredHome 4:178df829d62b 178 svr.RegisterHandler("/dyn2", SimpleDynamicForm);
WiredHome 10:b0b6da272a7b 179
WiredHome 14:85c805890454 180 svr.RegisterHandler("/pass", SimpleSecurityCheck);
WiredHome 14:85c805890454 181
WiredHome 14:85c805890454 182 svr.RegisterHandler("/config", ServerConfig);
WiredHome 14:85c805890454 183
WiredHome 4:178df829d62b 184 // Let the human know it is ready - if they are watching
WiredHome 4:178df829d62b 185 pc.printf("Waiting for a connection...\r\n");
WiredHome 13:14c6ce4ced9c 186
WiredHome 13:14c6ce4ced9c 187 // wifly active pin
WiredHome 13:14c6ce4ced9c 188 button.rise(&flip);
WiredHome 13:14c6ce4ced9c 189 button.fall(&flip);
WiredHome 13:14c6ce4ced9c 190
WiredHome 10:b0b6da272a7b 191 while (true) {
WiredHome 11:183b3893eb7d 192 //if (testLEDs == 1)
WiredHome 11:183b3893eb7d 193 // testLEDs = 2;
WiredHome 11:183b3893eb7d 194 //else
WiredHome 11:183b3893eb7d 195 // testLEDs = 1;
WiredHome 11:183b3893eb7d 196 svr.Poll(); // non-blocking, but not deterministic
WiredHome 4:178df829d62b 197 //pc.printf("this %d, longest %d\r\n", thisRun, longestRun);
WiredHome 12:479ff89c190b 198 if (pc.readable())
WiredHome 12:479ff89c190b 199 WiFlyShell(wifly, pc);
WiredHome 10:b0b6da272a7b 200 }
WiredHome 4:178df829d62b 201 }