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 10:10:14 2013 +0000
Revision:
10:8b4c3d605bf0
Parent:
0:9e4bcb10b3e3
Improved javascript code

Who changed what in which revision?

UserRevisionLine numberNew contents of line
feb11 0:9e4bcb10b3e3 1 #include "RPCCommand.h"
feb11 0:9e4bcb10b3e3 2 #include "mbed.h"
feb11 0:9e4bcb10b3e3 3 #include "RPCType.h"
feb11 0:9e4bcb10b3e3 4
feb11 0:9e4bcb10b3e3 5
feb11 0:9e4bcb10b3e3 6 RPCCommand::RPCCommand():
feb11 0:9e4bcb10b3e3 7 cmd(),
feb11 0:9e4bcb10b3e3 8 obj_name(NULL),
feb11 0:9e4bcb10b3e3 9 func_name(NULL)
feb11 0:9e4bcb10b3e3 10 {
feb11 0:9e4bcb10b3e3 11
feb11 0:9e4bcb10b3e3 12 }
feb11 0:9e4bcb10b3e3 13
feb11 0:9e4bcb10b3e3 14 bool RPCCommand::decode(char *buffer)
feb11 0:9e4bcb10b3e3 15 {
feb11 0:9e4bcb10b3e3 16 if(buffer == NULL)
feb11 0:9e4bcb10b3e3 17 return false;
feb11 0:9e4bcb10b3e3 18 if(buffer[0] != '/')
feb11 0:9e4bcb10b3e3 19 return false;
feb11 0:9e4bcb10b3e3 20
feb11 0:9e4bcb10b3e3 21 ++buffer;
feb11 0:9e4bcb10b3e3 22 char *tmp = strchr(buffer ,'/');
feb11 0:9e4bcb10b3e3 23
feb11 0:9e4bcb10b3e3 24 if(tmp == NULL)
feb11 0:9e4bcb10b3e3 25 return false;
feb11 0:9e4bcb10b3e3 26 if(tmp == buffer)
feb11 0:9e4bcb10b3e3 27 return false;
feb11 0:9e4bcb10b3e3 28
feb11 0:9e4bcb10b3e3 29 tmp[0] = '\0';
feb11 0:9e4bcb10b3e3 30 obj_name = buffer;
feb11 0:9e4bcb10b3e3 31
feb11 0:9e4bcb10b3e3 32 buffer = tmp+1;
feb11 0:9e4bcb10b3e3 33
feb11 0:9e4bcb10b3e3 34 if(buffer[0] == '\0' || buffer[0] == '?')
feb11 0:9e4bcb10b3e3 35 return false;
feb11 0:9e4bcb10b3e3 36
feb11 0:9e4bcb10b3e3 37 func_name = buffer;
feb11 0:9e4bcb10b3e3 38
feb11 0:9e4bcb10b3e3 39 tmp = strchr(buffer, '?');
feb11 0:9e4bcb10b3e3 40 if(tmp != NULL)
feb11 0:9e4bcb10b3e3 41 {
feb11 0:9e4bcb10b3e3 42 if(tmp[1] == '\0')
feb11 0:9e4bcb10b3e3 43 return false;
feb11 0:9e4bcb10b3e3 44 tmp[0] = '\0';
feb11 0:9e4bcb10b3e3 45 }
feb11 0:9e4bcb10b3e3 46
feb11 0:9e4bcb10b3e3 47 cmd[0] = '\0';
feb11 0:9e4bcb10b3e3 48 strcat(cmd, "/");
feb11 0:9e4bcb10b3e3 49 strcat(cmd, obj_name);
feb11 0:9e4bcb10b3e3 50 strcat(cmd, "/");
feb11 0:9e4bcb10b3e3 51 strcat(cmd, func_name);
feb11 0:9e4bcb10b3e3 52
feb11 0:9e4bcb10b3e3 53 if(tmp == NULL)
feb11 0:9e4bcb10b3e3 54 return true;
feb11 0:9e4bcb10b3e3 55
feb11 0:9e4bcb10b3e3 56 buffer = tmp+1;
feb11 0:9e4bcb10b3e3 57 do
feb11 0:9e4bcb10b3e3 58 {
feb11 0:9e4bcb10b3e3 59 tmp = strchr(buffer, '&');
feb11 0:9e4bcb10b3e3 60
feb11 0:9e4bcb10b3e3 61 if(tmp != NULL)
feb11 0:9e4bcb10b3e3 62 {
feb11 0:9e4bcb10b3e3 63 if(tmp[1] == '\0' || buffer == tmp)
feb11 0:9e4bcb10b3e3 64 return false;
feb11 0:9e4bcb10b3e3 65 tmp[0] = '\0';
feb11 0:9e4bcb10b3e3 66 }
feb11 0:9e4bcb10b3e3 67
feb11 0:9e4bcb10b3e3 68 char *sep = strchr(buffer, '=');
feb11 0:9e4bcb10b3e3 69 if(sep == NULL)
feb11 0:9e4bcb10b3e3 70 return false;
feb11 0:9e4bcb10b3e3 71 if(sep == buffer)
feb11 0:9e4bcb10b3e3 72 return false;
feb11 0:9e4bcb10b3e3 73 if(sep[1] == '\0' || sep[1] == '&')
feb11 0:9e4bcb10b3e3 74 return false;
feb11 0:9e4bcb10b3e3 75
feb11 0:9e4bcb10b3e3 76 strcat(cmd, " ");
feb11 0:9e4bcb10b3e3 77 strcat(cmd, sep+1);
feb11 0:9e4bcb10b3e3 78
feb11 0:9e4bcb10b3e3 79 if(tmp != NULL)
feb11 0:9e4bcb10b3e3 80 buffer = tmp+1;
feb11 0:9e4bcb10b3e3 81 else
feb11 0:9e4bcb10b3e3 82 buffer = NULL;
feb11 0:9e4bcb10b3e3 83 }while(buffer);
feb11 0:9e4bcb10b3e3 84
feb11 0:9e4bcb10b3e3 85 return true;
feb11 0:9e4bcb10b3e3 86 }
feb11 0:9e4bcb10b3e3 87
feb11 0:9e4bcb10b3e3 88
feb11 0:9e4bcb10b3e3 89
feb11 0:9e4bcb10b3e3 90 char* RPCCommand::get_cmd() const
feb11 0:9e4bcb10b3e3 91 {
feb11 0:9e4bcb10b3e3 92 return (char*)cmd;
feb11 0:9e4bcb10b3e3 93 }
feb11 0:9e4bcb10b3e3 94
feb11 0:9e4bcb10b3e3 95 RPC_COMMAND_TYPE RPCCommand::get_type() const
feb11 0:9e4bcb10b3e3 96 {
feb11 0:9e4bcb10b3e3 97 if(!strcmp(func_name, "new") && RPCType::instance().is_supported_type(obj_name))
feb11 0:9e4bcb10b3e3 98 return CREATE;
feb11 0:9e4bcb10b3e3 99
feb11 0:9e4bcb10b3e3 100 RPC* r = RPC::lookup(obj_name);
feb11 0:9e4bcb10b3e3 101 if(r == NULL)
feb11 0:9e4bcb10b3e3 102 return INVALID;
feb11 0:9e4bcb10b3e3 103
feb11 0:9e4bcb10b3e3 104 if(!strcmp(func_name, "delete"))
feb11 0:9e4bcb10b3e3 105 return DELETE;
feb11 0:9e4bcb10b3e3 106
feb11 0:9e4bcb10b3e3 107 const struct rpc_method *methods = r->get_rpc_methods();
feb11 0:9e4bcb10b3e3 108 int i = 0;
feb11 0:9e4bcb10b3e3 109 while(methods[i].name != NULL)
feb11 0:9e4bcb10b3e3 110 {
feb11 0:9e4bcb10b3e3 111 if(!strcmp(func_name, methods[i].name))
feb11 0:9e4bcb10b3e3 112 {
feb11 0:9e4bcb10b3e3 113 return FUNCTION_CALL;
feb11 0:9e4bcb10b3e3 114 }
feb11 0:9e4bcb10b3e3 115 ++i;
feb11 0:9e4bcb10b3e3 116 }
feb11 0:9e4bcb10b3e3 117
feb11 0:9e4bcb10b3e3 118 return INVALID;
feb11 0:9e4bcb10b3e3 119 }
feb11 0:9e4bcb10b3e3 120
feb11 0:9e4bcb10b3e3 121 char* RPCCommand::get_obj_name() const
feb11 0:9e4bcb10b3e3 122 {
feb11 0:9e4bcb10b3e3 123 return obj_name;
feb11 0:9e4bcb10b3e3 124 }
feb11 0:9e4bcb10b3e3 125
feb11 0:9e4bcb10b3e3 126 char* RPCCommand::get_func_name() const
feb11 0:9e4bcb10b3e3 127 {
feb11 0:9e4bcb10b3e3 128 return func_name;
feb11 0:9e4bcb10b3e3 129 }
feb11 0:9e4bcb10b3e3 130