SlideShare a Scribd company logo
Fast RTPS Workshop
FIWARE Summit
09/05/2018
Jaime Martin Losa
CEO eProsima
JaimeMartin@eProsima.co
m www.eProsima.com
Agenda
 Fast RTPS
• Motivation
• Introduction
□ DDS
□ Architecture
□ Shapes Demo
• Hello World Example
1
Fast RTPS
Powering ROS2 & FIWARE
We are hiring!
Jobs@eprosima.com
3
Fast RTPS - Motivation
 Real Time Requirements
• Latency measured in µSec
 High Throughput Requirements
• Take advantage of Pub/Sub Architecture
 Low bandwidth, intermittent and unreliable datalinks
• Radio networks
• Wifi
 Many to Many communications
 Decoupled architectures
 Different QoS over different datalinks and performance requirements.
 Efficient Data Models
4
Fast RTPS - Motivation
 C++
 Full RTPS (Real Time Publish Subscribe) implementation
 Security (Encryption and Authentication)
 RPC layer available through eProsima RPC over DDS
 Based on OMG standards, Interoperable.
 Comprehensive docs, videos, examples, etc.
 Multi-Platform: Windows, Linux, Android, Mac OS, iOS
• Many ports developed by the community
 Robotics Adoption (ROS2)
 Apache 2.0 License
5
Fast RTPS: Key Features
 RTPS focused:
• Access to the protocol internals
 Large Data Support:
• Fragmentation and Flow controllers.
 DDS Security:
• Authentication, Encryption
 Support for Static Discovery
• Faster Discovery.
 XML QoS Profiles (Available for ROS2 also)
• See ROSCON 2017 Presentation
https://roscon.ros.org/2017/presentations/ROSCon%202017%20ROS2%20Fine
%20Tuning.pdf
• Fine tunning for extreme scenarios. 6
Fast RTPS: Key Features II
 Fully Open Source
• Apache 2.0
• Community of Contributors
• User ports for many platforms.
• No vendor lock-in
 Lightweight
 Commercial Support
• Fast Response
• User Driven Roadmap
 Aligned with OS Community:
• ROS2, Dronecode, FIWARE
 Standard
7
Fast RTPS 1.6 (May 2018): New features
 Access Control
 History persistence in database (sqlite).
8
FIROS2 New Release
 Connect Context Broker with Fast RTPS/ROS2
 Already available in github:
• https://github.com/eProsima/FIROS2
9
DDS: Standards-based Integration Infrastructure for Critical
Applications
10
Streaming
Data
Sensors Events
Real-Time
Applications
Enterprise
Applications Actuators
Family of Specifications
11
Broad Adoption
 Vendor independent
• API for portability
• Wire protocol for interoperability
 Multiple implementations
• 10 of API
• 8 support RTPS
 Heterogeneous
• C, C++, Java, .NET (C#, C++/CLI)
• Linux, Windows, VxWorks, other embedded & real•time
 Loosely coupled
12
DDS adopted by key programs in Europe
 European Air Traffic Control
• DDS proposed for interoperate
ATC centers
 Spanish Army
• DDS is mandated for C2
Interoperability (ethernet, radio &
satellite)
 UK Generic Vehicle
Architecture
• Mandates DDS for vehicle comm.
• Mandates DDS-RTPS for interop.
13
US-DoD mandates DDS for data-distribution
 DISR (formerly JTA)
• DoD Information Technology
Standards Registry
 US Navy Open Architecture
 Army, OSD
• UCS, Unmanned Vehicle Control
 SPAWAR NESI
• Net-centric Enterprise Solutions for
Interoperability
• Mandates DDS for Pub-Sub SOA
14
RTPS Adoption
 ROS (Robotic Operating System)
 FIWARE
• EU R&D Software Platform
 Many Drone Companies
• 3D Robotics
• Magma UAVs
• …
 Dronecode
• Main OSS platform for Drones
15
ROS2: Robotics de facto Standard
 The Robot Operating System (ROS) is a set of software libraries and tools that help
you build robot applications. From drivers to state-of-the-art algorithms, and with
powerful developer tools, ROS has what you need for your next robotics project. And
it's all open source. ROS has become a de facto standard for Robotic applications.
 OSRF Sponsors: Bosh, DARPA, google, MathWorks, Nasa, Nissan, Qualcomm,
rethink robotics, ROS-Industrial Consortium, Sandia National Laboratories, SICK,
Willow Garage, Yujin Robot
16
DDS Architecture
DDS
 DDS (Data Distribution Service for Real-Time Systems) is a OMG
specification for a pub/sub data centric model (DCPS, Data Centric
Publish/Subscribe) for Real-Time data comms in distributed systems.
 DDS is a networking middleware that:
• Simplifies and Standardizes data flows in distributed real-time systems.
• Provides robust comms (no single point of failure) and efficient (minimum
latency)
• Provides all kind of QoS to shape the data flows and deliver predictable results.
18
DDS
 DDS uses the concept of Global Data Space. In this Space we define topics of
data, and the publishers publish samples of these topics. DDS distributes these
samples to all the subscribers of those topics. Any node can be a publisher or a
subscriber.
19
Why DDS? Decoupled model
 Space (location)
• Automatic Discovery ensures network topology independence
 Redundancy:
• It is possible to configure redundant publishers and subscribers, primary/secundary and
takeover schemas supported
 Time:
• The reception of data does not need to be synchronous with the writing. A subscriber
may, if so configured, receive data that was written even before the subscriber joined the
network.
 Platform:
• Applications do not have to worry about data representation, processor architecture,
Operating System, or even programming language on the other side
 Implementation:
• DDS Protocol is also an standard. Different implementations interoperate.
20
Why DDS? Fully configurable
21
QoS Policy
DURABILITY
HISTORY
READER DATA LIFECYCLE
WRITER DATA LIFECYCLE
LIFESPAN
ENTITY FACTORY
RESOURCE LIMITS
RELIABILITY
TIME BASED FILTER
DEADLINE
CONTENT FILTERS
Volatility
UserQoS
Delivery
PresentationRedundancy
Infrastructure
Transport
QoS Policy
USER DATA
TOPIC DATA
GROUP DATA
PARTITION
PRESENTATION
DESTINATION ORDER
OWNERSHIP
OWNERSHIP STRENGTH
LIVELINESS
LATENCY BUDGET
TRANSPORT PRIORITY
DDS Infrastructure
 Standard API for
portability.
 RTPS can be
implemented over any
transport
 No central
Broker/Service
 Different Comm
channel per topic
22
The DDS Model
23
Quality of Service: QoS
Domain Participant
Data
Reader
Node
Subscriber
Data Domain
Subscriber
Data
Writer
Data
Writer
Data
Reader
Data
Reader
Data
Writer
Publisher
Topic
Publisher
Topic Topic
Topics, Instances and Keys
 Topic: A set of similar objects, sharing a common Data Type
 Instance: A particular object of the set
 Key: Fields of the Data Type to identify an object.
24
Qos
Applied by
Instance.
Topic: RadarTrack
Key: Flight ID
Instance
Flight ID=
MAD-BER57
Instance
Flight ID=
PAR-BER89
Instance
Flight ID=
PAR-BER89
Demo
25
const long STR_LEN=24;
struct ShapeType {
string<MSG_LEN> color; //@key
long x;
long y;
long shapesize;
};
• 3 Topics:
• Square, Circle,
Triangle
• Color is the KEY
Questions?
Jaime Martin Losa
CTO eProsima
JaimeMartin@eProsima.co
m
+34 607 91 37 45
www.eProsima.com
Fast RTPS Hands On:
A Hello World
Hands-on Example (C++)
28
Type
Definition
MyType.idl
fastrtpsgen
MyType.h
MyTypePubSubTypes.c
MyTypePublisher.cxx
MyTypeSubscriber.cxx
MyType.sln
Publisher Subscriber.exe
Three minutes to a running app!!
1. Define your data
2. Create your project
3. Build
4. Run: publisher subscriber
compiler
Example #1 - Hello World
29
We will use this data-type :
const long MSG_LEN=256;
struct HelloMsg {
string<MSG_LEN> user; //@key
string<MSG_LEN> msg;
};
Generate type support (for C++) [Windows]
30
fastrtpsgen HelloMsg.idl -example x64Win64VS2015
-replace -ppDisable
 Look at the directory you should see:
– solution-x64Win64VS2015.sln
– And Several other files…
 Open the Solution:
 Compile from visual studio
Execute the program [Windows]
 C++:
• On one window run:
□ binx64Win64VS2015HelloMsgPublisherSubscriberd.exe publisher
• On another window run:
□ binx64Win64VS2015HelloMsgPublisherSubscriberd.exe subscriber
 You should see the subscribers getting an empty string…
31
Writting some data
 Modify HelloMsgPublisher.cxx:
32
/* Main loop */
do
{
if(ch == 'y')
{
st.msg() = std::string("Hello using cpp ") +
std::to_string(msgsent);
mp_publisher->write(&st); ++msgsent;
cout << "Sending sample, count=" << msgsent <<
",send another sample?(y-yes,n-stop): ";
}
How to Get Data? (Listener-Based)
33
// Listener code
void HelloMsgSubscriber::SubListener::onNewDataMessage(Subscriber* sub)
{
// Take data
HelloMsg st;
if(sub->takeNextData(&st, &m_info))
{
if(m_info.sampleKind == ALIVE)
{
// Print your structure data here.
++n_msg;
cout << "Sample received, count=" << n_msg << endl;
cout << " " << st.msg() << endl;
}
}
}
Questions?
Jaime Martin Losa
CTO eProsima
JaimeMartin@eProsima.co
m
+34 607 91 37 45
www.eProsima.com
Thank you!
http://fiware.org
Follow @FIWARE on Twitter
Jaime Martin Losa
CTO eProsima
JaimeMartin@eProsima.co
m
+34 607 91 37 45
www.eProsima.com

More Related Content

PPTX
FIWARE Robotics: ROS2 & micro-ROS
PPTX
Fast RTPS: Programming with the Default Middleware for Robotics Adopted in ROS2
PPTX
Fiware - communicating with ROS robots using Fast RTPS
PPTX
Distributed Systems: How to connect your real-time applications
PPTX
FIWARE Robotics: ROS2 & micro-ROS
PDF
micro-ROS goes easy: Developing professional applications using Eclipse based...
PDF
FIWARE Global Summit - Fast RTPS: Programming with the Default middleware for...
PDF
micro-ROS: Developing ROS 2 professional applications based on MCUs
FIWARE Robotics: ROS2 & micro-ROS
Fast RTPS: Programming with the Default Middleware for Robotics Adopted in ROS2
Fiware - communicating with ROS robots using Fast RTPS
Distributed Systems: How to connect your real-time applications
FIWARE Robotics: ROS2 & micro-ROS
micro-ROS goes easy: Developing professional applications using Eclipse based...
FIWARE Global Summit - Fast RTPS: Programming with the Default middleware for...
micro-ROS: Developing ROS 2 professional applications based on MCUs

What's hot (20)

PPTX
Fiware: Connecting to robots
PDF
micro-ROS: bringing ROS 2 to MCUs
PDF
FIWARE Robotics
PDF
micro-ROS - New client library and middleware features
PPTX
eProsima RPC over DDS - Connext Conf London October 2015
PDF
Fast DDS Features & Tools
PDF
micro-ROS Galactic
PDF
eProsima - Company brief
PDF
Micro XRCE-DDS and micro-ROS
PPTX
DDS over Low Bandwidth Data Links - Connext Conf London October 2014
PDF
Micro XRCE-DDS: Bringing DDS into microcontrollers
PPTX
Open Middleware Technologies for Smart Robotics - a FIWARE Smart Fest present...
PDF
2008-01-23 Red Hat Overview to CUNY Information Managers Forum
PDF
Integration Service: Integrating Communication Protocols
PPTX
ROS vs ROS2
PDF
Osnug meetup-tungsten fabric - overview.pptx
PDF
Using IO Visor to Secure Microservices Running on CloudFoundry [OpenStack Sum...
PPTX
TLDK - FD.io Sept 2016
PDF
RTI Connext 5.2.0
DOCX
Dpdk frame pipeline for ips ids suricata
Fiware: Connecting to robots
micro-ROS: bringing ROS 2 to MCUs
FIWARE Robotics
micro-ROS - New client library and middleware features
eProsima RPC over DDS - Connext Conf London October 2015
Fast DDS Features & Tools
micro-ROS Galactic
eProsima - Company brief
Micro XRCE-DDS and micro-ROS
DDS over Low Bandwidth Data Links - Connext Conf London October 2014
Micro XRCE-DDS: Bringing DDS into microcontrollers
Open Middleware Technologies for Smart Robotics - a FIWARE Smart Fest present...
2008-01-23 Red Hat Overview to CUNY Information Managers Forum
Integration Service: Integrating Communication Protocols
ROS vs ROS2
Osnug meetup-tungsten fabric - overview.pptx
Using IO Visor to Secure Microservices Running on CloudFoundry [OpenStack Sum...
TLDK - FD.io Sept 2016
RTI Connext 5.2.0
Dpdk frame pipeline for ips ids suricata
Ad

Similar to Fast RTPS Workshop at FIWARE Summit 2018 (20)

PDF
Fast RTPS
PPTX
DDS Advanced Tutorial - OMG June 2013 Berlin Meeting
PDF
Communication Patterns Using Data-Centric Publish/Subscribe
PDF
Communication Patterns Using Data-Centric Publish/Subscribe
PPTX
Developing Mission-Critical Avionics and Defense Systems with Ada and DDS
PDF
Deep Dive into the OPC UA / DDS Gateway Specification
PDF
DDS in Action -- Part I
PPTX
The Inside Story: How OPC UA and DDS Can Work Together in Industrial Systems
PPTX
Easing Integration of Large-Scale Real-Time Systems with DDS
PDF
FIWARE Wednesday Webinars - The Use of DDS Middleware in Robotics (Part 1)
PPTX
Large-Scale System Integration with DDS for SCADA, C2, and Finance
PDF
Build Safe & Secure Distributed Systems - RTI Huntsville Roadshow- 2014 09 25
PPT
RTI Data-Distribution Service (DDS) Master Class 2011
PPT
DDS 2010 Interoperability Demo
PDF
Introduction to DDS: Context, Information Model, Security, and Applications.
PPTX
Introduction to DDS
PPTX
Scaling DDS to Millions of Computers and Devices
PPTX
Managing the Robotics Organization with Robotics – IoT
PPTX
DDS Enabling Open Architecture
PDF
The Data Distribution Service
Fast RTPS
DDS Advanced Tutorial - OMG June 2013 Berlin Meeting
Communication Patterns Using Data-Centric Publish/Subscribe
Communication Patterns Using Data-Centric Publish/Subscribe
Developing Mission-Critical Avionics and Defense Systems with Ada and DDS
Deep Dive into the OPC UA / DDS Gateway Specification
DDS in Action -- Part I
The Inside Story: How OPC UA and DDS Can Work Together in Industrial Systems
Easing Integration of Large-Scale Real-Time Systems with DDS
FIWARE Wednesday Webinars - The Use of DDS Middleware in Robotics (Part 1)
Large-Scale System Integration with DDS for SCADA, C2, and Finance
Build Safe & Secure Distributed Systems - RTI Huntsville Roadshow- 2014 09 25
RTI Data-Distribution Service (DDS) Master Class 2011
DDS 2010 Interoperability Demo
Introduction to DDS: Context, Information Model, Security, and Applications.
Introduction to DDS
Scaling DDS to Millions of Computers and Devices
Managing the Robotics Organization with Robotics – IoT
DDS Enabling Open Architecture
The Data Distribution Service
Ad

Recently uploaded (20)

PPT
Module 1.ppt Iot fundamentals and Architecture
PPTX
Group 1 Presentation -Planning and Decision Making .pptx
PDF
gpt5_lecture_notes_comprehensive_20250812015547.pdf
PDF
Hybrid model detection and classification of lung cancer
PDF
Zenith AI: Advanced Artificial Intelligence
PDF
DASA ADMISSION 2024_FirstRound_FirstRank_LastRank.pdf
PDF
Hindi spoken digit analysis for native and non-native speakers
PPTX
Tartificialntelligence_presentation.pptx
PDF
A comparative study of natural language inference in Swahili using monolingua...
PDF
DP Operators-handbook-extract for the Mautical Institute
PPTX
MicrosoftCybserSecurityReferenceArchitecture-April-2025.pptx
PPTX
Modernising the Digital Integration Hub
PPTX
TLE Review Electricity (Electricity).pptx
PPTX
TechTalks-8-2019-Service-Management-ITIL-Refresh-ITIL-4-Framework-Supports-Ou...
PPTX
Final SEM Unit 1 for mit wpu at pune .pptx
PDF
ENT215_Completing-a-large-scale-migration-and-modernization-with-AWS.pdf
PDF
Enhancing emotion recognition model for a student engagement use case through...
PPTX
cloud_computing_Infrastucture_as_cloud_p
PDF
Getting started with AI Agents and Multi-Agent Systems
PPTX
Chapter 5: Probability Theory and Statistics
Module 1.ppt Iot fundamentals and Architecture
Group 1 Presentation -Planning and Decision Making .pptx
gpt5_lecture_notes_comprehensive_20250812015547.pdf
Hybrid model detection and classification of lung cancer
Zenith AI: Advanced Artificial Intelligence
DASA ADMISSION 2024_FirstRound_FirstRank_LastRank.pdf
Hindi spoken digit analysis for native and non-native speakers
Tartificialntelligence_presentation.pptx
A comparative study of natural language inference in Swahili using monolingua...
DP Operators-handbook-extract for the Mautical Institute
MicrosoftCybserSecurityReferenceArchitecture-April-2025.pptx
Modernising the Digital Integration Hub
TLE Review Electricity (Electricity).pptx
TechTalks-8-2019-Service-Management-ITIL-Refresh-ITIL-4-Framework-Supports-Ou...
Final SEM Unit 1 for mit wpu at pune .pptx
ENT215_Completing-a-large-scale-migration-and-modernization-with-AWS.pdf
Enhancing emotion recognition model for a student engagement use case through...
cloud_computing_Infrastucture_as_cloud_p
Getting started with AI Agents and Multi-Agent Systems
Chapter 5: Probability Theory and Statistics

Fast RTPS Workshop at FIWARE Summit 2018

  • 1. Fast RTPS Workshop FIWARE Summit 09/05/2018 Jaime Martin Losa CEO eProsima JaimeMartin@eProsima.co m www.eProsima.com
  • 2. Agenda  Fast RTPS • Motivation • Introduction □ DDS □ Architecture □ Shapes Demo • Hello World Example 1
  • 5. Fast RTPS - Motivation  Real Time Requirements • Latency measured in µSec  High Throughput Requirements • Take advantage of Pub/Sub Architecture  Low bandwidth, intermittent and unreliable datalinks • Radio networks • Wifi  Many to Many communications  Decoupled architectures  Different QoS over different datalinks and performance requirements.  Efficient Data Models 4
  • 6. Fast RTPS - Motivation  C++  Full RTPS (Real Time Publish Subscribe) implementation  Security (Encryption and Authentication)  RPC layer available through eProsima RPC over DDS  Based on OMG standards, Interoperable.  Comprehensive docs, videos, examples, etc.  Multi-Platform: Windows, Linux, Android, Mac OS, iOS • Many ports developed by the community  Robotics Adoption (ROS2)  Apache 2.0 License 5
  • 7. Fast RTPS: Key Features  RTPS focused: • Access to the protocol internals  Large Data Support: • Fragmentation and Flow controllers.  DDS Security: • Authentication, Encryption  Support for Static Discovery • Faster Discovery.  XML QoS Profiles (Available for ROS2 also) • See ROSCON 2017 Presentation https://roscon.ros.org/2017/presentations/ROSCon%202017%20ROS2%20Fine %20Tuning.pdf • Fine tunning for extreme scenarios. 6
  • 8. Fast RTPS: Key Features II  Fully Open Source • Apache 2.0 • Community of Contributors • User ports for many platforms. • No vendor lock-in  Lightweight  Commercial Support • Fast Response • User Driven Roadmap  Aligned with OS Community: • ROS2, Dronecode, FIWARE  Standard 7
  • 9. Fast RTPS 1.6 (May 2018): New features  Access Control  History persistence in database (sqlite). 8
  • 10. FIROS2 New Release  Connect Context Broker with Fast RTPS/ROS2  Already available in github: • https://github.com/eProsima/FIROS2 9
  • 11. DDS: Standards-based Integration Infrastructure for Critical Applications 10 Streaming Data Sensors Events Real-Time Applications Enterprise Applications Actuators
  • 13. Broad Adoption  Vendor independent • API for portability • Wire protocol for interoperability  Multiple implementations • 10 of API • 8 support RTPS  Heterogeneous • C, C++, Java, .NET (C#, C++/CLI) • Linux, Windows, VxWorks, other embedded & real•time  Loosely coupled 12
  • 14. DDS adopted by key programs in Europe  European Air Traffic Control • DDS proposed for interoperate ATC centers  Spanish Army • DDS is mandated for C2 Interoperability (ethernet, radio & satellite)  UK Generic Vehicle Architecture • Mandates DDS for vehicle comm. • Mandates DDS-RTPS for interop. 13
  • 15. US-DoD mandates DDS for data-distribution  DISR (formerly JTA) • DoD Information Technology Standards Registry  US Navy Open Architecture  Army, OSD • UCS, Unmanned Vehicle Control  SPAWAR NESI • Net-centric Enterprise Solutions for Interoperability • Mandates DDS for Pub-Sub SOA 14
  • 16. RTPS Adoption  ROS (Robotic Operating System)  FIWARE • EU R&D Software Platform  Many Drone Companies • 3D Robotics • Magma UAVs • …  Dronecode • Main OSS platform for Drones 15
  • 17. ROS2: Robotics de facto Standard  The Robot Operating System (ROS) is a set of software libraries and tools that help you build robot applications. From drivers to state-of-the-art algorithms, and with powerful developer tools, ROS has what you need for your next robotics project. And it's all open source. ROS has become a de facto standard for Robotic applications.  OSRF Sponsors: Bosh, DARPA, google, MathWorks, Nasa, Nissan, Qualcomm, rethink robotics, ROS-Industrial Consortium, Sandia National Laboratories, SICK, Willow Garage, Yujin Robot 16
  • 19. DDS  DDS (Data Distribution Service for Real-Time Systems) is a OMG specification for a pub/sub data centric model (DCPS, Data Centric Publish/Subscribe) for Real-Time data comms in distributed systems.  DDS is a networking middleware that: • Simplifies and Standardizes data flows in distributed real-time systems. • Provides robust comms (no single point of failure) and efficient (minimum latency) • Provides all kind of QoS to shape the data flows and deliver predictable results. 18
  • 20. DDS  DDS uses the concept of Global Data Space. In this Space we define topics of data, and the publishers publish samples of these topics. DDS distributes these samples to all the subscribers of those topics. Any node can be a publisher or a subscriber. 19
  • 21. Why DDS? Decoupled model  Space (location) • Automatic Discovery ensures network topology independence  Redundancy: • It is possible to configure redundant publishers and subscribers, primary/secundary and takeover schemas supported  Time: • The reception of data does not need to be synchronous with the writing. A subscriber may, if so configured, receive data that was written even before the subscriber joined the network.  Platform: • Applications do not have to worry about data representation, processor architecture, Operating System, or even programming language on the other side  Implementation: • DDS Protocol is also an standard. Different implementations interoperate. 20
  • 22. Why DDS? Fully configurable 21 QoS Policy DURABILITY HISTORY READER DATA LIFECYCLE WRITER DATA LIFECYCLE LIFESPAN ENTITY FACTORY RESOURCE LIMITS RELIABILITY TIME BASED FILTER DEADLINE CONTENT FILTERS Volatility UserQoS Delivery PresentationRedundancy Infrastructure Transport QoS Policy USER DATA TOPIC DATA GROUP DATA PARTITION PRESENTATION DESTINATION ORDER OWNERSHIP OWNERSHIP STRENGTH LIVELINESS LATENCY BUDGET TRANSPORT PRIORITY
  • 23. DDS Infrastructure  Standard API for portability.  RTPS can be implemented over any transport  No central Broker/Service  Different Comm channel per topic 22
  • 24. The DDS Model 23 Quality of Service: QoS Domain Participant Data Reader Node Subscriber Data Domain Subscriber Data Writer Data Writer Data Reader Data Reader Data Writer Publisher Topic Publisher Topic Topic
  • 25. Topics, Instances and Keys  Topic: A set of similar objects, sharing a common Data Type  Instance: A particular object of the set  Key: Fields of the Data Type to identify an object. 24 Qos Applied by Instance. Topic: RadarTrack Key: Flight ID Instance Flight ID= MAD-BER57 Instance Flight ID= PAR-BER89 Instance Flight ID= PAR-BER89
  • 26. Demo 25 const long STR_LEN=24; struct ShapeType { string<MSG_LEN> color; //@key long x; long y; long shapesize; }; • 3 Topics: • Square, Circle, Triangle • Color is the KEY
  • 27. Questions? Jaime Martin Losa CTO eProsima JaimeMartin@eProsima.co m +34 607 91 37 45 www.eProsima.com
  • 28. Fast RTPS Hands On: A Hello World
  • 29. Hands-on Example (C++) 28 Type Definition MyType.idl fastrtpsgen MyType.h MyTypePubSubTypes.c MyTypePublisher.cxx MyTypeSubscriber.cxx MyType.sln Publisher Subscriber.exe Three minutes to a running app!! 1. Define your data 2. Create your project 3. Build 4. Run: publisher subscriber compiler
  • 30. Example #1 - Hello World 29 We will use this data-type : const long MSG_LEN=256; struct HelloMsg { string<MSG_LEN> user; //@key string<MSG_LEN> msg; };
  • 31. Generate type support (for C++) [Windows] 30 fastrtpsgen HelloMsg.idl -example x64Win64VS2015 -replace -ppDisable  Look at the directory you should see: – solution-x64Win64VS2015.sln – And Several other files…  Open the Solution:  Compile from visual studio
  • 32. Execute the program [Windows]  C++: • On one window run: □ binx64Win64VS2015HelloMsgPublisherSubscriberd.exe publisher • On another window run: □ binx64Win64VS2015HelloMsgPublisherSubscriberd.exe subscriber  You should see the subscribers getting an empty string… 31
  • 33. Writting some data  Modify HelloMsgPublisher.cxx: 32 /* Main loop */ do { if(ch == 'y') { st.msg() = std::string("Hello using cpp ") + std::to_string(msgsent); mp_publisher->write(&st); ++msgsent; cout << "Sending sample, count=" << msgsent << ",send another sample?(y-yes,n-stop): "; }
  • 34. How to Get Data? (Listener-Based) 33 // Listener code void HelloMsgSubscriber::SubListener::onNewDataMessage(Subscriber* sub) { // Take data HelloMsg st; if(sub->takeNextData(&st, &m_info)) { if(m_info.sampleKind == ALIVE) { // Print your structure data here. ++n_msg; cout << "Sample received, count=" << n_msg << endl; cout << " " << st.msg() << endl; } } }
  • 35. Questions? Jaime Martin Losa CTO eProsima JaimeMartin@eProsima.co m +34 607 91 37 45 www.eProsima.com
  • 36. Thank you! http://fiware.org Follow @FIWARE on Twitter Jaime Martin Losa CTO eProsima JaimeMartin@eProsima.co m +34 607 91 37 45 www.eProsima.com