/build/boost-build/tools/symlink.jam

https://bitbucket.org/genericcontainer/goblin-camp/ · Unknown · 140 lines · 122 code · 18 blank · 0 comment · 0 complexity · c8c6675138a0766dfdfbf0cc0f653eea MD5 · raw file

  1. # Copyright 2003 Dave Abrahams
  2. # Copyright 2002, 2003 Rene Rivera
  3. # Copyright 2002, 2003, 2004, 2005 Vladimir Prus
  4. # Distributed under the Boost Software License, Version 1.0.
  5. # (See accompanying file LICENSE_1_0.txt or http://www.boost.org/LICENSE_1_0.txt)
  6. # Defines the "symlink" special target. 'symlink' targets make symbolic links
  7. # to the sources.
  8. import targets modules path class os feature project property-set ;
  9. .count = 0 ;
  10. feature.feature symlink-location : project-relative build-relative : incidental ;
  11. # The class representing "symlink" targets.
  12. #
  13. class symlink-targets : basic-target
  14. {
  15. import numbers modules class property project path ;
  16. rule __init__ (
  17. project
  18. : targets *
  19. : sources *
  20. )
  21. {
  22. # Generate a fake name for now. Need unnamed targets eventually.
  23. local c = [ modules.peek symlink : .count ] ;
  24. modules.poke symlink : .count : [ numbers.increment $(c) ] ;
  25. local fake-name = symlink#$(c) ;
  26. basic-target.__init__ $(fake-name) : $(project) : $(sources) ;
  27. # Remember the targets to map the sources onto. Pad or truncate
  28. # to fit the sources given.
  29. self.targets = ;
  30. for local source in $(sources)
  31. {
  32. if $(targets)
  33. {
  34. self.targets += $(targets[1]) ;
  35. targets = $(targets[2-]) ;
  36. }
  37. else
  38. {
  39. self.targets += $(source) ;
  40. }
  41. }
  42. # The virtual targets corresponding to the given targets.
  43. self.virtual-targets = ;
  44. }
  45. rule construct ( name : source-targets * : property-set )
  46. {
  47. local i = 1 ;
  48. for local t in $(source-targets)
  49. {
  50. local s = $(self.targets[$(i)]) ;
  51. local a = [ class.new action $(t) : symlink.ln : $(property-set) ] ;
  52. local vt = [ class.new file-target $(s:D=)
  53. : [ $(t).type ] : $(self.project) : $(a) ] ;
  54. # Place the symlink in the directory relative to the project
  55. # location, instead of placing it in the build directory.
  56. if [ property.select <symlink-location> : [ $(property-set).raw ] ] = <symlink-location>project-relative
  57. {
  58. $(vt).set-path [ path.root $(s:D) [ $(self.project).get location ] ] ;
  59. }
  60. self.virtual-targets += $(vt) ;
  61. i = [ numbers.increment $(i) ] ;
  62. }
  63. return [ property-set.empty ] $(self.virtual-targets) ;
  64. }
  65. }
  66. # Creates a symbolic link from a set of targets to a set of sources.
  67. # The targets and sources map one to one. The symlinks generated are
  68. # limited to be the ones given as the sources. That is, the targets
  69. # are either padded or trimmed to equate to the sources. The padding
  70. # is done with the name of the corresponding source. For example::
  71. #
  72. # symlink : one two ;
  73. #
  74. # Is equal to::
  75. #
  76. # symlink one two : one two ;
  77. #
  78. # Names for symlink are relative to the project location. They cannot
  79. # include ".." path components.
  80. rule symlink (
  81. targets *
  82. : sources *
  83. )
  84. {
  85. local project = [ project.current ] ;
  86. return [ targets.main-target-alternative
  87. [ class.new symlink-targets $(project) : $(targets) :
  88. # Note: inline targets are not supported for symlink, intentionally,
  89. # since it's used to linking existing non-local targets.
  90. $(sources) ] ] ;
  91. }
  92. rule ln
  93. {
  94. local os ;
  95. if [ modules.peek : UNIX ] { os = UNIX ; }
  96. else { os ?= [ os.name ] ; }
  97. # Remember the path to make the link relative to where the symlink is located.
  98. local path-to-source = [ path.relative-to
  99. [ path.make [ on $(<) return $(LOCATE) ] ]
  100. [ path.make [ on $(>) return $(LOCATE) ] ] ] ;
  101. if $(path-to-source) = .
  102. {
  103. PATH_TO_SOURCE on $(<) = "" ;
  104. }
  105. else
  106. {
  107. PATH_TO_SOURCE on $(<) = [ path.native $(path-to-source) ] ;
  108. }
  109. ln-$(os) $(<) : $(>) ;
  110. }
  111. actions ln-UNIX
  112. {
  113. ln -f -s '$(>:D=:R=$(PATH_TO_SOURCE))' '$(<)'
  114. }
  115. # there is a way to do this; we fall back to a copy for now
  116. actions ln-NT
  117. {
  118. echo "NT symlinks not supported yet, making copy"
  119. del /f /q "$(<)" 2>nul >nul
  120. copy "$(>)" "$(<)" $(NULL_OUT)
  121. }
  122. IMPORT $(__name__) : symlink : : symlink ;