Coder Social home page Coder Social logo

zcm's Introduction

ZeroMQ Component Model

A lightweight component model using ZeroMQ

ZCM Dependencies

  • Install library dependencies
$ sudo apt-get install autoconf automake libtool curl
  • Install libzmq
$ git clone https://github.com/zeromq/libzmq
$ cd libzmq
$ ./autogen.sh && ./configure && make -j 4
$ make check && sudo make install && sudo ldconfig
  • Download and copy cppzmq headers
$ git clone https://github.com/zeromq/cppzmq
$ cd cppzmq
$ sudo cp *.hpp /usr/local/include/.

Install ZCM

$ git clone https://github.com/pranav-srinivas-kumar/zcm
$ cd zcm
$ make
$ sudo make install
$ sudo ldconfig

Optional (Used in tests)

  • Install protobuf with -fPIC flag
$ git clone https://github.com/google/protobuf
$ cd protobuf
$ ./autogen.sh
$ ./configure --prefix=/usr
$ `# Open src/Makefile and add -fPIC to CXXFLAGS`
$ make
$ make check
$ sudo make install
$ sudo ldconfig
  • Install boost
$ sudo apt-get install libboost-all-dev

zcm's People

Contributors

cs281-test avatar p-ranav avatar

Stargazers

 avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar

zcm's Issues

Supporting client-server interactions

In ZMQ, when a client requests a service from a remote server, the server should rec() this request and then immediately send back the response. The client is blocked till this response is received. In order for the server request to go through the operation queue, the server socket pointer has to be sent through so that the response can be sent back when the operation's function is actually called (later by the executor thread).

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.