2019-03-03 14:14:32 +00:00
|
|
|
cmake_minimum_required (VERSION 3.10)
|
2019-02-09 19:08:42 +00:00
|
|
|
project(fuse-wsfs VERSION 0.1.0 DESCRIPTION "Websocket filesystem based on libfuse")
|
2019-01-27 02:45:03 +00:00
|
|
|
|
2019-02-15 15:16:24 +00:00
|
|
|
option(WITHOUT_TESTS "disable unit tests" OFF)
|
|
|
|
option(WITHOUT_EXAMPLE "disable example" OFF)
|
2019-01-30 20:53:57 +00:00
|
|
|
|
2019-01-27 02:45:03 +00:00
|
|
|
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)
|
|
|
|
|
2019-02-10 08:22:58 +00:00
|
|
|
set(CMAKE_C_STANDARD 99)
|
2019-02-10 08:38:31 +00:00
|
|
|
set(CMAKE_CXX_STANDARD 11)
|
|
|
|
set(CMAKE_CXX_STANDARD_REQUIRED ON)
|
|
|
|
|
2019-02-10 08:22:58 +00:00
|
|
|
set(C_WARNINGS -Wall -Wextra)
|
2019-02-25 20:28:31 +00:00
|
|
|
set(CMAKE_POSITION_INDEPENDENT_CODE ON)
|
2019-01-27 02:45:03 +00:00
|
|
|
|
|
|
|
set(EXTRA_INCLUDE_DIRS
|
2019-02-10 13:19:15 +00:00
|
|
|
"include"
|
2019-01-27 02:45:03 +00:00
|
|
|
${FUSE3_INCLUDE_DIRS}
|
|
|
|
${LWS_INCLUDE_DIRS}
|
|
|
|
${JANSSON_INCLUDE_DIRS}
|
|
|
|
)
|
|
|
|
|
|
|
|
set(EXTRA_LIBS
|
|
|
|
${EXTRA_LIBS}
|
|
|
|
${FUSE3_LIBRARIES}
|
|
|
|
${LWS_LIBRARIES}
|
|
|
|
${JANSSON_LIBRARIES}
|
|
|
|
${CMAKE_THREAD_LIBS_INIT}
|
|
|
|
)
|
|
|
|
|
|
|
|
set(EXTRA_CFLAGS
|
2019-02-10 08:22:58 +00:00
|
|
|
${C_WARNINGS}
|
2019-01-27 02:45:03 +00:00
|
|
|
${FUSE3_CFLAGS_OTHER}
|
|
|
|
${LWS_CFLAGS_OTHER}
|
|
|
|
${JANSSON_CFLAGS_OTHER}
|
|
|
|
"-pthread"
|
|
|
|
)
|
2019-02-25 20:28:31 +00:00
|
|
|
# libwsfs-common
|
2019-01-27 02:45:03 +00:00
|
|
|
|
2019-02-25 20:28:31 +00:00
|
|
|
set(WSFS_COMMON_SOURCES
|
|
|
|
lib/wsfs/message.c
|
|
|
|
lib/wsfs/message_queue.c
|
2019-03-04 18:19:04 +00:00
|
|
|
lib/wsfs/status.c
|
2019-02-25 20:28:31 +00:00
|
|
|
)
|
2019-01-27 02:45:03 +00:00
|
|
|
|
2019-03-04 18:19:04 +00:00
|
|
|
install(FILES include/wsfs/status.h DESTINATION include/wsfs)
|
|
|
|
|
2019-02-25 19:17:13 +00:00
|
|
|
# libwsfs-adapter
|
|
|
|
|
|
|
|
set(WSFS_ADAPTER_SOURCES
|
|
|
|
lib/wsfs/adapter/filesystem.c
|
|
|
|
lib/wsfs/adapter/server.c
|
|
|
|
lib/wsfs/adapter/time/timepoint.c
|
|
|
|
lib/wsfs/adapter/time/timer.c
|
|
|
|
lib/wsfs/adapter/time/timeout_manager.c
|
|
|
|
lib/wsfs/adapter/operation/lookup.c
|
|
|
|
lib/wsfs/adapter/operation/getattr.c
|
|
|
|
lib/wsfs/adapter/operation/readdir.c
|
|
|
|
lib/wsfs/adapter/operation/open.c
|
|
|
|
lib/wsfs/adapter/operation/close.c
|
|
|
|
lib/wsfs/adapter/operation/read.c
|
|
|
|
lib/wsfs/adapter/server_config.c
|
|
|
|
lib/wsfs/adapter/server_protocol.c
|
|
|
|
lib/wsfs/adapter/jsonrpc/server.c
|
|
|
|
lib/wsfs/adapter/jsonrpc/method.c
|
|
|
|
lib/wsfs/adapter/jsonrpc/request.c
|
|
|
|
lib/wsfs/adapter/jsonrpc/response.c
|
|
|
|
lib/wsfs/adapter/jsonrpc/util.c
|
2019-01-27 02:45:03 +00:00
|
|
|
)
|
|
|
|
|
2019-02-25 20:28:31 +00:00
|
|
|
add_library(wsfs-adapter SHARED ${WSFS_ADAPTER_SOURCES} ${WSFS_COMMON_SOURCES})
|
2019-02-09 19:08:42 +00:00
|
|
|
|
2019-02-25 19:17:13 +00:00
|
|
|
set_target_properties(wsfs-adapter PROPERTIES VERSION ${PROJECT_VERSION})
|
|
|
|
set_target_properties(wsfs-adapter PROPERTIES SOVERSION 0)
|
|
|
|
set_target_properties(wsfs-adapter PROPERTIES C_VISIBILITY_PRESET hidden)
|
2019-02-25 20:39:41 +00:00
|
|
|
set_target_properties(wsfs-adapter PROPERTIES COMPILE_DEFINITIONS "WSFSA_API=WSFSA_EXPORT")
|
2019-02-09 19:08:42 +00:00
|
|
|
|
2019-02-25 19:17:13 +00:00
|
|
|
target_include_directories(wsfs-adapter PUBLIC lib ${EXTRA_INCLUDE_DIRS})
|
|
|
|
target_compile_options(wsfs-adapter PUBLIC ${EXTRA_CFLAGS})
|
2019-01-27 02:45:03 +00:00
|
|
|
|
2019-02-25 19:17:13 +00:00
|
|
|
file(WRITE "${PROJECT_BINARY_DIR}/libwsfs-adapter.pc"
|
2019-02-10 14:06:46 +00:00
|
|
|
"prefix=\"${CMAKE_INSTALL_PREFIX}\"
|
2019-02-25 20:28:31 +00:00
|
|
|
|
2019-02-10 14:06:46 +00:00
|
|
|
exec_prefix=\${prefix}
|
|
|
|
libdir=\${exec_prefix}/lib${LIB_SUFFIX}
|
|
|
|
includedir=\${prefix}/include
|
2019-02-16 15:14:22 +00:00
|
|
|
Name: libwsfs
|
2019-02-10 14:06:46 +00:00
|
|
|
Description: Websockets filesystem server library
|
|
|
|
Version: ${PROJECT_VERSION}
|
|
|
|
|
2019-02-25 19:17:13 +00:00
|
|
|
Libs: -L\${libdir} -lwsfs-adapter -l${FUSE3_LIBRARIES} -l${LWS_LIBRARIES} -l${JANSSON_LIBRARIES}
|
2019-02-10 14:06:46 +00:00
|
|
|
Cflags: -I\${includedir}"
|
|
|
|
)
|
2019-02-09 19:08:42 +00:00
|
|
|
|
2019-02-25 19:17:13 +00:00
|
|
|
install(TARGETS wsfs-adapter DESTINATION lib${LIB_SUFFIX})
|
|
|
|
install(FILES include/wsfs_adapter.h DESTINATION include)
|
|
|
|
install(DIRECTORY include/wsfs/adapter DESTINATION include/wsfs)
|
|
|
|
install(FILES "${PROJECT_BINARY_DIR}/libwsfs-adapter.pc" DESTINATION lib${LIB_SUFFIX}/pkgconfig)
|
2019-02-09 19:08:42 +00:00
|
|
|
|
2019-02-16 15:08:17 +00:00
|
|
|
#libwsfs-provider
|
|
|
|
|
|
|
|
set(WSFS_PROVIDER_SOURCES
|
2019-02-25 19:17:13 +00:00
|
|
|
lib/wsfs/provider/url.c
|
|
|
|
lib/wsfs/provider/client.c
|
2019-03-04 20:17:37 +00:00
|
|
|
lib/wsfs/provider/client_config.c
|
2019-02-25 19:17:13 +00:00
|
|
|
lib/wsfs/provider/client_protocol.c
|
|
|
|
lib/wsfs/provider/provider.c
|
|
|
|
lib/wsfs/provider/request.c
|
2019-03-03 12:34:43 +00:00
|
|
|
lib/wsfs/provider/dirbuffer.c
|
2019-02-25 19:17:13 +00:00
|
|
|
lib/wsfs/provider/operation/lookup.c
|
|
|
|
lib/wsfs/provider/operation/getattr.c
|
|
|
|
lib/wsfs/provider/operation/readdir.c
|
|
|
|
lib/wsfs/provider/operation/open.c
|
|
|
|
lib/wsfs/provider/operation/close.c
|
|
|
|
lib/wsfs/provider/operation/read.c
|
2019-02-16 15:08:17 +00:00
|
|
|
)
|
|
|
|
|
2019-02-25 20:28:31 +00:00
|
|
|
add_library(wsfs-provider SHARED ${WSFS_PROVIDER_SOURCES} ${WSFS_COMMON_SOURCES})
|
2019-02-16 15:08:17 +00:00
|
|
|
|
|
|
|
set_target_properties(wsfs-provider PROPERTIES VERSION ${PROJECT_VERSION})
|
|
|
|
set_target_properties(wsfs-provider PROPERTIES SOVERSION 0)
|
|
|
|
set_target_properties(wsfs-provider PROPERTIES C_VISIBILITY_PRESET hidden)
|
|
|
|
set_target_properties(wsfs-provider PROPERTIES COMPILE_DEFINITIONS "WSFSP_API=WSFSP_EXPORT")
|
|
|
|
|
|
|
|
target_include_directories(wsfs-provider PUBLIC lib ${EXTRA_INCLUDE_DIRS})
|
|
|
|
target_compile_options(wsfs-provider PUBLIC ${EXTRA_CFLAGS})
|
|
|
|
|
|
|
|
file(WRITE "${PROJECT_BINARY_DIR}/libwsfs-provider.pc"
|
|
|
|
"prefix=\"${CMAKE_INSTALL_PREFIX}\"
|
|
|
|
exec_prefix=\${prefix}
|
|
|
|
libdir=\${exec_prefix}/lib${LIB_SUFFIX}
|
|
|
|
includedir=\${prefix}/include
|
|
|
|
Name: libwsfs-provider
|
|
|
|
Description: Provider library for websockets filesystem
|
|
|
|
Version: ${PROJECT_VERSION}
|
|
|
|
|
|
|
|
Libs: -L\${libdir} -lwsfs-provider -l${LWS_LIBRARIES} -l${JANSSON_LIBRARIES}
|
|
|
|
Cflags: -I\${includedir}"
|
|
|
|
)
|
|
|
|
|
|
|
|
install(TARGETS wsfs-provider DESTINATION lib${LIB_SUFFIX})
|
|
|
|
install(FILES include/wsfs_provider.h DESTINATION include)
|
2019-02-25 19:17:13 +00:00
|
|
|
install(DIRECTORY include/wsfs/provider DESTINATION include/wsfs)
|
2019-02-16 15:08:17 +00:00
|
|
|
install(FILES "${PROJECT_BINARY_DIR}/libwsfs-provider.pc" DESTINATION lib${LIB_SUFFIX}/pkgconfig)
|
|
|
|
|
|
|
|
|
2019-02-16 15:28:14 +00:00
|
|
|
# examples
|
2019-01-27 02:45:03 +00:00
|
|
|
|
2019-02-15 15:16:24 +00:00
|
|
|
if(NOT WITHOUT_EXAMPLE)
|
2019-02-10 13:19:15 +00:00
|
|
|
|
2019-02-16 15:28:14 +00:00
|
|
|
# daemon
|
|
|
|
|
2019-02-16 15:14:22 +00:00
|
|
|
add_executable(wsfsd
|
2019-02-16 15:28:14 +00:00
|
|
|
example/daemon/main.c
|
2019-01-27 02:45:03 +00:00
|
|
|
)
|
|
|
|
|
2019-02-25 19:17:13 +00:00
|
|
|
target_link_libraries(wsfsd PUBLIC wsfs-adapter ${EXTRA_LIBS})
|
2019-02-16 15:14:22 +00:00
|
|
|
target_include_directories(wsfsd PUBLIC ${EXTRA_INCLUDE_DIRS})
|
|
|
|
target_compile_options(wsfsd PUBLIC ${EXTRA_CFLAGS})
|
2019-01-27 02:45:03 +00:00
|
|
|
|
2019-02-16 15:28:14 +00:00
|
|
|
# provider
|
|
|
|
|
|
|
|
add_executable(wsfs-provider-app
|
|
|
|
example/provider/main.c
|
|
|
|
)
|
|
|
|
|
|
|
|
set_target_properties(wsfs-provider-app PROPERTIES OUTPUT_NAME wsfs-provider)
|
|
|
|
|
|
|
|
target_link_libraries(wsfs-provider-app PUBLIC wsfs-provider ${EXTRA_LIBS})
|
|
|
|
target_include_directories(wsfs-provider-app PUBLIC ${EXTRA_INCLUDE_DIRS})
|
|
|
|
target_compile_options(wsfs-provider-app PUBLIC ${EXTRA_CFLAGS})
|
|
|
|
|
2019-02-15 15:16:24 +00:00
|
|
|
endif(NOT WITHOUT_EXAMPLE)
|
2019-02-10 13:19:15 +00:00
|
|
|
|
2019-01-27 02:45:03 +00:00
|
|
|
# tests
|
2019-01-30 20:53:57 +00:00
|
|
|
|
2019-02-15 15:16:24 +00:00
|
|
|
if(NOT WITHOUT_TESTS)
|
2019-01-30 20:53:57 +00:00
|
|
|
|
|
|
|
pkg_check_modules(GTEST gtest_main)
|
2019-03-03 14:14:32 +00:00
|
|
|
include(GoogleTest)
|
2019-01-30 20:53:57 +00:00
|
|
|
|
2019-02-25 19:17:13 +00:00
|
|
|
add_library(wsfs-adapter-static STATIC ${WSFS_ADAPTER_SOURCES})
|
|
|
|
set_target_properties(wsfs-adapter-static PROPERTIES OUTPUT_NAME wsfs-adapter)
|
|
|
|
target_include_directories(wsfs-adapter-static PUBLIC lib ${EXTRA_INCLUDE_DIRS})
|
|
|
|
target_compile_options(wsfs-adapter-static PUBLIC ${EXTRA_CFLAGS})
|
2019-02-10 14:06:46 +00:00
|
|
|
|
2019-02-23 14:57:57 +00:00
|
|
|
add_library(wsfs-provider-static STATIC ${WSFS_PROVIDER_SOURCES})
|
|
|
|
set_target_properties(wsfs-provider-static PROPERTIES OUTPUT_NAME wsfs-provider)
|
|
|
|
target_include_directories(wsfs-provider-static PUBLIC lib ${EXTRA_INCLUDE_DIRS})
|
|
|
|
target_compile_options(wsfs-provider-static PUBLIC ${EXTRA_CFLAGS})
|
|
|
|
|
2019-02-10 14:06:46 +00:00
|
|
|
|
2019-01-27 02:45:03 +00:00
|
|
|
add_executable(alltests
|
2019-02-13 19:49:05 +00:00
|
|
|
test/msleep.cc
|
2019-02-10 13:19:15 +00:00
|
|
|
test/test_response_parser.cc
|
|
|
|
test/test_server.cc
|
|
|
|
test/test_timepoint.cc
|
|
|
|
test/test_timer.cc
|
2019-02-23 14:57:57 +00:00
|
|
|
test/test_url.cc
|
2019-02-25 20:28:31 +00:00
|
|
|
${WSFS_COMMON_SOURCES}
|
2019-01-27 02:45:03 +00:00
|
|
|
)
|
|
|
|
|
2019-02-25 19:17:13 +00:00
|
|
|
target_link_libraries(alltests PUBLIC wsfs-adapter-static wsfs-provider-static ${EXTRA_LIBS} ${GTEST_LIBRARIES})
|
2019-02-10 13:19:15 +00:00
|
|
|
target_include_directories(alltests PUBLIC lib ${EXTRA_INCLUDE_DIRS} ${GTEST_INCLUDE_DIRS})
|
2019-01-30 20:53:57 +00:00
|
|
|
target_compile_options(alltests PUBLIC ${EXTRA_CFLAGS} ${GTEST_CFLAGS})
|
|
|
|
|
|
|
|
enable_testing()
|
2019-03-03 14:14:32 +00:00
|
|
|
gtest_discover_tests(alltests TEST_PREFIX alltests:)
|
2019-01-27 02:45:03 +00:00
|
|
|
|
2019-03-03 14:14:32 +00:00
|
|
|
endif(NOT WITHOUT_TESTS)
|