ctkFunctionGenerateDGraphInput.cmake 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  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 with_option)
  24. IF(NOT EXISTS ${dir})
  25. MESSAGE(FATAL_ERROR "Directory ${dir} doesn't exist!")
  26. ENDIF()
  27. SET(dgraph_list )
  28. SET(edges)
  29. SET(vertices)
  30. FOREACH(target_info ${target_directories})
  31. # extract target_dir and option_name
  32. STRING(REPLACE "^^" "\\;" target_info ${target_info})
  33. SET(target_info_list ${target_info})
  34. LIST(GET target_info_list 0 target_dir)
  35. LIST(GET target_info_list 1 option_name)
  36. #MESSAGE(STATUS target_dir:${target_dir})
  37. #MESSAGE(STATUS option_name:${option_name})
  38. #MESSAGE(STATUS option_name-value:${${option_name}})
  39. # make sure the directory exists
  40. IF(NOT EXISTS ${target_dir}/CMakeLists.txt)
  41. MESSAGE(FATAL_ERROR "Target directory ${target_dir}/CMakeLists.txt doesn't exists !")
  42. ENDIF()
  43. SET(include_dep 1)
  44. IF(${with_option})
  45. SET(include_dep ${${option_name}})
  46. ENDIF()
  47. IF(${include_dep})
  48. # extract project name from CMakeLists.txt
  49. FILE(STRINGS "${target_dir}/CMakeLists.txt" project_string
  50. REGEX "^ *(P|p)(R|r)(O|o)(J|j)(E|e)(C|c)(T|t)\\("
  51. LIMIT_COUNT 10)
  52. STRING(REGEX MATCH "\\((.*)\\)" target_project_name ${project_string})
  53. STRING(REGEX REPLACE "\\(|\\)" "" target_project_name ${target_project_name})
  54. IF(${target_project_name} STREQUAL "")
  55. MESSAGE(FATAL_ERROR "Failed to extract project name from ${target_dir}/CMakeLists.txt")
  56. ENDIF()
  57. #MESSAGE(STATUS target_project_name:${target_project_name})
  58. LIST(APPEND vertices ${target_project_name})
  59. # Make sure the variable is cleared
  60. SET(dependencies )
  61. # get dependencies
  62. ctkMacroCollectTargetLibraryNames(${target_dir} dependencies)
  63. # Make sure the variable is cleared
  64. SET(ctk_dependencies)
  65. # filter dependencies starting with CTK
  66. ctkMacroGetAllCTKTargetLibraries("${dependencies}" ctk_dependencies)
  67. # Generate XML related to the dependencies
  68. FOREACH(dependency_name ${ctk_dependencies})
  69. LIST(APPEND edges ${dependency_name})
  70. SET(dgraph_list ${dgraph_list} "${target_project_name} ${dependency_name}\n")
  71. ENDFOREACH()
  72. ENDIF()
  73. ENDFOREACH()
  74. LIST(LENGTH vertices numberOfVertices)
  75. LIST(LENGTH edges numberOfEdges)
  76. SET(dgraph_list "${numberOfVertices} ${numberOfEdges}\n" ${dgraph_list})
  77. IF(${with_option})
  78. SET(filename "${dir}/DGraphInput.txt")
  79. ELSE()
  80. SET(filename "${dir}/DGraphInput-alldep.txt")
  81. ENDIF()
  82. FILE(WRITE ${filename} ${dgraph_list})
  83. MESSAGE(STATUS "Generated: ${filename}")
  84. ENDFUNCTION()