# Copyright (c) 2015, 2024, Oracle and/or its affiliates.
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License, version 2.0,
# as published by the Free Software Foundation.
#
# This program is designed to work with certain software (including
# but not limited to OpenSSL) that is licensed under separate terms,
# as designated in a particular file or component or in included license
# documentation.  The authors of MySQL hereby grant you an additional
# permission to link the program and your derivative works with the
# separately licensed software that they have either included with
# the program or referenced in the documentation.
#
# 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 General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA

INCLUDE(GenerateExportHeader)

IF (NOT TARGET ext::libprotobuf-lite)
  MESSAGE(FATAL_ERROR "Routing plugin requires protobuf-lite library")
ENDIF()

ADD_LIBRARY(sql_lexer STATIC
  sql_lexer.cc
  ${CMAKE_SOURCE_DIR}/sql/sql_lex_hash.cc
  )
TARGET_INCLUDE_DIRECTORIES(sql_lexer
  PUBLIC ${CMAKE_CURRENT_SOURCE_DIR})
# generate sql_yacc.h
ADD_DEPENDENCIES(sql_lexer GenServerSource)

ADD_LIBRARY(routing SHARED
  mysql_routing.cc
  destination.cc
  destination_error.cc
  dest_metadata_cache.cc
  dest_first_available.cc
  dest_next_available.cc
  dest_round_robin.cc
  routing.cc
  context.cc
  mysql_routing_common.cc
  connection_container.cc
  routing_component.cc
  channel.cc
  destination_ssl_context.cc
  classic_connection_base.cc
  classic_connection.cc
  x_connection.cc
  connection.cc
  blocked_endpoints.cc

  await_client_or_server.cc
  forwarding_processor.cc
  processor.cc

  classic_auth.cc
  classic_auth_cleartext.cc
  classic_auth_caching_sha2.cc
  classic_auth_native.cc
  classic_auth_sha256_password.cc
  classic_command.cc
  classic_connect.cc
  classic_flow.cc
  classic_forwarder.cc
  classic_frame.cc
  classic_lazy_connect.cc

  classic_auth_cleartext_forwarder.cc
  classic_auth_caching_sha2_forwarder.cc
  classic_auth_forwarder.cc
  classic_auth_native_forwarder.cc
  classic_auth_sha256_password_forwarder.cc
  classic_binlog_dump_forwarder.cc
  classic_change_user_forwarder.cc
  classic_clone_forwarder.cc
  classic_greeting_forwarder.cc
  classic_init_schema_forwarder.cc
  classic_kill_forwarder.cc
  classic_list_fields_forwarder.cc
  classic_ping_forwarder.cc
  classic_query_forwarder.cc
  classic_quit_forwarder.cc
  classic_register_replica_forwarder.cc
  classic_reload_forwarder.cc
  classic_reset_connection_forwarder.cc
  classic_set_option_forwarder.cc
  classic_statistics_forwarder.cc
  classic_stmt_close_forwarder.cc
  classic_stmt_execute_forwarder.cc
  classic_stmt_fetch_forwarder.cc
  classic_stmt_param_append_data_forwarder.cc
  classic_stmt_prepare_forwarder.cc
  classic_stmt_reset_forwarder.cc

  classic_auth_cleartext_sender.cc
  classic_auth_caching_sha2_sender.cc
  classic_auth_native_sender.cc
  classic_auth_sha256_password_sender.cc
  classic_change_user_sender.cc
  # classic_greeting_sender.cc
  classic_init_schema_sender.cc
  classic_query_sender.cc
  classic_quit_sender.cc
  classic_reset_connection_sender.cc
  classic_set_option_sender.cc

  classic_greeting_receiver.cc

  sql_value.cc
  show_warnings_parser.cc
)

TARGET_LINK_LIBRARIES(routing
  PUBLIC
  harness_stdx
  harness_tls
  mysql_protocol
  router_lib
  router_mysqlxmessages
  ext::libprotobuf-lite
  metadata_cache
  connection_pool
  destination_status
  sql_lexer
  )
IF(SOLARIS)
  TARGET_LINK_LIBRARIES(routing
    PRIVATE -lnsl
    PRIVATE -lsocket)
ENDIF()

TARGET_INCLUDE_DIRECTORIES(routing
  PRIVATE
  ${CMAKE_CURRENT_SOURCE_DIR}
  PUBLIC
  ${CMAKE_CURRENT_SOURCE_DIR}/../include/
  ${CMAKE_CURRENT_BINARY_DIR}/../include/
  )
SET_TARGET_PROPERTIES(routing PROPERTIES
  OUTPUT_NAME "mysqlrouter_routing"
  SOVERSION 1
  RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/runtime_output_directory
  LIBRARY_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/library_output_directory)
INSTALL(TARGETS routing
  RUNTIME DESTINATION ${ROUTER_INSTALL_BINDIR} COMPONENT Router
  ARCHIVE DESTINATION ${ROUTER_INSTALL_LIBDIR} COMPONENT Router
  LIBRARY DESTINATION ${ROUTER_INSTALL_LIBDIR} COMPONENT Router
  NAMELINK_SKIP
  )
ADD_DEPENDENCIES(routing GenLiteProtos)

ADD_INSTALL_RPATH_FOR_OPENSSL(routing)
SET_PATH_TO_CUSTOM_SSL_FOR_APPLE(routing)

GENERATE_EXPORT_HEADER(routing
  EXPORT_FILE_NAME ${CMAKE_CURRENT_BINARY_DIR}/../include/mysqlrouter/routing_export.h)
TARGET_COMPILE_DEFINITIONS(routing PRIVATE
  MYSQL_ROUTER_LOG_DOMAIN="routing")

# The Plugin
add_harness_plugin(routing_plugin
 OUTPUT_NAME "routing"
 SOURCES
 routing_plugin.cc
 plugin_config.cc
 REQUIRES routing
 DESTINATION "${ROUTER_INSTALL_PLUGINDIR}"
 )
TARGET_LINK_LIBRARIES(routing_plugin PRIVATE extra::rapidjson)

GENERATE_EXPORT_HEADER(routing_plugin
  EXPORT_FILE_NAME ${CMAKE_CURRENT_BINARY_DIR}/../include/mysqlrouter/routing_plugin_export.h)
