Skip to content

systelab/cpp-httplib-webserver-adapter

Repository files navigation

Build Status Build status codecov Codacy Badge

C++ Web Server Adapter implementation for cpp-httplib

This repository implements the interface for the C++ Web Server Adapter using cpp-httplib.

Setup

Download using Conan

This library is designed to be installed by making use of Conan package manager. So, you just need to add the following requirement into your Conan recipe:

def requirements(self):
   self.requires("HttpLibWebServerAdapter/1.0.0@systelab/stable")

Version number of this code snipped is set just as an example. Replace it for the desired package version to retrieve.

As this package is not available on the conan-center, you will also need to configure a remote repository before installing dependencies:

conan remote add systelab-public https://csw.jfrog.io/artifactory/api/conan/cpp-conan-production-local 

See Conan documentation for further details on how to integrate this package with your build system.

Build from sources

See BUILD.md document for details.

Usage

Initialize this libraryr by creating an instance of the systelab::web_server::httplib::ServerFactory class:

#include "HttpLibWebServerAdapter/ServerFactory.h"

std::unique_ptr<systelab::web_server::IServerFactory> serverFactory = 
    std::make_unique<systelab::web_server::httplib::ServerFactory>();

Use the systelab::web_server::IServerFactory interface of the created object to access to the web server features as described on C++ Web Server Adapter documentation.