Skip to content
This repository has been archived by the owner on Apr 15, 2020. It is now read-only.

Commit

Permalink
Autobahn has been added, but cannot be compied due to link error of O…
Browse files Browse the repository at this point in the history
…penSSL
  • Loading branch information
tatraian committed Oct 21, 2016
1 parent a3f4a0e commit 0e2642b
Show file tree
Hide file tree
Showing 6 changed files with 398 additions and 0 deletions.
1 change: 1 addition & 0 deletions cmake/configs/default.cmake
Expand Up @@ -90,6 +90,7 @@ hunter_config(ZLIB VERSION 1.2.8-p3)
hunter_config(ZMQPP VERSION 4.1.2)
hunter_config(ZeroMQ VERSION 4.1.4-p2)
hunter_config(caffe VERSION rc3-p2)
hunter_config(autobahn-cpp VERSION 0.2.0)
hunter_config(ccv VERSION 0.7-p6)
hunter_config(cereal VERSION 1.1.2-p5)
hunter_config(clBLAS VERSION 2.10.0-p0)
Expand Down
21 changes: 21 additions & 0 deletions cmake/projects/autobahn-cpp/hunter.cmake
@@ -0,0 +1,21 @@
# !!! DO NOT PLACE HEADER GUARDS HERE !!!

include(hunter_add_version)
include(hunter_cacheable)
include(hunter_download)
include(hunter_pick_scheme)

hunter_add_version(
PACKAGE_NAME
autobahn-cpp
VERSION
"0.2.0"
URL
"https://github.com/tatraian/autobahn-cpp/archive/0.2.0-hunter-p1.tar.gz"
SHA1
5074d28857661693b71c4bda3f8fc662e4c73990
)

hunter_pick_scheme(DEFAULT url_sha1_cmake)
hunter_cacheable(autobahn-cpp)
hunter_download(PACKAGE_NAME autobahn-cpp)
14 changes: 14 additions & 0 deletions examples/autobahn-cpp/CMakeLists.txt
@@ -0,0 +1,14 @@
cmake_minimum_required(VERSION 3.0)

include("../common.cmake")

project(download-autobahn-cpp)

hunter_add_package(autobahn-cpp)

set (CMAKE_CXX_STANDARD 11)

find_package(autobahn-cpp CONFIG REQUIRED)

add_executable(test_autobahn-cpp websocket_callee.cpp parameters.cpp)
target_link_libraries(test_autobahn-cpp autobahn-cpp::autobahn-cpp)
149 changes: 149 additions & 0 deletions examples/autobahn-cpp/parameters.cpp
@@ -0,0 +1,149 @@
///////////////////////////////////////////////////////////////////////////////
//
// Copyright (c) Tavendo GmbH
//
// Boost Software License - Version 1.0 - August 17th, 2003
//
// Permission is hereby granted, free of charge, to any person or organization
// obtaining a copy of the software and accompanying documentation covered by
// this license (the "Software") to use, reproduce, display, distribute,
// execute, and transmit the Software, and to prepare derivative works of the
// Software, and to permit third-parties to whom the Software is furnished to
// do so, all subject to the following:
//
// The copyright notices in the Software and this entire statement, including
// the above license grant, this restriction and the following disclaimer,
// must be included in all copies of the Software, in whole or in part, and
// all derivative works of the Software, unless such copies or derivative
// works are solely in the form of machine-executable object code generated by
// a source language processor.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT
// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE
// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE,
// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
// DEALINGS IN THE SOFTWARE.
//
///////////////////////////////////////////////////////////////////////////////

#include "parameters.hpp"

#include <cstdlib>
#include <boost/asio/ip/address.hpp>
#include <boost/program_options.hpp>
#include <iostream>

namespace {
const std::string LOCALHOST_IP_ADDRESS_STRING("127.0.0.1");
const boost::asio::ip::address LOCALHOST_IP_ADDRESS(
boost::asio::ip::address::from_string(LOCALHOST_IP_ADDRESS_STRING));
const std::string DEFAULT_REALM("realm1");
const uint16_t DEFAULT_RAWSOCKET_PORT(8000);
const std::string DEFAULT_UDS_PATH("/tmp/crossbar.sock");
}

parameters::parameters()
: m_debug(false)
, m_realm(DEFAULT_REALM)
, m_rawsocket_endpoint(LOCALHOST_IP_ADDRESS, DEFAULT_RAWSOCKET_PORT)
#ifdef BOOST_ASIO_HAS_LOCAL_SOCKETS
, m_uds_endpoint(DEFAULT_UDS_PATH)
#endif
{
}

bool parameters::debug() const
{
return m_debug;
}

const std::string& parameters::realm() const
{
return m_realm;
}

const boost::asio::ip::tcp::endpoint& parameters::rawsocket_endpoint() const
{
return m_rawsocket_endpoint;
}

#ifdef BOOST_ASIO_HAS_LOCAL_SOCKETS
const boost::asio::local::stream_protocol::endpoint& parameters::uds_endpoint() const
{
return m_uds_endpoint;
}
#endif

void parameters::set_debug(bool value)
{
m_debug = value;
}

void parameters::set_realm(const std::string& realm)
{
m_realm = realm;
}

void parameters::set_rawsocket_endpoint(const std::string& ip_address, uint16_t port)
{
m_rawsocket_endpoint = boost::asio::ip::tcp::endpoint(
boost::asio::ip::address::from_string(ip_address), port);
}

#ifdef BOOST_ASIO_HAS_LOCAL_SOCKETS
void parameters::set_uds_endpoint(const std::string& path)
{
m_uds_endpoint = boost::asio::local::stream_protocol::endpoint(path);
}
#endif

std::unique_ptr<parameters> get_parameters(int argc, char** argv)
{
std::unique_ptr<parameters> params(new parameters);

namespace po = boost::program_options;
po::options_description description("options");
description.add_options()
("help", "Display this help message")
("debug,d", po::bool_switch()->default_value(false),
"Enable debug logging.")
("realm,r", po::value<std::string>()->default_value(DEFAULT_REALM),
"The realm to join on the wamp router.")
("uds-path,u", po::value<std::string>()->default_value(DEFAULT_UDS_PATH),
"The unix domain socket path the wamp router is listening for connections on.")
("rawsocket-ip,h", po::value<std::string>()->default_value(LOCALHOST_IP_ADDRESS_STRING),
"The ip address of the host running the wamp router.")
("rawsocket-port,p", po::value<uint16_t>()->default_value(DEFAULT_RAWSOCKET_PORT),
"The port that the wamp router is listening for connections on.");

po::variables_map variables;
try {
po::store(po::parse_command_line(argc, argv, description), variables);

if (variables.count("help")) {
std::cout << "Example Parameters" << std::endl
<< description << std::endl;
exit(0);
}

po::notify(variables);
} catch(po::error& e) {
std::cerr << "error: " << e.what() << std::endl << std::endl;
std::cerr << description << std::endl;
exit(-1);
}

params->set_debug(variables["debug"].as<bool>());
params->set_realm(variables["realm"].as<std::string>());
params->set_rawsocket_endpoint(
variables["rawsocket-ip"].as<std::string>(),
variables["rawsocket-port"].as<uint16_t>());

#ifdef BOOST_ASIO_HAS_LOCAL_SOCKETS
params->set_uds_endpoint(
variables["uds-path"].as<std::string>());
#endif
return params;
}
69 changes: 69 additions & 0 deletions examples/autobahn-cpp/parameters.hpp
@@ -0,0 +1,69 @@
///////////////////////////////////////////////////////////////////////////////
//
// Copyright (c) Tavendo GmbH
//
// Boost Software License - Version 1.0 - August 17th, 2003
//
// Permission is hereby granted, free of charge, to any person or organization
// obtaining a copy of the software and accompanying documentation covered by
// this license (the "Software") to use, reproduce, display, distribute,
// execute, and transmit the Software, and to prepare derivative works of the
// Software, and to permit third-parties to whom the Software is furnished to
// do so, all subject to the following:
//
// The copyright notices in the Software and this entire statement, including
// the above license grant, this restriction and the following disclaimer,
// must be included in all copies of the Software, in whole or in part, and
// all derivative works of the Software, unless such copies or derivative
// works are solely in the form of machine-executable object code generated by
// a source language processor.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT
// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE
// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE,
// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
// DEALINGS IN THE SOFTWARE.
//
///////////////////////////////////////////////////////////////////////////////

#ifndef EXAMPLES_PARAMETERS_HPP
#define EXAMPLES_PARAMETERS_HPP

#include <boost/asio/ip/tcp.hpp>
#ifdef BOOST_ASIO_HAS_LOCAL_SOCKETS
# include <boost/asio/local/stream_protocol.hpp>
#endif
#include <cstdint>
#include <string>

class parameters
{
public:
parameters();

bool debug() const;
const std::string& realm() const;
const boost::asio::ip::tcp::endpoint& rawsocket_endpoint() const;

#ifdef BOOST_ASIO_HAS_LOCAL_SOCKETS
void set_uds_endpoint(const std::string& path);
const boost::asio::local::stream_protocol::endpoint& uds_endpoint() const;
#endif

void set_debug(bool enabled);
void set_realm(const std::string& realm);
void set_rawsocket_endpoint(const std::string& ip_address, uint16_t port);
private:
bool m_debug;
std::string m_realm;
boost::asio::ip::tcp::endpoint m_rawsocket_endpoint;
#ifdef BOOST_ASIO_HAS_LOCAL_SOCKETS
boost::asio::local::stream_protocol::endpoint m_uds_endpoint;
#endif
};

std::unique_ptr<parameters> get_parameters(int argc, char** argv);

#endif // EXAMPLES_PARAMETERS_HPP

0 comments on commit 0e2642b

Please sign in to comment.