Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/cinemast/libjson-rpc-cpp
C++ framework for json-rpc (json remote procedure call)
https://github.com/cinemast/libjson-rpc-cpp
c-plus-plus cpp json json-rpc json-rpc-client json-rpc-server json-rpc2 libjson-rpc-cpp rpc stub-generator
Last synced: 1 day ago
JSON representation
C++ framework for json-rpc (json remote procedure call)
- Host: GitHub
- URL: https://github.com/cinemast/libjson-rpc-cpp
- Owner: cinemast
- License: mit
- Created: 2013-01-01T21:02:04.000Z (about 12 years ago)
- Default Branch: master
- Last Pushed: 2024-01-02T12:43:08.000Z (about 1 year ago)
- Last Synced: 2024-09-24T15:51:11.631Z (4 months ago)
- Topics: c-plus-plus, cpp, json, json-rpc, json-rpc-client, json-rpc-server, json-rpc2, libjson-rpc-cpp, rpc, stub-generator
- Language: C++
- Homepage:
- Size: 2.01 MB
- Stars: 955
- Watchers: 74
- Forks: 316
- Open Issues: 18
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- Funding: .github/FUNDING.yml
- License: LICENSE.txt
- Authors: AUTHORS.md
Awesome Lists containing this project
- AwesomeCppGameDev - libjson-rpc-cpp - rpc (json remote procedure call) (Networking)
README
**I created a new C++17 header only implementation -> [json-rpc-cxx](https://github.com/jsonrpcx/json-rpc-cxx).**
Master [![CircleCI](https://circleci.com/gh/cinemast/libjson-rpc-cpp/tree/master.svg?style=svg)](https://circleci.com/gh/cinemast/libjson-rpc-cpp/tree/master)
[![codecov](https://codecov.io/gh/cinemast/libjson-rpc-cpp/branch/master/graph/badge.svg?token=QNoXsaI2ta)](https://codecov.io/gh/cinemast/libjson-rpc-cpp)libjson-rpc-cpp
===============This framework provides cross platform JSON-RPC (remote procedure call) support for C++.
It is fully JSON-RPC [2.0 & 1.0 compatible](http://www.jsonrpc.org/specification).![libjson-rpc-cpp logo](https://github.com/cinemast/libjson-rpc-cpp/blob/master/dev/artwork/logo.png?raw=true)
**5 good reasons for using libjson-rpc-cpp in your next RPC project**
- Full JSON-RPC 2.0 & partial JSON-RPC 1.0 client and server Support.
- jsonrpcstub - a tool that generates stub-classes for your JSON-RPC client and server applications.
- Ready to use HTTP + TCP server and client to provide simple interfaces for your JSON-RPC application.
- Cross platform build support for Linux and OS X.
- Super liberal [MIT-License](http://en.wikipedia.org/wiki/MIT_License).**Other good reasons to use libjson-rpc-cpp**
- Easy to use [cmake](http://www.cmake.org) cross platform build system.
- Clean and simple architecture, which makes it easy to extend.
- Continuously tested under MacOS, and [various linux distributions](https://travis-ci.org/cinemast/libjson-rpc-cpp).
- Automated testing using `make test`.
- Useful Examples provided. e.g. XBMC Remote using json-rpc client part and stub generator.
- The stubgenerator currently supports C++, JavaScript, and Python.Overview
=========
![libjson-rpc-cpp logo](dev/artwork/overview.png?raw=true)Install the framework
=====================**Debian (stretch) and Ubuntu (15.10 or later)**
```sh
sudo apt-get install libjsonrpccpp-dev libjsonrpccpp-tools
```**Fedora**
```sh
sudo dnf install libjson-rpc-cpp-devel libjson-rpc-cpp-tools
```**Arch Linux**
For Arch Linux there is a [PKGBUILD provided in the AUR](https://aur.archlinux.org/packages/libjson-rpc-cpp/).
```sh
sudo aura -A libjson-rpc-cpp
```**Gentoo Linux**
```sh
sudo emerge dev-cpp/libjson-rpc-cpp
```**Mac OS X**
For OS X a [Brew](http://brew.sh) package is available:
```sh
brew install libjson-rpc-cpp
```**Windows**
There is a ready to use compiled package [here](http://spiessknafl.at/libjson-rpc-cpp).
Just download execute the installer EXE.Build from source
=================
Install the dependencies
------------------------
- [libcurl](http://curl.haxx.se/)
- [libmicrohttpd](http://www.gnu.org/software/libmicrohttpd/)
- [libjsoncpp](https://github.com/open-source-parsers/jsoncpp)
- [libargtable](http://argtable.sourceforge.net/)
- [cmake](http://www.cmake.org/)
- [libhiredis](https://redislabs.com/lp/hiredis/)
- [catch](https://github.com/catchorg/Catch2)**UNIX**
For Debian and Arch GNU/Linux based systems, all dependencies are available via the package manager.
For OS X all dependencies are available in [Brew](http://brew.sh)Build
-----```sh
git clone https://github.com/cinemast/libjson-rpc-cpp.git
mkdir -p libjson-rpc-cpp/build
cd libjson-rpc-cpp/build
cmake .. && make
sudo make install
sudo ldconfig #only required for linux
```
That's it!If you are not happy with it, simply uninstall it from your system using (inside the build the directory):
```sh
sudo make uninstall
```**Build options:**
Default configuration should be fine for most systems, but here are available compilation flags:
- `-DCOMPILE_TESTS=NO` disables unit test suite.
- `-DCOMPILE_STUBGEN=NO` disables building the stubgenerator.
- `-DCOMPILE_EXAMPLES=NO` disables examples.
- `-DHTTP_SERVER=NO` disable the libmicrohttpd webserver.
- `-DHTTP_CLIENT=NO` disable the curl client.
- `-DREDIS_SERVER=NO` disable the redis server connector.
- `-DREDIS_CLIENT=NO` disable the redis client connector.
- `-DUNIX_DOMAIN_SOCKET_SERVER=YES` enable the unix domain socket server connector.
- `-DUNIX_DOMAIN_SOCKET_CLIENT=YES` enable the unix domain socket client connector.
- `-DFILE_DESCRIPTOR_SERVER=NO` disable the file descriptor server connector.
- `-DFILE_DESCRIPTOR_CLIENT=NO` disable the file descriptor client connector.
- `-DTCP_SOCKET_SERVER=NO` disable the tcp socket server connector.
- `-DTCP_SOCKET_CLIENT=NO` disable the tcp socket client connector.Using the framework
===================
This example will show the most simple way to create a rpc server and client. If you only need the server, ignore step 4. If you only need the client, ignore step 3. You can find all resources of this sample in the `src/examples` directory of this repository.### Step 1: Writing the specification file ###
```json
[
{
"name": "sayHello",
"params": {
"name": "Peter"
},
"returns" : "Hello Peter"
},
{
"name" : "notifyServer"
}
]
```The type of a return value or parameter is defined by the literal assigned to it. The generated stubs will will use the "returns" type to validate the response. In this example you can see how to specify methods and notifications.
### Step 2: Generate the stubs for client and server ###
Call jsonrpcstub:
```sh
jsonrpcstub spec.json --cpp-server=AbstractStubServer --cpp-client=StubClient
mkdir -p gen
mv abstractstubserver.h gen
mv stubclient.h gen
```This generates an `AbstractStubServer` and a `StubClient` class and moves them to the `gen` folder.
### Step 3: implement the abstract server stub ###
Extend the abstract server stub and implement all pure virtual (abstract) methods defined in `spec.json`.
See [src/examples/stubserver.cpp](src/examples/stubserver.cpp)
In the main function the concrete server is instantiated and started. That is all for the server. Any JSON-RPC 2.0 compliant client can now connect to your server.
Compile the server with:
```sh
g++ stubserver.cpp -ljsoncpp -lmicrohttpd -ljsonrpccpp-common -ljsonrpccpp-server -o sampleserver
```### Step 4: Create the client application
See [src/examples/stubclient.cpp](src/examples/stubclient.cpp)
Compile the client with:
```sh
g++ stubclient.cpp -ljsoncpp -lcurl -ljsonrpccpp-common -ljsonrpccpp-client -o sampleclient
```## Contributions
Please take a look at [CONTRIBUTING.md](CONTRIBUTING.md)
You can also donate via [![Donate](https://img.shields.io/badge/Donate-PayPal-green.svg)](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=CJV4LY486L838&source=url)
## Changelogs
Changelogs can be found [here](CHANGELOG.md).
## API compatibility
We do our best to keep the API/ABI stable, to prevent problems when updating this framework.
A compatiblity report can be found [here](http://upstream.rosalinux.ru/versions/libjson-rpc-cpp.html).## License
This framework is licensed under [MIT](http://en.wikipedia.org/wiki/MIT_License).
All of this libraries dependencies are licensed under MIT compatible licenses.References
==========
- [NASA Ames Research Center](http://www.nasa.gov/centers/ames/home/): use it to obtain aircraft state information from an aircraft simulator.
- [LaseShark 3D Printer](https://github.com/macpod/lasershark_3dp): used to control the firmware of the 3D printer.
- [cpp-ethereum](https://github.com/ethereum/cpp-ethereum): C++ implementations for the ethereum crypto currency.
- [mage-sdk-cpp](https://github.com/mage/mage-sdk-cpp): a game engine.
- [bitcodin](http://www.bitmovin.net): a scalable cloud based video transcoding platform.
- [wgslib](http://wgslib.com/): a web geostatistics library.
- [bitcoin-api-cpp](https://github.com/minium/bitcoin-api-cpp): a C++ interface to bitcoin.
- [NIT DASH Content Server](http://www.nit.eu/offer/research-projects-products/334-http2dash): Dynamic Adaptive Streaming over HTTP server.If you use this library and find it useful, I would be very pleased if you let me know about it.