Server that executes RPC commands through HTTP.

Dependencies:   EthernetInterface mbed-rpc mbed-rtos mbed

Import programHTTP-Server

Server that executes RPC commands through HTTP.

Overview

This program is a small HTTP Server that can execute RPC commands sent through HTTP and sends back a reply. This reply can be either a line of text or an HTML page.

HTTP Request

The server will only read the first line of the HTTP header. It does not check that the header is correct and it does not attempt to read the body. Hence, the server is only interested in the type of the request and the path. Instead of requesting a file, the path contains the RPC command.

RPC command encoding

Information

The RPC command must be encoded in a special way because no spaces are allowed in the path.

Thus, the RPC command is encoded in this way :

/<obj name or type>/<func name>?arg1_name=arg1_val&arg2_name=arg2_val

or, if the RPC command does not have any arguments :

/<obj name or type>/<func name>

So, a complete URL might be :

http://10.2.200.116/led2/write?val=1

The name of the arguments does not appear in the final RPC command. So these 3 urls will do exactly the same thing :

http://10.2.200.116/led2/write?val=1
http://10.2.200.116/led2/write?test=1
http://10.2.200.116/led2/write?blabla=1

Also, the order of the arguments are preserved.

Request handlers

To process requests, the server relies on RequestHandler. Each RequestHandler is assigned to a request type. Each type of request is assigned to a certain role :

  • PUT requests to create new objects
  • DELETE requests to delete objects
  • GET requests to call a function of an object

However, there is a RequestHandler that accepts only GET requests but it can create/delete/call a function. This was necessary to provide an interactive web page that allows creation and deletion of objects.

Reply

The reply depends on the formatter. Currently, three formatters are available :

  • The most basic one does not modify the RPC reply. Hence, if you consider sending request from python scripts, this formatter is the most appropriate one.
  • A simple HTML formatter will allow the user to view the RPC reply and a list of RPC objects currently alive from a browser.
  • Finally, a more complex HTML formatter creates an entire web page where the user can create and delete an object as well as calling functions on these objects.

Configure the server

The configuration of the server consists on choosing the formatter and adding one or more request handlers to the server. The main function initializes the server in order to produce HTML code and to receive data only using GET requests. If you want to use a simpler and different version of the server you can change the content of the main function (located in main.cpp) by this code :

main

    RPCType::instance().register_types();    

    EthernetInterface eth;
    eth.init();
    eth.connect();
    printf("IP Address is %s\n", eth.getIPAddress());
    
    HTTPServer srv = create_simple_server();

    if(!srv.init(SERVER_PORT))
    {
        printf("Error while initializing the server\n");
        eth.disconnect();
        return -1;
    }

    srv.run();

    return 0;

However, this configuration will not work with the following examples.

Examples

I assume that the server is using the InteractiveHTMLFormatter (which should be the case if you did not make any changes).

Using a browser

Here is a quick guide how to run this program :

  1. Compiles this program and copies it to the mbed
  2. Open TeraTerm (install it if you don't have it), select serial and choose the port named "mbed Serial Port"
  3. Reset your mbed
  4. The IP address should appear in teraterm. In this example, I will use 10.2.200.116.
  5. Open your browser and go to http://10.2.200.116/.
  6. If everything is ok, you should see a webpage.

Now, let's switch on a led. First, we need to create an object to control a led :

Then, let's write an RPC command to switch on led :


Using python

This program creates and switches on led2.

Sending RPC commands over HTTP with Python

import httplib

SERVER_ADDRESS = '10.2.200.38'

h = httplib.HTTPConnection(SERVER_ADDRESS)
h.request("GET", "/DigitalOut/new?arg=LED2&name=led2")
r = h.getresponse()
print r.read()

h.request("GET", "/led2/write?arg=1")
r = h.getresponse()
print r.read()

h.close()

Of course, you might have to change the server address in order to make it work.

Committer:
feb11
Date:
Thu Jul 18 09:39:35 2013 +0000
Revision:
9:a9bf63017854
Parent:
8:464abd184b7b
Improved error message

Who changed what in which revision?

UserRevisionLine numberNew contents of line
feb11 0:9e4bcb10b3e3 1 #include "HTTPServer.h"
feb11 0:9e4bcb10b3e3 2
feb11 0:9e4bcb10b3e3 3 #define INVALID_FORMATTER "No valid formatter specified"
feb11 0:9e4bcb10b3e3 4
feb11 0:9e4bcb10b3e3 5 bool cmp(char* a, char* b)
feb11 0:9e4bcb10b3e3 6 {
feb11 0:9e4bcb10b3e3 7 return strcmp(a,b) < 0;
feb11 0:9e4bcb10b3e3 8 }
feb11 4:624527ebc0fa 9
feb11 0:9e4bcb10b3e3 10 HTTPServer::HTTPServer(Formatter *f):
feb11 0:9e4bcb10b3e3 11 socket(),
feb11 0:9e4bcb10b3e3 12 handlers(&cmp),
feb11 0:9e4bcb10b3e3 13 formatter(f),
feb11 0:9e4bcb10b3e3 14 reply(),
feb11 0:9e4bcb10b3e3 15 command()
feb11 0:9e4bcb10b3e3 16 {
feb11 0:9e4bcb10b3e3 17 }
feb11 0:9e4bcb10b3e3 18
feb11 0:9e4bcb10b3e3 19 HTTPServer::~HTTPServer()
feb11 0:9e4bcb10b3e3 20 {
feb11 0:9e4bcb10b3e3 21 for(std::map<char*, RequestHandler*>::iterator itor = handlers.begin();
feb11 0:9e4bcb10b3e3 22 itor != handlers.end();
feb11 0:9e4bcb10b3e3 23 ++itor)
feb11 0:9e4bcb10b3e3 24 delete itor->second;
feb11 0:9e4bcb10b3e3 25
feb11 0:9e4bcb10b3e3 26 if(formatter)
feb11 0:9e4bcb10b3e3 27 delete formatter;
feb11 0:9e4bcb10b3e3 28 }
feb11 0:9e4bcb10b3e3 29
feb11 0:9e4bcb10b3e3 30 bool HTTPServer::init(int port)
feb11 0:9e4bcb10b3e3 31 {
feb11 0:9e4bcb10b3e3 32 socket.set_blocking(true);
feb11 9:a9bf63017854 33 if(socket.bind(port))
feb11 9:a9bf63017854 34 {
feb11 9:a9bf63017854 35 printf("Could not bind on port %d.\n", port);
feb11 9:a9bf63017854 36 return false;
feb11 9:a9bf63017854 37 }
feb11 9:a9bf63017854 38
feb11 9:a9bf63017854 39 if(socket.listen())
feb11 9:a9bf63017854 40 {
feb11 9:a9bf63017854 41 printf("Could not listen %d\n", port);
feb11 9:a9bf63017854 42 return false;
feb11 9:a9bf63017854 43 }
feb11 9:a9bf63017854 44
feb11 9:a9bf63017854 45 return true;
feb11 0:9e4bcb10b3e3 46 }
feb11 0:9e4bcb10b3e3 47
feb11 0:9e4bcb10b3e3 48 void HTTPServer::run()
feb11 0:9e4bcb10b3e3 49 {
feb11 0:9e4bcb10b3e3 50 TCPSocketConnection c;
feb11 0:9e4bcb10b3e3 51 while(true)
feb11 0:9e4bcb10b3e3 52 {
feb11 0:9e4bcb10b3e3 53 while(socket.accept(c));
feb11 0:9e4bcb10b3e3 54 c.set_blocking(false, 1000);
feb11 0:9e4bcb10b3e3 55 while(c.is_connected())
feb11 0:9e4bcb10b3e3 56 {
feb11 0:9e4bcb10b3e3 57 char buffer[512];
feb11 0:9e4bcb10b3e3 58 int n = c.receive_all(buffer, sizeof(buffer)-1);
feb11 0:9e4bcb10b3e3 59 if(n == 0)
feb11 0:9e4bcb10b3e3 60 {
feb11 0:9e4bcb10b3e3 61 c.close();
feb11 0:9e4bcb10b3e3 62 break;
feb11 0:9e4bcb10b3e3 63 }
feb11 0:9e4bcb10b3e3 64 else if(n != -1)
feb11 0:9e4bcb10b3e3 65 {
feb11 7:838d7ea07e18 66 printf("Received data\n");
feb11 0:9e4bcb10b3e3 67 buffer[n] = '\0';
feb11 0:9e4bcb10b3e3 68 handle_request(buffer);
feb11 0:9e4bcb10b3e3 69 if(formatter != NULL)
feb11 0:9e4bcb10b3e3 70 {
feb11 7:838d7ea07e18 71 printf("Sending data...");
feb11 0:9e4bcb10b3e3 72 char *page = formatter->get_page(reply);
feb11 0:9e4bcb10b3e3 73 do
feb11 0:9e4bcb10b3e3 74 {
feb11 0:9e4bcb10b3e3 75 c.send(page, strlen(page)+1);
feb11 0:9e4bcb10b3e3 76 page = formatter->get_page(reply);
feb11 0:9e4bcb10b3e3 77 }while(strlen(page)>0);
feb11 7:838d7ea07e18 78 printf("done\n");
feb11 0:9e4bcb10b3e3 79 }
feb11 0:9e4bcb10b3e3 80 else
feb11 0:9e4bcb10b3e3 81 c.send(INVALID_FORMATTER, strlen(INVALID_FORMATTER)+1);
feb11 0:9e4bcb10b3e3 82 }
feb11 7:838d7ea07e18 83 else
feb11 7:838d7ea07e18 84 printf("Error while receiving data\n");
feb11 0:9e4bcb10b3e3 85 }
feb11 0:9e4bcb10b3e3 86 }
feb11 0:9e4bcb10b3e3 87 }
feb11 0:9e4bcb10b3e3 88
feb11 0:9e4bcb10b3e3 89 void HTTPServer::handle_request(char *buffer)
feb11 0:9e4bcb10b3e3 90 {
feb11 0:9e4bcb10b3e3 91 char *request_type = strtok(buffer, " ");
feb11 0:9e4bcb10b3e3 92 char *request = strtok(NULL, " ");
feb11 0:9e4bcb10b3e3 93
feb11 0:9e4bcb10b3e3 94 reply[0] = '\0';
feb11 0:9e4bcb10b3e3 95 if(!strcmp(request, "/"))
feb11 0:9e4bcb10b3e3 96 return;
feb11 0:9e4bcb10b3e3 97
feb11 0:9e4bcb10b3e3 98 if(!command.decode(request))
feb11 0:9e4bcb10b3e3 99 {
feb11 0:9e4bcb10b3e3 100 strcat(reply, "Malformed request");
feb11 0:9e4bcb10b3e3 101 return;
feb11 0:9e4bcb10b3e3 102 }
feb11 0:9e4bcb10b3e3 103
feb11 0:9e4bcb10b3e3 104 std::map<char*, RequestHandler*>::iterator itor = handlers.find(request_type);
feb11 0:9e4bcb10b3e3 105 if(itor == handlers.end())
feb11 0:9e4bcb10b3e3 106 {
feb11 8:464abd184b7b 107 strcat(reply, "No request handler found for this type of request.");
feb11 0:9e4bcb10b3e3 108 return;
feb11 0:9e4bcb10b3e3 109 }
feb11 0:9e4bcb10b3e3 110 if(itor->second != NULL)
feb11 0:9e4bcb10b3e3 111 itor->second->handle(command, reply);
feb11 0:9e4bcb10b3e3 112 else
feb11 0:9e4bcb10b3e3 113 strcat(reply, "Invalid request handler");
feb11 0:9e4bcb10b3e3 114 }
feb11 0:9e4bcb10b3e3 115
feb11 0:9e4bcb10b3e3 116 void HTTPServer::add_request_handler(char *name, RequestHandler* handler)
feb11 0:9e4bcb10b3e3 117 {
feb11 0:9e4bcb10b3e3 118 handlers[name] = handler;
feb11 0:9e4bcb10b3e3 119 }
feb11 0:9e4bcb10b3e3 120