commit e529b2e10cc1b3d6495feec412dac3c459645c24 Author: BlackMATov Date: Sat Jun 22 05:53:08 2019 +0700 initial commit diff --git a/.appveyor.yml b/.appveyor.yml new file mode 100644 index 0000000..4f3132d --- /dev/null +++ b/.appveyor.yml @@ -0,0 +1,11 @@ +version: "{build}" +shallow_clone: true +image: + - Visual Studio 2017 + - Visual Studio 2019 Preview +platform: + - Win32 + - x64 +build_script: + - scripts\build_all.bat +test: off diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..eb695eb --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +build/* +.vscode/* +CMakeLists.txt.user diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..db390df --- /dev/null +++ b/.travis.yml @@ -0,0 +1,39 @@ +language: cpp +matrix: + include: + - os: linux + dist: trusty + addons: { apt: { sources: ubuntu-toolchain-r-test, packages: ["xorg-dev", "g++-7"] } } + env: MATRIX_EVAL="CC=gcc-7 && CXX=g++-7" + - os: linux + dist: trusty + addons: { apt: { sources: ubuntu-toolchain-r-test, packages: ["xorg-dev", "g++-8"] } } + env: MATRIX_EVAL="CC=gcc-8 && CXX=g++-8" + - os: linux + dist: trusty + addons: { apt: { sources: ["ubuntu-toolchain-r-test", "llvm-toolchain-trusty-7"], packages: ["xorg-dev", "clang-7", "g++-7"] } } + env: MATRIX_EVAL="CC=clang-7 && CXX=clang++-7" + - os: linux + dist: trusty + addons: { apt: { sources: ["ubuntu-toolchain-r-test", "llvm-toolchain-trusty-8"], packages: ["xorg-dev", "clang-8", "g++-7"] } } + env: MATRIX_EVAL="CC=clang-8 && CXX=clang++-8" + - os: osx + osx_image: xcode10 + compiler: clang + addons: { homebrew: { packages: ["lcov"] } } + after_success: ./scripts/upload_coverage.sh +before_install: + - eval "${MATRIX_EVAL}" + - if [ "$TRAVIS_OS_NAME" == 'osx' ]; then + brew update; + brew upgrade cmake; + brew install git-lfs; + fi + - if [ "$TRAVIS_OS_NAME" == 'linux' ]; then + mkdir $HOME/cmake; + export PATH="$HOME/cmake/bin:$PATH"; + travis_retry wget -q https://cmake.org/files/v3.11/cmake-3.11.4-Linux-x86_64.sh; + sh cmake-3.11.4-Linux-x86_64.sh --prefix=$HOME/cmake --exclude-subdir --skip-license; + fi +script: + - ./scripts/build_all.sh diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..8c8fb76 --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,20 @@ +# 3.8 version is required for `cxx_std_17` +cmake_minimum_required(VERSION 3.8 FATAL_ERROR) + +if(NOT DEFINED PROJECT_NAME) + set(BUILD_AS_STANDALONE ON) +endif() + +project(curly.hpp) + +add_library(${PROJECT_NAME} INTERFACE) +target_include_directories(${PROJECT_NAME} INTERFACE headers) +target_compile_features(${PROJECT_NAME} INTERFACE cxx_std_17) + +if(BUILD_AS_STANDALONE) + option(BUILD_WITH_UNTESTS "Build with unit tests" ON) + if(BUILD_WITH_UNTESTS) + enable_testing() + add_subdirectory(untests) + endif() +endif() diff --git a/LICENSE.md b/LICENSE.md new file mode 100644 index 0000000..8435d4c --- /dev/null +++ b/LICENSE.md @@ -0,0 +1,21 @@ +MIT License + +Copyright (C) 2019, by Matvey Cherevko (blackmatov@gmail.com) + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +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 AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/README.md b/README.md new file mode 100644 index 0000000..b78d107 --- /dev/null +++ b/README.md @@ -0,0 +1,38 @@ +# curly.hpp + +> Simple cURL C++17 wrapper + +[![travis][badge.travis]][travis] +[![appveyor][badge.appveyor]][appveyor] +[![codecov][badge.codecov]][codecov] +[![language][badge.language]][language] +[![license][badge.license]][license] +[![paypal][badge.paypal]][paypal] + +[badge.travis]: https://img.shields.io/travis/BlackMATov/curly.hpp/master.svg?logo=travis +[badge.appveyor]: https://img.shields.io/appveyor/ci/BlackMATov/curly-hpp/master.svg?logo=appveyor +[badge.codecov]: https://img.shields.io/codecov/c/github/BlackMATov/curly.hpp/master.svg?logo=codecov +[badge.language]: https://img.shields.io/badge/language-C%2B%2B17-yellow.svg +[badge.license]: https://img.shields.io/badge/license-MIT-blue.svg +[badge.paypal]: https://img.shields.io/badge/donate-PayPal-orange.svg?logo=paypal&colorA=00457C + +[travis]: https://travis-ci.org/BlackMATov/curly.hpp +[appveyor]: https://ci.appveyor.com/project/BlackMATov/curly-hpp +[codecov]: https://codecov.io/gh/BlackMATov/curly.hpp +[language]: https://en.wikipedia.org/wiki/C%2B%2B14 +[license]: https://en.wikipedia.org/wiki/MIT_License +[paypal]: https://www.paypal.me/matov + +[curly]: https://github.com/BlackMATov/curly.hpp + +## Installation + +> coming soon! + +## Examples + +> coming soon! + +## API + +> coming soon! diff --git a/headers/curly.hpp/curly.hpp b/headers/curly.hpp/curly.hpp new file mode 100644 index 0000000..cdd7489 --- /dev/null +++ b/headers/curly.hpp/curly.hpp @@ -0,0 +1,11 @@ +/******************************************************************************* + * This file is part of the "https://github.com/blackmatov/curly.hpp" + * For conditions of distribution and use, see copyright notice in LICENSE.md + * Copyright (C) 2019, by Matvey Cherevko (blackmatov@gmail.com) + ******************************************************************************/ + +#pragma once + +namespace curly_hpp +{ +} diff --git a/scripts/build_all.bat b/scripts/build_all.bat new file mode 100644 index 0000000..4d063dc --- /dev/null +++ b/scripts/build_all.bat @@ -0,0 +1,10 @@ +@echo off +set SCRIPT_DIR=%~dp0% +call %SCRIPT_DIR%\build_debug.bat || goto :error +call %SCRIPT_DIR%\build_release.bat || goto :error + +goto :EOF + +:error +echo Failed with error #%errorlevel%. +exit /b %errorlevel% diff --git a/scripts/build_all.sh b/scripts/build_all.sh new file mode 100755 index 0000000..d9cd585 --- /dev/null +++ b/scripts/build_all.sh @@ -0,0 +1,5 @@ +#!/bin/bash +set -e +SCRIPT_DIR=`dirname "$BASH_SOURCE"` +$SCRIPT_DIR/build_debug.sh +$SCRIPT_DIR/build_release.sh diff --git a/scripts/build_debug.bat b/scripts/build_debug.bat new file mode 100644 index 0000000..01f8572 --- /dev/null +++ b/scripts/build_debug.bat @@ -0,0 +1,14 @@ +@echo off +set BUILD_DIR=%~dp0%\..\build +mkdir %BUILD_DIR%\debug || goto :error +cd %BUILD_DIR%\debug || goto :error +cmake ../.. || goto :error +cmake --build . --config Debug || goto :error +ctest --verbose || goto :error +cd ..\.. || goto :error + +goto :EOF + +:error +echo Failed with error #%errorlevel%. +exit /b %errorlevel% diff --git a/scripts/build_debug.sh b/scripts/build_debug.sh new file mode 100755 index 0000000..89f4c93 --- /dev/null +++ b/scripts/build_debug.sh @@ -0,0 +1,9 @@ +#!/bin/bash +set -e +BUILD_DIR=`dirname "$BASH_SOURCE"`/../build +mkdir -p $BUILD_DIR/debug +cd $BUILD_DIR/debug +cmake -DCMAKE_BUILD_TYPE=Debug ../.. +cmake --build . -- -j8 +ctest --verbose +cd ../.. diff --git a/scripts/build_release.bat b/scripts/build_release.bat new file mode 100644 index 0000000..b6bf362 --- /dev/null +++ b/scripts/build_release.bat @@ -0,0 +1,14 @@ +@echo off +set BUILD_DIR=%~dp0%\..\build +mkdir %BUILD_DIR%\release || goto :error +cd %BUILD_DIR%\release || goto :error +cmake ../.. || goto :error +cmake --build . --config Release || goto :error +ctest --verbose || goto :error +cd ..\.. || goto :error + +goto :EOF + +:error +echo Failed with error #%errorlevel%. +exit /b %errorlevel% diff --git a/scripts/build_release.sh b/scripts/build_release.sh new file mode 100755 index 0000000..9ab7e23 --- /dev/null +++ b/scripts/build_release.sh @@ -0,0 +1,9 @@ +#!/bin/bash +set -e +BUILD_DIR=`dirname "$BASH_SOURCE"`/../build +mkdir -p $BUILD_DIR/release +cd $BUILD_DIR/release +cmake -DCMAKE_BUILD_TYPE=Release ../.. +cmake --build . -- -j8 +ctest --verbose +cd ../.. diff --git a/scripts/upload_coverage.sh b/scripts/upload_coverage.sh new file mode 100755 index 0000000..b1eef21 --- /dev/null +++ b/scripts/upload_coverage.sh @@ -0,0 +1,17 @@ +#!/bin/bash +set -e + +BUILD_DIR=`dirname "$BASH_SOURCE"`/../build +mkdir -p $BUILD_DIR/coverage +cd $BUILD_DIR/coverage +cmake -DCMAKE_BUILD_TYPE=Debug -DBUILD_WITH_COVERAGE=ON ../.. +cmake --build . -- -j8 + +lcov -d . -z +ctest --verbose + +lcov -d . -c -o "coverage.info" +lcov -r "coverage.info" "*/usr/*" "*/catch.hpp" "*/catch_main.cpp" "*_tests.cpp" -o "coverage.info" +lcov -l "coverage.info" + +bash <(curl -s https://codecov.io/bash) || echo "Codecov did not collect coverage reports" diff --git a/untests/CMakeLists.txt b/untests/CMakeLists.txt new file mode 100644 index 0000000..683772a --- /dev/null +++ b/untests/CMakeLists.txt @@ -0,0 +1,39 @@ +# 3.11 version is required for `FetchContent` +cmake_minimum_required(VERSION 3.11 FATAL_ERROR) + +project(curly.hpp.untests) + +set(CATCH_BUILD_TESTING OFF CACHE BOOL "" FORCE) + +include(FetchContent) +FetchContent_Declare( + catch2 + GIT_REPOSITORY https://github.com/catchorg/catch2) + +FetchContent_GetProperties(catch2) +if(NOT catch2_POPULATED) + FetchContent_Populate(catch2) + add_subdirectory(${catch2_SOURCE_DIR} ${catch2_BINARY_DIR}) +endif() + +option(BUILD_WITH_COVERAGE "Build with coverage" OFF) +if(BUILD_WITH_COVERAGE AND (CMAKE_CXX_COMPILER_ID MATCHES "GNU|Clang")) + set(COVERAGE_FLAGS "--coverage") + set(CMAKE_C_FLAGS_DEBUG "${CMAKE_C_FLAGS_DEBUG} ${COVERAGE_FLAGS}") + set(CMAKE_CXX_FLAGS_DEBUG "${CMAKE_CXX_FLAGS_DEBUG} ${COVERAGE_FLAGS}") + set(CMAKE_LINKER_FLAGS_DEBUG "${CMAKE_LINKER_FLAGS_DEBUG} ${COVERAGE_FLAGS}") +endif() + +file(GLOB UNTESTS_SOURCES "*.cpp" "*.hpp") +add_executable(${PROJECT_NAME} ${UNTESTS_SOURCES}) +target_link_libraries(${PROJECT_NAME} + Catch2 + curly.hpp) +target_compile_options(${PROJECT_NAME} + PRIVATE + $<$: + /W4> + PRIVATE + $<$,$,$>: + -Wall -Wextra -Wpedantic>) +add_test(${PROJECT_NAME} ${PROJECT_NAME}) diff --git a/untests/catch_main.cpp b/untests/catch_main.cpp new file mode 100644 index 0000000..0259235 --- /dev/null +++ b/untests/catch_main.cpp @@ -0,0 +1,9 @@ +/******************************************************************************* + * This file is part of the "https://github.com/blackmatov/curly.hpp" + * For conditions of distribution and use, see copyright notice in LICENSE.md + * Copyright (C) 2019, by Matvey Cherevko (blackmatov@gmail.com) + ******************************************************************************/ + +#define CATCH_CONFIG_MAIN +#define CATCH_CONFIG_FAST_COMPILE +#include diff --git a/untests/curly_tests.cpp b/untests/curly_tests.cpp new file mode 100644 index 0000000..db089b2 --- /dev/null +++ b/untests/curly_tests.cpp @@ -0,0 +1,19 @@ +/******************************************************************************* + * This file is part of the "https://github.com/blackmatov/curly.hpp" + * For conditions of distribution and use, see copyright notice in LICENSE.md + * Copyright (C) 2019, by Matvey Cherevko (blackmatov@gmail.com) + ******************************************************************************/ + +#define CATCH_CONFIG_FAST_COMPILE +#include + +#include +namespace cur = curly_hpp; + +namespace +{ +} + +TEST_CASE("curly"){ + REQUIRE(true); +}