1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258
|
# SPDX-FileCopyrightText: 2020-2023 Osimis S.A., 2024-2025 Orthanc Team SRL, 2021-2025 Sebastien Jodogne, ICTEAM UCLouvain
# SPDX-License-Identifier: AGPL-3.0-or-later
##
## Python plugin for Orthanc
## Copyright (C) 2020-2023 Osimis S.A., Belgium
## Copyright (C) 2024-2025 Orthanc Team SRL, Belgium
## Copyright (C) 2021-2025 Sebastien Jodogne, ICTEAM UCLouvain, Belgium
##
## This program is free software: you can redistribute it and/or
## modify it under the terms of the GNU Affero General Public License
## as published by the Free Software Foundation, either version 3 of
## the License, or (at your option) any later version.
##
## This program is distributed in the hope that it will be useful, but
## WITHOUT ANY WARRANTY; without even the implied warranty of
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
## Affero General Public License for more details.
##
## You should have received a copy of the GNU Affero General Public License
## along with this program. If not, see <http://www.gnu.org/licenses/>.
##
cmake_minimum_required(VERSION 2.8)
project(OrthancPython)
set(PLUGIN_VERSION "5.0")
if (PLUGIN_VERSION STREQUAL "mainline")
set(ORTHANC_FRAMEWORK_DEFAULT_VERSION "mainline")
set(ORTHANC_FRAMEWORK_DEFAULT_SOURCE "hg")
else()
set(ORTHANC_FRAMEWORK_DEFAULT_VERSION "1.12.6")
set(ORTHANC_FRAMEWORK_DEFAULT_SOURCE "web")
endif()
include(${CMAKE_SOURCE_DIR}/OrthancSDKVersion.cmake)
if (NOT ${CMAKE_SYSTEM_NAME} STREQUAL "Darwin")
# The Python version cannot be controlled on OS X (yet)
set(PYTHON_VERSION "3.6" CACHE STRING "Version of Python to be used")
endif()
if (${CMAKE_SYSTEM_NAME} STREQUAL "Windows")
# Windows-specific options
set(PYTHON_WINDOWS_ROOT "" CACHE STRING "")
set(PYTHON_LIBRARY_NAME "" CACHE STRING "")
set(PYTHON_WINDOWS_USE_RELEASE_LIBS ON CACHE BOOL "Use the release Python libraries when building with Microsoft Visual Studio, even when compiling in _DEBUG mode (set it to OFF if you require linking to a Python debug build)")
endif()
# Parameters of the build
set(STATIC_BUILD OFF CACHE BOOL "Static build of the third-party libraries (necessary for Windows)")
set(ALLOW_DOWNLOADS OFF CACHE BOOL "Allow CMake to download packages")
set(ORTHANC_FRAMEWORK_SOURCE "${ORTHANC_FRAMEWORK_DEFAULT_SOURCE}" CACHE STRING "Source of the Orthanc framework (can be \"system\", \"hg\", \"archive\", \"web\" or \"path\")")
set(ORTHANC_FRAMEWORK_VERSION "${ORTHANC_FRAMEWORK_DEFAULT_VERSION}" CACHE STRING "Version of the Orthanc framework")
set(ORTHANC_FRAMEWORK_ARCHIVE "" CACHE STRING "Path to the Orthanc archive, if ORTHANC_FRAMEWORK_SOURCE is \"archive\"")
set(ORTHANC_FRAMEWORK_ROOT "" CACHE STRING "Path to the Orthanc source directory, if ORTHANC_FRAMEWORK_SOURCE is \"path\"")
set(USE_FRAMEWORK_ORTHANC_SDK OFF CACHE BOOL "Whether to use the SDK from the Orthanc sources (for developers only, to support new features of the SDK that are still pending in the mainline)")
# Advanced parameters to fine-tune linking against system libraries
set(ORTHANC_FRAMEWORK_STATIC OFF CACHE BOOL "If linking against the Orthanc framework system library, indicates whether this library was statically linked")
mark_as_advanced(ORTHANC_FRAMEWORK_STATIC)
# Download and setup the Orthanc framework
include(${CMAKE_SOURCE_DIR}/Resources/Orthanc/CMake/DownloadOrthancFramework.cmake)
if (ORTHANC_FRAMEWORK_SOURCE STREQUAL "system")
include(FindBoost)
find_package(Boost COMPONENTS filesystem regex thread)
if (NOT Boost_FOUND)
message(FATAL_ERROR "Unable to locate Boost on this system")
endif()
link_libraries(${Boost_LIBRARIES} jsoncpp)
else()
include(${ORTHANC_FRAMEWORK_ROOT}/../Resources/CMake/OrthancFrameworkParameters.cmake)
#set(ENABLE_MODULE_IMAGES OFF CACHE INTERNAL "")
#set(ENABLE_MODULE_JOBS OFF CACHE INTERNAL "")
#set(ENABLE_MODULE_DICOM OFF CACHE INTERNAL "")
include(${ORTHANC_FRAMEWORK_ROOT}/../Resources/CMake/OrthancFrameworkConfiguration.cmake)
include_directories(${ORTHANC_FRAMEWORK_ROOT})
endif()
include(${CMAKE_SOURCE_DIR}/Resources/Orthanc/Plugins/OrthancPluginsExports.cmake)
include(CheckIncludeFile)
include(CheckIncludeFileCXX)
include(CheckIncludeFiles)
include(CheckLibraryExists)
include(FindPythonInterp)
if (${CMAKE_SYSTEM_NAME} STREQUAL "Darwin")
find_package(PythonLibs)
if (NOT PYTHONLIBS_FOUND)
message(FATAL_ERROR "Cannot find the Python libraries")
endif()
message("Python library - Found version: ${PYTHONLIBS_VERSION_STRING}")
message("Python library - Path to include directory: ${PYTHON_INCLUDE_DIRS}")
message("Python library - Shared library: ${PYTHON_LIBRARIES}")
else()
string(REGEX REPLACE "^([0-9]*)\\.([0-9]*)$" "\\1" PYTHON_VERSION_MAJOR ${PYTHON_VERSION})
string(REGEX REPLACE "^([0-9]*)\\.([0-9]*)$" "\\2" PYTHON_VERSION_MINOR ${PYTHON_VERSION})
if (NOT PYTHON_VERSION STREQUAL
"${PYTHON_VERSION_MAJOR}.${PYTHON_VERSION_MINOR}")
message(FATAL_ERROR "Error in the (x.y) format of the Python version: ${PYTHON_VERSION}")
endif()
if (${CMAKE_SYSTEM_NAME} STREQUAL "Windows")
if ("${PYTHON_LIBRARY_NAME}" STREQUAL "")
if (MSVC)
set(Prefix "")
set(Suffix ".lib")
if(PYTHON_WINDOWS_USE_RELEASE_LIBS)
add_definitions(-DORTHANC_PYTHON_WINDOWS_USE_RELEASE_LIBS=1)
endif()
else()
list(GET CMAKE_FIND_LIBRARY_PREFIXES 0 Prefix)
set(Suffix ".a")
endif()
set(PYTHON_LIBRARY_NAME ${Prefix}python${PYTHON_VERSION_MAJOR}${PYTHON_VERSION_MINOR}${Suffix})
endif()
if (CMAKE_COMPILER_IS_GNUCXX AND
"${CMAKE_SIZEOF_VOID_P}" STREQUAL "8" AND
"${PYTHON_VERSION}" STREQUAL "2.7")
# Fix for MinGW 64bit: https://stackoverflow.com/a/19867426/881731
add_definitions(-DMS_WIN64)
endif()
set(PYTHON_INCLUDE_DIRS ${PYTHON_WINDOWS_ROOT}/include)
set(PYTHON_LIBRARIES ${PYTHON_WINDOWS_ROOT}/libs/${PYTHON_LIBRARY_NAME})
execute_process(
COMMAND
${PYTHON_EXECUTABLE} ${ORTHANC_FRAMEWORK_ROOT}/../Resources/WindowsResources.py
${PLUGIN_VERSION} "Python plugin" OrthancPython.dll
"Plugin to create Orthanc plugins using Python"
ERROR_VARIABLE Failure
OUTPUT_FILE ${CMAKE_CURRENT_BINARY_DIR}/Version.rc
)
if (Failure)
message(FATAL_ERROR "Error while computing the version information: ${Failure}")
endif()
set(WINDOWS_RESOURCES ${CMAKE_CURRENT_BINARY_DIR}/Version.rc)
else()
find_package(PkgConfig REQUIRED)
pkg_check_modules(PYTHON_1 python-${PYTHON_VERSION}-embed)
if (PYTHON_1_FOUND)
set(PYTHON_INCLUDE_DIRS ${PYTHON_1_INCLUDE_DIRS})
set(PYTHON_LIBRARIES ${PYTHON_1_LIBRARIES})
else()
pkg_check_modules(PYTHON_2 REQUIRED python-${PYTHON_VERSION})
set(PYTHON_INCLUDE_DIRS ${PYTHON_2_INCLUDE_DIRS})
set(PYTHON_LIBRARIES ${PYTHON_2_LIBRARIES})
endif()
endif()
endif()
if (USE_FRAMEWORK_ORTHANC_SDK)
include_directories(
${ORTHANC_FRAMEWORK_ROOT}/../../OrthancServer/Plugins/Include
)
else()
include_directories(
${CMAKE_SOURCE_DIR}/Resources/Orthanc/Sdk-${ORTHANC_SDK_VERSION}
)
endif()
add_definitions(
-DHAS_ORTHANC_EXCEPTION=0
)
include_directories(
${PYTHON_INCLUDE_DIRS}
)
add_library(OrthancPython SHARED
Sources/Autogenerated/sdk.cpp
Sources/DicomScpCallbacks.cpp
Sources/ICallbackRegistration.cpp
Sources/IncomingHttpRequestFilter.cpp
Sources/IncomingInstanceFilter.cpp
Sources/OnChangeCallback.cpp
Sources/OnStoredInstanceCallback.cpp
Sources/Plugin.cpp
Sources/PythonBytes.cpp
Sources/PythonFunction.cpp
Sources/PythonLock.cpp
Sources/PythonModule.cpp
Sources/PythonObject.cpp
Sources/PythonString.cpp
Sources/PythonThreadsAllower.cpp
Sources/ReceivedInstanceCallback.cpp
Sources/RestCallbacks.cpp
Sources/StorageArea.cpp
Sources/StorageCommitmentScpCallback.cpp
# Third-party sources
${CMAKE_SOURCE_DIR}/Resources/Orthanc/Plugins/OrthancPluginCppWrapper.cpp
${BOOST_SOURCES}
${JSONCPP_SOURCES}
${WINDOWS_RESOURCES}
)
if (CMAKE_COMPILER_IS_GNUCXX)
# Don't report warnings about deprecated functions in the Orthanc SDK
set_source_files_properties(
Sources/Autogenerated/sdk.cpp
PROPERTIES COMPILE_FLAGS -Wno-deprecated-declarations)
endif()
target_link_libraries(OrthancPython ${PYTHON_LIBRARIES})
add_definitions(
-DPLUGIN_NAME="python"
-DPLUGIN_VERSION="${PLUGIN_VERSION}"
)
set_target_properties(OrthancPython PROPERTIES
VERSION ${PLUGIN_VERSION}
SOVERSION ${PLUGIN_VERSION}
)
configure_file(
Sources/Autogenerated/orthanc.pyi
${CMAKE_CURRENT_BINARY_DIR}/orthanc.pyi
COPYONLY)
install(
TARGETS OrthancPython
RUNTIME DESTINATION lib # Destination for Windows
LIBRARY DESTINATION share/orthanc/plugins # Destination for Linux
)
if (COMMAND DefineSourceBasenameForTarget)
DefineSourceBasenameForTarget(OrthancPython)
endif()
|