git-annex/Command/Version.hs
Joey Hess 234842a347
v7
Install new git hooks in this version.

This does beg the question of what to do if git later gets eg a
post-smudge hook, that could run git-annex smudge --update. I think the
thing to do in that case would be to make git-annex smudge --update
install the new hooks. That way, as the user uses git-annex, the hook
would be created pretty quickly and without needing any extra syscalls
except for when git-annex smudge --update is called.

I considered doing something like that for installation of the
post-checkout and post-merge hooks, which would have avoided the need
for v7. But the only place it was cheap to do it would be in git-annex smudge
which could cheaply notice that smudge.log didn't exist yet and so know
the hooks needed to be installed. But since smudge used to populate pointer
files, it would be quite surprising if a single git checkout/merge failed
to update the work tree, and so that idea didn't work out.

The other reason for v7 is psychological -- users don't need to worry
about whether they might be running an old version of git-annex that
doesn't support their v7 repository very well. And bug reports about
"v6" have gotten a bit of a bad association in my head since they often
hit one of the known limitations and didn't realize it was experimental.

newtyped RepoVersion Int to avoid needing 2 comparisons in
versionSupportsUnlockedPointers etc. Also it's just nicer.

This commit was sponsored by John Pellman on Patreon.
2018-10-25 18:24:23 -04:00

81 lines
2 KiB
Haskell

{- git-annex command
-
- Copyright 2010 Joey Hess <id@joeyh.name>
-
- Licensed under the GNU GPL version 3 or higher.
-}
module Command.Version where
import Command
import Annex.Version
import BuildInfo
import BuildFlags
import Types.Key
import Types.RepoVersion
import qualified Types.Backend as B
import qualified Types.Remote as R
import qualified Remote
import qualified Backend
import System.Info
cmd :: Command
cmd = dontCheck repoExists $ noCommit $
noRepo (seekNoRepo <$$> optParser) $
command "version" SectionQuery "show version info"
paramNothing (seek <$$> optParser)
data VersionOptions = VersionOptions
{ rawOption :: Bool
}
optParser :: CmdParamsDesc -> Parser VersionOptions
optParser _ = VersionOptions
<$> switch
( long "raw"
<> help "output only program version"
)
seek :: VersionOptions -> CommandSeek
seek o
| rawOption o = liftIO showRawVersion
| otherwise = showVersion
seekNoRepo :: VersionOptions -> IO ()
seekNoRepo o
| rawOption o = showRawVersion
| otherwise = showPackageVersion
showVersion :: Annex ()
showVersion = do
liftIO showPackageVersion
maybe noop (liftIO . vinfo "local repository version" . showRepoVersion)
=<< getVersion
showPackageVersion :: IO ()
showPackageVersion = do
vinfo "git-annex version" BuildInfo.packageversion
vinfo "build flags" $ unwords buildFlags
vinfo "dependency versions" $ unwords dependencyVersions
vinfo "key/value backends" $ unwords $
map (formatKeyVariety . B.backendVariety) Backend.list
vinfo "remote types" $ unwords $ map R.typename Remote.remoteTypes
vinfo "operating system" $ unwords [os, arch]
vinfo "supported repository versions" $
verlist supportedVersions
vinfo "upgrade supported from repository versions" $
verlist upgradableVersions
where
verlist = unwords . map showRepoVersion
showRepoVersion :: RepoVersion -> String
showRepoVersion = show . fromRepoVersion
showRawVersion :: IO ()
showRawVersion = do
putStr BuildInfo.packageversion
hFlush stdout -- no newline, so flush
vinfo :: String -> String -> IO ()
vinfo k v = putStrLn $ k ++ ": " ++ v