welcome: please sign in

Revision 2 as of 2015-02-18 18:20:47

Clear message
location: HATP / msgconnector

msgconnector, HATP's middleware

This page presents msgconnector's usage. msgconnector is responsible to carry messages form a module to another.

It is also responsible to the connection to other middlewares: OPRS, ORO, YARP.

/!\ The way to install msgconnector is described in HATP/install.

1. Principle

msgconnector is composed of a server (MsgSever) that once started allows the different clients to connect. When a client connects it gives its name. This name is then used to carry a message from a client to another.

It is possible to declare several clients with the same name, then all the message are repeated to all the clients with the same name.

The message passed are using the JSON standard (see JSON).

Finally msgconnector can be connected to other middleware to extend the reach of HATP's messages. To do so bridges need to be started. So far the implemented bridge are:

If you need an additionnal bridge put the request on the tracker, see the troubleshooting section at the bottom of this page.

2. Start the server

The default usage for the server is simply:

MsgServer

It starts the server on localhost and on the port 5500.

The help gives:

MsgServer --help
Usage:  Default:        MsgServer
        Compact:        MsgServer address:port [max_time]
        Standard:       MsgServer address port [max_time]
        Complete:       MsgServer [-a address] [-p port] [-t max_time] [-m max_connections]

Allowed options:
  --help                   Produce help message
  -a [ --address ] arg     The address of the server (default : localhost)
  -p [ --port ] arg        The port number of the server (default : 5500)
  -t [ --time ] arg        The maximum inactivity time in second before the 
                           automatic-shutdown of the server (default : 3600)
  -m [ --max-clients ] arg Maximum number of clients that can connect at the 
                           same time (default : 10)

It is indeed possible to change the following parameters:

To connect the MsgServer over the network the address should be ":<port>" or nothing to connect over the network, not localhost.

3. Use a bridge

3.1. Use OPRS bridge

msgconnector-OPRS-bridge <NAME_OF_HATP> <NAME_OF_MSG_CLIENT> <MSGC_SERV> <NAME_OF_OPRS> <OPRS_SERV> <VERBOSE_MODE>

The parameters are:

*: The address can be a hostname like localhost.

3.2. Use ORO bridge

msgconnector-ORO-bridge <NAME_OF_BRIDGE> <MSGC_SERV> <ORO_SERV> <VERBOSE_MODE>

The parameters are:

3.3. Use YARP bridge

msgconnector-YARP-bridge <NAME_OF_MSGC> <MSGC_SERV> <NAME_OF_YARPIN> <NAME_OF_YARPOUT> <VERBOSE_MODE>

The parameters are:

3.4. Use the print bridge

msgconnector-PRINT-bridge <NAME_OF_BRIDGE> <MSGC_SERV>

The parameters are:

4. Changelog

4.1. Version 2.0.0

4.2. Version 2.1.0

4.3. Version 2.2.0

4.4. Version 2.3.0

4.5. Version 2.4.0

4.6. Version 2.5.0

4.7. Version 2.6.0

4.8. Version 2.7.0

4.9. Version 2.8.0

4.10. Version 2.8.1

4.11. Version 2.8.2

4.12. Version 2.8.3

4.13. Version 2.8.4

5. License, Troubleshooting and Maintainer

HATP is distributed under 2-clause BSD license. (See here for details.)

The page to report problems or for pull request: Openrobots/msgconnector.

Current maintainer(s):