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
|
module CPM.Package
( Version, initialVersion
, VersionConstraint (..)
, CompilerCompatibility (..)
, Package (..), emptyPackage
, Dependency (..)
, execOfPackage
, showVersion
, replaceVersionInTag
, readVersion
, packageIdEq
, showPackageSource
, readVersionConstraint
, readVersionConstraints
, readPackageSpec
, sourceDirsOf
, dependencyNames
, vlt
, vlte
, vgt
, vgte
, isPreRelease
, packageId
, PackageId (..)
, PackageSource (..)
, GitRevision (..)
, PackageExecutable (..), PackageTest (..), PackageDocumentation (..)
, showDependency
, showCompilerDependency
, loadPackageSpec
, writePackageSpec
, Conjunction
, Disjunction
, packageSpecToJSON
) where
import Char
import Either
import FilePath ( (</>) )
import IOExts ( readCompleteFile )
import JSON.Data
import JSON.Parser
import JSON.Pretty ( ppJSON )
import List ( intercalate, intersperse, isInfixOf, splitOn )
import Read ( readInt )
import SetFunctions
import Test.EasyCheck
import DetParse
import CPM.ErrorLogger
import CPM.FileUtil (ifFileExists)
type Version = (Int, Int, Int, Maybe String)
initialVersion :: Version
initialVersion = (0,0,1,Nothing)
type Conjunction = [VersionConstraint]
type Disjunction = [Conjunction]
data Dependency = Dependency String Disjunction
deriving (Eq,Show)
data VersionConstraint = VExact Version
| VGt Version
| VLt Version
| VGte Version
| VLte Version
| VCompatible Version
deriving (Eq,Show)
data CompilerCompatibility = CompilerCompatibility String Disjunction
deriving (Eq,Show)
data PackageId = PackageId String Version
data PackageExecutable = PackageExecutable String String [(String,String)]
deriving (Eq,Show)
data PackageTest = PackageTest String [String] String String
deriving (Eq,Show)
data PackageDocumentation = PackageDocumentation String String String
deriving (Eq,Show)
data PackageSource = Http String
| Git String (Maybe GitRevision)
| FileSource String
deriving (Eq,Show)
data GitRevision = Tag String
| Ref String
| VersionAsTag
deriving (Eq,Show)
data Package = Package {
name :: String
, version :: Version
, author :: String
, maintainer :: Maybe String
, synopsis :: String
, description :: Maybe String
, category :: [String]
, license :: Maybe String
, licenseFile :: Maybe String
, copyright :: Maybe String
, homepage :: Maybe String
, bugReports :: Maybe String
, repository :: Maybe String
, dependencies :: [Dependency]
, compilerCompatibility :: [CompilerCompatibility]
, source :: Maybe PackageSource
, sourceDirs :: [String]
, exportedModules :: [String]
, configModule :: Maybe String
, executableSpec :: Maybe PackageExecutable
, testSuite :: Maybe [PackageTest]
, documentation :: Maybe PackageDocumentation
}
deriving (Eq,Show)
emptyPackage :: Package
emptyPackage = Package {
name = ""
, version = initialVersion
, author = ""
, maintainer = Nothing
, synopsis = ""
, description = Nothing
, category = []
, license = Nothing
, licenseFile = Nothing
, copyright = Nothing
, homepage = Nothing
, bugReports = Nothing
, repository = Nothing
, dependencies = []
, compilerCompatibility = []
, source = Nothing
, sourceDirs = []
, exportedModules = []
, configModule = Nothing
, executableSpec = Nothing
, testSuite = Nothing
, documentation = Nothing
}
execOfPackage :: Package -> String
execOfPackage p =
maybe "" (\ (PackageExecutable e _ _) -> e) (executableSpec p)
packageSpecToJSON :: Package -> JValue
packageSpecToJSON pkg = JObject $
[ ("name", JString $ name pkg)
, ("version", JString $ showVersion $ version pkg)
, ("author", JString $ author pkg) ] ++
maybeStringToJSON "maintainer" (maintainer pkg) ++
[ ("synopsis", JString $ synopsis pkg) ] ++
maybeStringToJSON "description" (description pkg) ++
stringListToJSON "category" (category pkg) ++
maybeStringToJSON "license" (license pkg) ++
maybeStringToJSON "licenseFile" (licenseFile pkg) ++
maybeStringToJSON "copyright" (copyright pkg) ++
maybeStringToJSON "homepage" (homepage pkg) ++
maybeStringToJSON "bugReports" (bugReports pkg) ++
maybeStringToJSON "repository" (repository pkg) ++
[ ("dependencies", dependenciesToJSON $ dependencies pkg) ] ++
compilerCompatibilityToJSON (compilerCompatibility pkg) ++
maybeSourceToJSON (source pkg) ++
stringListToJSON "sourceDirs" (sourceDirs pkg) ++
stringListToJSON "exportedModules" (exportedModules pkg) ++
maybeStringToJSON "configModule" (configModule pkg) ++
maybeExecToJSON (executableSpec pkg) ++
maybeTestToJSON (testSuite pkg) ++
maybeDocuToJSON (documentation pkg)
where
dependenciesToJSON deps = JObject $ map dependencyToJSON deps
where dependencyToJSON (Dependency p vc) =
(p, JString $ showVersionConstraints vc)
compilerCompatibilityToJSON deps =
if null deps
then []
else [("compilerCompatibility", JObject $ map compatToJSON deps)]
where compatToJSON (CompilerCompatibility p vc) =
(p, JString $ showVersionConstraints vc)
maybeSourceToJSON =
maybe [] (\src -> [("source", JObject (pkgSourceToJSON src))])
where
pkgSourceToJSON (FileSource _) =
error "Internal error: FileSource in package specification"
pkgSourceToJSON (Http url) = [("http", JString url)]
pkgSourceToJSON (Git url mbrev) =
[("git", JString url)] ++ maybe [] revToJSON mbrev
where
revToJSON (Ref t) = [("ref", JString t)]
revToJSON (Tag t) = [("tag", JString t)]
revToJSON VersionAsTag = [("tag", JString "$version")]
maybeExecToJSON =
maybe [] (\ (PackageExecutable ename emain eopts) ->
[("executable", JObject $ [ ("name", JString ename)
, ("main", JString emain)] ++
exOptsToJSON eopts)])
where
exOptsToJSON eopts =
if null eopts
then []
else [("options", JObject $ map (\ (c,o) -> (c, JString o)) eopts)]
maybeTestToJSON = maybe [] (\tests -> [("testsuite", testsToJSON tests)])
where
testsToJSON tests = if length tests == 1
then testToJSON (head tests)
else JArray $ map testToJSON tests
testToJSON (PackageTest dir mods opts script) = JObject $
[ ("src-dir", JString dir) ] ++
(if null opts then [] else [("options", JString opts)]) ++
stringListToJSON "modules" mods ++
(if null script then [] else [("script", JString script)])
maybeDocuToJSON =
maybe [] (\ (PackageDocumentation docdir docmain doccmd) ->
[("documentation",
JObject $ [ ("src-dir", JString docdir)
, ("main", JString docmain)] ++
if null doccmd
then []
else [("command", JString doccmd)] )])
stringListToJSON fname exps =
if null exps then []
else [(fname, JArray $ map JString exps)]
maybeStringToJSON fname = maybe [] (\s -> [(fname, JString s)])
writePackageSpec :: Package -> String -> IO ()
writePackageSpec pkg file = writeFile file $ ppJSON $ packageSpecToJSON pkg
loadPackageSpec :: String -> IO (ErrorLogger Package)
loadPackageSpec dir = do
let packageFile = dir </> "package.json"
ifFileExists packageFile
(do debugMessage $ "Reading package specification '" ++ packageFile ++ "'..."
contents <- readCompleteFile packageFile
case readPackageSpec contents of
Left err -> failIO err
Right v -> succeedIO v )
(failIO $ "Illegal package: file `package.json' does not exist!")
packageIdEq :: Package -> Package -> Bool
packageIdEq p1 p2 = name p1 == name p2 && version p1 == version p2
showPackageSource :: Package -> String
showPackageSource pkg = case source pkg of
Nothing -> "No source specified"
Just s -> showSource s
where
showSource (Git url rev) = "Git " ++ url ++ showGitRev rev
showSource (Http url) = url
showSource (FileSource url) = "File " ++ url
showGitRev (Just (Ref ref)) = "@" ++ ref
showGitRev (Just (Tag tag)) = "@" ++ replaceVersionInTag pkg tag
showGitRev (Just VersionAsTag) = "@v" ++ (showVersion $ version pkg)
showGitRev Nothing = ""
replaceVersionInTag :: Package -> String -> String
replaceVersionInTag pkg =
concat . intersperse (showVersion $ version pkg) . splitOn "$version$"
vlt :: Version -> Version -> Bool
vlt (majorA, minorA, patchA, preA) (majorB, minorB, patchB, preB) =
major || minor || patch || pre
where
major = majorA < majorB
minor = majorA <= majorB && minorA < minorB
patch = majorA <= majorB && minorA <= minorB && patchA < patchB
pre = case preA of
Nothing -> case preB of
Nothing -> patch
Just _ -> majorA <= majorB && minorA <= minorB && patchA <= patchB
Just a -> case preB of
Nothing -> False
Just b -> a `ltPre` b
ltPre :: String -> String -> Bool
ltPre a b | isNumeric a && isNumeric b = readInt a < readInt b
| isNumeric a = True
| isNumeric b = False
| otherwise = a `ltShortlex` b
isNumeric :: String -> Bool
isNumeric = all isDigit
ltShortlex :: String -> String -> Bool
ltShortlex a b = (length a == length b && a < b) || length a < length b
test_shorterPrereleaseIsSmaller :: Test.EasyCheck.Prop
test_shorterPrereleaseIsSmaller =
always $ (0, 0, 0, Just "rc") `vlt` (0, 0, 0, Just "beta")
test_numericIsSmallerLeft :: Test.EasyCheck.Prop
test_numericIsSmallerLeft =
always $ (0, 0, 0, Just "1234") `vlt` (0, 0, 0, Just "rc")
test_numericIsSmallerRight :: Test.EasyCheck.Prop
test_numericIsSmallerRight =
always $ not $ (0, 0, 0, Just "rc") `vlt` (0, 0, 0, Just "1234")
test_numbersAreComparedNumerically :: Test.EasyCheck.Prop
test_numbersAreComparedNumerically =
always $ (0, 0, 0, Just "0003") `vlt` (0, 0, 0, Just "123")
vlte :: Version -> Version -> Bool
vlte a b = a `vlt` b || a == b
vgt :: Version -> Version -> Bool
vgt (majorA, minorA, patchA, preA) (majorB, minorB, patchB, preB) =
major || minor || patch || pre
where
major = majorA > majorB
minor = majorA >= majorB && minorA > minorB
patch = majorA >= majorB && minorA >= minorB && patchA > patchB
pre = case preA of
Nothing -> case preB of Nothing -> patch
Just _ -> False
Just a -> case preB of Nothing -> False
Just b -> a > b
vgte :: Version -> Version -> Bool
vgte a b = a `vgt` b || a == b
isPreRelease :: Version -> Bool
isPreRelease (_, _, _, Nothing) = False
isPreRelease (_, _, _, Just _) = True
sourceDirsOf :: Package -> [String]
sourceDirsOf p =
if null (sourceDirs p) then ["src"]
else sourceDirs p
dependencyNames :: Package -> [String]
dependencyNames p = map (\(Dependency s _) -> s) $ dependencies p
showDependency :: Dependency -> String
showDependency (Dependency p vcs) = p ++ showVersionConstraints vcs
showCompilerDependency :: CompilerCompatibility -> String
showCompilerDependency (CompilerCompatibility cc vcs) =
cc ++ showVersionConstraints vcs
showVersionConstraints :: [[VersionConstraint]] -> String
showVersionConstraints =
intercalate " || " . map (intercalate ", " . map showVersionConstraint)
showVersionConstraint :: VersionConstraint -> String
showVersionConstraint (VLt v) = " < " ++ showVersion v
showVersionConstraint (VLte v) = " <= " ++ showVersion v
showVersionConstraint (VGt v) = " > " ++ showVersion v
showVersionConstraint (VGte v) = " >= " ++ showVersion v
showVersionConstraint (VExact v) = " = " ++ showVersion v
showVersionConstraint (VCompatible v) = " ~> " ++ showVersion v
packageId :: Package -> String
packageId p = name p ++ "-" ++ showVersion (version p)
readPackageSpec :: String -> Either String Package
readPackageSpec s = case parseJSON s of
Nothing -> Left "Invalid JSON"
Just j -> case j of
JObject kv -> packageSpecFromJObject kv
_ -> Left "Expected a JSON object."
packageSpecFromJObject :: [(String, JValue)] -> Either String Package
packageSpecFromJObject kv =
mandatoryString "name" kv $ \name ->
mandatoryString "version" kv $ \versionS ->
mandatoryString "author" kv $ \author ->
optionalString "maintainer" kv $ \maintainer ->
mandatoryString "synopsis" kv $ \synopsis ->
optionalString "description" kv $ \description ->
getStringList "A category" "category" $ \categories ->
optionalString "license" kv $ \license ->
optionalString "licenseFile" kv $ \licenseFile ->
optionalString "copyright" kv $ \copyright ->
optionalString "homepage" kv $ \homepage ->
optionalString "bugReports" kv $ \bugReports ->
optionalString "repository" kv $ \repository ->
optionalString "configModule" kv $ \configModule ->
mustBeVersion versionS $ \version ->
getDependencies $ \dependencies ->
getSource $ \source ->
getStringList "A source directory" "sourceDirs" $ \sourcedirs ->
getStringList "An exported module" "exportedModules" $ \exportedModules ->
getCompilerCompatibility $ \compilerCompatibility ->
getExecutableSpec $ \executable ->
getTestSuite $ \testsuite ->
getDocumentationSpec $ \docspec ->
Right Package {
name = name
, version = version
, author = author
, maintainer = maintainer
, synopsis = synopsis
, description = description
, category = categories
, license = license
, licenseFile = licenseFile
, copyright = copyright
, homepage = homepage
, bugReports = bugReports
, repository = repository
, dependencies = dependencies
, compilerCompatibility = compilerCompatibility
, source = source
, sourceDirs = sourcedirs
, exportedModules = exportedModules
, configModule = configModule
, executableSpec = executable
, testSuite = testsuite
, documentation = docspec
}
where
mustBeVersion :: String -> (Version -> Either String a) -> Either String a
mustBeVersion s f = case readVersion s of
Nothing -> Left $ "'" ++ s ++ "' is not a valid version specification."
Just v -> f v
getDependencies :: ([Dependency] -> Either String a) -> Either String a
getDependencies f = case lookup "dependencies" kv of
Nothing -> f []
Just (JObject ds) -> case dependenciesFromJObject ds of
Left e -> Left e
Right ds' -> f ds'
Just (JString _) -> Left $ "Expected an object, got a string" ++ forKey
Just (JArray _) -> Left $ "Expected an object, got an array" ++ forKey
Just (JNumber _) -> Left $ "Expected an object, got a number" ++ forKey
Just JTrue -> Left $ "Expected an object, got 'true'" ++ forKey
Just JFalse -> Left $ "Expected an object, got 'false'" ++ forKey
Just JNull -> Left $ "Expected an object, got 'null'" ++ forKey
where forKey = " for key 'dependencies'"
getCompilerCompatibility :: ([CompilerCompatibility] -> Either String a)
-> Either String a
getCompilerCompatibility f = case lookup "compilerCompatibility" kv of
Nothing -> f []
Just (JObject ds) -> case compilerCompatibilityFromJObject ds of
Left e -> Left e
Right ds' -> f ds'
Just (JString _) -> Left $ "Expected an object, got a string" ++ forKey
Just (JArray _) -> Left $ "Expected an object, got an array" ++ forKey
Just (JNumber _) -> Left $ "Expected an object, got a number" ++ forKey
Just JTrue -> Left $ "Expected an object, got 'true'" ++ forKey
Just JFalse -> Left $ "Expected an object, got 'false'" ++ forKey
Just JNull -> Left $ "Expected an object, got 'null'" ++ forKey
where forKey = " for key 'compilerCompatibility'"
getSource :: (Maybe PackageSource -> Either String a) -> Either String a
getSource f = case lookup "source" kv of
Nothing -> f Nothing
Just (JObject s) -> case sourceFromJObject s of
Left e -> Left e
Right s' -> f (Just s')
Just (JString _) -> Left $ "Expected an object, got a string" ++ forKey
Just (JArray _) -> Left $ "Expected an object, got an array" ++ forKey
Just (JNumber _) -> Left $ "Expected an object, got a number" ++ forKey
Just JTrue -> Left $ "Expected an object, got 'true'" ++ forKey
Just JFalse -> Left $ "Expected an object, got 'false'" ++ forKey
Just JNull -> Left $ "Expected an object, got 'null'" ++ forKey
where forKey = " for key 'source'"
getStringList :: String -> String -> ([String] -> Either String a)
-> Either String a
getStringList keystr key f = case lookup key kv of
Nothing -> f []
Just (JArray a) -> case stringsFromJArray keystr a of
Left e -> Left e
Right e -> f e
Just (JObject _) -> Left $ "Expected an array, got an object" ++ forKey
Just (JString _) -> Left $ "Expected an array, got a string" ++ forKey
Just (JNumber _) -> Left $ "Expected an array, got a number" ++ forKey
Just JTrue -> Left $ "Expected an array, got 'true'" ++ forKey
Just JFalse -> Left $ "Expected an array, got 'false'" ++ forKey
Just JNull -> Left $ "Expected an array, got 'null'" ++ forKey
where forKey = " for key '" ++ key ++ "'"
getExecutableSpec :: (Maybe PackageExecutable -> Either String a)
-> Either String a
getExecutableSpec f = case lookup "executable" kv of
Nothing -> f Nothing
Just (JObject s) -> case execSpecFromJObject s of Left e -> Left e
Right s' -> f (Just s')
Just (JString _) -> Left $ "Expected an object, got a string" ++ forKey
Just (JArray _) -> Left $ "Expected an object, got an array" ++ forKey
Just (JNumber _) -> Left $ "Expected an object, got a number" ++ forKey
Just JTrue -> Left $ "Expected an object, got 'true'" ++ forKey
Just JFalse -> Left $ "Expected an object, got 'false'" ++ forKey
Just JNull -> Left $ "Expected an object, got 'null'" ++ forKey
where forKey = " for key 'executable'"
getTestSuite :: (Maybe [PackageTest] -> Either String a) -> Either String a
getTestSuite f = case lookup "testsuite" kv of
Nothing -> f Nothing
Just (JObject s) -> case testSuiteFromJObject s of Left e -> Left e
Right s' -> f (Just s')
Just (JArray a) -> case testSuiteFromJArray a of
Left e -> Left e
Right s' -> f (Just s')
Just (JString _) -> Left $ "Expected an object, got a string" ++ forKey
Just (JNumber _) -> Left $ "Expected an object, got a number" ++ forKey
Just JTrue -> Left $ "Expected an object, got 'true'" ++ forKey
Just JFalse -> Left $ "Expected an object, got 'false'" ++ forKey
Just JNull -> Left $ "Expected an object, got 'null'" ++ forKey
where forKey = " for key 'testsuite'"
getDocumentationSpec :: (Maybe PackageDocumentation -> Either String a)
-> Either String a
getDocumentationSpec f = case lookup "documentation" kv of
Nothing -> f Nothing
Just (JObject s) -> case docuSpecFromJObject s of Left e -> Left e
Right s' -> f (Just s')
Just (JString _) -> Left $ "Expected an object, got a string" ++ forKey
Just (JArray _) -> Left $ "Expected an object, got an array" ++ forKey
Just (JNumber _) -> Left $ "Expected an object, got a number" ++ forKey
Just JTrue -> Left $ "Expected an object, got 'true'" ++ forKey
Just JFalse -> Left $ "Expected an object, got 'false'" ++ forKey
Just JNull -> Left $ "Expected an object, got 'null'" ++ forKey
where forKey = " for key 'documentation'"
mandatoryString :: String -> [(String, JValue)]
-> (String -> Either String a) -> Either String a
mandatoryString k kv f = case lookup k kv of
Nothing -> Left $ "Mandatory field missing: '" ++ k ++ "'"
Just (JString s) -> f s
Just (JObject _) -> Left $ "Expected a string, got an object" ++ forKey
Just (JArray _) -> Left $ "Expected a string, got an array" ++ forKey
Just (JNumber _) -> Left $ "Expected a string, got a number" ++ forKey
Just JTrue -> Left $ "Expected a string, got 'true'" ++ forKey
Just JFalse -> Left $ "Expected a string, got 'false'" ++ forKey
Just JNull -> Left $ "Expected a string, got 'null'" ++ forKey
where forKey = " for key '" ++ k ++ "'"
optionalString :: String -> [(String, JValue)]
-> (Maybe String -> Either String a) -> Either String a
optionalString k kv f = case lookup k kv of
Nothing -> f Nothing
Just (JString s) -> f (Just s)
Just (JObject _) -> Left $ "Expected a string, got an object" ++ forKey
Just (JArray _) -> Left $ "Expected a string, got an array" ++ forKey
Just (JNumber _) -> Left $ "Expected a string, got a number" ++ forKey
Just JTrue -> Left $ "Expected a string, got 'true'" ++ forKey
Just JFalse -> Left $ "Expected a string, got 'false'" ++ forKey
Just JNull -> Left $ "Expected a string, got 'null'" ++ forKey
where forKey = " for key '" ++ k ++ "'"
test_specFromJObject_mandatoryFields :: Test.EasyCheck.Prop
test_specFromJObject_mandatoryFields =
is (packageSpecFromJObject obj)
(\x -> isLeft x && isInfixOf "name" ((head . lefts) [x]))
where obj = [("hello", JString "world")]
test_specFromJObject_invalidVersion :: Test.EasyCheck.Prop
test_specFromJObject_invalidVersion =
is (packageSpecFromJObject obj)
(\x -> isLeft x && isInfixOf "version" ((head . lefts) [x]))
where obj = [ ("name", JString "mypackage"), ("author", JString "test")
, ("synopsis", JString "great!"), ("version", JString "1.2.b")]
test_specFromJObject_minimalSpec :: Test.EasyCheck.Prop
test_specFromJObject_minimalSpec =
is (packageSpecFromJObject obj) (\x -> isRight x && test x)
where obj = [ ("name", JString "mypackage"), ("author", JString "me")
, ("synopsis", JString "great!"), ("version", JString "1.2.3")]
test x = author p == "me" && name p == "mypackage"
where p = (head . rights) [x]
stringsFromJArray :: String -> [JValue] -> Either String [String]
stringsFromJArray ekind a =
if any isLeft strings
then Left $ head $ lefts strings
else Right $ rights strings
where
strings = map extractString a
s = case s of
JString s' -> Right s'
_ -> Left $ ekind ++ " must be a string"
dependenciesFromJObject :: [(String, JValue)] -> Either String [Dependency]
dependenciesFromJObject kv = if any isLeft dependencies
then Left $ intercalate "; " (lefts dependencies)
else Right $ rights dependencies
where
dependencies = map buildDependency kv
buildDependency (pkg, JString vc) = case readVersionConstraints vc of
Nothing -> Left $ "Invalid constraint '" ++ vc ++ "' for package '" ++
pkg ++ "'"
Just v -> Right $ Dependency pkg v
buildDependency (_, JObject _) = wrongVersionConstraint
buildDependency (_, JArray _) = wrongVersionConstraint
buildDependency (_, JNumber _) = wrongVersionConstraint
buildDependency (_, JTrue ) = wrongVersionConstraint
buildDependency (_, JFalse ) = wrongVersionConstraint
buildDependency (_, JNull ) = wrongVersionConstraint
wrongVersionConstraint = Left "Version constraint must be a string"
compilerCompatibilityFromJObject :: [(String, JValue)]
-> Either String [CompilerCompatibility]
compilerCompatibilityFromJObject kv = if any isLeft compilerCompats
then Left $ intercalate "; " (lefts compilerCompats)
else Right $ rights compilerCompats
where
compilerCompats = map buildCompilerCompat kv
buildCompilerCompat (c, JString vc) = case readVersionConstraints vc of
Nothing -> Left $ "Invalid constraint '" ++ vc ++ "' for compiler '" ++
c ++ "'"
Just v -> Right $ CompilerCompatibility c v
buildCompilerCompat (_, JObject _) = wrongVersionConstraint
buildCompilerCompat (_, JArray _) = wrongVersionConstraint
buildCompilerCompat (_, JNumber _) = wrongVersionConstraint
buildCompilerCompat (_, JTrue ) = wrongVersionConstraint
buildCompilerCompat (_, JFalse ) = wrongVersionConstraint
buildCompilerCompat (_, JNull ) = wrongVersionConstraint
wrongVersionConstraint = Left "Version constraint must be a string"
sourceFromJObject :: [(String, JValue)] -> Either String PackageSource
sourceFromJObject kv = case lookup "http" kv of
Nothing -> case lookup "git" kv of
Nothing -> Left $ "Only Git and HTTP supported"
Just (JString url) -> case revisionFromJObject kv of
Left err -> Left err
Right rev -> Right $ Git url rev
Just _ -> Left "Git expects url"
Just (JString url) -> Right $ Http url
Just _ -> Left "HTTP expects url"
revisionFromJObject :: [(String, JValue)] -> Either String (Maybe GitRevision)
revisionFromJObject kv = case lookup "tag" kv of
Nothing -> case lookup "ref" kv of
Nothing -> Right Nothing
Just (JString ref) -> Right $ Just $ Ref ref
Just _ -> Left "Ref expects string"
Just (JString tag) -> if tag == "$version"
then Right $ Just $ VersionAsTag
else Right $ Just $ Tag tag
Just _ -> Left "Tag expects string"
execSpecFromJObject :: [(String, JValue)] -> Either String PackageExecutable
execSpecFromJObject kv =
mandatoryString "name" kv $ \name ->
optionalString "main" kv $ \main ->
case lookup "options" kv of
Nothing -> Right $ PackageExecutable name (maybe "Main" id main) []
Just (JObject o) -> case optionsFromObject o of
Left e -> Left e
Right os -> Right $ PackageExecutable name (maybe "Main" id main) os
Just _ -> Left "Expected an object for 'executable>options'"
where
optionsFromObject o =
let os = map (extractString . snd) o
in if any isLeft os
then Left $ head (lefts os)
else Right (zip (map fst o) (map fromRight os))
s = case s of
JString s' -> Right s'
_ -> Left $ "'executable>options': values must be strings"
testSuiteFromJObject :: [(String, JValue)] -> Either String [PackageTest]
testSuiteFromJObject kv =
mandatoryString "src-dir" kv $ \dir ->
optionalString "options" kv $ \opts ->
optionalString "script" kv $ \scriptval ->
let script = maybe "" id scriptval in
case getOptStringList (not (null script)) "module" kv of
Left e -> Left e
Right mods -> if null script && null mods
then Left emptyError
else if not (null script) && not (null mods)
then Left doubleError
else Right [PackageTest dir mods (maybe "" id opts)
script]
where
emptyError = "'script' and 'modules' cannot be both empty in 'testsuite'"
doubleError = "'script' and 'modules' cannot be both non-empty in 'testsuite'"
testSuiteFromJArray :: [JValue] -> Either String [PackageTest]
testSuiteFromJArray a =
if any isLeft tests
then Left $ head $ lefts tests
else Right $ concat (rights tests)
where
tests = map extractTests a
s = case s of
JObject o -> testSuiteFromJObject o
_ -> Left "Array element must be a testsuite object"
getOptStringList :: Bool -> String -> [(String, JValue)]
-> Either String [String]
getOptStringList optional key kv = case lookup (key++"s") kv of
Nothing -> if optional
then Right []
else Left $ "'"++key++"s' is not provided in 'testsuite'"
Just (JArray a) -> stringsFromJArray ("A "++key) a
Just (JObject _) -> Left $ "Expected an array, got an object" ++ forKey
Just (JString _) -> Left $ "Expected an array, got a string" ++ forKey
Just (JNumber _) -> Left $ "Expected an array, got a number" ++ forKey
Just JTrue -> Left $ "Expected an array, got 'true'" ++ forKey
Just JFalse -> Left $ "Expected an array, got 'false'" ++ forKey
Just JNull -> Left $ "Expected an array, got 'null'" ++ forKey
where
forKey = " for key '" ++ key ++ "s'"
docuSpecFromJObject :: [(String, JValue)] -> Either String PackageDocumentation
docuSpecFromJObject kv =
mandatoryString "src-dir" kv $ \docdir ->
mandatoryString "main" kv $ \docmain ->
optionalString "command" kv $ \doccmd ->
Right $ PackageDocumentation docdir docmain (maybe "" id doccmd)
readVersionConstraints :: String -> Maybe [[VersionConstraint]]
readVersionConstraints s = parse pVersionConstraints (dropWhile isSpace s)
test_readVersionConstraints_single :: Test.EasyCheck.Prop
test_readVersionConstraints_single = readVersionConstraints "=1.2.3" -=- Just [[VExact (1, 2, 3, Nothing)]]
test_readVersionConstraints_multi :: Test.EasyCheck.Prop
test_readVersionConstraints_multi = readVersionConstraints "> 1.0.0, < 2.3.0" -=- Just [[VGt (1, 0, 0, Nothing), VLt (2, 3, 0, Nothing)]]
test_readVersionConstraints_disjunction :: Test.EasyCheck.Prop
test_readVersionConstraints_disjunction = readVersionConstraints ">= 4.0.0 || < 3.0.0, > 2.0.0" -=- Just [[VGte (4, 0, 0, Nothing)], [VLt (3, 0, 0, Nothing), VGt (2, 0, 0, Nothing)]]
pVersionConstraints :: Parser [[VersionConstraint]]
pVersionConstraints = (:) <$> pConjunction <*> (pWhitespace *> char '|' *> char '|' *> pWhitespace *> pVersionConstraints <|> yield [])
pConjunction :: Parser [VersionConstraint]
pConjunction = (:) <$> pVersionConstraint <*> (pWhitespace *> char ',' *> pWhitespace *> pConjunction <|> yield [])
readVersionConstraint :: String -> Maybe VersionConstraint
readVersionConstraint s = parse pVersionConstraint s
test_readVersionConstraint_exact :: Test.EasyCheck.Prop
test_readVersionConstraint_exact = readVersionConstraint "=1.2.3" -=- (Just $ VExact (1, 2, 3, Nothing))
test_readVersionConstraint_without :: Test.EasyCheck.Prop
test_readVersionConstraint_without = readVersionConstraint "1.2.3" -=- (Just $ VExact (1, 2, 3, Nothing))
test_readVersionConstraint_invalidVersion :: Test.EasyCheck.Prop
test_readVersionConstraint_invalidVersion = readVersionConstraint "=4.a.3" -=- Nothing
test_readVersionConstraint_invalidConstraint :: Test.EasyCheck.Prop
test_readVersionConstraint_invalidConstraint = readVersionConstraint "x1.2.3" -=- Nothing
test_readVersionConstraint_greaterThan :: Test.EasyCheck.Prop
test_readVersionConstraint_greaterThan = readVersionConstraint "> 1.2.3" -=- (Just $ VGt (1, 2, 3, Nothing))
test_readVersionConstraint_greaterThanEqual :: Test.EasyCheck.Prop
test_readVersionConstraint_greaterThanEqual = readVersionConstraint ">= 1.2.3" -=- (Just $ VGte (1, 2, 3, Nothing))
test_readVersionConstraint_lessThan :: Test.EasyCheck.Prop
test_readVersionConstraint_lessThan = readVersionConstraint "<1.2.3" -=- (Just $ VLt (1, 2, 3, Nothing))
test_readVersionConstraint_lessThanEqual :: Test.EasyCheck.Prop
test_readVersionConstraint_lessThanEqual = readVersionConstraint "<= 1.2.3" -=- (Just $ VLte (1, 2, 3, Nothing))
test_readVersionConstraint_compatible :: Test.EasyCheck.Prop
test_readVersionConstraint_compatible = readVersionConstraint "~>1.2.3" -=- (Just $ VCompatible (1, 2, 3, Nothing))
pVersionConstraint :: Parser VersionConstraint
pVersionConstraint = pConstraint <*> (pWhitespace *> pVersion)
pConstraint :: Parser (Version -> VersionConstraint)
pConstraint = char '=' *> yield VExact
<|> char '>' *> char '=' *> yield VGte
<|> char '>' *> yield VGt
<|> char '<' *> char '=' *> yield VLte
<|> char '<' *> yield VLt
<|> char '~' *> char '>' *> yield VCompatible
<|> yield VExact
pWhitespace :: Parser ()
pWhitespace = some (char ' ') *> yield () <|> empty
showVersion :: Version -> String
showVersion (maj, min, pat, pre) = majMinPat ++ preRelease
where majMinPat = intercalate "." $ map show [maj, min, pat]
preRelease = case pre of
Just specifier -> "-" ++ specifier
Nothing -> ""
tryReadVersion :: String -> IO (ErrorLogger Version)
tryReadVersion s = case readVersion s of
Just v -> succeedIO v
Nothing -> failIO $ s ++ " is not a valid version"
readVersion :: String -> Maybe Version
readVersion s = parse pVersion s
pVersion :: Parser Version
pVersion = pPureVersion
<|> (\(maj, min, pat, _) pre -> (maj, min, pat, Just pre))
<$> pPureVersion <*> (char '-' *> pPreRelease)
pPureVersion :: Parser Version
pPureVersion = (\maj (min, pat) -> (maj, min, pat, Nothing))
<$> (pNum <* char '.') <*> ((\min pat -> (min, pat))
<$> pNum <* char '.' <*> pNum)
pPreRelease :: Parser String
pPreRelease = some (check isAscii anyChar)
pNum :: Parser Int
pNum = (\cs -> foldl1 ((+).(10*)) (map (\c' -> ord c' - ord '0') cs))
<$> some pDigit
pDigit :: Parser Char
pDigit = check isDigit anyChar
|