From 39129bc4bafcc473485e4ebd54024151dfe56bcc Mon Sep 17 00:00:00 2001 From: Falk Werner Date: Mon, 10 Feb 2020 16:58:04 +0100 Subject: [PATCH 1/2] feature: adapter and provider libraries can be build separately --- CMakeLists.txt | 82 ++++++++++++++++++++++++++++++++++++++------------ README.md | 10 ++++++ 2 files changed, 72 insertions(+), 20 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 504ef4c..70ef8cb 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,7 +1,9 @@ cmake_minimum_required (VERSION 3.10) project(webfuse VERSION 0.2.0 DESCRIPTION "Websocket filesystem based on libfuse") -option(WITHOUT_TESTS "disable unit tests" OFF) +option(WITHOUT_TESTS "disable unit tests" OFF) +option(WITHOUT_ADAPTER "disable adapter library" OFF) +option(WITHOUT_PROVIDER "disable provider library" OFF) set(CMAKE_MODULE_PATH "${CMAKE_MODULE_PATH};${CMAKE_CURRENT_SOURCE_DIR}/cmake") include(coverage) @@ -10,10 +12,8 @@ set(THREADS_PREFER_PTHREAD_FLAG ON) find_package(Threads REQUIRED) find_package(PkgConfig REQUIRED) -pkg_check_modules(FUSE3 REQUIRED fuse3) pkg_check_modules(LWS REQUIRED libwebsockets) pkg_check_modules(JANSSON REQUIRED jansson) -pkg_check_modules(UUID REQUIRED uuid) add_definitions(-D_FILE_OFFSET_BITS=64) @@ -26,27 +26,14 @@ set(CMAKE_POSITION_INDEPENDENT_CODE ON) include_directories( "include" - ${FUSE3_INCLUDE_DIRS} ${LWS_INCLUDE_DIRS} ${JANSSON_INCLUDE_DIRS} - ${UUID_INCLUDE_DIRS} -) - -set(EXTRA_LIBS - ${EXTRA_LIBS} - ${FUSE3_LIBRARIES} - ${LWS_LIBRARIES} - ${JANSSON_LIBRARIES} - ${UUID_LIBRARIES} - ${CMAKE_THREAD_LIBS_INIT} ) add_compile_options( ${C_WARNINGS} - ${FUSE3_CFLAGS_OTHER} ${LWS_CFLAGS_OTHER} ${JANSSON_CFLAGS_OTHER} - ${UUID_CFLAGS_OTHER} "-pthread" ) @@ -72,6 +59,11 @@ install(DIRECTORY include/webfuse/core DESTINATION include/webfuse) # libwebfuse-adapter +if(NOT WITHOUT_ADAPTER) + +pkg_check_modules(FUSE3 REQUIRED fuse3) +pkg_check_modules(UUID REQUIRED uuid) + add_library(webfuse-adapter-static STATIC lib/webfuse/adapter/api.c lib/webfuse/adapter/impl/filesystem.c @@ -101,14 +93,35 @@ add_library(webfuse-adapter-static STATIC lib/webfuse/adapter/impl/jsonrpc/util.c ) +target_include_directories(webfuse-adapter-static PRIVATE + lib + ${FUSE3_INCLUDE_DIRS} + ${UUID_INCLUDE_DIRS} +) + +target_compile_options(webfuse-adapter-static PUBLIC + ${FUSE3_CFLAGS_OTHER} + ${UUID_CFLAGS_OTHER} +) + set_target_properties(webfuse-adapter-static PROPERTIES OUTPUT_NAME webfuse-adapter) set_target_properties(webfuse-adapter-static PROPERTIES C_VISIBILITY_PRESET hidden) -target_include_directories(webfuse-adapter-static PUBLIC lib) add_library(webfuse-adapter SHARED lib/webfuse/adapter/api.c ) +target_include_directories(webfuse-adapter PRIVATE + ${FUSE3_INCLUDE_DIRS} + ${UUID_INCLUDE_DIRS} +) + +target_compile_options(webfuse-adapter PUBLIC + ${FUSE3_CFLAGS_OTHER} + ${UUID_CFLAGS_OTHER} +) + + set_target_properties(webfuse-adapter PROPERTIES VERSION ${PROJECT_VERSION}) set_target_properties(webfuse-adapter PROPERTIES SOVERSION 0) set_target_properties(webfuse-adapter PROPERTIES C_VISIBILITY_PRESET hidden) @@ -135,8 +148,13 @@ install(FILES include/webfuse_adapter.h DESTINATION include) install(DIRECTORY include/webfuse/adapter DESTINATION include/webfuse) install(FILES "${PROJECT_BINARY_DIR}/libwebfuse-adapter.pc" DESTINATION lib${LIB_SUFFIX}/pkgconfig) +endif(NOT WITHOUT_ADAPTER) + + #libwebfuse-provider +if(NOT WITHOUT_PROVIDER) + add_library(webfuse-provider-static STATIC lib/webfuse/provider/api.c lib/webfuse/provider/impl/url.c @@ -189,9 +207,11 @@ install(FILES include/webfuse_provider.h DESTINATION include) install(DIRECTORY include/webfuse/provider DESTINATION include/webfuse) install(FILES "${PROJECT_BINARY_DIR}/libwebfuse-provider.pc" DESTINATION lib${LIB_SUFFIX}/pkgconfig) +endif(NOT WITHOUT_PROVIDER) + # tests -if(NOT WITHOUT_TESTS) +if(NOT WITHOUT_TESTS AND NOT WITHOUT_ADAPTER AND NOT WITHOUT_PROVIDER) include (CTest) @@ -234,7 +254,29 @@ add_executable(alltests test/integration/provider.cc ) -target_link_libraries(alltests PUBLIC webfuse-adapter-static webfuse-provider-static webfuse-core ${EXTRA_LIBS} ${GMOCK_LIBRARIES} ${GTEST_LIBRARIES}) +target_include_directories(alltests PRIVATE + ${FUSE3_INCLUDE_DIRS} + ${UUID_INCLUDE_DIRS} +) + +target_compile_options(alltests PUBLIC + ${FUSE3_CFLAGS_OTHER} + ${UUID_CFLAGS_OTHER} +) + +target_link_libraries(alltests PUBLIC + webfuse-adapter-static + webfuse-provider-static + webfuse-core + ${FUSE3_LIBRARIES} + ${LWS_LIBRARIES} + ${JANSSON_LIBRARIES} + ${UUID_LIBRARIES} + ${CMAKE_THREAD_LIBS_INIT} + ${GMOCK_LIBRARIES} + ${GTEST_LIBRARIES} +) + target_include_directories(alltests PUBLIC test lib ${GMOCK_INCLUDE_DIRS} ${GTEST_INCLUDE_DIRS}) target_compile_options(alltests PUBLIC ${GMOCK_CFLAGS} ${GTEST_CFLAGS}) @@ -255,4 +297,4 @@ add_custom_target(coverage-report ) add_dependencies(coverage-report coverage) -endif(NOT WITHOUT_TESTS) +endif(NOT WITHOUT_TESTS AND NOT WITHOUT_ADAPTER AND NOT WITHOUT_PROVIDER) diff --git a/README.md b/README.md index 7ea0d16..d2cf16f 100644 --- a/README.md +++ b/README.md @@ -401,6 +401,16 @@ By default, unit tests are enabled. You can disable them using the following cma - **WITHOUT_TESTS**: disable tests `cmake -DWITHOUT_TESTS=ON ..` +Since webfuse consists of two libraries, it is possible to disable one of them +in order to reduce build dependencies. +*Note that unit tests are only available, when both libraries are built.* + +- **WITHOUT_ADAPTER**: omit adapter library + `cmake -DWITHOUT_ADAPTER=ON` + +- **WIHTOU_PROVIDER**: omit provider library + `cmake -DWITHOUT_PROVIDER=ON` + ## Dependencies - [libfuse3](https://github.com/libfuse/libfuse/) From 47eec1c9e145118e2fd2cd3189124d23c01b9225 Mon Sep 17 00:00:00 2001 From: Falk Werner Date: Mon, 10 Feb 2020 17:35:27 +0100 Subject: [PATCH 2/2] chore: split monolithic CMakeLists.txt into separate parts --- CMakeLists.txt | 265 +---------------------------------- cmake/unit_tests.cmake | 87 ++++++++++++ cmake/webfuse_adapter.cmake | 90 ++++++++++++ cmake/webfuse_core.cmake | 18 +++ cmake/webfuse_provider.cmake | 55 ++++++++ 5 files changed, 254 insertions(+), 261 deletions(-) create mode 100644 cmake/unit_tests.cmake create mode 100644 cmake/webfuse_adapter.cmake create mode 100644 cmake/webfuse_core.cmake create mode 100644 cmake/webfuse_provider.cmake diff --git a/CMakeLists.txt b/CMakeLists.txt index 70ef8cb..f346e9d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -37,264 +37,7 @@ add_compile_options( "-pthread" ) -# libwebfuse-core - -add_library(webfuse-core STATIC - lib/webfuse/core/slist.c - lib/webfuse/core/message.c - lib/webfuse/core/message_queue.c - lib/webfuse/core/status.c - lib/webfuse/core/string.c - lib/webfuse/core/path.c - lib/webfuse/core/base64.c - lib/webfuse/core/lws_log.c -) - -set_target_properties(webfuse-core PROPERTIES OUTPUT_NAME webfuse-core) -target_include_directories(webfuse-core PUBLIC lib) -set_target_properties(webfuse-core PROPERTIES C_VISIBILITY_PRESET hidden) - -install(DIRECTORY include/webfuse/core DESTINATION include/webfuse) - - -# libwebfuse-adapter - -if(NOT WITHOUT_ADAPTER) - -pkg_check_modules(FUSE3 REQUIRED fuse3) -pkg_check_modules(UUID REQUIRED uuid) - -add_library(webfuse-adapter-static STATIC - lib/webfuse/adapter/api.c - lib/webfuse/adapter/impl/filesystem.c - lib/webfuse/adapter/impl/server.c - lib/webfuse/adapter/impl/server_config.c - lib/webfuse/adapter/impl/server_protocol.c - lib/webfuse/adapter/impl/session.c - lib/webfuse/adapter/impl/session_manager.c - lib/webfuse/adapter/impl/authenticator.c - lib/webfuse/adapter/impl/authenticators.c - lib/webfuse/adapter/impl/credentials.c - lib/webfuse/adapter/impl/operations.c - lib/webfuse/adapter/impl/time/timepoint.c - lib/webfuse/adapter/impl/time/timer.c - lib/webfuse/adapter/impl/time/timeout_manager.c - lib/webfuse/adapter/impl/operation/lookup.c - lib/webfuse/adapter/impl/operation/getattr.c - lib/webfuse/adapter/impl/operation/readdir.c - lib/webfuse/adapter/impl/operation/open.c - lib/webfuse/adapter/impl/operation/close.c - lib/webfuse/adapter/impl/operation/read.c - lib/webfuse/adapter/impl/jsonrpc/proxy.c - lib/webfuse/adapter/impl/jsonrpc/server.c - lib/webfuse/adapter/impl/jsonrpc/method.c - lib/webfuse/adapter/impl/jsonrpc/request.c - lib/webfuse/adapter/impl/jsonrpc/response.c - lib/webfuse/adapter/impl/jsonrpc/util.c -) - -target_include_directories(webfuse-adapter-static PRIVATE - lib - ${FUSE3_INCLUDE_DIRS} - ${UUID_INCLUDE_DIRS} -) - -target_compile_options(webfuse-adapter-static PUBLIC - ${FUSE3_CFLAGS_OTHER} - ${UUID_CFLAGS_OTHER} -) - -set_target_properties(webfuse-adapter-static PROPERTIES OUTPUT_NAME webfuse-adapter) -set_target_properties(webfuse-adapter-static PROPERTIES C_VISIBILITY_PRESET hidden) - -add_library(webfuse-adapter SHARED - lib/webfuse/adapter/api.c -) - -target_include_directories(webfuse-adapter PRIVATE - ${FUSE3_INCLUDE_DIRS} - ${UUID_INCLUDE_DIRS} -) - -target_compile_options(webfuse-adapter PUBLIC - ${FUSE3_CFLAGS_OTHER} - ${UUID_CFLAGS_OTHER} -) - - -set_target_properties(webfuse-adapter PROPERTIES VERSION ${PROJECT_VERSION}) -set_target_properties(webfuse-adapter PROPERTIES SOVERSION 0) -set_target_properties(webfuse-adapter PROPERTIES C_VISIBILITY_PRESET hidden) -set_target_properties(webfuse-adapter PROPERTIES COMPILE_DEFINITIONS "WF_API=WF_EXPORT") - -target_link_libraries(webfuse-adapter PRIVATE webfuse-adapter-static webfuse-core) - -file(WRITE "${PROJECT_BINARY_DIR}/libwebfuse-adapter.pc" -"prefix=\"${CMAKE_INSTALL_PREFIX}\" - -exec_prefix=\${prefix} -libdir=\${exec_prefix}/lib${LIB_SUFFIX} -includedir=\${prefix}/include -Name: libwebfuse -Description: Websockets filesystem server library -Version: ${PROJECT_VERSION} - -Libs: -L\${libdir} -lwebfuse-adapter -l${FUSE3_LIBRARIES} -l${LWS_LIBRARIES} -l${JANSSON_LIBRARIES} -Cflags: -I\${includedir}" -) - -install(TARGETS webfuse-adapter DESTINATION lib${LIB_SUFFIX}) -install(FILES include/webfuse_adapter.h DESTINATION include) -install(DIRECTORY include/webfuse/adapter DESTINATION include/webfuse) -install(FILES "${PROJECT_BINARY_DIR}/libwebfuse-adapter.pc" DESTINATION lib${LIB_SUFFIX}/pkgconfig) - -endif(NOT WITHOUT_ADAPTER) - - -#libwebfuse-provider - -if(NOT WITHOUT_PROVIDER) - -add_library(webfuse-provider-static STATIC - lib/webfuse/provider/api.c - lib/webfuse/provider/impl/url.c - lib/webfuse/provider/impl/client.c - lib/webfuse/provider/impl/client_config.c - lib/webfuse/provider/impl/client_protocol.c - lib/webfuse/provider/impl/provider.c - lib/webfuse/provider/impl/request.c - lib/webfuse/provider/impl/dirbuffer.c - lib/webfuse/provider/impl/operation/lookup.c - lib/webfuse/provider/impl/operation/getattr.c - lib/webfuse/provider/impl/operation/readdir.c - lib/webfuse/provider/impl/operation/open.c - lib/webfuse/provider/impl/operation/close.c - lib/webfuse/provider/impl/operation/read.c - lib/webfuse/provider/impl/static_filesystem.c -) - -set_target_properties(webfuse-provider-static PROPERTIES OUTPUT_NAME webfuse-provider) -set_target_properties(webfuse-provider-static PROPERTIES C_VISIBILITY_PRESET hidden) -target_include_directories(webfuse-provider-static PUBLIC lib) - -add_library(webfuse-provider SHARED - lib/webfuse/provider/api.c -) - -set_target_properties(webfuse-provider PROPERTIES VERSION ${PROJECT_VERSION}) -set_target_properties(webfuse-provider PROPERTIES SOVERSION 0) -set_target_properties(webfuse-provider PROPERTIES C_VISIBILITY_PRESET hidden) -set_target_properties(webfuse-provider PROPERTIES COMPILE_DEFINITIONS "WFP_API=WFP_EXPORT") - -target_include_directories(webfuse-provider PUBLIC lib) -target_link_libraries(webfuse-provider PRIVATE webfuse-provider-static webfuse-core) - -file(WRITE "${PROJECT_BINARY_DIR}/libwebfuse-provider.pc" -"prefix=\"${CMAKE_INSTALL_PREFIX}\" -exec_prefix=\${prefix} -libdir=\${exec_prefix}/lib${LIB_SUFFIX} -includedir=\${prefix}/include -Name: libwebfuse-provider -Description: Provider library for websockets filesystem -Version: ${PROJECT_VERSION} - -Libs: -L\${libdir} -lwebfuse-provider -l${LWS_LIBRARIES} -l${JANSSON_LIBRARIES} -Cflags: -I\${includedir}" -) - -install(TARGETS webfuse-provider DESTINATION lib${LIB_SUFFIX}) -install(FILES include/webfuse_provider.h DESTINATION include) -install(DIRECTORY include/webfuse/provider DESTINATION include/webfuse) -install(FILES "${PROJECT_BINARY_DIR}/libwebfuse-provider.pc" DESTINATION lib${LIB_SUFFIX}/pkgconfig) - -endif(NOT WITHOUT_PROVIDER) - -# tests - -if(NOT WITHOUT_TESTS AND NOT WITHOUT_ADAPTER AND NOT WITHOUT_PROVIDER) - -include (CTest) - -pkg_check_modules(GTEST gtest_main) -include(GoogleTest) -pkg_check_modules(GMOCK gmock) - -add_executable(alltests - test/msleep.cc - test/die_if.cc - test/mock_authenticator.cc - test/mock_request.cc - test/core/test_container_of.cc - test/core/test_string.cc - test/core/test_slist.cc - test/core/test_path.cc - test/core/test_base64.cc - test/core/test_status.cc - test/core/test_message.cc - test/core/test_message_queue.cc - test/adapter/test_response_parser.cc - test/adapter/test_server.cc - test/adapter/test_timepoint.cc - test/adapter/test_timer.cc - test/adapter/test_credentials.cc - test/adapter/test_authenticator.cc - test/adapter/test_authenticators.cc - test/adapter/test_fuse_req.cc - test/adapter/jsonrpc/test_util.cc - test/adapter/jsonrpc/test_is_request.cc - test/adapter/jsonrpc/test_request.cc - test/adapter/jsonrpc/test_is_response.cc - test/adapter/jsonrpc/test_response.cc - test/adapter/jsonrpc/test_server.cc - test/adapter/jsonrpc/test_proxy.cc - test/provider/test_url.cc - test/provider/test_static_filesystem.cc - test/integration/test_integration.cc - test/integration/server.cc - test/integration/provider.cc -) - -target_include_directories(alltests PRIVATE - ${FUSE3_INCLUDE_DIRS} - ${UUID_INCLUDE_DIRS} -) - -target_compile_options(alltests PUBLIC - ${FUSE3_CFLAGS_OTHER} - ${UUID_CFLAGS_OTHER} -) - -target_link_libraries(alltests PUBLIC - webfuse-adapter-static - webfuse-provider-static - webfuse-core - ${FUSE3_LIBRARIES} - ${LWS_LIBRARIES} - ${JANSSON_LIBRARIES} - ${UUID_LIBRARIES} - ${CMAKE_THREAD_LIBS_INIT} - ${GMOCK_LIBRARIES} - ${GTEST_LIBRARIES} -) - -target_include_directories(alltests PUBLIC test lib ${GMOCK_INCLUDE_DIRS} ${GTEST_INCLUDE_DIRS}) -target_compile_options(alltests PUBLIC ${GMOCK_CFLAGS} ${GTEST_CFLAGS}) - -enable_testing() -gtest_discover_tests(alltests TEST_PREFIX alltests:) - -add_custom_target(coverage - ./alltests - COMMAND mkdir -p coverage - COMMAND lcov --capture --directory . --output-file coverage/lcov.info - COMMAND lcov --remove coverage/lcov.info '/usr/*' --output-file coverage/lcov.info - COMMAND lcov --remove coverage/lcov.info '*/test/*' --output-file coverage/lcov.info -) -add_dependencies(coverage alltests) - -add_custom_target(coverage-report - COMMAND genhtml coverage/lcov.info --output-directory coverage/report -) -add_dependencies(coverage-report coverage) - -endif(NOT WITHOUT_TESTS AND NOT WITHOUT_ADAPTER AND NOT WITHOUT_PROVIDER) +include(webfuse_core) +include(webfuse_adapter) +include(webfuse_provider) +include(unit_tests) diff --git a/cmake/unit_tests.cmake b/cmake/unit_tests.cmake new file mode 100644 index 0000000..5af183a --- /dev/null +++ b/cmake/unit_tests.cmake @@ -0,0 +1,87 @@ +if(NOT WITHOUT_TESTS AND NOT WITHOUT_ADAPTER AND NOT WITHOUT_PROVIDER) + +include (CTest) + +pkg_check_modules(GTEST gtest_main) +include(GoogleTest) +pkg_check_modules(GMOCK gmock) + +add_executable(alltests + test/msleep.cc + test/die_if.cc + test/mock_authenticator.cc + test/mock_request.cc + test/core/test_container_of.cc + test/core/test_string.cc + test/core/test_slist.cc + test/core/test_path.cc + test/core/test_base64.cc + test/core/test_status.cc + test/core/test_message.cc + test/core/test_message_queue.cc + test/adapter/test_response_parser.cc + test/adapter/test_server.cc + test/adapter/test_timepoint.cc + test/adapter/test_timer.cc + test/adapter/test_credentials.cc + test/adapter/test_authenticator.cc + test/adapter/test_authenticators.cc + test/adapter/test_fuse_req.cc + test/adapter/jsonrpc/test_util.cc + test/adapter/jsonrpc/test_is_request.cc + test/adapter/jsonrpc/test_request.cc + test/adapter/jsonrpc/test_is_response.cc + test/adapter/jsonrpc/test_response.cc + test/adapter/jsonrpc/test_server.cc + test/adapter/jsonrpc/test_proxy.cc + test/provider/test_url.cc + test/provider/test_static_filesystem.cc + test/integration/test_integration.cc + test/integration/server.cc + test/integration/provider.cc +) + +target_include_directories(alltests PRIVATE + ${FUSE3_INCLUDE_DIRS} + ${UUID_INCLUDE_DIRS} +) + +target_compile_options(alltests PUBLIC + ${FUSE3_CFLAGS_OTHER} + ${UUID_CFLAGS_OTHER} +) + +target_link_libraries(alltests PUBLIC + webfuse-adapter-static + webfuse-provider-static + webfuse-core + ${FUSE3_LIBRARIES} + ${LWS_LIBRARIES} + ${JANSSON_LIBRARIES} + ${UUID_LIBRARIES} + ${CMAKE_THREAD_LIBS_INIT} + ${GMOCK_LIBRARIES} + ${GTEST_LIBRARIES} +) + +target_include_directories(alltests PUBLIC test lib ${GMOCK_INCLUDE_DIRS} ${GTEST_INCLUDE_DIRS}) +target_compile_options(alltests PUBLIC ${GMOCK_CFLAGS} ${GTEST_CFLAGS}) + +enable_testing() +gtest_discover_tests(alltests TEST_PREFIX alltests:) + +add_custom_target(coverage + ./alltests + COMMAND mkdir -p coverage + COMMAND lcov --capture --directory . --output-file coverage/lcov.info + COMMAND lcov --remove coverage/lcov.info '/usr/*' --output-file coverage/lcov.info + COMMAND lcov --remove coverage/lcov.info '*/test/*' --output-file coverage/lcov.info +) +add_dependencies(coverage alltests) + +add_custom_target(coverage-report + COMMAND genhtml coverage/lcov.info --output-directory coverage/report +) +add_dependencies(coverage-report coverage) + +endif(NOT WITHOUT_TESTS AND NOT WITHOUT_ADAPTER AND NOT WITHOUT_PROVIDER) diff --git a/cmake/webfuse_adapter.cmake b/cmake/webfuse_adapter.cmake new file mode 100644 index 0000000..710c7a6 --- /dev/null +++ b/cmake/webfuse_adapter.cmake @@ -0,0 +1,90 @@ +if(NOT WITHOUT_ADAPTER) + +pkg_check_modules(FUSE3 REQUIRED fuse3) +pkg_check_modules(UUID REQUIRED uuid) + +add_library(webfuse-adapter-static STATIC + lib/webfuse/adapter/api.c + lib/webfuse/adapter/impl/filesystem.c + lib/webfuse/adapter/impl/server.c + lib/webfuse/adapter/impl/server_config.c + lib/webfuse/adapter/impl/server_protocol.c + lib/webfuse/adapter/impl/session.c + lib/webfuse/adapter/impl/session_manager.c + lib/webfuse/adapter/impl/authenticator.c + lib/webfuse/adapter/impl/authenticators.c + lib/webfuse/adapter/impl/credentials.c + lib/webfuse/adapter/impl/operations.c + lib/webfuse/adapter/impl/time/timepoint.c + lib/webfuse/adapter/impl/time/timer.c + lib/webfuse/adapter/impl/time/timeout_manager.c + lib/webfuse/adapter/impl/operation/lookup.c + lib/webfuse/adapter/impl/operation/getattr.c + lib/webfuse/adapter/impl/operation/readdir.c + lib/webfuse/adapter/impl/operation/open.c + lib/webfuse/adapter/impl/operation/close.c + lib/webfuse/adapter/impl/operation/read.c + lib/webfuse/adapter/impl/jsonrpc/proxy.c + lib/webfuse/adapter/impl/jsonrpc/server.c + lib/webfuse/adapter/impl/jsonrpc/method.c + lib/webfuse/adapter/impl/jsonrpc/request.c + lib/webfuse/adapter/impl/jsonrpc/response.c + lib/webfuse/adapter/impl/jsonrpc/util.c +) + +target_include_directories(webfuse-adapter-static PRIVATE + lib + ${FUSE3_INCLUDE_DIRS} + ${UUID_INCLUDE_DIRS} +) + +target_compile_options(webfuse-adapter-static PUBLIC + ${FUSE3_CFLAGS_OTHER} + ${UUID_CFLAGS_OTHER} +) + +set_target_properties(webfuse-adapter-static PROPERTIES OUTPUT_NAME webfuse-adapter) +set_target_properties(webfuse-adapter-static PROPERTIES C_VISIBILITY_PRESET hidden) + +add_library(webfuse-adapter SHARED + lib/webfuse/adapter/api.c +) + +target_include_directories(webfuse-adapter PRIVATE + ${FUSE3_INCLUDE_DIRS} + ${UUID_INCLUDE_DIRS} +) + +target_compile_options(webfuse-adapter PUBLIC + ${FUSE3_CFLAGS_OTHER} + ${UUID_CFLAGS_OTHER} +) + + +set_target_properties(webfuse-adapter PROPERTIES VERSION ${PROJECT_VERSION}) +set_target_properties(webfuse-adapter PROPERTIES SOVERSION 0) +set_target_properties(webfuse-adapter PROPERTIES C_VISIBILITY_PRESET hidden) +set_target_properties(webfuse-adapter PROPERTIES COMPILE_DEFINITIONS "WF_API=WF_EXPORT") + +target_link_libraries(webfuse-adapter PRIVATE webfuse-adapter-static webfuse-core) + +file(WRITE "${PROJECT_BINARY_DIR}/libwebfuse-adapter.pc" +"prefix=\"${CMAKE_INSTALL_PREFIX}\" + +exec_prefix=\${prefix} +libdir=\${exec_prefix}/lib${LIB_SUFFIX} +includedir=\${prefix}/include +Name: libwebfuse +Description: Websockets filesystem server library +Version: ${PROJECT_VERSION} + +Libs: -L\${libdir} -lwebfuse-adapter -l${FUSE3_LIBRARIES} -l${LWS_LIBRARIES} -l${JANSSON_LIBRARIES} +Cflags: -I\${includedir}" +) + +install(TARGETS webfuse-adapter DESTINATION lib${LIB_SUFFIX}) +install(FILES include/webfuse_adapter.h DESTINATION include) +install(DIRECTORY include/webfuse/adapter DESTINATION include/webfuse) +install(FILES "${PROJECT_BINARY_DIR}/libwebfuse-adapter.pc" DESTINATION lib${LIB_SUFFIX}/pkgconfig) + +endif(NOT WITHOUT_ADAPTER) diff --git a/cmake/webfuse_core.cmake b/cmake/webfuse_core.cmake new file mode 100644 index 0000000..9af4b2b --- /dev/null +++ b/cmake/webfuse_core.cmake @@ -0,0 +1,18 @@ +# libwebfuse-core + +add_library(webfuse-core STATIC + lib/webfuse/core/slist.c + lib/webfuse/core/message.c + lib/webfuse/core/message_queue.c + lib/webfuse/core/status.c + lib/webfuse/core/string.c + lib/webfuse/core/path.c + lib/webfuse/core/base64.c + lib/webfuse/core/lws_log.c +) + +set_target_properties(webfuse-core PROPERTIES OUTPUT_NAME webfuse-core) +target_include_directories(webfuse-core PUBLIC lib) +set_target_properties(webfuse-core PROPERTIES C_VISIBILITY_PRESET hidden) + +install(DIRECTORY include/webfuse/core DESTINATION include/webfuse) diff --git a/cmake/webfuse_provider.cmake b/cmake/webfuse_provider.cmake new file mode 100644 index 0000000..efbae88 --- /dev/null +++ b/cmake/webfuse_provider.cmake @@ -0,0 +1,55 @@ +if(NOT WITHOUT_PROVIDER) + +add_library(webfuse-provider-static STATIC + lib/webfuse/provider/api.c + lib/webfuse/provider/impl/url.c + lib/webfuse/provider/impl/client.c + lib/webfuse/provider/impl/client_config.c + lib/webfuse/provider/impl/client_protocol.c + lib/webfuse/provider/impl/provider.c + lib/webfuse/provider/impl/request.c + lib/webfuse/provider/impl/dirbuffer.c + lib/webfuse/provider/impl/operation/lookup.c + lib/webfuse/provider/impl/operation/getattr.c + lib/webfuse/provider/impl/operation/readdir.c + lib/webfuse/provider/impl/operation/open.c + lib/webfuse/provider/impl/operation/close.c + lib/webfuse/provider/impl/operation/read.c + lib/webfuse/provider/impl/static_filesystem.c +) + +set_target_properties(webfuse-provider-static PROPERTIES OUTPUT_NAME webfuse-provider) +set_target_properties(webfuse-provider-static PROPERTIES C_VISIBILITY_PRESET hidden) +target_include_directories(webfuse-provider-static PUBLIC lib) + +add_library(webfuse-provider SHARED + lib/webfuse/provider/api.c +) + +set_target_properties(webfuse-provider PROPERTIES VERSION ${PROJECT_VERSION}) +set_target_properties(webfuse-provider PROPERTIES SOVERSION 0) +set_target_properties(webfuse-provider PROPERTIES C_VISIBILITY_PRESET hidden) +set_target_properties(webfuse-provider PROPERTIES COMPILE_DEFINITIONS "WFP_API=WFP_EXPORT") + +target_include_directories(webfuse-provider PUBLIC lib) +target_link_libraries(webfuse-provider PRIVATE webfuse-provider-static webfuse-core) + +file(WRITE "${PROJECT_BINARY_DIR}/libwebfuse-provider.pc" +"prefix=\"${CMAKE_INSTALL_PREFIX}\" +exec_prefix=\${prefix} +libdir=\${exec_prefix}/lib${LIB_SUFFIX} +includedir=\${prefix}/include +Name: libwebfuse-provider +Description: Provider library for websockets filesystem +Version: ${PROJECT_VERSION} + +Libs: -L\${libdir} -lwebfuse-provider -l${LWS_LIBRARIES} -l${JANSSON_LIBRARIES} +Cflags: -I\${includedir}" +) + +install(TARGETS webfuse-provider DESTINATION lib${LIB_SUFFIX}) +install(FILES include/webfuse_provider.h DESTINATION include) +install(DIRECTORY include/webfuse/provider DESTINATION include/webfuse) +install(FILES "${PROJECT_BINARY_DIR}/libwebfuse-provider.pc" DESTINATION lib${LIB_SUFFIX}/pkgconfig) + +endif(NOT WITHOUT_PROVIDER)