Neha Patil (Editor)

Middleware for Robotic Applications

Updated on
Edit
Like
Comment
Share on FacebookTweet on TwitterShare on LinkedInShare on Reddit
Written in
  
C++

Operating system
  
Linux, Windows

Middleware for Robotic Applications

Developer(s)
  
MetraLabs GmbH, Ilmenau University of Technology

Initial release
  
27 April 2012; 4 years ago (2012-04-27)

Stable release
  
2017-01-23 / 23 January 2017; 54 days ago (2017-01-23)

Type
  
Robotics suite, Middleware

Middleware for Robotic Applications (MIRA) is a cross-platform, open-source software framework written in C++ that provides a middleware, several base functionalities and numerous tools for developing and testing distributed software modules. It also focuses on easy creation of complex, dynamic applications, while reusing these modules as plugins. The main purpose of MIRA is the development of robotic applications, but as it is designed to allow type safe data exchange between software modules using intra- and interprocess communication it is not limited to these kinds of applications.

Contents

MIRA is developed in a cooperation of the MetraLabs GmbH and the Ilmenau University of Technology/Neuroinformatics and Cognitive Robotics Lab. Therefore, MIRA was designed to fulfill the requirements of both commercial and educational purposes.

Features

General:

  • adds introspection/reflection and serialization to C++ with the usage of C++ language-constructs only (a meta-language or metacompilers are not necessary)
  • efficient data exchange between software modules
  • the used communication technique based on "channels" always allows non-blocking access to the transferred data
  • for the user the communication is fully transparent no matter if the software modules are located within the same process, different processes or on different machines, the underlying transport layer will choose the fasted method for data transportation automatically
  • beside data exchange via "channels", MIRA supports Remote Procedure Calls (RPC) and Remote Method Invokation.
  • MIRA is fully decentralized, hence there is no central server or central communication hub, making its communication more robust and allows its usage in multi-robot applications
  • Robotic Application specific:

  • easy configuration of software modules via configuration files
  • parameters of algorithms can be modified live at runtime to speed up the debugging and development process
  • huge amounts of robot sensor data can be recorded in Tapes for later playback, here different codecs can be used to compress the data
  • Platforms

    MIRA supports and was successfully tested on the following platforms:

  • Linux – Ubuntu and derivates, OpenSuse, CentOS, Red Hat and Fedora
  • Windows – Microsoft Windows XP, Windows Vista, Windows 7 (32bit and 64bit)
  • Applications using MIRA

    MIRA is used within the following applications:

  • Konrad and Suse - Guide Robots, that guide visitors within the Zuse-Building of the Ilmenau University of Technology
  • Monitoring the air quality within clean rooms at Infineon Technologies using several SCITOS G5 robots
  • and projects:

  • CompanionAble - Integrated Cognitive Assistive & Domotic Companion Robotic System for Ability & Security
  • Robot-Era - Implementation and integration of advanced Robotic systems and intelligent environments in real scenarios for the ageing population
  • Reflection/Serialization

  • arbitrary complex data types can be serialized by adding a simple reflect method to the class as shown above
  • after these minor changes, the objects of the class can be transported via inter-process communication, can be used as parameters in configuration files for software modules, can be recorded in "Tape" files, etc.
  • Remote Procedure Calls

  • arbitrary methods can be turned into RPC methods by adding one line of code within the reflect() method. There is no need to write wrappers around the methods or to use meta description languages.
  • References

    Middleware for Robotic Applications Wikipedia