All Projects → continental → Ecal

continental / Ecal

Licence: apache-2.0
eCAL - enhanced Communication Abstraction Layer

Projects that are alternatives of or similar to Ecal

Iceoryx
iceoryx - true zero-copy inter-process-communication
Stars: ✭ 208 (-28.77%)
Mutual labels:  middleware, shared-memory, ipc
Ipc
IPC is a C++ library that provides inter-process communication using shared memory on Windows. A .NET wrapper is available which allows interaction with C++ as well.
Stars: ✭ 332 (+13.7%)
Mutual labels:  shared-memory, ipc
Sharedhashfile
Share Hash Tables With Stable Key Hints Stored In Memory Mapped Files Between Arbitrary Processes
Stars: ✭ 380 (+30.14%)
Mutual labels:  shared-memory, ipc
Traffic Shm
traffic-shm (Anna) is a Java based lock free IPC library.
Stars: ✭ 72 (-75.34%)
Mutual labels:  shared-memory, ipc
Redux Electron Ipc
Redux Electron IPC Middleware
Stars: ✭ 54 (-81.51%)
Mutual labels:  middleware, ipc
Jocket
Low-latency java socket implementation (using shared memory)
Stars: ✭ 83 (-71.58%)
Mutual labels:  shared-memory, ipc
Cpp Ipc
C++ IPC Library: A high-performance inter-process communication using shared memory on Linux/Windows.
Stars: ✭ 420 (+43.84%)
Mutual labels:  shared-memory, ipc
Shadesmar
Fast C++ IPC using shared memory (with msgpack)
Stars: ✭ 126 (-56.85%)
Mutual labels:  shared-memory, ipc
Yarp
YARP - Yet Another Robot Platform
Stars: ✭ 358 (+22.6%)
Mutual labels:  middleware, ipc
reactor-aeron
A reactive driver for Aeron transport (https://github.com/real-logic/aeron)
Stars: ✭ 43 (-85.27%)
Mutual labels:  ipc, shared-memory
IPC.Bond
IPC.Bond is an extension of IPC library that provides inter-process communication using shared memory on Windows with Bond serialization.
Stars: ✭ 26 (-91.1%)
Mutual labels:  ipc, shared-memory
Hybridastartrailer
A path planning algorithm based on Hybrid A* for trailer truck
Stars: ✭ 279 (-4.45%)
Mutual labels:  autonomous-driving
3dod thesis
3D Object Detection for Autonomous Driving in PyTorch, trained on the KITTI dataset.
Stars: ✭ 265 (-9.25%)
Mutual labels:  autonomous-driving
Frontexpress
An Express.js-Style router for the front-end
Stars: ✭ 263 (-9.93%)
Mutual labels:  middleware
Home
Project Glimpse: Node Edition - Spend less time debugging and more time developing.
Stars: ✭ 260 (-10.96%)
Mutual labels:  middleware
Openremote
100% open-source IoT Platform - Integrate your assets, create rules, and visualize your data
Stars: ✭ 254 (-13.01%)
Mutual labels:  middleware
Product Ei
An open source, a high-performance hybrid integration platform that allows developers quick integration with any application, data, or system.
Stars: ✭ 277 (-5.14%)
Mutual labels:  middleware
Pdfkit
A Ruby gem to transform HTML + CSS into PDFs using the command-line utility wkhtmltopdf
Stars: ✭ 2,799 (+858.56%)
Mutual labels:  middleware
Dataset Api
The ApolloScape Open Dataset for Autonomous Driving and its Application.
Stars: ✭ 260 (-10.96%)
Mutual labels:  autonomous-driving
Laravel Demo Mode
A package to protect your work in progress from prying eyes
Stars: ✭ 259 (-11.3%)
Mutual labels:  middleware

eCAL - enhanced Communication Abstraction Layer

Build Windows Server 2019 Build Ubuntu 18.04 Build Ubuntu 20.04 Build Ubuntu 20.04 (Iceoryx) Build macOS Catalina 10.15

License

The enhanced Communication Abstraction Layer (eCAL) is a middleware that enables scalable, high performance interprocess communication on a single computer node or between different nodes in a computer network. eCAL uses a publish - subscribe pattern to automatically connect different nodes in the network.

eCAL automatically chooses the best available data transport mechanism for each link:

  • Shared memory for local communication (incredible fast!)
  • UDP for network communication

Visit the eCAL Documentation at 🌐 http://ecal.io for more information!

Facts about eCAL

  • eCAL is fast (1 - 10 GB/s, depends on payload size. Check the measured performance here)

  • eCAL provides both publish-subscribe and server-client patterns

  • eCAL is brokerless

  • eCAL provides a C++ and C interface for easy integration into other languages (like python, csharp or rust)

  • eCAL has powerful tools for recording, replay and monitoring all your data flows - decentralized

  • eCAL is simple and zero-conf. No complex configuration for communication details and QOS settings are needed.

  • eCAL is message protocol agnostic. You choose the message protocol that fits to your needs like Google Protobuf, CapnProto, Flatbuffers...

  • eCAL uses the standardized recording format HDF5

  • eCAL integrates gently into your ROS2 environment with the brand new eCAL RMW

  • eCAL supports Intel and arm platforms

  • eCAL runs on a wide variety of operating systems:

    • Windows (stable)
    • Linux (stable)
    • QNX (stable)
    • MacOS (experimental)
    • FreeBSD (experimental)

Example

Using eCAL in your project to exchange data is simple. After you have downloaded eCAL and installed CMake, you are good to go.

Check out the Hello World example from the eCAL documentation for further details.

#include <ecal/ecal.h>
#include <ecal/msg/string/publisher.h>

#include <thread>

int main(int argc, char** argv)
{
  // Initialize eCAL. The name of our process will be "Hello World Publisher"
  eCAL::Initialize(argc, argv, "Hello World Publisher");

  // Create a String Publisher that publishes on the topic "hello_world_topic"
  eCAL::string::CPublisher<std::string> publisher("hello_world_topic");

  // Infinite loop
  while (eCAL::Ok())
  {
    // Publish a "Hello World" message
    publisher.Send("Hello World");

    std::this_thread::sleep_for(std::chrono::milliseconds(500));
  }

  // finalize eCAL API
  eCAL::Finalize();
}

Tools from the eCAL ecosystem

eCAL comes with a set of read-to-use tools that will help you with developing, testing and debugging your software. Command line interface versions and easy to use GUI applications are available.

  • The eCAL Monitor to visualize the data flow and inspect messages sent between publishers and subsribers

  • The eCAL Recorder to record the data sent between your eCAL nodes

  • The eCAL Player to replay the eCAL recordings later on

  • eCAL Sys to define your system configuration and monitor your applications

eCAL Mon

Other projects

GitHub project using / used by eCAL:

License

eCAL is licensed under Apache License 2.0. You are free to

  • Use eCAL commercially
  • Modify eCAL
  • Distribute eCAL

eCAL is provided on an “as is” basis without warranties or conditions of any kind.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].