CMakeLists.txt 7.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271
  1. cmake_minimum_required(VERSION 3.20)
  2. project(SmartBotic VERSION 1.0.0 LANGUAGES CXX C)
  3. set(CMAKE_CXX_STANDARD 20)
  4. set(CMAKE_CXX_STANDARD_REQUIRED ON)
  5. set(CMAKE_CXX_EXTENSIONS OFF)
  6. set(CMAKE_EXPORT_COMPILE_COMMANDS ON)
  7. # Include CMake modules
  8. list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/cmake")
  9. include(CompilerFlags)
  10. include(Dependencies)
  11. include(FindPackages)
  12. # Common library
  13. add_library(smartbotic_common STATIC
  14. lib/common/uuid.cpp
  15. lib/common/time_utils.cpp
  16. lib/common/error.cpp
  17. lib/common/string_utils.cpp
  18. )
  19. target_include_directories(smartbotic_common PUBLIC
  20. ${CMAKE_CURRENT_SOURCE_DIR}/lib
  21. )
  22. target_link_libraries(smartbotic_common PUBLIC
  23. nlohmann_json::nlohmann_json
  24. OpenSSL::Crypto
  25. )
  26. # Logging library
  27. add_library(smartbotic_logging STATIC
  28. lib/logging/logger.cpp
  29. )
  30. target_include_directories(smartbotic_logging PUBLIC
  31. ${CMAKE_CURRENT_SOURCE_DIR}/lib
  32. )
  33. target_link_libraries(smartbotic_logging PUBLIC
  34. spdlog::spdlog
  35. smartbotic_common
  36. )
  37. # Config library
  38. add_library(smartbotic_config STATIC
  39. lib/config/config_loader.cpp
  40. )
  41. target_include_directories(smartbotic_config PUBLIC
  42. ${CMAKE_CURRENT_SOURCE_DIR}/lib
  43. )
  44. target_link_libraries(smartbotic_config PUBLIC
  45. smartbotic_common
  46. smartbotic_logging
  47. nlohmann_json::nlohmann_json
  48. )
  49. # Storage client library
  50. add_library(smartbotic_storage STATIC
  51. lib/storage/storage_client.cpp
  52. )
  53. target_include_directories(smartbotic_storage PUBLIC
  54. ${CMAKE_CURRENT_SOURCE_DIR}/lib
  55. )
  56. target_link_libraries(smartbotic_storage PUBLIC
  57. smartbotic_common
  58. smartbotic_logging
  59. nlohmann_json::nlohmann_json
  60. smartbotic::db-client
  61. )
  62. # Crypto library
  63. add_library(smartbotic_crypto STATIC
  64. lib/crypto/aes_gcm.cpp
  65. )
  66. target_include_directories(smartbotic_crypto PUBLIC
  67. ${CMAKE_CURRENT_SOURCE_DIR}/lib
  68. )
  69. target_link_libraries(smartbotic_crypto PUBLIC
  70. smartbotic_common
  71. OpenSSL::Crypto
  72. nlohmann_json::nlohmann_json
  73. )
  74. # Credentials library
  75. add_library(smartbotic_credentials STATIC
  76. lib/credentials/credential_types.cpp
  77. lib/credentials/credential_store.cpp
  78. lib/credentials/credential_client.cpp
  79. )
  80. target_include_directories(smartbotic_credentials PUBLIC
  81. ${CMAKE_CURRENT_SOURCE_DIR}/lib
  82. ${CMAKE_CURRENT_BINARY_DIR}
  83. )
  84. target_link_libraries(smartbotic_credentials PUBLIC
  85. smartbotic_common
  86. smartbotic_logging
  87. smartbotic_crypto
  88. smartbotic_storage
  89. smartbotic_proto
  90. CURL::libcurl
  91. )
  92. # Proto library
  93. add_library(smartbotic_proto STATIC
  94. ${CMAKE_CURRENT_BINARY_DIR}/proto/common.pb.cc
  95. ${CMAKE_CURRENT_BINARY_DIR}/proto/common.grpc.pb.cc
  96. ${CMAKE_CURRENT_BINARY_DIR}/proto/workflow.pb.cc
  97. ${CMAKE_CURRENT_BINARY_DIR}/proto/workflow.grpc.pb.cc
  98. ${CMAKE_CURRENT_BINARY_DIR}/proto/runner.pb.cc
  99. ${CMAKE_CURRENT_BINARY_DIR}/proto/runner.grpc.pb.cc
  100. ${CMAKE_CURRENT_BINARY_DIR}/proto/credentials.pb.cc
  101. ${CMAKE_CURRENT_BINARY_DIR}/proto/credentials.grpc.pb.cc
  102. )
  103. target_include_directories(smartbotic_proto PUBLIC
  104. ${CMAKE_CURRENT_BINARY_DIR}
  105. )
  106. target_link_libraries(smartbotic_proto PUBLIC
  107. gRPC::grpc++
  108. protobuf::libprotobuf
  109. )
  110. # Generate proto files
  111. find_program(PROTOC protoc REQUIRED)
  112. find_program(GRPC_CPP_PLUGIN grpc_cpp_plugin REQUIRED)
  113. set(PROTO_DIR ${CMAKE_CURRENT_SOURCE_DIR}/proto)
  114. set(PROTO_OUT_DIR ${CMAKE_CURRENT_BINARY_DIR}/proto)
  115. file(MAKE_DIRECTORY ${PROTO_OUT_DIR})
  116. set(PROTO_FILES common workflow runner credentials)
  117. foreach(PROTO ${PROTO_FILES})
  118. add_custom_command(
  119. OUTPUT
  120. ${PROTO_OUT_DIR}/${PROTO}.pb.cc
  121. ${PROTO_OUT_DIR}/${PROTO}.pb.h
  122. ${PROTO_OUT_DIR}/${PROTO}.grpc.pb.cc
  123. ${PROTO_OUT_DIR}/${PROTO}.grpc.pb.h
  124. COMMAND ${PROTOC}
  125. --proto_path=${PROTO_DIR}
  126. --cpp_out=${PROTO_OUT_DIR}
  127. --grpc_out=${PROTO_OUT_DIR}
  128. --plugin=protoc-gen-grpc=${GRPC_CPP_PLUGIN}
  129. ${PROTO_DIR}/${PROTO}.proto
  130. DEPENDS ${PROTO_DIR}/${PROTO}.proto
  131. COMMENT "Generating protobuf files for ${PROTO}.proto"
  132. )
  133. endforeach()
  134. # WebServer service
  135. add_executable(smartbotic-webserver
  136. src/webserver/main.cpp
  137. src/webserver/http_server.cpp
  138. src/webserver/websocket_server.cpp
  139. src/webserver/webserver_service.cpp
  140. src/webserver/auth/bcrypt_utils.cpp
  141. src/webserver/auth/jwt_utils.cpp
  142. src/webserver/auth/auth_store.cpp
  143. src/webserver/auth/auth_middleware.cpp
  144. src/webserver/runners/runner_registry.cpp
  145. src/webserver/runners/load_balancer.cpp
  146. src/webserver/nodes/node_store.cpp
  147. src/webserver/scheduler/workflow_scheduler.cpp
  148. src/webserver/grpc/node_sync_service.cpp
  149. src/webserver/grpc/credential_service.cpp
  150. src/webserver/api/auth_controller.cpp
  151. src/webserver/api/credential_controller.cpp
  152. src/webserver/api/user_controller.cpp
  153. src/webserver/api/workflow_controller.cpp
  154. src/webserver/api/workflow_group_controller.cpp
  155. src/webserver/api/execution_controller.cpp
  156. src/webserver/api/node_controller.cpp
  157. src/webserver/api/runner_controller.cpp
  158. src/webserver/api/webhook_controller.cpp
  159. src/webserver/api/database_controller.cpp
  160. )
  161. target_include_directories(smartbotic-webserver PRIVATE
  162. ${CMAKE_CURRENT_SOURCE_DIR}/src
  163. ${CMAKE_CURRENT_BINARY_DIR}
  164. )
  165. # Enable gzip compression for HTTP responses
  166. target_compile_definitions(smartbotic-webserver PRIVATE
  167. CPPHTTPLIB_ZLIB_SUPPORT
  168. )
  169. target_link_libraries(smartbotic-webserver PRIVATE
  170. smartbotic_common
  171. smartbotic_logging
  172. smartbotic_config
  173. smartbotic_storage
  174. smartbotic_credentials
  175. smartbotic_proto
  176. httplib::httplib
  177. websockets
  178. bcrypt_lib
  179. gRPC::grpc++
  180. OpenSSL::SSL
  181. OpenSSL::Crypto
  182. ZLIB::ZLIB
  183. )
  184. # Runner service
  185. set(RUNNER_SOURCES
  186. src/runner/main.cpp
  187. src/runner/workflow_engine.cpp
  188. src/runner/node_registry.cpp
  189. src/runner/error_handler.cpp
  190. src/runner/runner_service.cpp
  191. src/runner/collection_permissions.cpp
  192. src/runner/engine/script_engine.cpp
  193. src/runner/imap/imap_client.cpp
  194. )
  195. # Add MySQL client if library is found
  196. if(MYSQL_CLIENT_FOUND)
  197. list(APPEND RUNNER_SOURCES src/runner/mysql/mysql_client.cpp)
  198. endif()
  199. # Add PostgreSQL client if library is found
  200. if(POSTGRESQL_CLIENT_FOUND)
  201. list(APPEND RUNNER_SOURCES src/runner/postgresql/postgresql_client.cpp)
  202. endif()
  203. add_executable(smartbotic-runner ${RUNNER_SOURCES})
  204. target_include_directories(smartbotic-runner PRIVATE
  205. ${CMAKE_CURRENT_SOURCE_DIR}/src
  206. ${CMAKE_CURRENT_BINARY_DIR}
  207. )
  208. target_link_libraries(smartbotic-runner PRIVATE
  209. smartbotic_common
  210. smartbotic_logging
  211. smartbotic_config
  212. smartbotic_storage
  213. smartbotic_credentials
  214. smartbotic_proto
  215. quickjs_lib
  216. CURL::libcurl
  217. gRPC::grpc++
  218. )
  219. # Add MySQL client library if found
  220. if(MYSQL_CLIENT_FOUND)
  221. target_link_libraries(smartbotic-runner PRIVATE mysql_client)
  222. target_compile_definitions(smartbotic-runner PRIVATE MYSQL_SUPPORT=1)
  223. endif()
  224. # Add PostgreSQL client library if found
  225. if(POSTGRESQL_CLIENT_FOUND)
  226. target_link_libraries(smartbotic-runner PRIVATE postgresql_client)
  227. target_compile_definitions(smartbotic-runner PRIVATE POSTGRESQL_SUPPORT=1)
  228. endif()
  229. # Migration tool
  230. add_executable(smartbotic-migrate-nodes
  231. src/tools/migrate_nodes.cpp
  232. )
  233. target_include_directories(smartbotic-migrate-nodes PRIVATE
  234. ${CMAKE_CURRENT_SOURCE_DIR}/lib
  235. )
  236. target_link_libraries(smartbotic-migrate-nodes PRIVATE
  237. nlohmann_json::nlohmann_json
  238. CURL::libcurl
  239. )
  240. # Install targets
  241. install(TARGETS
  242. smartbotic-webserver
  243. smartbotic-runner
  244. smartbotic-migrate-nodes
  245. RUNTIME DESTINATION bin
  246. )
  247. install(DIRECTORY nodes/ DESTINATION share/smartbotic/nodes)
  248. install(DIRECTORY config/ DESTINATION etc/smartbotic)