MRPT  2.0.1
lib_mrpt_comms.h
Go to the documentation of this file.
1 /* +---------------------------------------------------------------------------+
2  | Mobile Robot Programming Toolkit (MRPT) |
3  | https://www.mrpt.org/ |
4  | |
5  | Copyright (c) 2005-2020, Individual contributors, see AUTHORS file |
6  | See: https://www.mrpt.org/Authors - All rights reserved. |
7  | Released under BSD License. See details in https://www.mrpt.org/License |
8  +---------------------------------------------------------------------------+
9  */
10 
11 /** \defgroup mrpt_comms_grp [mrpt-comms]
12 
13 Communication utilities: serial ports, networking (TCP, DNS,...), pub/sub
14 nodelets.
15 
16 <small> <a href="index.html#libs">Back to list of all libraries</a> | <a
17 href="modules.html" >See all modules</a> </small> <br>
18 
19 [TOC]
20 
21 # Library `mrpt-comms`
22 <small> [New in MRPT 2.0.0] </small>
23 
24 This C++ library is part of MRPT and can be installed in Debian-based systems
25 with:
26 
27  sudo apt install libmrpt-comms-dev
28 
29 See: \ref mrpt_from_cmake
30 
31 Find below some examples of use.
32 
33 ## Nodelets-like Pub/Sub mechanism
34 
35 MRPT provides a Publisher/Subscriber (Pub/Sub) pattern implementation for
36 intra-process (multiple threads) zero-copy super fast communication.
37 
38 Thread creation and handling is the responsibility of the user.
39 
40 The main concepts are:
41 - A `topic`: the name of a shared variable. If you are familiar with ROS, you
42 already know what a topic is. Topics are identified by unique strings,
43 e.g. `odometry`, `scan`.
44 - Directory: The central hub that holds all references to existing topics.
45 Usually only one should exist per process, but there is no actual limitation.
46 - Subscriber: An object that binds to a given topic and allows a user-given
47 function to be called whenever new data is published to the topic.
48 - Publish: The operation of publishing a new data piece to a named topic.
49 It's important to note that the call is **blocking**: all subscribers are
50 executed from the thread invoking publish(). Users are encouraged to design
51 subscribers such that their execution time are minimized, delegating heavy
52 computation to other worker threads.
53 
54 All these concepts are illustrated in the example below. Note that different
55 subscribers are created: with a lambda, with a regular function, a std::bind(),
56 etc.
57 
58 See: \ref comms_nodelets_example/NodeletsTest_impl.cpp
59 \snippet comms_nodelets_example/NodeletsTest_impl.cpp example-nodelets
60 
61 ## HTTP request methods
62 
63 mrpt::comms::net::http_get() is an easy way to GET an HTTP resource from any C++
64 program. You can also use mrpt::comms::net::http_request() to access APIs
65 requiring the POST method.
66 
67 See: \ref comms_http_client/test.cpp
68 \snippet comms_http_client/test.cpp example-http-get
69 
70 
71 */



Page generated by Doxygen 1.8.14 for MRPT 2.0.1 Git: 0fef1a6d7 Fri Apr 3 23:00:21 2020 +0200 at vie abr 3 23:20:28 CEST 2020