mirror of
https://github.com/MariaDB/server.git
synced 2025-09-27 03:19:20 +02:00

On Linux, introduce object library tpool_common, which contains non-AIO code.It is linked to both full tpool library (with AIO), and tpool_min(without AIO). As a result, building tpool_min now requires only compiling a single small source file. aio::synchronous(), aio::flush_synchronous() are moved into aio specific source file, from common threadpool_generic.cc, in order to avoid ABI breakage (size of aiocb depends on HAVE_LIBAIO etc compile options on Linux)
72 lines
2.7 KiB
CMake
72 lines
2.7 KiB
CMake
|
|
SET(COMMON_SOURCES
|
|
tpool_structs.h
|
|
tpool.h
|
|
tpool_generic.cc
|
|
task_group.cc
|
|
task.cc
|
|
wait_notification.cc
|
|
)
|
|
|
|
|
|
IF(NOT CMAKE_SYSTEM_NAME STREQUAL "Linux")
|
|
ADD_LIBRARY(tpool OBJECT ${COMMON_SOURCES} aio_simulated.cc)
|
|
IF(WIN32)
|
|
TARGET_SOURCES(tpool PRIVATE tpool_win.cc aio_win.cc)
|
|
ENDIF()
|
|
TARGET_INCLUDE_DIRECTORIES(tpool PUBLIC ${CMAKE_CURRENT_SOURCE_DIR} ${PROJECT_SOURCE_DIR}/include)
|
|
ADD_LIBRARY(tpool_min ALIAS tpool)
|
|
ELSE() # Linux
|
|
ADD_LIBRARY(tpool_common OBJECT ${COMMON_SOURCES})
|
|
# Ensure that aiocb used as opaque in common code, or ABI will be broken
|
|
TARGET_COMPILE_DEFINITIONS(tpool_common PRIVATE -DTPOOL_OPAQUE_AIOCB)
|
|
TARGET_INCLUDE_DIRECTORIES(tpool_common PUBLIC ${CMAKE_CURRENT_SOURCE_DIR} ${PROJECT_SOURCE_DIR}/include)
|
|
ADD_LIBRARY(tpool STATIC aio_linux.cc aio_simulated.cc)
|
|
TARGET_LINK_LIBRARIES(tpool PUBLIC tpool_common)
|
|
OPTION(WITH_URING "Require that io_uring be used" OFF)
|
|
OPTION(WITH_LIBAIO "Require that libaio is used" OFF)
|
|
IF(WITH_URING)
|
|
SET(URING_REQUIRED REQUIRED)
|
|
ENDIF()
|
|
IF(WITH_LIBAIO)
|
|
SET(LIBAIO_REQUIRED REQUIRED)
|
|
ENDIF()
|
|
FIND_PACKAGE(URING QUIET ${URING_REQUIRED})
|
|
IF(URING_FOUND)
|
|
SET(URING_FOUND ${URING_FOUND} PARENT_SCOPE)
|
|
TARGET_COMPILE_DEFINITIONS(tpool PUBLIC "-DHAVE_URING")
|
|
TARGET_LINK_LIBRARIES(tpool PRIVATE ${URING_LIBRARIES})
|
|
TARGET_INCLUDE_DIRECTORIES(tpool PUBLIC ${URING_INCLUDE_DIRS})
|
|
TARGET_SOURCES(tpool PRIVATE aio_liburing.cc)
|
|
ADD_DEPENDENCIES(tpool GenError)
|
|
SET(CMAKE_REQUIRED_INCLUDES_SAVE ${CMAKE_REQUIRED_INCLUDES})
|
|
SET(CMAKE_REQUIRED_LIBRARIES_SAVE ${CMAKE_REQUIRED_LIBRARIES})
|
|
SET(CMAKE_REQUIRED_INCLUDES ${URING_INCLUDE_DIRS})
|
|
SET(CMAKE_REQUIRED_LIBRARIES ${URING_LIBRARIES})
|
|
CHECK_SYMBOL_EXISTS(io_uring_mlock_size "liburing.h" HAVE_IO_URING_MLOCK_SIZE)
|
|
SET(CMAKE_REQUIRED_INCLUDES ${CMAKE_REQUIRED_INCLUDES_SAVE})
|
|
SET(CMAKE_REQUIRED_LIBRARIES ${CMAKE_REQUIRED_LIBRARIES_SAVE})
|
|
IF(HAVE_IO_URING_MLOCK_SIZE)
|
|
SET_SOURCE_FILES_PROPERTIES(aio_liburing.cc PROPERTIES COMPILE_FLAGS "-DHAVE_IO_URING_MLOCK_SIZE")
|
|
ENDIF()
|
|
ENDIF()
|
|
|
|
FIND_PACKAGE(LIBAIO QUIET ${LIBAIO_REQUIRED})
|
|
IF(LIBAIO_FOUND)
|
|
TARGET_COMPILE_DEFINITIONS(tpool PUBLIC "-DHAVE_LIBAIO")
|
|
TARGET_INCLUDE_DIRECTORIES(tpool PUBLIC ${LIBAIO_INCLUDE_DIRS})
|
|
TARGET_LINK_LIBRARIES(tpool PRIVATE ${LIBAIO_LIBRARIES})
|
|
TARGET_SOURCES(tpool PRIVATE aio_libaio.cc)
|
|
ENDIF()
|
|
|
|
IF(LIBAIO_FOUND OR URING_FOUND)
|
|
# Create a "light" version of the library that does not link
|
|
# to additional io libs, and is not compiled with
|
|
# -DHAVE_LIBAIO or -DHAVE_URING flags.
|
|
ADD_LIBRARY(tpool_min STATIC aio_linux.cc)
|
|
TARGET_LINK_LIBRARIES(tpool_min PUBLIC tpool_common)
|
|
ELSE()
|
|
ADD_LIBRARY(tpool_min ALIAS tpool)
|
|
ENDIF()
|
|
ENDIF()
|
|
|