ctkFunctionGenerateDGraphInput.cmake 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  1. ###########################################################################
  2. #
  3. # Library: CTK
  4. #
  5. # Copyright (c) 2010 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. # filter dependencies starting with CTK
  70. ctkMacroGetAllCTKTargetLibraries("${dependencies}" ctk_dependencies)
  71. IF(ctk_dependencies)
  72. LIST(APPEND vertices ${target_project_name})
  73. ENDIF()
  74. # Generate XML related to the dependencies
  75. FOREACH(dependency_name ${ctk_dependencies})
  76. LIST(APPEND edges ${dependency_name})
  77. SET(dgraph_list ${dgraph_list} "${target_project_name} ${dependency_name}\n")
  78. LIST(APPEND vertices ${dependency_name})
  79. ENDFOREACH()
  80. ENDIF()
  81. ENDFOREACH()
  82. IF(vertices)
  83. LIST(REMOVE_DUPLICATES vertices)
  84. ENDIF()
  85. LIST(LENGTH vertices numberOfVertices)
  86. LIST(LENGTH edges numberOfEdges)
  87. SET(dgraph_list "${numberOfVertices} ${numberOfEdges}\n" ${dgraph_list})
  88. IF(${with_option})
  89. SET(filename "${dir}/DGraphInput.txt")
  90. ELSE()
  91. SET(filename "${dir}/DGraphInput-alldep.txt")
  92. ENDIF()
  93. FILE(WRITE ${filename} ${dgraph_list})
  94. MESSAGE(STATUS "Generated: ${filename}")
  95. ENDFUNCTION()