美文网首页
Singleton在Dependency Injection中的

Singleton在Dependency Injection中的

作者: FredricZhu | 来源:发表于2022-04-23 10:25 被阅读0次

    这个首先需要用到一个boost::di库,需要自己用curl下载。
    代码如下,

    curl https://raw.githubusercontent.com/boost-ext/di/cpp14/include/boost/di.hpp -o ./di.hpp
    

    这个库是一个header only的库,直接include就行了,比较简单。
    本例主要演示如何在依赖注入的环境里面使用Singleton。
    代码结构如下,


    image.png

    test/CMakeLists.txt

    cmake_minimum_required(VERSION 2.6)
    
    if(APPLE)
        message(STATUS "This is Apple, do nothing.")
        set(CMAKE_MACOSX_RPATH 1)
        set(CMAKE_PREFIX_PATH /Users/aabjfzhu/software/vcpkg/ports/cppwork/vcpkg_installed/x64-osx/share )
    elseif(UNIX)
        message(STATUS "This is linux, set CMAKE_PREFIX_PATH.")
        set(CMAKE_PREFIX_PATH /vcpkg/ports/cppwork/vcpkg_installed/x64-linux/share)
    endif(APPLE)
    
    project(singleton_di)
    
    set(CMAKE_CXX_STANDARD 20)
    set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wno-narrowing")
    
    add_definitions(-g)
    
    find_package(ZLIB)
    
    find_package(OpenCV REQUIRED )
    find_package(Arrow CONFIG REQUIRED)
    
    find_package(unofficial-brotli REQUIRED)
    find_package(unofficial-utf8proc CONFIG REQUIRED)
    find_package(Thrift CONFIG REQUIRED)
    
    find_package(glog REQUIRED)
    
    find_package(OpenSSL REQUIRED)
    
    find_package(Boost REQUIRED COMPONENTS
        system
        filesystem
        serialization
        program_options
        thread
        )
    
    find_package(DataFrame REQUIRED)
    
    if(APPLE)
        MESSAGE(STATUS "This is APPLE, set INCLUDE_DIRS")
    set(INCLUDE_DIRS ${Boost_INCLUDE_DIRS} /usr/local/include /usr/local/iODBC/include /opt/snowflake/snowflakeodbc/include/ ${CMAKE_CURRENT_SOURCE_DIR}/../include/ ${CMAKE_CURRENT_SOURCE_DIR}/../../../include)
    elseif(UNIX)
        MESSAGE(STATUS "This is linux, set INCLUDE_DIRS")
        set(INCLUDE_DIRS ${Boost_INCLUDE_DIRS} /usr/local/include ${CMAKE_CURRENT_SOURCE_DIR}/../include/   ${CMAKE_CURRENT_SOURCE_DIR}/../../../include/)
    endif(APPLE)
    
    
    if(APPLE)
        MESSAGE(STATUS "This is APPLE, set LINK_DIRS")
        set(LINK_DIRS /usr/local/lib /usr/local/iODBC/lib /opt/snowflake/snowflakeodbc/lib/universal)
    elseif(UNIX)
        MESSAGE(STATUS "This is linux, set LINK_DIRS")
        set(LINK_DIRS ${Boost_INCLUDE_DIRS} /usr/local/lib /vcpkg/ports/cppwork/vcpkg_installed/x64-linux/lib)
    endif(APPLE)
    
    if(APPLE)
        MESSAGE(STATUS "This is APPLE, set ODBC_LIBS")
        set(ODBC_LIBS iodbc iodbcinst)
    elseif(UNIX)
        MESSAGE(STATUS "This is linux, set LINK_DIRS")
        set(ODBC_LIBS odbc odbcinst ltdl)
    endif(APPLE)
    
    include_directories(${INCLUDE_DIRS})
    LINK_DIRECTORIES(${LINK_DIRS})
    
    file( GLOB test_file_list ${CMAKE_CURRENT_SOURCE_DIR}/*.cpp) 
    
    file( GLOB APP_SOURCES ${CMAKE_CURRENT_SOURCE_DIR}/../impl/*.cpp ${CMAKE_CURRENT_SOURCE_DIR}/../include/*.h ${CMAKE_CURRENT_SOURCE_DIR}/../include/*.cpp ${CMAKE_CURRENT_SOURCE_DIR}/../../../include/arr_/impl/*.cpp ${CMAKE_CURRENT_SOURCE_DIR}/../../../include/http/impl/*.cpp ${CMAKE_CURRENT_SOURCE_DIR}/../../../include/yaml/impl/*.cpp ${CMAKE_CURRENT_SOURCE_DIR}/../../../include/df/impl/*.cpp ${CMAKE_CURRENT_SOURCE_DIR}/../../../include/death_handler/impl/*.cpp)
    
    add_library(${PROJECT_NAME}_lib SHARED ${APP_SOURCES} ${test_file})
    target_link_libraries(${PROJECT_NAME}_lib ${Boost_LIBRARIES} ZLIB::ZLIB glog::glog DataFrame::DataFrame ${OpenCV_LIBS})
    target_link_libraries(${PROJECT_NAME}_lib OpenSSL::SSL OpenSSL::Crypto libgtest.a pystring libyaml-cpp.a libgmock.a ${ODBC_LIBS} libnanodbc.a pthread dl backtrace libzstd.a libbz2.a libsnappy.a re2::re2 parquet lz4 unofficial::brotli::brotlidec-static unofficial::brotli::brotlienc-static unofficial::brotli::brotlicommon-static utf8proc thrift::thrift  arrow arrow_dataset)
    
    foreach( test_file ${test_file_list} )
        file(RELATIVE_PATH filename ${CMAKE_CURRENT_SOURCE_DIR} ${test_file})
        string(REPLACE ".cpp" "" file ${filename})
        add_executable(${file}  ${test_file})
        target_link_libraries(${file} ${PROJECT_NAME}_lib)
    endforeach( test_file ${test_file_list})
    

    test/singleton_di_test.cpp

    #include "death_handler/death_handler.h"
    #include <glog/logging.h>
    #include "di/di.hpp"
    #include "singleton_di.hpp"
    
    #include <utility>
    #include <gtest/gtest.h>
    #include "df/df.h"
    
    namespace di = boost::di;
    
    
    int main(int argc, char** argv) {
        FLAGS_log_dir = "./";
        FLAGS_alsologtostderr = true;
        // 日志级别 INFO, WARNING, ERROR, FATAL 的值分别为0、1、2、3
        FLAGS_minloglevel = 0;
    
        Debug::DeathHandler dh;
    
        google::InitGoogleLogging("./logs.log");
        testing::InitGoogleTest(&argc, argv);
        int ret = RUN_ALL_TESTS();
        return ret;
    }
    
    GTEST_TEST(SingletonDITests, SingletonDI) {
        auto injector = di::make_injector(
            di::bind<Foo>().to<Foo>().in(di::singleton)
        );
    
        auto bar1 = injector.create<std::shared_ptr<Bar<Foo>>>();
        auto bar2 = injector.create<std::shared_ptr<Bar<Foo>>>();
        EXPECT_EQ(bar1->foo->name(), bar2->foo->name());
        EXPECT_EQ(bar1->foo.get(), bar2->foo.get());
    }
    

    include/singleton_di.hpp

    #ifndef _FREDRIC_SINGLETON_DI_HPP_
    #define _FREDRIC_SINGLETON_DI_HPP_
    #include <iostream>
    #include <vector>
    #include <string>
    #include <memory>
    #include <concepts>
    
    template <typename T>
    concept FooType = requires (T value) {
        {value.name()} -> std::convertible_to<std::string>;
    };
    
    struct Foo {
        static int id;
        Foo() { ++id; }
        std::string name() {
            return "foo " + std::to_string(id);
        }
    };
    
    int Foo::id = 0;
    
    template <FooType FooT>
    struct Bar {
        std::shared_ptr<FooT> foo;
    };
    #endif
    

    程序输出如下,代表测试通过,


    image.png

    相关文章

      网友评论

          本文标题:Singleton在Dependency Injection中的

          本文链接:https://www.haomeiwen.com/subject/zxqaertx.html