if("3.12.0" STREQUAL "")
  message(FATAL_ERROR "Tag for git checkout should not be empty.")
endif()

set(run 0)

if("/mnt/data/dev_pub/wzy/smu_3.0/3568/application-sdk/application/opensource/TDengine/contrib/deps-download/geos-prefix/src/geos-stamp/geos-gitinfo.txt" IS_NEWER_THAN "/mnt/data/dev_pub/wzy/smu_3.0/3568/application-sdk/application/opensource/TDengine/contrib/deps-download/geos-prefix/src/geos-stamp/geos-gitclone-lastrun.txt")
  set(run 1)
endif()

if(NOT run)
  message(STATUS "Avoiding repeated git clone, stamp file is up to date: '/mnt/data/dev_pub/wzy/smu_3.0/3568/application-sdk/application/opensource/TDengine/contrib/deps-download/geos-prefix/src/geos-stamp/geos-gitclone-lastrun.txt'")
  return()
endif()

execute_process(
  COMMAND ${CMAKE_COMMAND} -E remove_directory "/mnt/data/dev_pub/wzy/smu_3.0/3568/application-sdk/application/opensource/TDengine/contrib/geos"
  RESULT_VARIABLE error_code
  )
if(error_code)
  message(FATAL_ERROR "Failed to remove directory: '/mnt/data/dev_pub/wzy/smu_3.0/3568/application-sdk/application/opensource/TDengine/contrib/geos'")
endif()

set(git_options)

# disable cert checking if explicitly told not to do it
set(tls_verify "")
if(NOT "x" STREQUAL "x" AND NOT tls_verify)
  list(APPEND git_options
    -c http.sslVerify=false)
endif()

set(git_clone_options)

set(git_shallow "")
if(git_shallow)
  list(APPEND git_clone_options --depth 1 --no-single-branch)
endif()

set(git_progress "")
if(git_progress)
  list(APPEND git_clone_options --progress)
endif()

set(git_config "")
foreach(config IN LISTS git_config)
  list(APPEND git_clone_options --config ${config})
endforeach()

# try the clone 3 times in case there is an odd git clone issue
set(error_code 1)
set(number_of_tries 0)
while(error_code AND number_of_tries LESS 3)
  execute_process(
    COMMAND "/usr/bin/git" ${git_options} clone ${git_clone_options} --origin "origin" "git@192.168.22.227:lnxall/wlos_staging/opensource/geos.git" "geos"
    WORKING_DIRECTORY "/mnt/data/dev_pub/wzy/smu_3.0/3568/application-sdk/application/opensource/TDengine/contrib"
    RESULT_VARIABLE error_code
    )
  math(EXPR number_of_tries "${number_of_tries} + 1")
endwhile()
if(number_of_tries GREATER 1)
  message(STATUS "Had to git clone more than once:
          ${number_of_tries} times.")
endif()
if(error_code)
  message(FATAL_ERROR "Failed to clone repository: 'git@192.168.22.227:lnxall/wlos_staging/opensource/geos.git'")
endif()

execute_process(
  COMMAND "/usr/bin/git" ${git_options} checkout 3.12.0 --
  WORKING_DIRECTORY "/mnt/data/dev_pub/wzy/smu_3.0/3568/application-sdk/application/opensource/TDengine/contrib/geos"
  RESULT_VARIABLE error_code
  )
if(error_code)
  message(FATAL_ERROR "Failed to checkout tag: '3.12.0'")
endif()

execute_process(
  COMMAND "/usr/bin/git" ${git_options} submodule init 
  WORKING_DIRECTORY "/mnt/data/dev_pub/wzy/smu_3.0/3568/application-sdk/application/opensource/TDengine/contrib/geos"
  RESULT_VARIABLE error_code
  )
if(error_code)
  message(FATAL_ERROR "Failed to init submodules in: '/mnt/data/dev_pub/wzy/smu_3.0/3568/application-sdk/application/opensource/TDengine/contrib/geos'")
endif()

execute_process(
  COMMAND "/usr/bin/git" ${git_options} submodule update --recursive --init 
  WORKING_DIRECTORY "/mnt/data/dev_pub/wzy/smu_3.0/3568/application-sdk/application/opensource/TDengine/contrib/geos"
  RESULT_VARIABLE error_code
  )
if(error_code)
  message(FATAL_ERROR "Failed to update submodules in: '/mnt/data/dev_pub/wzy/smu_3.0/3568/application-sdk/application/opensource/TDengine/contrib/geos'")
endif()

# Complete success, update the script-last-run stamp file:
#
execute_process(
  COMMAND ${CMAKE_COMMAND} -E copy
    "/mnt/data/dev_pub/wzy/smu_3.0/3568/application-sdk/application/opensource/TDengine/contrib/deps-download/geos-prefix/src/geos-stamp/geos-gitinfo.txt"
    "/mnt/data/dev_pub/wzy/smu_3.0/3568/application-sdk/application/opensource/TDengine/contrib/deps-download/geos-prefix/src/geos-stamp/geos-gitclone-lastrun.txt"
  WORKING_DIRECTORY "/mnt/data/dev_pub/wzy/smu_3.0/3568/application-sdk/application/opensource/TDengine/contrib/geos"
  RESULT_VARIABLE error_code
  )
if(error_code)
  message(FATAL_ERROR "Failed to copy script-last-run stamp file: '/mnt/data/dev_pub/wzy/smu_3.0/3568/application-sdk/application/opensource/TDengine/contrib/deps-download/geos-prefix/src/geos-stamp/geos-gitclone-lastrun.txt'")
endif()

