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 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041
|
{-# LANGUAGE CPP #-}
{-# LANGUAGE DeriveAnyClass #-}
{-# LANGUAGE DeriveDataTypeable #-}
{-# LANGUAGE DeriveGeneric #-}
{-# LANGUAGE DeriveLift #-}
{-# LANGUAGE DerivingStrategies #-}
{-# LANGUAGE OverloadedStrings #-}
{-# LANGUAGE Rank2Types #-}
-- |
-- Module : Data.Versions
-- Copyright : (c) Colin Woodbury, 2015 - 2023
-- License : BSD3
-- Maintainer: Colin Woodbury <colin@fosskers.ca>
--
-- A library for parsing and comparing software version numbers.
--
-- We like to give version numbers to our software in a myriad of different
-- ways. Some ways follow strict guidelines for incrementing and comparison.
-- Some follow conventional wisdom and are generally self-consistent. Some are
-- just plain asinine. This library provides a means of parsing and comparing
-- /any/ style of versioning, be it a nice Semantic Version like this:
--
-- > 1.2.3-r1+git123
--
-- ...or a monstrosity like this:
--
-- > 2:10.2+0.0093r3+1-1
--
-- Please switch to <http://semver.org Semantic Versioning> if you aren't
-- currently using it. It provides consistency in version incrementing and has
-- the best constraints on comparisons.
--
-- __This library implements version @2.0.0@ of the SemVer spec.__
--
-- == Using the Parsers
-- In general, `versioning` is the function you want. It attempts to parse a
-- given `Text` using the three individual parsers, `semver`, `version` and
-- `mess`. If one fails, it tries the next. If you know you only want to parse
-- one specific version type, use that parser directly (e.g. `semver`).
module Data.Versions
( -- * Types
Versioning(..), isIdeal, isGeneral, isComplex
, SemVer(..)
, PVP(..)
, Version(..)
, Mess(..), messMajor, messMinor, messPatch, messPatchChunk
, Release(..)
, Chunks(..)
, Chunk(..)
, MChunk(..)
, VSep(..)
-- ** Compile-time Constructors
, versioningQ, semverQ, versionQ, messQ, pvpQ
-- ** Conversions
, semverToVersion, versionToMess, versionToPvp
-- * Parsing Versions
, ParsingError
, versioning, semver, pvp, version, mess
-- ** Megaparsec Parsers
-- | For when you'd like to mix version parsing into some larger parser.
, versioning', semver', pvp', version', mess'
-- * Pretty Printing
, prettyV, prettySemVer, prettyPVP, prettyVer, prettyMess, errorBundlePretty
-- * Lenses
, Lens'
, Traversal'
, Semantic(..)
-- ** Traversing Text
-- | When traversing `Text`, leveraging its `Semantic` instance will
-- likely benefit you more than using these Traversals directly.
, _Versioning, _SemVer, _Version, _Mess
-- ** Versioning Traversals
, _Ideal, _General, _Complex
-- ** (General) Version Lenses
, epoch
) where
import qualified Control.Applicative.Combinators.NonEmpty as PC
import Control.DeepSeq
import Control.Monad (unless, void)
import Data.Char (isAlpha, isAlphaNum)
import Data.Data (Data)
import Data.Foldable (fold)
import Data.Hashable (Hashable)
import Data.List (intersperse)
import Data.List.NonEmpty (NonEmpty(..))
import qualified Data.List.NonEmpty as NEL
import Data.Maybe (fromMaybe, listToMaybe, mapMaybe)
import Data.Text (Text)
import qualified Data.Text as T
import Data.Void (Void)
import Data.Word (Word64)
import GHC.Generics (Generic)
import Language.Haskell.TH (Exp, Q)
import Language.Haskell.TH.Syntax (Lift(..))
import Text.Megaparsec hiding (chunk)
import Text.Megaparsec.Char
import qualified Text.Megaparsec.Char.Lexer as L
---
-- | A top-level Versioning type. Acts as a wrapper for the more specific types.
-- This allows each subtype to have its own parser, and for said parsers to be
-- composed. This is useful for specifying custom behaviour for when a certain
-- parser fails.
data Versioning = Ideal !SemVer | General !Version | Complex !Mess
deriving (Eq, Show, Generic, NFData, Hashable, Lift, Data)
-- | Short-hand for detecting a `SemVer`.
isIdeal :: Versioning -> Bool
isIdeal (Ideal _) = True
isIdeal _ = False
-- | Short-hand for detecting a `Version`.
isGeneral :: Versioning -> Bool
isGeneral (General _) = True
isGeneral _ = False
-- | Short-hand for detecting a `Mess`.
isComplex :: Versioning -> Bool
isComplex (Complex _) = True
isComplex _ = False
-- | Comparison of @Ideal@s is always well defined.
--
-- If comparison of @General@s is well-defined, then comparison of @Ideal@ and
-- @General@ is well-defined, as there exists a perfect mapping from @Ideal@ to
-- @General@.
--
-- If comparison of @Complex@es is well-defined, then comparison of @General@
-- and @Complex@ is well defined for the same reason. This implies comparison of
-- @Ideal@ and @Complex@ is also well-defined.
instance Ord Versioning where
compare (Ideal s) (Ideal s') = compare s s'
compare (General v) (General v') = compare v v'
compare (Complex m) (Complex m') = compare m m'
compare (Ideal s) (General v) = semverAndVer s v
compare (General v) (Ideal s) = opposite $ semverAndVer s v
compare (General v) (Complex m) = compare (versionToMess v) m
compare (Complex m) (General v) = opposite $ compare (versionToMess v) m
compare (Ideal s) (Complex m) = semverAndMess s m
compare (Complex m) (Ideal s) = opposite $ semverAndMess s m
-- | Convert a `SemVer` to a `Version`.
semverToVersion :: SemVer -> Version
semverToVersion (SemVer ma mi pa re me) =
Version
{ _vEpoch = Nothing
, _vChunks = Chunks $ Numeric ma :| [Numeric mi, Numeric pa]
, _vMeta = me
, _vRel = re }
-- | Convert a `Version` to a `Mess`.
versionToMess :: Version -> Mess
versionToMess (Version me (Chunks v) r _) = case me of
Nothing -> f
Just e ->
let cs = (:| []) . MDigit e $ showt e
in Mess cs $ Just (VColon, f)
where
f :: Mess
f = Mess cs $ fmap g r
where
cs = NEL.map toMChunk v
g :: Release -> (VSep, Mess)
g (Release cs) = (VHyphen, Mess ms Nothing)
where
ms = NEL.map toMChunk cs
-- | Convert a `Version` to a `PVP`. Fails if there is an epoch present, but
-- otherwise ignores the `Release` and other metadata. Naturally it also fails
-- if any of the version components contain any non-digits.
versionToPvp :: Version -> Maybe PVP
versionToPvp (Version (Just _) _ _ _) = Nothing
versionToPvp (Version Nothing (Chunks cs) _ _) = PVP <$> traverse f cs
where
f :: Chunk -> Maybe Word
f (Numeric w) = Just w
f (Alphanum _) = Nothing
semverAndVer :: SemVer -> Version -> Ordering
-- A `Version` with a non-zero epoch value is automatically greater than any
-- `SemVer`.
semverAndVer _ (Version (Just e) _ _ _) | e > 0 = LT
semverAndVer (SemVer ma mi pa sr _) (Version _ (Chunks vc) vr _) =
case compare ma <$> (nth 0 vc' >>= singleDigitLenient) of
Nothing -> GT
Just GT -> GT
Just LT -> LT
Just EQ -> case compare mi <$> (nth 1 vc' >>= singleDigitLenient) of
Nothing -> GT
Just GT -> GT
Just LT -> LT
Just EQ -> case compare pa <$> (nth 2 vc' >>= singleDigitLenient) of
Nothing -> GT
Just GT -> GT
Just LT -> LT
-- By thes point, the major/minor/patch positions have all been equal.
-- If there is a fourth position, its type, not its value, will
-- determine which overall version is greater.
Just EQ -> case nth 3 vc' of
-- 1.2.3 > 1.2.3.git
Just (Alphanum _) -> GT
-- 1.2.3 < 1.2.3.0
Just (Numeric _) -> LT
Nothing -> compare sr vr
where
vc' :: [Chunk]
vc' = NEL.toList vc
nth :: Int -> [Chunk] -> Maybe Chunk
nth _ [] = Nothing
nth 0 (c:_) = Just c
nth n (_:cs) = nth (n - 1) cs
-- | Special logic for when semver-like values can be extracted from a `Mess`.
-- This avoids having to "downcast" the `SemVer` into a `Mess` before comparing,
-- and in some cases can offer better comparison results.
semverAndMess :: SemVer -> Mess -> Ordering
semverAndMess s@(SemVer ma mi pa _ _) m = case compare ma <$> messMajor m of
Nothing -> fallback
Just LT -> LT
Just GT -> GT
Just EQ -> case compare mi <$> messMinor m of
Nothing -> fallback
Just LT -> LT
Just GT -> GT
Just EQ -> case compare pa <$> messPatch m of
Just LT -> LT
Just GT -> GT
-- If they've been equal up to this point, the `Mess`
-- will by definition have more to it, meaning that
-- it's more likely to be newer, despite its poor shape.
Just EQ -> fallback
-- Even if we weren't able to extract a standalone patch number, we might
-- still be able to find a number at the head of the `Chunk` in that
-- position.
Nothing -> case messPatchChunk m >>= singleDigitLenient of
-- We were very close, but in the end the `Mess` had a nonsensical value
-- in its patch position.
Nothing -> fallback
Just pa' -> case compare pa pa' of
LT -> LT
GT -> GT
-- This follows semver's rule that pre-releases have lower precedence.
EQ -> GT
where
fallback :: Ordering
fallback = compare (General $ semverToVersion s) (Complex m)
instance Semantic Versioning where
major f (Ideal v) = Ideal <$> major f v
major f (General v) = General <$> major f v
major f (Complex v) = Complex <$> major f v
{-# INLINE major #-}
minor f (Ideal v) = Ideal <$> minor f v
minor f (General v) = General <$> minor f v
minor f (Complex v) = Complex <$> minor f v
{-# INLINE minor #-}
patch f (Ideal v) = Ideal <$> patch f v
patch f (General v) = General <$> patch f v
patch f (Complex v) = Complex <$> patch f v
{-# INLINE patch #-}
release f (Ideal v) = Ideal <$> release f v
release f (General v) = General <$> release f v
release f (Complex v) = Complex <$> release f v
{-# INLINE release #-}
meta f (Ideal v) = Ideal <$> meta f v
meta f (General v) = General <$> meta f v
meta f (Complex v) = Complex <$> meta f v
{-# INLINE meta #-}
semantic f (Ideal v) = Ideal <$> semantic f v
semantic f (General v) = General <$> semantic f v
semantic f (Complex v) = Complex <$> semantic f v
{-# INLINE semantic #-}
-- | Traverse some Text for its inner versioning.
--
-- @
-- λ "1.2.3" & _Versioning . _Ideal . patch %~ (+ 1) -- or just: "1.2.3" & patch %~ (+ 1)
-- "1.2.4"
-- @
_Versioning :: Traversal' Text Versioning
_Versioning f t = either (const (pure t)) (fmap prettyV . f) $ versioning t
{-# INLINE _Versioning #-}
-- | Traverse some Text for its inner SemVer.
_SemVer :: Traversal' Text SemVer
_SemVer f t = either (const (pure t)) (fmap prettySemVer . f) $ semver t
{-# INLINE _SemVer #-}
-- | Traverse some Text for its inner Version.
_Version :: Traversal' Text Version
_Version f t = either (const (pure t)) (fmap prettyVer . f) $ version t
{-# INLINE _Version #-}
-- | Traverse some Text for its inner Mess.
_Mess :: Traversal' Text Mess
_Mess f t = either (const (pure t)) (fmap prettyMess . f) $ mess t
{-# INLINE _Mess #-}
-- | Possibly extract a `SemVer` from a `Versioning`.
_Ideal :: Traversal' Versioning SemVer
_Ideal f (Ideal s) = Ideal <$> f s
_Ideal _ v = pure v
{-# INLINE _Ideal #-}
-- | Possibly extract a `Version` from a `Versioning`.
_General :: Traversal' Versioning Version
_General f (General v) = General <$> f v
_General _ v = pure v
{-# INLINE _General #-}
-- | Possibly extract a `Mess` from a `Versioning`.
_Complex :: Traversal' Versioning Mess
_Complex f (Complex m) = Complex <$> f m
_Complex _ v = pure v
{-# INLINE _Complex #-}
-- | Simple Lenses compatible with both lens and microlens.
type Lens' s a = forall f. Functor f => (a -> f a) -> s -> f s
-- | Simple Traversals compatible with both lens and microlens.
type Traversal' s a = forall f. Applicative f => (a -> f a) -> s -> f s
-- | Version types which sanely and safely yield `SemVer`-like information about
-- themselves. For instances other than `SemVer` itself however, these optics
-- may /not/ yield anything, depending on the actual value being traversed.
-- Hence, the optics here are all `Traversal'`s.
--
-- Consider the `Version` @1.2.3.4.5@. We can imagine wanting to increment the
-- minor number:
--
-- @
-- λ "1.2.3.4.5" & minor %~ (+ 1)
-- "1.3.3.4.5"
-- @
--
-- But of course something like this would fail:
--
-- @
-- λ "1.e.3.4.5" & minor %~ (+ 1)
-- "1.e.3.4.5"
-- @
--
-- However!
--
-- @
-- λ "1.e.3.4.5" & major %~ (+ 1)
-- "2.e.3.4.5"
-- @
class Semantic v where
-- | @MAJOR.minor.patch-prerel+meta@
major :: Traversal' v Word
-- | @major.MINOR.patch-prerel+meta@
minor :: Traversal' v Word
-- | @major.minor.PATCH-prerel+meta@
patch :: Traversal' v Word
-- | @major.minor.patch-PREREL+meta@
release :: Traversal' v (Maybe Release)
-- | @major.minor.patch-prerel+META@
meta :: Traversal' v (Maybe Text)
-- | A Natural Transformation into an proper `SemVer`.
semantic :: Traversal' v SemVer
instance Semantic Text where
major = _Versioning . major
minor = _Versioning . minor
patch = _Versioning . patch
release = _Versioning . release
meta = _Versioning . meta
semantic = _SemVer
--------------------------------------------------------------------------------
-- (Ideal) SemVer
-- | An (Ideal) version number that conforms to Semantic Versioning.
-- This is a /prescriptive/ parser, meaning it follows the SemVer standard.
--
-- Legal semvers are of the form: MAJOR.MINOR.PATCH-PREREL+META
--
-- Example: @1.2.3-r1+commithash@
--
-- Extra Rules:
--
-- 1. Pre-release versions have /lower/ precedence than normal versions.
--
-- 2. Build metadata does not affect version precedence.
--
-- 3. PREREL and META strings may only contain ASCII alphanumerics and hyphens.
--
-- For more information, see http://semver.org
data SemVer = SemVer
{ _svMajor :: !Word
, _svMinor :: !Word
, _svPatch :: !Word
, _svPreRel :: !(Maybe Release)
, _svMeta :: !(Maybe Text) }
deriving stock (Show, Generic, Lift, Data)
deriving anyclass (NFData, Hashable)
-- | Two SemVers are equal if all fields except metadata are equal.
instance Eq SemVer where
(SemVer ma mi pa pr _) == (SemVer ma' mi' pa' pr' _) =
(ma,mi,pa,pr) == (ma',mi',pa',pr')
-- | Build metadata does not affect version precedence.
instance Ord SemVer where
compare (SemVer ma mi pa pr _) (SemVer ma' mi' pa' pr' _) =
case compare (ma,mi,pa) (ma',mi',pa') of
LT -> LT
GT -> GT
EQ -> case (pr, pr') of
(Nothing, Nothing) -> EQ
(Nothing, _) -> GT
(_, Nothing) -> LT
(Just ap, Just bp) -> compare ap bp
instance Semantic SemVer where
major f sv = fmap (\ma -> sv { _svMajor = ma }) (f $ _svMajor sv)
{-# INLINE major #-}
minor f sv = fmap (\mi -> sv { _svMinor = mi }) (f $ _svMinor sv)
{-# INLINE minor #-}
patch f sv = fmap (\pa -> sv { _svPatch = pa }) (f $ _svPatch sv)
{-# INLINE patch #-}
release f sv = fmap (\pa -> sv { _svPreRel = pa }) (f $ _svPreRel sv)
{-# INLINE release #-}
meta f sv = fmap (\pa -> sv { _svMeta = pa }) (f $ _svMeta sv)
{-# INLINE meta #-}
semantic = ($)
{-# INLINE semantic #-}
-- | `Chunk`s have comparison behaviour according to SemVer's rules for preleases.
newtype Release = Release (NonEmpty Chunk)
deriving stock (Eq, Show, Read, Generic, Lift, Data)
deriving anyclass (NFData, Hashable)
instance Ord Release where
compare (Release as) (Release bs) =
fromMaybe EQ . listToMaybe . mapMaybe f $ zipLongest (NEL.toList as) (NEL.toList bs)
where
f :: These Chunk Chunk -> Maybe Ordering
f (Both a b) = case cmpSemVer a b of
LT -> Just LT
GT -> Just GT
EQ -> Nothing
f (This _) = Just GT
f (That _) = Just LT
-- | A logical unit of a version number.
--
-- Either entirely numerical (with no leading zeroes) or entirely alphanumerical
-- (with a free mixture of numbers, letters, and hyphens.)
--
-- Groups of these (like `Release`) are separated by periods to form a full
-- section of a version number.
--
-- Examples:
--
-- @
-- 1
-- 20150826
-- r3
-- 0rc1-abc3
-- @
data Chunk = Numeric !Word | Alphanum !Text
deriving stock (Eq, Show, Read, Generic, Lift, Data)
deriving anyclass (NFData, Hashable)
toMChunk :: Chunk -> MChunk
toMChunk (Numeric n) = MDigit n $ showt n
toMChunk (Alphanum s) = MPlain s
-- | `Chunk` is used in multiple places but requires different comparison
-- semantics depending on the wrapping type. This function and `cmpLenient`
-- below provide this.
cmpSemVer :: Chunk -> Chunk -> Ordering
cmpSemVer (Numeric a) (Numeric b) = compare a b
cmpSemVer (Numeric _) (Alphanum _) = LT
cmpSemVer (Alphanum _) (Numeric _) = GT
cmpSemVer (Alphanum a) (Alphanum b) = compare a b
-- | Like `cmpSemVer`, but for `Version`s. We need to be mindful of comparisons
-- like @1.2.0 > 1.2.0rc1@ which normally wouldn't occur in SemVer.
cmpLenient :: Chunk -> Chunk -> Ordering
cmpLenient (Numeric a) (Numeric b) = compare a b
cmpLenient a@(Alphanum x) b@(Alphanum y) =
case (singleDigitLenient a, singleDigitLenient b) of
(Just i, Just j) -> compare i j
_ -> compare x y
cmpLenient (Numeric n) b@(Alphanum _) =
case singleDigitLenient b of
Nothing -> GT
Just m -> case compare n m of
-- 1.2.0 > 1.2.0rc1
EQ -> GT
c -> c
cmpLenient a@(Alphanum _) (Numeric n) =
case singleDigitLenient a of
Nothing -> LT
Just m -> case compare m n of
-- 1.2.0rc1 < 1.2.0
EQ -> LT
c -> c
-- | Like `singleDigit` but will grab a leading `Word` even if followed by
-- letters.
singleDigitLenient :: Chunk -> Maybe Word
singleDigitLenient (Numeric n) = Just n
singleDigitLenient (Alphanum s) = hush $ parse unsignedP "Single Digit Lenient" s
--------------------------------------------------------------------------------
-- (Haskell) PVP
-- | A PVP version number specific to the Haskell ecosystem. Like SemVer this is
-- a prescriptive scheme, and follows <https://pvp.haskell.org/ the PVP spec>.
--
-- Legal PVP values are of the form: MAJOR(.MAJOR.MINOR)
--
-- Example: @1.2.3@
--
-- Extra Rules:
--
-- 1. Each component must be a number.
--
-- 2. Only the first MAJOR component is actually necessary. Otherwise, there can
-- be any number of components. @1.2.3.4.5.6.7@ is legal.
--
-- 3. Unlike SemVer there are two MAJOR components, and both indicate a breaking
-- change. The spec otherwise designates no special meaning to components
-- past the MINOR position.
newtype PVP = PVP { _pComponents :: NonEmpty Word }
deriving stock (Eq, Ord, Show, Generic, Lift, Data)
deriving anyclass (NFData, Hashable)
instance Semantic PVP where
major f (PVP (m :| rs)) = (\ma -> PVP $ ma :| rs) <$> f m
{-# INLINE major #-}
minor f (PVP (m :| mi : rs)) = (\mi' -> PVP $ m :| mi' : rs) <$> f mi
minor f (PVP (m :| [])) = (\mi' -> PVP $ m :| [mi']) <$> f 0
{-# INLINE minor #-}
patch f (PVP (m :| mi : pa : rs)) = (\pa' -> PVP $ m :| mi : pa' : rs) <$> f pa
patch f (PVP (m :| [mi])) = (\pa' -> PVP $ m :| mi : [pa']) <$> f 0
patch f (PVP (m :| [])) = (\pa' -> PVP $ m :| 0 : [pa']) <$> f 0
{-# INLINE patch #-}
release f p = p <$ f Nothing
{-# INLINE release #-}
meta f p = p <$ f Nothing
{-# INLINE meta #-}
semantic f (PVP (m :| rs)) = (\(SemVer ma mi pa _ _) -> PVP $ ma :| [mi, pa]) <$> f s
where
s = case rs of
mi : pa : _ -> SemVer m mi pa Nothing Nothing
mi : _ -> SemVer m mi 0 Nothing Nothing
[] -> SemVer m 0 0 Nothing Nothing
{-# INLINE semantic #-}
--------------------------------------------------------------------------------
-- (General) Version
-- | A version number with decent structure and comparison logic.
--
-- This is a /descriptive/ scheme, meaning that it encapsulates the most common,
-- unconscious patterns that developers use when assigning version numbers to
-- their software. If not `SemVer`, most version numbers found in the wild will
-- parse as a `Version`. These generally conform to the @x.x.x-x@ pattern, and
-- may optionally have an /epoch/.
--
-- Epochs are prefixes marked by a colon, like in @1:2.3.4@. When comparing two
-- `Version` values, epochs take precedent. So @2:1.0.0 > 1:9.9.9@. If one of
-- the given `Version`s has no epoch, its epoch is assumed to be 0.
--
-- Examples of @Version@ that are not @SemVer@: 0.25-2, 8.u51-1, 20150826-1,
-- 1:2.3.4
data Version = Version
{ _vEpoch :: !(Maybe Word)
, _vChunks :: !Chunks
, _vRel :: !(Maybe Release)
, _vMeta :: !(Maybe Text) }
deriving stock (Eq, Show, Generic, Lift, Data)
deriving anyclass (NFData, Hashable)
-- | Customized. As in SemVer, metadata is ignored for the purpose of
-- comparison.
instance Ord Version where
-- If two epochs are equal, we need to compare their actual version numbers.
-- Otherwise, the comparison of the epochs is the only thing that matters.
compare (Version mae ac ar _) (Version mbe bc br _) =
case compare ae be of
EQ -> case compare ac bc of
EQ -> compare ar br
ord -> ord
ord -> ord
where
ae = fromMaybe 0 mae
be = fromMaybe 0 mbe
instance Semantic Version where
major f (Version e (Chunks (Numeric n :| cs)) me rs) =
(\n' -> Version e (Chunks $ Numeric n' :| cs) me rs) <$> f n
major _ v = pure v
{-# INLINE major #-}
minor f (Version e (Chunks (c :| Numeric n : cs)) me rs) =
(\n' -> Version e (Chunks $ c :| Numeric n' : cs) me rs) <$> f n
minor _ v = pure v
{-# INLINE minor #-}
patch f (Version e (Chunks (c :| d : Numeric n : cs)) me rs) =
(\n' -> Version e (Chunks $ c :| d : Numeric n' : cs) me rs) <$> f n
patch _ v = pure v
{-# INLINE patch #-}
-- | This will always succeed.
release f v = fmap (\vr -> v { _vRel = vr }) (f $ _vRel v)
{-# INLINE release #-}
-- | This will always fail.
meta _ v = pure v
{-# INLINE meta #-}
semantic f (Version _ (Chunks (Numeric a :| Numeric b : Numeric c : _)) rs me) =
semverToVersion <$> f (SemVer a b c rs me)
semantic _ v = pure v
{-# INLINE semantic #-}
-- | A `Version`'s inner epoch `Word`.
epoch :: Lens' Version (Maybe Word)
epoch f v = fmap (\ve -> v { _vEpoch = ve }) (f $ _vEpoch v)
{-# INLINE epoch #-}
-- | `Chunk`s that have a comparison behaviour specific to `Version`.
newtype Chunks = Chunks (NonEmpty Chunk)
deriving stock (Eq, Show, Generic, Lift, Data)
deriving anyclass (NFData, Hashable)
instance Ord Chunks where
compare (Chunks as) (Chunks bs) =
fromMaybe EQ . listToMaybe . mapMaybe f $ zipLongest (NEL.toList as) (NEL.toList bs)
where
f :: These Chunk Chunk -> Maybe Ordering
f (Both a b) = case cmpLenient a b of
LT -> Just LT
GT -> Just GT
EQ -> Nothing
f (This _) = Just GT
f (That _) = Just LT
--------------------------------------------------------------------------------
-- (Complex) Mess
-- | Possible values of a section of a `Mess`. A numeric value is extracted if
-- it could be, alongside the original text it came from. This preserves both
-- `Ord` and pretty-print behaviour for versions like @1.003.0@.
data MChunk
= MDigit !Word !Text
-- ^ A nice numeric value.
| MRev !Word !Text
-- ^ A numeric value preceeded by an @r@, indicating a revision.
| MPlain !Text
-- ^ Anything else.
deriving stock (Eq, Show, Generic, Lift, Data)
deriving anyclass (NFData, Hashable)
instance Ord MChunk where
compare (MDigit a _) (MDigit b _) = compare a b
compare (MRev a _) (MRev b _) = compare a b
compare (MPlain a) (MPlain b) = compare a b
compare a b = compare (mchunkText a) (mchunkText b)
-- | A total extraction of the `Text` from an `MChunk`.
mchunkText :: MChunk -> Text
mchunkText (MDigit _ t) = t
mchunkText (MRev _ t) = t
mchunkText (MPlain t) = t
-- | A (Complex) Mess. This is a /descriptive/ parser, based on examples of
-- stupidly crafted version numbers used in the wild.
--
-- Groups of letters/numbers, separated by a period, can be further separated by
-- the symbols @_-+:@
--
-- Some `Mess` values have a shape that is tantalizingly close to a `SemVer`.
-- Example: @1.6.0a+2014+m872b87e73dfb-1@. For values like these, we can extract
-- the semver-compatible values out with `messMajor`, etc.
--
-- Not guaranteed to have well-defined ordering (@Ord@) behaviour, but so far
-- internal tests show consistency. `messMajor`, etc., are used internally where
-- appropriate to enhance accuracy.
data Mess = Mess !(NonEmpty MChunk) !(Maybe (VSep, Mess))
deriving stock (Eq, Show, Generic, Lift, Data)
deriving anyclass (NFData, Hashable)
-- | Try to extract the "major" version number from `Mess`, as if it were a
-- `SemVer`.
messMajor :: Mess -> Maybe Word
messMajor (Mess (MDigit i _ :| _) _) = Just i
messMajor _ = Nothing
-- | Try to extract the "minor" version number from `Mess`, as if it were a
-- `SemVer`.
messMinor :: Mess -> Maybe Word
messMinor (Mess (_ :| MDigit i _ : _) _) = Just i
messMinor _ = Nothing
-- | Try to extract the "patch" version number from `Mess`, as if it were a
-- `SemVer`.
messPatch :: Mess -> Maybe Word
messPatch (Mess (_ :| _ : MDigit i _ : _) _) = Just i
messPatch _ = Nothing
-- | Okay, fine, say `messPatch` couldn't find a nice value. But some `Mess`es
-- have a "proper" patch-plus-release-candidate value in their patch position,
-- which is parsable as a `Chunk`.
--
-- Example: @1.6.0a+2014+m872b87e73dfb-1@ We should be able to extract @0a@ safely.
messPatchChunk :: Mess -> Maybe Chunk
messPatchChunk (Mess (_ :| _ : MPlain p : _) _) = hush $ parse chunkP "Chunk" p
messPatchChunk _ = Nothing
instance Ord Mess where
compare (Mess t1 m1) (Mess t2 m2) = case compare t1 t2 of
EQ -> case (m1, m2) of
(Just (_, v1), Just (_, v2)) -> compare v1 v2
(Just (_, _), Nothing) -> GT
(Nothing, Just (_, _)) -> LT
(Nothing, Nothing) -> EQ
res -> res
instance Semantic Mess where
major f (Mess (MDigit n _ :| ts) m) = (\n' -> Mess (MDigit n' (showt n') :| ts) m) <$> f n
major _ v = pure v
{-# INLINE major #-}
minor f (Mess (t0 :| MDigit n _ : ts) m) = (\n' -> Mess (t0 :| MDigit n' (showt n') : ts) m) <$> f n
minor _ v = pure v
{-# INLINE minor #-}
patch f (Mess (t0 :| t1 : MDigit n _ : ts) m) = (\n' -> Mess (t0 :| t1 : MDigit n' (showt n') : ts) m) <$> f n
patch _ v = pure v
{-# INLINE patch #-}
-- | This will always fail.
release _ v = pure v
{-# INLINE release #-}
-- | This will always fail.
meta _ v = pure v
{-# INLINE meta #-}
-- | Good luck.
semantic f (Mess (MDigit t0 _ :| MDigit t1 _ : MDigit t2 _ : _) _) =
versionToMess . semverToVersion <$> f (SemVer t0 t1 t2 Nothing Nothing)
semantic _ v = pure v
{-# INLINE semantic #-}
-- | Developers use a number of symbols to seperate groups of digits/letters in
-- their version numbers. These are:
--
-- * A colon (:). Often denotes an "epoch".
-- * A hyphen (-).
-- * A tilde (~). Example: @12.0.0-3ubuntu1~20.04.5@
-- * A plus (+). Stop using this outside of metadata if you are. Example: @10.2+0.93+1-1@
-- * An underscore (_). Stop using this if you are.
data VSep = VColon | VHyphen | VPlus | VUnder | VTilde
deriving stock (Eq, Show, Generic, Lift, Data)
deriving anyclass (NFData, Hashable)
-- | Parse a `Versioning` at compile time.
versioningQ :: Text -> Q Exp
versioningQ nm =
case versioning nm of
Left err -> fail (errorBundlePretty err)
Right v -> lift v
-- | Parse a `SemVer` at compile time.
semverQ :: T.Text -> Q Exp
semverQ nm =
case semver nm of
Left err -> fail (errorBundlePretty err)
Right v -> lift v
-- | Parse a `Version` at compile time.
versionQ :: T.Text -> Q Exp
versionQ nm =
case version nm of
Left err -> fail (errorBundlePretty err)
Right v -> lift v
-- | Parse a `Mess` at compile time.
messQ :: T.Text -> Q Exp
messQ nm =
case mess nm of
Left err -> fail (errorBundlePretty err)
Right v -> lift v
-- | Parse a `PVP` at compile time.
pvpQ :: T.Text -> Q Exp
pvpQ nm =
case pvp nm of
Left err -> fail (errorBundlePretty err)
Right v -> lift v
--------------------------------------------------------------------------------
-- Parsing
-- | A synonym for the more verbose 'megaparsec' error type.
type ParsingError = ParseErrorBundle Text Void
-- | Parse a piece of `Text` into either an (Ideal) `SemVer`, a (General)
-- `Version`, or a (Complex) `Mess`.
versioning :: Text -> Either ParsingError Versioning
versioning = parse versioning' "versioning"
-- | Parse a `Versioning`. Assumes the version number is the last token in
-- the string.
versioning' :: Parsec Void Text Versioning
versioning' = choice [ try (fmap Ideal semver'' <* eof)
, try (fmap General version'' <* eof)
, fmap Complex mess'' <* eof ]
-- | Parse a (Ideal) Semantic Version.
semver :: Text -> Either ParsingError SemVer
semver = parse (semver'' <* eof) "Semantic Version"
-- | Internal megaparsec parser of `semver`.
semver' :: Parsec Void Text SemVer
semver' = L.lexeme space semver''
semver'' :: Parsec Void Text SemVer
semver'' = SemVer <$> majorP <*> minorP <*> patchP <*> optional releaseP <*> optional metaData
-- | Parse a group of digits, which can't be lead by a 0, unless it is 0.
unsignedP :: Parsec Void Text Word
unsignedP = asWord64 >>= convertOrFail
where
asWord64 :: Parsec Void Text Word64
asWord64 = (0 <$ char '0') <|> L.decimal
convertOrFail :: Word64 -> Parsec Void Text Word
convertOrFail w | w > bound = fail $ "Value (" ++ show w ++ ") larger than Word size: " ++ show bound
| otherwise = pure $ fromIntegral w
where
bound :: Word64
bound = fromIntegral (maxBound :: Word)
majorP :: Parsec Void Text Word
majorP = unsignedP <* char '.'
minorP :: Parsec Void Text Word
minorP = majorP
patchP :: Parsec Void Text Word
patchP = unsignedP
releaseP :: Parsec Void Text Release
releaseP = char '-' *> fmap Release (chunkP `PC.sepBy1` char '.')
chunkP :: Parsec Void Text Chunk
chunkP = try alphanumP <|> numericP
alphanumP :: Parsec Void Text Chunk
alphanumP = do
ids <- takeWhile1P (Just "Hyphenated Alphanums") (\c -> isAlphaNum c || c == '-')
-- It's okay for this to `fail` like this, since this fail is caught higher up
-- in `chunkP` and another parser which should be guaranteed to succeed is
-- called. It's guaranteed since by this point we /did/ parse something, but
-- the test below proves it contains only numbers. Therefore the fallback call
-- to `numericP` should succeed.
unless (T.any (\c -> isAlpha c || c == '-') ids) $ fail "Only numeric!"
pure $ Alphanum ids
alphanumWithoutHyphensP :: Parsec Void Text Chunk
alphanumWithoutHyphensP = do
ids <- takeWhile1P (Just "Unhyphenated Alphanums") isAlphaNum
unless (T.any isAlpha ids) $ fail "Only numeric!"
pure $ Alphanum ids
numericP :: Parsec Void Text Chunk
numericP = Numeric <$> unsignedP
chunkWithoutHyphensP :: Parsec Void Text Chunk
chunkWithoutHyphensP = try alphanumWithoutHyphensP <|> numericP
metaData :: Parsec Void Text Text
metaData = do
void $ char '+'
fold . NEL.intersperse "." <$> section `PC.sepBy1` char '.'
where
section :: Parsec Void Text Text
section = takeWhile1P (Just "Metadata char") (\c -> isAlphaNum c || c == '-')
-- | Parse a (Haskell) `PVP`, as defined above.
pvp :: Text -> Either ParsingError PVP
pvp = parse (pvp' <* eof) "PVP"
-- | Internal megaparsec parser of `pvp`.
pvp' :: Parsec Void Text PVP
pvp' = L.lexeme space (PVP <$> unsignedP `PC.sepBy1` char '.')
-- | Parse a (General) `Version`, as defined above.
version :: Text -> Either ParsingError Version
version = parse (version'' <* eof) "Version"
-- | Internal megaparsec parser of `version`.
version' :: Parsec Void Text Version
version' = L.lexeme space version''
version'' :: Parsec Void Text Version
version'' = Version <$> optional (try epochP) <*> chunksP <*> optional releaseP <*> optional metaData
epochP :: Parsec Void Text Word
epochP = unsignedP <* char ':'
chunksP :: Parsec Void Text Chunks
chunksP = Chunks <$> chunkWithoutHyphensP `PC.sepBy1` char '.'
-- | Parse a (Complex) `Mess`, as defined above.
mess :: Text -> Either ParsingError Mess
mess = parse (mess'' <* eof) "Mess"
-- | Internal megaparsec parser of `mess`.
mess' :: Parsec Void Text Mess
mess' = L.lexeme space mess''
mess'' :: Parsec Void Text Mess
mess'' = Mess <$> mchunks <*> optional ((,) <$> sep <*> mess')
mchunks :: Parsec Void Text (NonEmpty MChunk)
mchunks = mchunk `PC.sepBy1` char '.'
mchunk :: Parsec Void Text MChunk
mchunk = choice [ try $ (\(t, i) -> MDigit i t) <$> match (L.decimal <* next)
, try $ (\(t, i) -> MRev i t) <$> match (single 'r' *> L.decimal <* next)
, MPlain . T.pack <$> some (letterChar <|> digitChar) ]
where
next :: Parsec Void Text ()
next = lookAhead (void (single '.') <|> void sep <|> eof)
sep :: Parsec Void Text VSep
sep = choice [ VColon <$ char ':'
, VHyphen <$ char '-'
, VPlus <$ char '+'
, VUnder <$ char '_'
, VTilde <$ char '~' ]
sepCh :: VSep -> Char
sepCh VColon = ':'
sepCh VHyphen = '-'
sepCh VPlus = '+'
sepCh VUnder = '_'
sepCh VTilde = '~'
-- | Convert any parsed Versioning type to its textual representation.
prettyV :: Versioning -> Text
prettyV (Ideal sv) = prettySemVer sv
prettyV (General v) = prettyVer v
prettyV (Complex m) = prettyMess m
-- | Convert a `SemVer` back to its textual representation.
prettySemVer :: SemVer -> Text
prettySemVer (SemVer ma mi pa pr me) = mconcat $ ver <> pr' <> me'
where
ver = intersperse "." [ showt ma, showt mi, showt pa ]
pr' = maybe [] (\m -> ["-", prettyRelease m]) pr
me' = maybe [] (\m -> ["+", m]) me
-- | Convert a `PVP` back to its textual representation.
prettyPVP :: PVP -> Text
prettyPVP (PVP (m :| rs)) = T.intercalate "." . map showt $ m : rs
-- | Convert a `Version` back to its textual representation.
prettyVer :: Version -> Text
prettyVer (Version ep cs pr me) = mconcat $ ep' <> [ver] <> pr' <> me'
where
ver = prettyChunks cs
me' = maybe [] (\m -> ["+", m]) me
pr' = maybe [] (\m -> ["-", prettyRelease m]) pr
ep' = maybe [] (\e -> [showt e, ":"]) ep
-- | Convert a `Mess` back to its textual representation.
prettyMess :: Mess -> Text
prettyMess (Mess t m) = case m of
Nothing -> t'
Just (s, v) -> T.snoc t' (sepCh s) <> prettyMess v
where
t' :: Text
t' = fold . NEL.intersperse "." $ NEL.map mchunkText t
prettyChunks :: Chunks -> Text
prettyChunks (Chunks cs) = T.intercalate "." . map prettyChunk $ NEL.toList cs
prettyRelease :: Release -> Text
prettyRelease (Release cs) = T.intercalate "." . map prettyChunk $ NEL.toList cs
prettyChunk :: Chunk -> Text
prettyChunk (Numeric n) = showt n
prettyChunk (Alphanum s) = s
--------------------------------------------------------------------------------
-- Utilities
-- | Flip an Ordering.
opposite :: Ordering -> Ordering
opposite EQ = EQ
opposite LT = GT
opposite GT = LT
-- Yes, `text-show` exists, but this reduces external dependencies.
showt :: Show a => a -> Text
showt = T.pack . show
hush :: Either a b -> Maybe b
hush (Left _) = Nothing
hush (Right b) = Just b
data These a b = This !a | That !b | Both !a !b
zipLongest :: [a] -> [b] -> [These a b]
zipLongest [] [] = []
zipLongest (a:as) (b:bs) = Both a b : zipLongest as bs
zipLongest (a:as) [] = This a : zipLongest as []
zipLongest [] (b:bs) = That b : zipLongest [] bs
|