-
Notifications
You must be signed in to change notification settings - Fork 740
Expand file tree
/
Copy pathSetupWrapper.hs
More file actions
1500 lines (1406 loc) · 56.6 KB
/
Copy pathSetupWrapper.hs
File metadata and controls
1500 lines (1406 loc) · 56.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{-# LANGUAGE CPP #-}
{-# LANGUAGE DataKinds #-}
{-# LANGUAGE GADTs #-}
{-# LANGUAGE OverloadedStrings #-}
{-# LANGUAGE TypeFamilies #-}
{-# OPTIONS_GHC -Wno-redundant-constraints #-}
{- FOURMOLU_DISABLE -}
-----------------------------------------------------------------------------
-- |
-- Module : Distribution.Client.SetupWrapper
-- Copyright : (c) The University of Glasgow 2006,
-- Duncan Coutts 2008
--
-- Maintainer : cabal-devel@haskell.org
-- Stability : alpha
-- Portability : portable
--
-- An interface to building and installing Cabal packages.
-- If the @Built-Type@ field is specified as something other than
-- 'Custom', and the current version of Cabal is acceptable, this performs
-- setup actions directly. Otherwise it builds the setup script and
-- runs it with the given arguments.
module Distribution.Client.SetupWrapper
( SetupRunnerArgs(..)
, SPostConfigurePhase(..)
, InLibraryArgs(..)
, SetupRunnerRes
, InLibraryLBI(..)
, RightFlagsForPhase
, setupWrapper
, SetupScriptOptions (..)
, defaultSetupScriptOptions
, externalSetupMethod
) where
import Distribution.Client.Compat.Prelude
import Prelude ()
import qualified Distribution.Backpack as Backpack
import Distribution.CabalSpecVersion (cabalSpecMinimumLibraryVersion)
import Distribution.Package
( ComponentId
, PackageId
, PackageIdentifier (..)
, mkPackageName
, newSimpleUnitId
, packageName
, packageVersion
, unsafeMkDefUnitId
)
import Distribution.PackageDescription
( BuildType (..)
, GenericPackageDescription (packageDescription)
, PackageDescription (..)
, buildType
, specVersion
)
import qualified Distribution.Simple as Simple
import Distribution.Simple.Build.Macros
( generatePackageVersionMacros
)
import Distribution.Simple.BuildPaths
( exeExtension
)
import Distribution.Simple.Compiler
import Distribution.Simple.Configure
hiding ( getInstalledPackages )
import Distribution.Simple.PackageDescription
( readGenericPackageDescription
)
import Distribution.Simple.PreProcess
( ppUnlit
, runSimplePreProcessor
)
import Distribution.Simple.Program
import Distribution.Simple.Program.Db
import Distribution.Simple.Program.Find
( programSearchPathAsPATHVar
)
import Distribution.Simple.Program.Run
( getEffectiveEnvironment
)
import qualified Distribution.Simple.Program.Strip as Strip
import Distribution.Types.ModuleRenaming (defaultRenaming)
import Distribution.Version
( Version
, VersionRange
, anyVersion
, intersectVersionRanges
, mkVersion
, orLaterVersion
, versionNumbers
, withinRange
)
import Distribution.Client.Config
( defaultCacheDir
)
import Distribution.Client.FileMonitor
( MonitorFilePath )
import Distribution.Client.IndexUtils
( getInstalledPackages
)
import Distribution.Client.JobControl
( Lock
, criticalSection
)
import Distribution.Client.Types
import Distribution.Client.Utils
( existsAndIsMoreRecentThan
, makeRelativeToDirS
#ifdef mingw32_HOST_OS
, canonicalizePathNoThrow
#endif
, moreRecentFile
, tryCanonicalizePath
)
import Distribution.Utils.Path
hiding ( (</>), (<.>) )
import qualified Distribution.Utils.Path as Cabal.Path
import qualified Distribution.InstalledPackageInfo as IPI
import Distribution.Simple.Command
( CommandUI (..)
, commandShowOptions
)
import Distribution.Simple.PackageIndex (InstalledPackageIndex)
import qualified Distribution.Simple.PackageIndex as PackageIndex
import Distribution.Simple.Program.GHC
( GhcMode (..)
, GhcOptions (..)
, renderGhcOptions
)
import Distribution.Simple.Utils
( cabalVersion
, copyFileVerbose
, createDirectoryIfMissingVerbose
, debug
, die'
, dieWithException
, info
, infoNoWrap
, installExecutableFile
, maybeExit
, rawSystemProc
, rewriteFileEx
, rewriteFileLBS
, tryFindPackageDesc
)
import Distribution.Utils.Generic
( safeHead
)
import Distribution.Compat.Stack
import Distribution.ReadE
import Distribution.Simple.Setup
import Distribution.Compat.Process (proc)
import Distribution.System (Platform (..), buildPlatform)
import Distribution.Utils.NubList
( toNubListR
)
import Distribution.Types.LocalBuildInfo ( LocalBuildInfo )
import qualified Distribution.Types.LocalBuildInfo as LBI
import Distribution.Verbosity
import Distribution.Client.Errors
import qualified Distribution.Client.InLibrary as InLibrary
import Distribution.Client.ProjectPlanning.Types
import Distribution.Simple.SetupHooks.HooksMain
( hooksVersion )
import Distribution.Client.SetupHooks.CallHooksExe
( externalSetupHooksABI, hooksProgFilePath )
import Control.Concurrent.STM (TVar, readTVarIO)
import qualified Data.ByteString.Lazy as BS
import Data.List (foldl1')
import Data.Kind (Type, Constraint)
import qualified Data.Map.Lazy as Map
import Data.Type.Equality ( type (==) )
import Data.Type.Bool ( If )
import System.Directory (doesFileExist)
import System.FilePath ((<.>), (</>))
import Data.Functor ((<&>))
import System.IO (Handle, hPutStr)
import System.Process (StdStream (..))
import qualified System.Process as Process
#ifdef mingw32_HOST_OS
import Distribution.Simple.Utils
( withTempDirectory )
import Control.Exception ( bracket )
import System.Directory ( doesDirectoryExist )
import System.FilePath ( equalFilePath, takeDirectory, takeFileName )
import qualified System.Win32 as Win32
#endif
--------------------------------------------------------------------------------
data AllowInLibrary
= AllowInLibrary
| Don'tAllowInLibrary
deriving Eq
data SetupKind
= InLibrary
| GeneralSetup
-- | If we end up using the in-library method, we use the v'InLibraryLBI'
-- constructor. If not, we use the 'NotInLibraryNoLBI' constructor.
--
-- NB: we don't know ahead of time whether we can use the in-library method;
-- e.g. for a package with Hooks build-type, it depends on whether the Cabal
-- version used by the package matches with the Cabal version that cabal-install
-- was built against.
data InLibraryLBI
= InLibraryLBI LocalBuildInfo
| NotInLibraryNoLBI
data SPostConfigurePhase (flags :: Type) where
SBuildPhase :: SPostConfigurePhase BuildFlags
SHaddockPhase :: SPostConfigurePhase HaddockFlags
SReplPhase :: SPostConfigurePhase ReplFlags
SCopyPhase :: SPostConfigurePhase CopyFlags
SRegisterPhase :: SPostConfigurePhase RegisterFlags
STestPhase :: SPostConfigurePhase TestFlags
SBenchPhase :: SPostConfigurePhase BenchmarkFlags
data SetupWrapperSpec
= TryInLibrary Type
| UseGeneralSetup
type family RightFlagsForPhase (flags :: Type) (setupSpec :: SetupWrapperSpec) :: Constraint where
RightFlagsForPhase flags UseGeneralSetup = ()
RightFlagsForPhase flags (TryInLibrary flags') = flags ~ flags'
data SetupRunnerArgs (spec :: SetupWrapperSpec) where
NotInLibrary
:: SetupRunnerArgs UseGeneralSetup
InLibraryArgs
:: InLibraryArgs flags
-> SetupRunnerArgs (TryInLibrary flags)
data InLibraryArgs (flags :: Type) where
InLibraryConfigureArgs
:: ElaboratedSharedConfig
-> ElaboratedReadyPackage
-> TVar InstalledPackageIndex
-> InLibraryArgs ConfigFlags
InLibraryPostConfigureArgs
:: SPostConfigurePhase flags
-> InLibraryLBI
-> InLibraryArgs flags
type family SetupRunnerRes (spec :: SetupWrapperSpec) where
SetupRunnerRes UseGeneralSetup = ()
SetupRunnerRes (TryInLibrary phase) = InLibraryPhaseRes phase
type family InLibraryPhaseRes flags where
InLibraryPhaseRes ConfigFlags = InLibraryLBI
InLibraryPhaseRes BuildFlags = [MonitorFilePath]
InLibraryPhaseRes HaddockFlags = [MonitorFilePath]
InLibraryPhaseRes ReplFlags = [MonitorFilePath]
InLibraryPhaseRes _ = ()
-- | @Setup@ encapsulates the outcome of configuring a setup method to build a
-- particular package.
data Setup kind = Setup
{ setupMethod :: SetupMethod kind
, setupScriptOptions :: SetupScriptOptions
, setupVersion :: Version
, setupBuildType :: BuildType
, setupPackage :: PackageDescription
}
data ASetup = forall kind. ASetup ( Setup kind )
-- | @SetupMethod@ represents one of the methods used to run Cabal commands.
data SetupMethod (kind :: SetupKind) where
-- | Directly use Cabal library functions, bypassing the Setup
-- mechanism entirely.
LibraryMethod :: SetupMethod InLibrary
-- | run Cabal commands through a custom \"Setup\" executable
ExternalMethod :: FilePath -> SetupMethod GeneralSetup
-- TODO: The 'setupWrapper' and 'SetupScriptOptions' should be split into two
-- parts: one that has no policy and just does as it's told with all the
-- explicit options, and an optional initial part that applies certain
-- policies (like if we should add the Cabal lib as a dep, and if so which
-- version). This could be structured as an action that returns a fully
-- elaborated 'SetupScriptOptions' containing no remaining policy choices.
--
-- See also the discussion at https://github.com/haskell/cabal/pull/3094
-- | @SetupScriptOptions@ are options used to configure and run 'Setup', as
-- opposed to options given to the Cabal command at runtime.
data SetupScriptOptions = SetupScriptOptions
{ useCabalVersion :: VersionRange
-- ^ The version of the Cabal library to use (if 'useDependenciesExclusive'
-- is not set). A suitable version of the Cabal library must be installed
-- (or for some build-types be the one cabal-install was built with).
--
-- The version found also determines the version of the Cabal specification
-- that we us for talking to the Setup.hs, unless overridden by
-- 'useCabalSpecVersion'.
, useCabalSpecVersion :: Maybe Version
-- ^ This is the version of the Cabal specification that we believe that
-- this package uses. This affects the semantics and in particular the
-- Setup command line interface.
--
-- This is similar to 'useCabalVersion' but instead of probing the system
-- for a version of the /Cabal library/ you just say exactly which version
-- of the /spec/ we will use. Using this also avoids adding the Cabal
-- library as an additional dependency, so add it to 'useDependencies'
-- if needed.
, useCompiler :: Maybe Compiler
, usePlatform :: Maybe Platform
, usePackageDB :: PackageDBStackCWD
, usePackageIndex :: Maybe InstalledPackageIndex
, useProgramDb :: ProgramDb
, useDistPref :: SymbolicPath Pkg (Dir Dist)
, useLoggingHandle :: Maybe Handle
, useWorkingDir :: Maybe (SymbolicPath CWD (Dir Pkg))
, useExtraPathEnv :: [FilePath]
-- ^ Extra things to add to PATH when invoking the setup script.
, useExtraEnvOverrides :: [(String, Maybe FilePath)]
-- ^ Extra environment variables paired with overrides, where
--
-- * @'Just' v@ means \"set the environment variable's value to @v@\".
-- * 'Nothing' means \"unset the environment variable\".
, useDependencies :: [(ComponentId, PackageId)]
-- ^ List of dependencies to use when building Setup.hs.
, useDependenciesExclusive :: Bool
-- ^ Is the list of setup dependencies exclusive?
--
-- When this is @False@, if we compile the Setup.hs script we do so with the
-- list in 'useDependencies' but all other packages in the environment are
-- also visible. A suitable version of @Cabal@ library (see
-- 'useCabalVersion') is also added to the list of dependencies, unless
-- 'useDependencies' already contains a Cabal dependency.
--
-- When @True@, only the 'useDependencies' packages are used, with other
-- packages in the environment hidden.
--
-- This feature is here to support the setup stanza in .cabal files that
-- specifies explicit (and exclusive) dependencies, as well as the old
-- style with no dependencies.
, useVersionMacros :: Bool
-- ^ Should we build the Setup.hs with CPP version macros available?
-- We turn this on when we have a setup stanza in .cabal that declares
-- explicit setup dependencies.
, -- Used only by 'cabal clean' on Windows.
--
-- Note: win32 clean hack
-------------------------
-- On Windows, running './dist/setup/setup clean' doesn't work because the
-- setup script will try to delete itself (which causes it to fail horribly,
-- unlike on Linux). So we have to move the setup exe out of the way first
-- and then delete it manually. This applies only to the external setup
-- method.
useWin32CleanHack :: Bool
, -- Used only when calling setupWrapper from parallel code to serialise
-- access to the setup cache; should be Nothing otherwise.
--
-- Note: setup exe cache
------------------------
-- When we are installing in parallel, we always use the external setup
-- method. Since compiling the setup script each time adds noticeable
-- overhead, we use a shared setup script cache
-- ('$XDG_CACHE_HOME/cabal/setup-exe-cache'). For each (compiler, platform, Cabal
-- version) combination the cache holds a compiled setup script
-- executable. This only affects the Simple build type; for the Custom
-- and Configure build types we always compile the setup script anew.
setupCacheLock :: Maybe Lock
, isInteractive :: Bool
-- ^ Is the task we are going to run an interactive foreground task,
-- or an non-interactive background task? Based on this flag we
-- decide whether or not to delegate ctrl+c to the spawned task
, isMainLibOrExeComponent :: Bool
-- ^ Let the setup script logic know if it is being run to build a main
-- library or executable component. This is used to determine if we should
-- use the configure command, if the build-type is 'Configure'. For
-- configure, only the main library and execomponents have 'configure'
-- support, and thus we can skip running configure for other components.
}
defaultSetupScriptOptions :: SetupScriptOptions
defaultSetupScriptOptions =
SetupScriptOptions
{ useCabalVersion = anyVersion
, useCabalSpecVersion = Nothing
, useCompiler = Nothing
, usePlatform = Nothing
, usePackageDB = [GlobalPackageDB, UserPackageDB]
, usePackageIndex = Nothing
, useDependencies = []
, useDependenciesExclusive = False
, useVersionMacros = False
, useProgramDb = emptyProgramDb
, useDistPref = defaultDistPref
, useLoggingHandle = Nothing
, useWorkingDir = Nothing
, useExtraPathEnv = []
, useExtraEnvOverrides = []
, useWin32CleanHack = False
, setupCacheLock = Nothing
, isInteractive = False
, isMainLibOrExeComponent = True
}
workingDir :: SetupScriptOptions -> FilePath
workingDir options = case useWorkingDir options of
Just dir
| let fp = getSymbolicPath dir
, not $ null fp
-> fp
_ -> "."
-- | A @SetupRunner@ implements a 'SetupMethod'.
type SetupRunner kind =
Verbosity
-> SetupScriptOptions
-> BuildType
-> [String]
-> SetupRunnerArgs kind
-> IO (SetupRunnerRes kind)
-- | Prepare to build a package by configuring a 'SetupMethod'. The returned
-- 'Setup' object identifies the method. The 'SetupScriptOptions' may be changed
-- during the configuration process; the final values are given by
-- 'setupScriptOptions'.
getSetup
:: Verbosity
-> SetupScriptOptions
-> Maybe PackageDescription
-> AllowInLibrary
-> IO ASetup
getSetup verbosity options mpkg allowInLibrary = do
pkg <- maybe getPkg return mpkg
let options' =
options
{ useCabalVersion =
intersectVersionRanges
(useCabalVersion options)
(orLaterVersion (mkVersion (cabalSpecMinimumLibraryVersion (specVersion pkg))))
}
-- We retain Configure only for the main library and executable components.
-- For other components, we rewrite the buildType to Simple to skip the
-- configure step. This is because the configure step is not supported for
-- other components. Configure can only impact MainLib and Exe through
-- .buildinfo files.
buildType' = case (buildType pkg, isMainLibOrExeComponent options) of
(Configure, False) -> Simple
(bt, _) -> bt
withSetupMethod verbosity options' pkg buildType' allowInLibrary $
\ (version, method, options'') ->
ASetup $ Setup
{ setupMethod = method
, setupScriptOptions = options''
, setupVersion = version
, setupBuildType = buildType'
, setupPackage = pkg
}
where
mbWorkDir = useWorkingDir options
getPkg =
(tryFindPackageDesc verbosity mbWorkDir >>= readGenericPackageDescription verbosity mbWorkDir . relativeSymbolicPath)
<&> packageDescription
-- | Decide if we're going to be able to do a direct internal call to the
-- entry point in the Cabal library or if we're going to have to compile
-- and execute an external Setup.hs script.
withSetupMethod
:: Verbosity
-> SetupScriptOptions
-> PackageDescription
-> BuildType
-> AllowInLibrary
-> ( forall kind. (Version, SetupMethod kind, SetupScriptOptions ) -> r )
-> IO r
withSetupMethod verbosity options pkg buildType' allowInLibrary with
| buildType' == Custom
|| maybe False (cabalVersion /=) (useCabalSpecVersion options)
|| not (cabalVersion `withinRange` useCabalVersion options)
|| allowInLibrary == Don'tAllowInLibrary
|| (buildType' == Hooks && not hasHooksMain) =
withExternalSetupMethod
| buildType' == Hooks = do
-- NB: needs 'hooksMain' available in Cabal to compile the external
-- hooks executable, hence the 'not hasHooksMain' guard above.
compileExternalExe verbosity options pkg buildType' WantHooks
externalHooksABI <-
externalSetupHooksABI verbosity $
hooksProgFilePath (useWorkingDir options) (useDistPref options)
let internalHooksABI = hooksVersion
if externalHooksABI == internalHooksABI
then do
debug verbosity "Using in-library setup method with build-type Hooks."
return $ with (cabalVersion, LibraryMethod, options)
else do
debug verbosity "Hooks ABI mismatch; falling back to external setup method."
withExternalSetupMethod
| otherwise = do
debug verbosity $ "Using in-library setup method with build-type " ++ show buildType'
return $ with (cabalVersion, LibraryMethod, options)
where
hasHooksMain =
case cabalLibFromOptions options of
Just (v, _) -> v >= mkVersion [3, 17]
Nothing -> False
withExternalSetupMethod = do
debug verbosity $ "Using external setup method with build-type " ++ show buildType'
debug verbosity $
"Using explicit dependencies: "
++ show (useDependenciesExclusive options)
with <$> compileExternalExe verbosity options pkg buildType' WantSetup
runSetupMethod :: WithCallStack (SetupMethod GeneralSetup -> SetupRunner UseGeneralSetup)
runSetupMethod (ExternalMethod path) = externalSetupMethod path
-- | Run a configured 'Setup' with specific arguments.
runSetup
:: Verbosity
-> Setup GeneralSetup
-> [String]
-- ^ command-line arguments
-> SetupRunnerArgs UseGeneralSetup
-> IO (SetupRunnerRes UseGeneralSetup)
runSetup verbosity setup args0 setupArgs = do
let method = setupMethod setup
options = setupScriptOptions setup
bt = setupBuildType setup
args = verbosityHack (setupVersion setup) args0
when (verbosityLevel verbosity >= Deafening {- avoid test if not debug -} && args /= args0) $
infoNoWrap (verbosity { verbosityFlags = verbose }) $
"Applied verbosity hack:\n"
++ " Before: "
++ show args0
++ "\n"
++ " After: "
++ show args
++ "\n"
runSetupMethod method verbosity options bt args setupArgs
-- | This is a horrible hack to make sure passing fancy verbosity
-- flags (e.g., @-v'info +callstack'@) doesn't break horribly on
-- old Setup. We can't do it in 'filterConfigureFlags' because
-- verbosity applies to ALL commands.
verbosityHack :: Version -> [String] -> [String]
verbosityHack ver args0
| ver >= mkVersion [2, 1] = args0
| otherwise = go args0
where
go (('-' : 'v' : rest) : args)
| Just rest' <- munch rest = ("-v" ++ rest') : go args
go (('-' : '-' : 'v' : 'e' : 'r' : 'b' : 'o' : 's' : 'e' : '=' : rest) : args)
| Just rest' <- munch rest = ("--verbose=" ++ rest') : go args
go ("--verbose" : rest : args)
| Just rest' <- munch rest = "--verbose" : rest' : go args
go rest@("--" : _) = rest
go (arg : args) = arg : go args
go [] = []
munch rest =
case runReadE flagToVerbosity rest of
Right v
| ver < mkVersion [2, 0]
, verboseHasFlags v ->
-- We could preserve the prefix, but since we're assuming
-- it's Cabal's verbosity flag, we can assume that
-- any format is OK
Just (showForCabal (verboseNoFlags v))
| ver < mkVersion [2, 1]
, isVerboseTimestamp v ->
-- +timestamp wasn't yet available in Cabal-2.0.0
Just (showForCabal (verboseNoTimestamp v))
_ -> Nothing
-- | Run a command through a configured 'Setup'.
runSetupCommand
:: Verbosity
-> Setup GeneralSetup
-> CommandUI flags
-- ^ command definition
-> (flags -> CommonSetupFlags)
-> flags
-- ^ command flags
-> [String]
-- ^ extra command-line arguments
-> SetupRunnerArgs UseGeneralSetup
-> IO (SetupRunnerRes UseGeneralSetup)
runSetupCommand verbosity setup cmd getCommonFlags flags extraArgs setupArgs =
-- The 'setupWorkingDir' flag corresponds to a global argument which needs to
-- be passed before the individual command (e.g. 'configure' or 'build').
let common = getCommonFlags flags
globalFlags = mempty { globalWorkingDir = setupWorkingDir common }
args = commandShowOptions (globalCommand []) globalFlags
++ (commandName cmd : commandShowOptions cmd flags ++ extraArgs)
in runSetup verbosity setup args setupArgs
-- | Configure a 'Setup' and run a command in one step. The command flags
-- may depend on the Cabal library version in use.
setupWrapper
:: forall setupSpec flags
. RightFlagsForPhase flags setupSpec
=> Verbosity
-> SetupScriptOptions
-> Maybe PackageDescription
-> CommandUI flags
-> (flags -> CommonSetupFlags)
-> (Version -> IO flags)
-- ^ produce command flags given the Cabal library version
-> (Version -> [String])
-> SetupRunnerArgs setupSpec
-> IO (SetupRunnerRes setupSpec)
setupWrapper verbosity options mpkg cmd getCommonFlags getFlags getExtraArgs wrapperArgs = do
let allowInLibrary = case wrapperArgs of
InLibraryArgs {} -> AllowInLibrary
NotInLibrary -> Don'tAllowInLibrary
ASetup (setup :: Setup kind) <- getSetup verbosity options mpkg allowInLibrary
let version = setupVersion setup
flags <- getFlags version
let
verbHandles = verbosityHandles verbosity
extraArgs = getExtraArgs version
notInLibraryMethod :: kind ~ GeneralSetup => IO (SetupRunnerRes setupSpec)
notInLibraryMethod = do
runSetupCommand verbosity setup cmd getCommonFlags flags extraArgs NotInLibrary
return $ case wrapperArgs of
NotInLibrary -> ()
InLibraryArgs libArgs ->
case libArgs of
InLibraryConfigureArgs {} -> NotInLibraryNoLBI
InLibraryPostConfigureArgs sPhase _ ->
case sPhase of
SBuildPhase -> []
SHaddockPhase -> []
SReplPhase -> []
SCopyPhase -> ()
SRegisterPhase -> ()
STestPhase -> ()
SBenchPhase -> ()
case setupMethod setup of
LibraryMethod ->
case wrapperArgs of
InLibraryArgs libArgs ->
case libArgs of
InLibraryConfigureArgs elabSharedConfig elabReadyPkg ipiTVar -> do
-- Start from the pre-configured compiler ProgramDb, augmented
-- with all builtin programs (restored as unconfigured).
-- This ensures:
-- (a) configureAllKnownPrograms inside configureFinal skips
-- compiler programs (already configured at project level),
-- (b) builtin preprocessors like alex and happy are present as
-- unconfigured programs, so configureFinal's
-- configureAllKnownPrograms can find them using the
-- per-package search path (respecting extra-prog-path).
-- See (1) in Note [Constructing the ProgramDb].
-- Apply per-package user-supplied program args/paths.
-- See (2)(a) in Note [Constructing the ProgramDb]
baseProgDb <-
-- Use 'mkProgramDb' to pass user-supplied per-package
-- program options (--PROG-options=...).
mkProgramDb verbHandles flags
(restoreProgramDb builtinPrograms $
pkgConfigCompilerProgs elabSharedConfig)
setupProgDb <-
prependProgramSearchPath verbosity
(useExtraPathEnv options)
(useExtraEnvOverrides options)
baseProgDb
-- Read the project InstalledPackageIndex to avoid needing to query
-- @ghc-pkg@ to obtain it.
-- in Distribution.Client.ProjectBuilding.
ipi <- readTVarIO ipiTVar
lbi0 <-
InLibrary.configure
(InLibrary.libraryConfigureInputsFromElabPackage
verbHandles
(setupBuildType setup)
setupProgDb
elabSharedConfig
elabReadyPkg
ipi
extraArgs
)
flags
let progs0 = LBI.withPrograms lbi0
-- See (2)(b) in Note [Constructing the ProgramDb]
progs1 <- updatePathProgDb verbosity progs0
let
lbi =
lbi0
{ LBI.withPrograms = progs1
}
mbWorkDir = useWorkingDir options
distPref = useDistPref options
-- Write the LocalBuildInfo to disk. This is needed, for instance, if we
-- skip re-configuring; we retrieve the LocalBuildInfo stored on disk from
-- the previous invocation of 'configure' and pass it to 'build'.
writePersistBuildConfig mbWorkDir distPref lbi
return (InLibraryLBI lbi)
InLibraryPostConfigureArgs sPhase mbLBI ->
case mbLBI of
NotInLibraryNoLBI ->
error "internal error: in-library post-conf but no LBI"
-- To avoid running into the above error, we must ensure that
-- when we skip re-configuring, we retrieve the cached
-- LocalBuildInfo (see "whenReconfigure"
-- in Distribution.Client.ProjectBuilding.UnpackedPackage).
InLibraryLBI lbi ->
case sPhase of
SBuildPhase -> InLibrary.build verbHandles flags lbi extraArgs
SHaddockPhase -> InLibrary.haddock verbHandles flags lbi extraArgs
SReplPhase -> InLibrary.repl verbHandles flags lbi extraArgs
SCopyPhase -> InLibrary.copy verbHandles flags lbi extraArgs
STestPhase -> InLibrary.test verbHandles flags lbi extraArgs
SBenchPhase -> InLibrary.bench verbHandles flags lbi extraArgs
SRegisterPhase -> InLibrary.register flags lbi extraArgs
NotInLibrary ->
error "internal error: NotInLibrary argument but getSetup chose InLibrary"
ExternalMethod {} -> notInLibraryMethod
{- Note [Constructing the ProgramDb]
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
When using the in-library method for configuring a package, we want to start off
with the information cabal-install already has in hand, such as the compiler.
Specifically, we skip 'Cabal.Distribution.Simple.preConfigurePackage', which
includes the call to 'configCompilerEx'.
To obtain a program database with all the required information, we do a few
things:
(1) We retrieve the pre-configured compiler program database (typically
containing ghc, ghc-pkg, haddock, and toolchain programs such as ar, ld),
and restore all builtin programs (alex, happy, hsc2hs, ...) as unconfigured
entries on top of it.
This serves two purposes:
(a) The compiler programs (ghc, ghc-pkg, haddock, hsc2hs, ...) that were
already configured at the project level appear in 'configuredProgs'.
The 'configureAllKnownPrograms' call inside the Cabal per-package
'configureFinal' skips them, saving redundant work.
(b) Builtin preprocessors (e.g. alex, happy) are NOT configured at the
project level; restoring them here means the call to
'configureAllKnownPrograms' in 'configureFinal' can find them using
the per-package search path (including 'extra-prog-path').
(2)
(a) When building a package with internal build tools, we must ensure that
these build tools are available in PATH, with appropriate environment
variable overrides for their data directory. To do this, we call
'prependProgramSearchPath'.
(b) Moreover, these programs must be available in the search paths for the
compiler itself, in case they are run at compile-time (e.g. with a Template
Haskell splice). We achieve this using 'updatePathProgDb'.
-}
-- ------------------------------------------------------------
-- * 'invoke' function
-- ------------------------------------------------------------
invoke :: Verbosity -> FilePath -> [String] -> SetupScriptOptions -> IO ()
invoke verbosity path args options = do
info verbosity $ unwords (path : args)
case useLoggingHandle options of
Nothing -> return ()
Just logHandle -> info verbosity $ "Redirecting build log to " ++ show logHandle
progDb <- prependProgramSearchPath verbosity (useExtraPathEnv options) (useExtraEnvOverrides options) (useProgramDb options)
searchpath <-
programSearchPathAsPATHVar $ getProgramSearchPath progDb
env <-
getEffectiveEnvironment $
[ ("PATH", Just searchpath)
, ("HASKELL_DIST_DIR", Just (getSymbolicPath $ useDistPref options))
]
++ progOverrideEnv progDb
let loggingHandle = maybe Inherit UseHandle (useLoggingHandle options)
cp =
(proc path args)
{ Process.cwd = fmap getSymbolicPath $ useWorkingDir options
, Process.env = env
, Process.std_out = loggingHandle
, Process.std_err = loggingHandle
, Process.delegate_ctlc = isInteractive options
}
maybeExit $ rawSystemProc verbosity cp
-- ------------------------------------------------------------
-- * External SetupMethod
-- ------------------------------------------------------------
externalSetupMethod :: WithCallStack (FilePath -> SetupRunner UseGeneralSetup)
externalSetupMethod path verbosity options _ args NotInLibrary =
#ifndef mingw32_HOST_OS
invoke
verbosity
path
args
options
#else
-- See 'Note: win32 clean hack' above.
if useWin32CleanHack options
then invokeWithWin32CleanHack path
else invoke' path
where
invoke' p = invoke verbosity p args options
invokeWithWin32CleanHack origPath = do
info verbosity $ "Using the Win32 clean hack."
-- Recursively removes the temp dir on exit.
withTempDirectory (workingDir options) "cabal-tmp" $ \tmpDir ->
bracket
(moveOutOfTheWay tmpDir origPath)
(\tmpPath -> maybeRestore origPath tmpPath)
(\tmpPath -> invoke' tmpPath)
moveOutOfTheWay tmpDir origPath = do
let tmpPath = tmpDir </> takeFileName origPath
Win32.moveFile origPath tmpPath
return tmpPath
maybeRestore origPath tmpPath = do
let origPathDir = takeDirectory origPath
origPathDirExists <- doesDirectoryExist origPathDir
-- 'setup clean' didn't complete, 'dist/setup' still exists.
when origPathDirExists $
Win32.moveFile tmpPath origPath
#endif
useCachedSetupExecutable :: BuildType -> Bool
useCachedSetupExecutable bt =
bt == Simple || bt == Configure
data ExternalExe = HooksExe | SetupExe
data WantedExternalExe (meth :: ExternalExe) where
WantHooks :: WantedExternalExe HooksExe
WantSetup :: WantedExternalExe SetupExe
compileExternalExe
:: Verbosity
-> SetupScriptOptions
-> PackageDescription
-> BuildType
-> WantedExternalExe exe
-> IO (If (exe == HooksExe) () (Version, SetupMethod GeneralSetup, SetupScriptOptions))
compileExternalExe verbosity options pkg bt wantedExe = do
createDirectoryIfMissingVerbose verbosity True $ i (setupDir options)
(cabalLibVersion, mCabalLibInstalledPkgId, options') <-
cabalLibVersionToUse verbosity options (package pkg) bt wantedExe
debug verbosity $ "Using Cabal library version " ++ prettyShow cabalLibVersion
exePath <-
if useCachedSetupExecutable bt
then
getCachedSetupExecutable
verbosity
platform
(package pkg)
bt
options'
cabalLibVersion
mCabalLibInstalledPkgId
else
compileExe
verbosity
platform
(package pkg)
bt
wantedExe
options'
cabalLibVersion
mCabalLibInstalledPkgId
False
-- Since useWorkingDir can change the relative path, the path argument must
-- be turned into an absolute path. On some systems, runProcess' will take
-- path as relative to the new working directory instead of the current
-- working directory.
exePath' <- tryCanonicalizePath exePath
-- See 'Note: win32 clean hack' above.
#ifdef mingw32_HOST_OS
-- setupProgFile may not exist if we're using a cached program
setupProgFile' <- canonicalizePathNoThrow $ i (setupProgFile options)
let win32CleanHackNeeded =
(useWin32CleanHack options)
-- Skip when a cached setup script is used.
&& setupProgFile' `equalFilePath` exePath'
#else
let win32CleanHackNeeded = False
#endif
let options'' = options'{useWin32CleanHack = win32CleanHackNeeded}
case wantedExe of
WantHooks -> return ()
WantSetup -> return (cabalLibVersion, ExternalMethod exePath', options'')
where
mbWorkDir = useWorkingDir options
-- See Note [Symbolic paths] in Distribution.Utils.Path
i :: SymbolicPathX allowAbs Pkg to -> FilePath
i = interpretSymbolicPath mbWorkDir
platform = fromMaybe buildPlatform (usePlatform options)
-- | Extract the Cabal library version from 'SetupScriptOptions' if it is
-- already determined: either by the solver via 'useDependencies', or directly
-- via 'useCabalSpecVersion' (used for build-type: Custom packages whose
-- setup-depends does not include a transitive Cabal dependency).
cabalLibFromOptions
:: SetupScriptOptions
-> Maybe (Version, Maybe ComponentId)
cabalLibFromOptions options =
case find (isCabalPkgId . snd) (useDependencies options) of
Just (unitId, pkgId) -> Just (pkgVersion pkgId, Just unitId)
Nothing ->
case useCabalSpecVersion options of
Just version -> Just (version, Nothing)
Nothing -> Nothing
-- | Choose the version of Cabal to use if the setup script has a dependency
-- on Cabal. With v2 commands, 'cabalLibFromOptions' returns 'Just ...' and
-- we use that. With v1 commands, we fall back to a bunch of heuristics
-- (see 'v1CabalLibVersionToUse').
cabalLibVersionToUse
:: Verbosity
-> SetupScriptOptions
-> PackageId
-> BuildType
-> WantedExternalExe exe
-> IO (Version, Maybe ComponentId, SetupScriptOptions)
cabalLibVersionToUse verbosity options pkgId bt wantedExe =
case cabalLibFromOptions options of
Just (version, mUnitId) -> do
updateSetupScript verbosity options version bt
writeSetupVersionFile version
return (version, mUnitId, options)
Nothing ->
v1CabalLibVersionToUse verbosity options pkgId bt wantedExe
where
writeSetupVersionFile :: Version -> IO ()
writeSetupVersionFile version =
writeFile
(interpretSymbolicPath (useWorkingDir options) (setupVersionFile options))
(show version ++ "\n")
-- | Update a Setup.hs script, creating it if necessary.
updateSetupScript :: Verbosity -> SetupScriptOptions -> Version -> BuildType -> IO ()
updateSetupScript verbosity options _ Custom = do
useHs <- doesFileExist customSetupHs
useLhs <- doesFileExist customSetupLhs
unless (useHs || useLhs) $
dieWithException verbosity UpdateSetupScript
let src = if useHs then customSetupHs else customSetupLhs
srcNewer <- src `moreRecentFile` i (setupHs options)
when srcNewer $
if useHs
then copyFileVerbose verbosity src (i (setupHs options))
else runSimplePreProcessor ppUnlit src (i (setupHs options)) verbosity
where
customSetupHs = workingDir options </> "Setup.hs"
customSetupLhs = workingDir options </> "Setup.lhs"
i = interpretSymbolicPath (useWorkingDir options)
updateSetupScript verbosity options cabalLibVersion Hooks = do
let customSetupHooks = workingDir options </> "SetupHooks.hs"
useHs <- doesFileExist customSetupHooks
unless useHs $
die' verbosity "Using 'build-type: Hooks' but there is no SetupHooks.hs file."
copyFileVerbose verbosity customSetupHooks (i (setupHooks options))
rewriteFileLBS verbosity (i (setupHs options)) (buildTypeScript Hooks cabalLibVersion)
rewriteFileLBS verbosity (i (hooksHs options)) hooksExeScript
where
i = interpretSymbolicPath (useWorkingDir options)
updateSetupScript verbosity options cabalLibVersion bt' =
rewriteFileLBS verbosity (i (setupHs options)) (buildTypeScript bt' cabalLibVersion)
where
i = interpretSymbolicPath (useWorkingDir options)
-- | The source code for a non-Custom 'Setup' executable.
buildTypeScript :: BuildType -> Version -> BS.ByteString
buildTypeScript bt cabalLibVersion = "{-# LANGUAGE NoImplicitPrelude #-}\n" <> case bt of
Simple -> "import Distribution.Simple; main = defaultMain\n"
Configure
| cabalLibVersion >= mkVersion [3, 13, 0]
-> "import Distribution.Simple; main = defaultMainWithSetupHooks autoconfSetupHooks\n"
| cabalLibVersion >= mkVersion [1, 3, 10]
-> "import Distribution.Simple; main = defaultMainWithHooks autoconfUserHooks\n"
| otherwise
-> "import Distribution.Simple; main = defaultMainWithHooks defaultUserHooks\n"