ctkFunctionGenerateDGraphInput.cmake 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122
  1. ###########################################################################
  2. #
  3. # Library: CTK
  4. #
  5. # Copyright (c) Kitware Inc.
  6. #
  7. # Licensed under the Apache License, Version 2.0 (the "License");
  8. # you may not use this file except in compliance with the License.
  9. # You may obtain a copy of the License at
  10. #
  11. # http://www.commontk.org/LICENSE
  12. #
  13. # Unless required by applicable law or agreed to in writing, software
  14. # distributed under the License is distributed on an "AS IS" BASIS,
  15. # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  16. # See the License for the specific language governing permissions and
  17. # limitations under the License.
  18. #
  19. ###########################################################################
  20. #
  21. # Generate a DGrapgh input file expected by DGraph executable.
  22. #
  23. FUNCTION(ctkFunctionGenerateDGraphInput dir target_directories)
  24. IF(NOT EXISTS ${dir})
  25. MESSAGE(FATAL_ERROR "Directory ${dir} doesn't exist!")
  26. ENDIF()
  27. CtkMacroParseArguments(MY
  28. ""
  29. "WITH_OPTION;WITH_EXTERNALS"
  30. ${ARGN}
  31. )
  32. SET(dgraph_list )
  33. SET(edges)
  34. SET(vertices)
  35. FOREACH(target_info ${target_directories})
  36. # extract target_dir and option_name
  37. STRING(REPLACE "^^" "\\;" target_info ${target_info})
  38. SET(target_info_list ${target_info})
  39. LIST(GET target_info_list 0 target_dir)
  40. LIST(GET target_info_list 1 option_name)
  41. #MESSAGE(STATUS target_dir:${target_dir})
  42. #MESSAGE(STATUS option_name:${option_name})
  43. #MESSAGE(STATUS option_name-value:${${option_name}})
  44. # make sure the directory exists
  45. IF(NOT EXISTS ${target_dir}/CMakeLists.txt)
  46. MESSAGE(FATAL_ERROR "Target directory ${target_dir}/CMakeLists.txt doesn't exists !")
  47. ENDIF()
  48. SET(include_dep 1)
  49. IF(MY_WITH_OPTION)
  50. SET(include_dep ${${option_name}})
  51. ENDIF()
  52. IF(${include_dep})
  53. # extract project name from CMakeLists.txt
  54. FILE(STRINGS "${target_dir}/CMakeLists.txt" project_string
  55. REGEX "^ *(P|p)(R|r)(O|o)(J|j)(E|e)(C|c)(T|t)\\("
  56. LIMIT_COUNT 10)
  57. STRING(REGEX MATCH "\\((.*)\\)" target_project_name ${project_string})
  58. STRING(REGEX REPLACE "\\(|\\)" "" target_project_name ${target_project_name})
  59. IF(${target_project_name} STREQUAL "")
  60. MESSAGE(FATAL_ERROR "Failed to extract project name from ${target_dir}/CMakeLists.txt")
  61. ENDIF()
  62. #MESSAGE(STATUS target_project_name:${target_project_name})
  63. # Make sure the variable is cleared
  64. SET(dependencies )
  65. # get dependencies
  66. ctkMacroCollectTargetLibraryNames(${target_dir} dependencies)
  67. # Make sure the variable is cleared
  68. SET(ctk_dependencies)
  69. IF(MY_WITH_EXTERNALS)
  70. SET(ctk_dependencies ${dependencies})
  71. ELSE()
  72. # filter dependencies starting with CTK org org_commontk_
  73. ctkMacroGetAllCTKTargetLibraries("${dependencies}" ctk_dependencies)
  74. ENDIF()
  75. IF(ctk_dependencies)
  76. LIST(APPEND vertices ${target_project_name})
  77. ENDIF()
  78. # Generate XML related to the dependencies
  79. FOREACH(dependency_name ${ctk_dependencies})
  80. LIST(APPEND edges ${dependency_name})
  81. SET(dgraph_list ${dgraph_list} "${target_project_name} ${dependency_name}\n")
  82. LIST(APPEND vertices ${dependency_name})
  83. ENDFOREACH()
  84. ENDIF()
  85. ENDFOREACH()
  86. IF(vertices)
  87. LIST(REMOVE_DUPLICATES vertices)
  88. ENDIF()
  89. LIST(LENGTH vertices numberOfVertices)
  90. LIST(LENGTH edges numberOfEdges)
  91. SET(dgraph_list "${numberOfVertices} ${numberOfEdges}\n" ${dgraph_list})
  92. IF(MY_WITH_OPTION)
  93. SET(filename "${dir}/DGraphInput.txt")
  94. ELSEIF(MY_WITH_EXTERNALS)
  95. SET(filename "${dir}/DGraphInput-alldep-withext.txt")
  96. ELSE()
  97. SET(filename "${dir}/DGraphInput-alldep.txt")
  98. ENDIF()
  99. FILE(WRITE ${filename} ${dgraph_list})
  100. MESSAGE(STATUS "Generated: ${filename}")
  101. ENDFUNCTION()