隐藏在Development / Shake / FilePattern.hs中的有用功能

时间:2017-06-28 09:45:15

标签: shake-build-system

我正在尝试使用 Development.Shake.FilePattern 中定义的提取功能,但它已被隐藏。为什么?它不是我内心使用的。

$ ghci
GHCi, version 7.6.3: http://www.haskell.org/ghc/  :? for help
Loading package ghc-prim ... linking ... done.
Loading package integer-gmp ... linking ... done.
Loading package base ... linking ... done.
Prelude> import Development.Shake.FilePattern

<no location info>: 
    Could not find module `Development.Shake.FilePattern'
    it is a hidden module in the package `shake-0.15.10'
Prelude> 

提取会非常方便。目前我不得不求助于自定义字符串操作。

1 个答案:

答案 0 :(得分:1)

内部使用

extract来实现用户可见的&%>函数。

Shake故意试图避免泄漏内部实现细节 - 例如它包含一个线程池实现,它保持安静。也就是说,FilePattern显然很有用,所以:

  • 从Shake v0.16开始,有一个函数filePattern,它执行上面要求的操作。
  • Shake中的FilePattern功能已发布为the filepattern library,Shake将使用该功能实现其所有功能。