Skip to content

david-duverle/msgpack-rpc-cpp

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

MessagePack-RPC for C++

Requirements

Following programs are requred to build:

Installation

Configure and install in the usual way:

$ ./bootstrap  # if needed
$ ./configure
$ make
$ sudo make install

Configuration for OS X:

$ ./configure CXXFLAGS='-DMP_UNORDERED_MAP_BOOST -DMP_FUNCTIONAL_BOOST -DMP_MEMORY_BOOST \
-O3 -Wall  -I/usr/local/include -g -DCCLOG_LEVEL=10' --with-msgpack=/usr/local

OS X with C++11:

$ ./configure CXXFLAGS='-DMP_UNORDERED_MAP_BOOST -DMP_FUNCTIONAL_BOOST -DMP_MEMORY_BOOST \
-O3 -Wall  -I/usr/local/include -g -DCCLOG_LEVEL=10 -std=c++11' --with-msgpack=/usr/local

Usage

Test cases will give you a sample usage.

Example

Simple client

#include <msgpack/rpc/client.h>
#include <iostream>

int main(void)
{
	msgpack::rpc::client c("127.0.0.1", 9090);
	int result = c.call("add", 1, 2).get<int>();
	std::cout << result << std::endl;
}

Simple server

#include <msgpack/rpc/server.h>

class myserver : public msgpack::rpc::server::base {
public:
	void add(msgpack::rpc::request req, int a1, int a2)
	{
		req.result(a1 + a2);
	}

public:
	void dispatch(msgpack::rpc::request req)
	try {
		std::string method;
		req.method().convert(&method);

		if(method == "add") {
			msgpack::type::tuple<int, int> params;
			req.params().convert(&params);
			add(req, params.get<0>(), params.get<1>());

		} else {
			req.error(msgpack::rpc::NO_METHOD_ERROR);
		}

	} catch (msgpack::type_error& e) {
		req.error(msgpack::rpc::ARGUMENT_ERROR);
		return;

	} catch (std::exception& e) {
		req.error(std::string(e.what()));
		return;
	}
};

int main(void)
{
	myserver svr;
	svr.instance.listen("0.0.0.0", 9090);
	svr.instance.run(4);  // run 4 threads
}

IDL parser and code generator is under development. It will resolve the problem that users have to implement verbose dispatch() function.

License

Copyright (C) 2008-2010 FURUHASHI Sadayuki <frsyuki _at_ users.sourceforge.jp>

   Licensed under the Apache License, Version 2.0 (the "License");
   you may not use this file except in compliance with the License.
   You may obtain a copy of the License at

       http://www.apache.org/licenses/LICENSE-2.0

   Unless required by applicable law or agreed to in writing, software
   distributed under the License is distributed on an "AS IS" BASIS,
   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
   See the License for the specific language governing permissions and
   limitations under the License.

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C++ 93.1%
  • Ruby 3.8%
  • Shell 2.9%
  • C 0.2%