json object for FileNotFound
When a nonexistant file is passed to a command and --json-error-messages is enabled, output a JSON object indicating the problem. (But git ls-files --error-unmatch still displays errors about such files in some situations.) I don't like the duplication of the name of the command introduced by this, but I can't see a great way around it. One way would be to pass the Command instead. When json is not enabled, the stderr is unchanged. This is necessary because some commands like find have custom output. So dislaying "find foo not found" would be wrong. So had to complicate things with toplevelFileProblem having different output with and without json. When not using --json-error-messages but still using --json, it displays the error to stderr, but does display a json object without the error. It does have an errorid though. Unsure how useful that behavior is. Sponsored-by: Dartmouth College's Datalad project
This commit is contained in:
parent
91ba0cc7fd
commit
be36e208c2
29 changed files with 97 additions and 43 deletions
|
@ -25,6 +25,10 @@ git-annex (10.20230408) UNRELEASED; urgency=medium
|
||||||
* assistant --autostop: Avoid crashing when ~/.config/git-annex/autostart
|
* assistant --autostop: Avoid crashing when ~/.config/git-annex/autostart
|
||||||
lists a directory that it cannot chdir to.
|
lists a directory that it cannot chdir to.
|
||||||
* Honor --force option when operating on a local git remote.
|
* Honor --force option when operating on a local git remote.
|
||||||
|
* When a nonexistant file is passed to a command and
|
||||||
|
--json-error-messages is enabled, output a JSON object indicating the
|
||||||
|
problem. (But git ls-files --error-unmatch still displays errors about
|
||||||
|
such files in some situations.)
|
||||||
|
|
||||||
-- Joey Hess <id@joeyh.name> Sat, 08 Apr 2023 13:57:18 -0400
|
-- Joey Hess <id@joeyh.name> Sat, 08 Apr 2023 13:57:18 -0400
|
||||||
|
|
||||||
|
|
|
@ -147,9 +147,9 @@ withPairs a params = sequence_ $
|
||||||
pairs c (x:y:xs) = pairs ((x,y):c) xs
|
pairs c (x:y:xs) = pairs ((x,y):c) xs
|
||||||
pairs _ _ = giveup "expected pairs"
|
pairs _ _ = giveup "expected pairs"
|
||||||
|
|
||||||
withFilesToBeCommitted :: ((SeekInput, RawFilePath) -> CommandSeek) -> WorkTreeItems -> CommandSeek
|
withFilesToBeCommitted :: WarnUnmatchWhen -> ((SeekInput, RawFilePath) -> CommandSeek) -> WorkTreeItems -> CommandSeek
|
||||||
withFilesToBeCommitted a l = seekFiltered (const (pure True)) a $
|
withFilesToBeCommitted ww a l = seekFiltered (const (pure True)) a $
|
||||||
seekHelper id WarnUnmatchWorkTreeItems (const LsFiles.stagedNotDeleted) l
|
seekHelper id ww (const LsFiles.stagedNotDeleted) l
|
||||||
|
|
||||||
{- unlocked pointer files that are staged, and whose content has not been
|
{- unlocked pointer files that are staged, and whose content has not been
|
||||||
- modified-}
|
- modified-}
|
||||||
|
@ -512,15 +512,15 @@ seekHelper c ww a (WorkTreeItems l) = do
|
||||||
and <$> sequence cleanups
|
and <$> sequence cleanups
|
||||||
seekHelper _ _ _ NoWorkTreeItems = return ([], pure True)
|
seekHelper _ _ _ NoWorkTreeItems = return ([], pure True)
|
||||||
|
|
||||||
data WarnUnmatchWhen = WarnUnmatchLsFiles | WarnUnmatchWorkTreeItems
|
data WarnUnmatchWhen = WarnUnmatchLsFiles String | WarnUnmatchWorkTreeItems String
|
||||||
|
|
||||||
seekOptions :: WarnUnmatchWhen -> Annex [LsFiles.Options]
|
seekOptions :: WarnUnmatchWhen -> Annex [LsFiles.Options]
|
||||||
seekOptions WarnUnmatchLsFiles =
|
seekOptions (WarnUnmatchLsFiles _) =
|
||||||
ifM (annexSkipUnknown <$> Annex.getGitConfig)
|
ifM (annexSkipUnknown <$> Annex.getGitConfig)
|
||||||
( return []
|
( return []
|
||||||
, return [LsFiles.ErrorUnmatch]
|
, return [LsFiles.ErrorUnmatch]
|
||||||
)
|
)
|
||||||
seekOptions WarnUnmatchWorkTreeItems = return []
|
seekOptions (WarnUnmatchWorkTreeItems _) = return []
|
||||||
|
|
||||||
-- Items in the work tree, which may be files or directories.
|
-- Items in the work tree, which may be files or directories.
|
||||||
data WorkTreeItems
|
data WorkTreeItems
|
||||||
|
@ -554,23 +554,23 @@ workTreeItems = workTreeItems' (AllowHidden False)
|
||||||
|
|
||||||
workTreeItems' :: AllowHidden -> WarnUnmatchWhen -> CmdParams -> Annex WorkTreeItems
|
workTreeItems' :: AllowHidden -> WarnUnmatchWhen -> CmdParams -> Annex WorkTreeItems
|
||||||
workTreeItems' (AllowHidden allowhidden) ww ps = case ww of
|
workTreeItems' (AllowHidden allowhidden) ww ps = case ww of
|
||||||
WarnUnmatchWorkTreeItems -> runcheck
|
(WarnUnmatchWorkTreeItems action) -> runcheck action
|
||||||
WarnUnmatchLsFiles ->
|
(WarnUnmatchLsFiles action) ->
|
||||||
ifM (annexSkipUnknown <$> Annex.getGitConfig)
|
ifM (annexSkipUnknown <$> Annex.getGitConfig)
|
||||||
( runcheck
|
( runcheck action
|
||||||
, return $ WorkTreeItems ps
|
, return $ WorkTreeItems ps
|
||||||
)
|
)
|
||||||
where
|
where
|
||||||
runcheck = do
|
runcheck action = do
|
||||||
currbranch <- getCurrentBranch
|
currbranch <- getCurrentBranch
|
||||||
stopattop <- prepviasymlink
|
stopattop <- prepviasymlink
|
||||||
ps' <- flip filterM ps $ \p -> do
|
ps' <- flip filterM ps $ \p -> do
|
||||||
let p' = toRawFilePath p
|
let p' = toRawFilePath p
|
||||||
relf <- liftIO $ relPathCwdToFile p'
|
relf <- liftIO $ relPathCwdToFile p'
|
||||||
ifM (not <$> (exists p' <||> hidden currbranch relf))
|
ifM (not <$> (exists p' <||> hidden currbranch relf))
|
||||||
( prob (QuotedPath (toRawFilePath p) <> " not found")
|
( prob action FileNotFound p' "not found"
|
||||||
, ifM (viasymlink stopattop (upFrom relf))
|
, ifM (viasymlink stopattop (upFrom relf))
|
||||||
( prob (QuotedPath (toRawFilePath p) <> " is beyond a symbolic link")
|
( prob action FileBeyondSymbolicLink p' "is beyond a symbolic link"
|
||||||
, return True
|
, return True
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
|
@ -605,8 +605,8 @@ workTreeItems' (AllowHidden allowhidden) ww ps = case ww of
|
||||||
<$> catObjectMetaDataHidden f currbranch
|
<$> catObjectMetaDataHidden f currbranch
|
||||||
| otherwise = return False
|
| otherwise = return False
|
||||||
|
|
||||||
prob msg = do
|
prob action errorid p msg = do
|
||||||
toplevelWarning False msg
|
toplevelFileProblem False errorid msg action p Nothing (SeekInput [fromRawFilePath p])
|
||||||
Annex.incError
|
Annex.incError
|
||||||
return False
|
return False
|
||||||
|
|
||||||
|
|
|
@ -119,7 +119,7 @@ seek o = startConcurrency commandStages $ do
|
||||||
-- are not known to git yet, since this will add
|
-- are not known to git yet, since this will add
|
||||||
-- them. Instead, have workTreeItems warn about other
|
-- them. Instead, have workTreeItems warn about other
|
||||||
-- problems, like files that don't exist.
|
-- problems, like files that don't exist.
|
||||||
let ww = WarnUnmatchWorkTreeItems
|
let ww = WarnUnmatchWorkTreeItems "add"
|
||||||
l <- workTreeItems ww (addThese o)
|
l <- workTreeItems ww (addThese o)
|
||||||
let go b a = a ww (commandAction . gofile b) l
|
let go b a = a ww (commandAction . gofile b) l
|
||||||
unless (updateOnly o) $
|
unless (updateOnly o) $
|
||||||
|
|
|
@ -60,7 +60,7 @@ seek' o fto = startConcurrency (Command.Move.stages fto) $ do
|
||||||
Batch fmt -> batchOnly (keyOptions o) (copyFiles o) $
|
Batch fmt -> batchOnly (keyOptions o) (copyFiles o) $
|
||||||
batchAnnexed fmt seeker keyaction
|
batchAnnexed fmt seeker keyaction
|
||||||
where
|
where
|
||||||
ww = WarnUnmatchLsFiles
|
ww = WarnUnmatchLsFiles "copy"
|
||||||
|
|
||||||
seeker = AnnexedFileSeeker
|
seeker = AnnexedFileSeeker
|
||||||
{ startAction = start o fto
|
{ startAction = start o fto
|
||||||
|
|
|
@ -74,7 +74,7 @@ seek o = startConcurrency commandStages $ do
|
||||||
Batch fmt -> batchOnly (keyOptions o) (dropFiles o) $
|
Batch fmt -> batchOnly (keyOptions o) (dropFiles o) $
|
||||||
batchAnnexed fmt seeker (startKeys o from)
|
batchAnnexed fmt seeker (startKeys o from)
|
||||||
where
|
where
|
||||||
ww = WarnUnmatchLsFiles
|
ww = WarnUnmatchLsFiles "drop"
|
||||||
|
|
||||||
start :: DropOptions -> Maybe Remote -> SeekInput -> RawFilePath -> Key -> CommandStart
|
start :: DropOptions -> Maybe Remote -> SeekInput -> RawFilePath -> Key -> CommandStart
|
||||||
start o from si file key = start' o from key afile ai si
|
start o from si file key = start' o from key afile ai si
|
||||||
|
|
|
@ -192,4 +192,4 @@ seek o = withOtherTmp $ \tmpdir -> do
|
||||||
c <- inRepo $ Git.commitTree cmode cmessage [] t
|
c <- inRepo $ Git.commitTree cmode cmessage [] t
|
||||||
liftIO $ putStrLn (fromRef c)
|
liftIO $ putStrLn (fromRef c)
|
||||||
where
|
where
|
||||||
ww = WarnUnmatchLsFiles
|
ww = WarnUnmatchLsFiles "filter-branch"
|
||||||
|
|
|
@ -75,7 +75,7 @@ seek o = do
|
||||||
Batch fmt -> batchOnly (keyOptions o) (findThese o) $
|
Batch fmt -> batchOnly (keyOptions o) (findThese o) $
|
||||||
batchAnnexedFiles fmt seeker
|
batchAnnexedFiles fmt seeker
|
||||||
where
|
where
|
||||||
ww = WarnUnmatchLsFiles
|
ww = WarnUnmatchLsFiles "find"
|
||||||
|
|
||||||
-- Default to needing content to be present, but if the user specified a
|
-- Default to needing content to be present, but if the user specified a
|
||||||
-- limit, content does not need to be present.
|
-- limit, content does not need to be present.
|
||||||
|
|
|
@ -35,7 +35,7 @@ seek :: CmdParams -> CommandSeek
|
||||||
seek ps = unlessM crippledFileSystem $
|
seek ps = unlessM crippledFileSystem $
|
||||||
withFilesInGitAnnex ww seeker =<< workTreeItems ww ps
|
withFilesInGitAnnex ww seeker =<< workTreeItems ww ps
|
||||||
where
|
where
|
||||||
ww = WarnUnmatchLsFiles
|
ww = WarnUnmatchLsFiles "fix"
|
||||||
seeker = AnnexedFileSeeker
|
seeker = AnnexedFileSeeker
|
||||||
{ startAction = start FixAll
|
{ startAction = start FixAll
|
||||||
, checkContentPresent = Nothing
|
, checkContentPresent = Nothing
|
||||||
|
|
|
@ -113,7 +113,7 @@ seek o = startConcurrency commandStages $ do
|
||||||
cleanupIncremental i
|
cleanupIncremental i
|
||||||
void $ tryIO $ recordActivity Fsck u
|
void $ tryIO $ recordActivity Fsck u
|
||||||
where
|
where
|
||||||
ww = WarnUnmatchLsFiles
|
ww = WarnUnmatchLsFiles "fsck"
|
||||||
|
|
||||||
checkDeadRepo :: UUID -> Annex ()
|
checkDeadRepo :: UUID -> Annex ()
|
||||||
checkDeadRepo u =
|
checkDeadRepo u =
|
||||||
|
|
|
@ -53,7 +53,7 @@ seek o = startConcurrency transferStages $ do
|
||||||
Batch fmt -> batchOnly (keyOptions o) (getFiles o) $
|
Batch fmt -> batchOnly (keyOptions o) (getFiles o) $
|
||||||
batchAnnexed fmt seeker (startKeys from)
|
batchAnnexed fmt seeker (startKeys from)
|
||||||
where
|
where
|
||||||
ww = WarnUnmatchLsFiles
|
ww = WarnUnmatchLsFiles "get"
|
||||||
|
|
||||||
start :: GetOptions -> Maybe Remote -> SeekInput -> RawFilePath -> Key -> CommandStart
|
start :: GetOptions -> Maybe Remote -> SeekInput -> RawFilePath -> Key -> CommandStart
|
||||||
start o from si file key = start' expensivecheck from key afile ai si
|
start o from si file key = start' expensivecheck from key afile ai si
|
||||||
|
|
|
@ -49,7 +49,7 @@ seek o = do
|
||||||
withFilesInGitAnnex ww seeker
|
withFilesInGitAnnex ww seeker
|
||||||
=<< workTreeItems ww (inprogressFiles o)
|
=<< workTreeItems ww (inprogressFiles o)
|
||||||
where
|
where
|
||||||
ww = WarnUnmatchLsFiles
|
ww = WarnUnmatchLsFiles "inprogress"
|
||||||
|
|
||||||
start :: IsTerminal -> S.Set Key -> SeekInput -> RawFilePath -> Key -> CommandStart
|
start :: IsTerminal -> S.Set Key -> SeekInput -> RawFilePath -> Key -> CommandStart
|
||||||
start isterminal s _si _file k
|
start isterminal s _si _file k
|
||||||
|
|
|
@ -56,7 +56,7 @@ seek o = do
|
||||||
}
|
}
|
||||||
withFilesInGitAnnex ww seeker =<< workTreeItems ww (listThese o)
|
withFilesInGitAnnex ww seeker =<< workTreeItems ww (listThese o)
|
||||||
where
|
where
|
||||||
ww = WarnUnmatchLsFiles
|
ww = WarnUnmatchLsFiles "list"
|
||||||
|
|
||||||
getList :: ListOptions -> Annex [(UUID, RemoteName, TrustLevel)]
|
getList :: ListOptions -> Annex [(UUID, RemoteName, TrustLevel)]
|
||||||
getList o
|
getList o
|
||||||
|
|
|
@ -32,7 +32,7 @@ cmd = withAnnexOptions [jsonOptions, annexedMatchingOptions] $
|
||||||
seek :: CmdParams -> CommandSeek
|
seek :: CmdParams -> CommandSeek
|
||||||
seek ps = withFilesInGitAnnex ww seeker =<< workTreeItems ww ps
|
seek ps = withFilesInGitAnnex ww seeker =<< workTreeItems ww ps
|
||||||
where
|
where
|
||||||
ww = WarnUnmatchLsFiles
|
ww = WarnUnmatchLsFiles "lock"
|
||||||
seeker = AnnexedFileSeeker
|
seeker = AnnexedFileSeeker
|
||||||
{ startAction = start
|
{ startAction = start
|
||||||
, checkContentPresent = Nothing
|
, checkContentPresent = Nothing
|
||||||
|
|
|
@ -105,7 +105,7 @@ seek o = ifM (null <$> Annex.Branch.getUnmergedRefs)
|
||||||
, giveup "This repository is read-only, and there are unmerged git-annex branches, which prevents displaying location log changes. (Set annex.merge-annex-branches to false to ignore the unmerged git-annex branches.)"
|
, giveup "This repository is read-only, and there are unmerged git-annex branches, which prevents displaying location log changes. (Set annex.merge-annex-branches to false to ignore the unmerged git-annex branches.)"
|
||||||
)
|
)
|
||||||
where
|
where
|
||||||
ww = WarnUnmatchLsFiles
|
ww = WarnUnmatchLsFiles "log"
|
||||||
|
|
||||||
start :: LogOptions -> (FilePath -> Outputter) -> SeekInput -> RawFilePath -> Key -> CommandStart
|
start :: LogOptions -> (FilePath -> Outputter) -> SeekInput -> RawFilePath -> Key -> CommandStart
|
||||||
start o outputter _ file key = do
|
start o outputter _ file key = do
|
||||||
|
|
|
@ -76,7 +76,7 @@ seek :: MetaDataOptions -> CommandSeek
|
||||||
seek o = case batchOption o of
|
seek o = case batchOption o of
|
||||||
NoBatch -> do
|
NoBatch -> do
|
||||||
c <- currentVectorClock
|
c <- currentVectorClock
|
||||||
let ww = WarnUnmatchLsFiles
|
let ww = WarnUnmatchLsFiles "metadata"
|
||||||
let seeker = AnnexedFileSeeker
|
let seeker = AnnexedFileSeeker
|
||||||
{ startAction = start c o
|
{ startAction = start c o
|
||||||
, checkContentPresent = Nothing
|
, checkContentPresent = Nothing
|
||||||
|
|
|
@ -41,7 +41,7 @@ optParser desc = MigrateOptions
|
||||||
seek :: MigrateOptions -> CommandSeek
|
seek :: MigrateOptions -> CommandSeek
|
||||||
seek o = withFilesInGitAnnex ww seeker =<< workTreeItems ww (migrateThese o)
|
seek o = withFilesInGitAnnex ww seeker =<< workTreeItems ww (migrateThese o)
|
||||||
where
|
where
|
||||||
ww = WarnUnmatchLsFiles
|
ww = WarnUnmatchLsFiles "migrate"
|
||||||
seeker = AnnexedFileSeeker
|
seeker = AnnexedFileSeeker
|
||||||
{ startAction = start o
|
{ startAction = start o
|
||||||
, checkContentPresent = Nothing
|
, checkContentPresent = Nothing
|
||||||
|
|
|
@ -50,7 +50,7 @@ seek o = startConcurrency stages $
|
||||||
stages = case fromToOptions o of
|
stages = case fromToOptions o of
|
||||||
FromRemote _ -> transferStages
|
FromRemote _ -> transferStages
|
||||||
ToRemote _ -> commandStages
|
ToRemote _ -> commandStages
|
||||||
ww = WarnUnmatchLsFiles
|
ww = WarnUnmatchLsFiles "mirror"
|
||||||
seeker = AnnexedFileSeeker
|
seeker = AnnexedFileSeeker
|
||||||
{ startAction = start o
|
{ startAction = start o
|
||||||
, checkContentPresent = Nothing
|
, checkContentPresent = Nothing
|
||||||
|
|
|
@ -84,7 +84,7 @@ seek' o fto = startConcurrency (stages fto) $ do
|
||||||
, usesLocationLog = True
|
, usesLocationLog = True
|
||||||
}
|
}
|
||||||
keyaction = startKey fto (removeWhen o)
|
keyaction = startKey fto (removeWhen o)
|
||||||
ww = WarnUnmatchLsFiles
|
ww = WarnUnmatchLsFiles "move"
|
||||||
|
|
||||||
stages :: FromToHereOptions -> UsedStages
|
stages :: FromToHereOptions -> UsedStages
|
||||||
stages (FromOrToRemote (FromRemote _)) = transferStages
|
stages (FromOrToRemote (FromRemote _)) = transferStages
|
||||||
|
|
|
@ -131,7 +131,7 @@ send ups fs = do
|
||||||
-- expensive.
|
-- expensive.
|
||||||
starting "sending files" (ActionItemOther Nothing) (SeekInput []) $
|
starting "sending files" (ActionItemOther Nothing) (SeekInput []) $
|
||||||
withTmpFile "send" $ \t h -> do
|
withTmpFile "send" $ \t h -> do
|
||||||
let ww = WarnUnmatchLsFiles
|
let ww = WarnUnmatchLsFiles "multicast"
|
||||||
(fs', cleanup) <- seekHelper id ww LsFiles.inRepo
|
(fs', cleanup) <- seekHelper id ww LsFiles.inRepo
|
||||||
=<< workTreeItems ww fs
|
=<< workTreeItems ww fs
|
||||||
matcher <- Limit.getMatcher
|
matcher <- Limit.getMatcher
|
||||||
|
|
|
@ -32,10 +32,10 @@ cmd = command "pre-commit" SectionPlumbing
|
||||||
|
|
||||||
seek :: CmdParams -> CommandSeek
|
seek :: CmdParams -> CommandSeek
|
||||||
seek ps = do
|
seek ps = do
|
||||||
let ww = WarnUnmatchWorkTreeItems
|
let ww = WarnUnmatchWorkTreeItems "pre-commit"
|
||||||
l <- workTreeItems ww ps
|
l <- workTreeItems ww ps
|
||||||
-- fix symlinks to files being committed
|
-- fix symlinks to files being committed
|
||||||
flip withFilesToBeCommitted l $ \(si, f) -> commandAction $
|
flip (withFilesToBeCommitted ww) l $ \(si, f) -> commandAction $
|
||||||
maybe stop (Command.Fix.start Command.Fix.FixSymlinks si f)
|
maybe stop (Command.Fix.start Command.Fix.FixSymlinks si f)
|
||||||
=<< isAnnexLink f
|
=<< isAnnexLink f
|
||||||
-- after a merge conflict or git cherry-pick or stash, pointer
|
-- after a merge conflict or git cherry-pick or stash, pointer
|
||||||
|
|
|
@ -794,7 +794,7 @@ seekSyncContent o rs currbranch = do
|
||||||
in seekFiltered (const (pure True)) filterer $
|
in seekFiltered (const (pure True)) filterer $
|
||||||
seekHelper id ww (LsFiles.inRepoOrBranch origbranch) l
|
seekHelper id ww (LsFiles.inRepoOrBranch origbranch) l
|
||||||
|
|
||||||
ww = WarnUnmatchLsFiles
|
ww = WarnUnmatchLsFiles "sync"
|
||||||
|
|
||||||
gofile bloom mvar _ f k =
|
gofile bloom mvar _ f k =
|
||||||
go (Right bloom) mvar (AssociatedFile (Just f)) k
|
go (Right bloom) mvar (AssociatedFile (Just f)) k
|
||||||
|
|
|
@ -30,7 +30,7 @@ cmd = withAnnexOptions [annexedMatchingOptions] $
|
||||||
seek :: CmdParams -> CommandSeek
|
seek :: CmdParams -> CommandSeek
|
||||||
seek ps = withFilesInGitAnnex ww (seeker False) =<< workTreeItems ww ps
|
seek ps = withFilesInGitAnnex ww (seeker False) =<< workTreeItems ww ps
|
||||||
where
|
where
|
||||||
ww = WarnUnmatchLsFiles
|
ww = WarnUnmatchLsFiles "unannex"
|
||||||
|
|
||||||
seeker :: Bool -> AnnexedFileSeeker
|
seeker :: Bool -> AnnexedFileSeeker
|
||||||
seeker fast = AnnexedFileSeeker
|
seeker fast = AnnexedFileSeeker
|
||||||
|
|
|
@ -53,13 +53,13 @@ seek ps = do
|
||||||
l <- workTreeItems ww ps
|
l <- workTreeItems ww ps
|
||||||
withFilesNotInGit
|
withFilesNotInGit
|
||||||
(CheckGitIgnore False)
|
(CheckGitIgnore False)
|
||||||
WarnUnmatchWorkTreeItems
|
(WarnUnmatchWorkTreeItems "uninit")
|
||||||
checksymlinks
|
checksymlinks
|
||||||
l
|
l
|
||||||
withFilesInGitAnnex ww (Command.Unannex.seeker True) l
|
withFilesInGitAnnex ww (Command.Unannex.seeker True) l
|
||||||
finish
|
finish
|
||||||
where
|
where
|
||||||
ww = WarnUnmatchLsFiles
|
ww = WarnUnmatchLsFiles "uninit"
|
||||||
checksymlinks (_, f) =
|
checksymlinks (_, f) =
|
||||||
commandAction $ lookupKey f >>= \case
|
commandAction $ lookupKey f >>= \case
|
||||||
Nothing -> stop
|
Nothing -> stop
|
||||||
|
|
|
@ -33,7 +33,7 @@ mkcmd n d = withAnnexOptions [jsonOptions, annexedMatchingOptions] $
|
||||||
seek :: CmdParams -> CommandSeek
|
seek :: CmdParams -> CommandSeek
|
||||||
seek ps = withFilesInGitAnnex ww seeker =<< workTreeItems ww ps
|
seek ps = withFilesInGitAnnex ww seeker =<< workTreeItems ww ps
|
||||||
where
|
where
|
||||||
ww = WarnUnmatchLsFiles
|
ww = WarnUnmatchLsFiles "unlock"
|
||||||
seeker = AnnexedFileSeeker
|
seeker = AnnexedFileSeeker
|
||||||
{ startAction = start
|
{ startAction = start
|
||||||
, checkContentPresent = Nothing
|
, checkContentPresent = Nothing
|
||||||
|
|
|
@ -64,7 +64,7 @@ seek o = do
|
||||||
Batch fmt -> batchOnly (keyOptions o) (whereisFiles o) $
|
Batch fmt -> batchOnly (keyOptions o) (whereisFiles o) $
|
||||||
batchAnnexed fmt seeker (startKeys o m)
|
batchAnnexed fmt seeker (startKeys o m)
|
||||||
where
|
where
|
||||||
ww = WarnUnmatchLsFiles
|
ww = WarnUnmatchLsFiles "whereis"
|
||||||
|
|
||||||
start :: WhereisOptions -> M.Map UUID Remote -> SeekInput -> RawFilePath -> Key -> CommandStart
|
start :: WhereisOptions -> M.Map UUID Remote -> SeekInput -> RawFilePath -> Key -> CommandStart
|
||||||
start o remotemap si file key =
|
start o remotemap si file key =
|
||||||
|
|
22
Messages.hs
22
Messages.hs
|
@ -27,6 +27,8 @@ module Messages (
|
||||||
showEndFail,
|
showEndFail,
|
||||||
showEndResult,
|
showEndResult,
|
||||||
endResult,
|
endResult,
|
||||||
|
ErrorId(..),
|
||||||
|
toplevelFileProblem,
|
||||||
toplevelWarning,
|
toplevelWarning,
|
||||||
warning,
|
warning,
|
||||||
earlyWarning,
|
earlyWarning,
|
||||||
|
@ -34,6 +36,7 @@ module Messages (
|
||||||
indent,
|
indent,
|
||||||
JSON.JSONChunk(..),
|
JSON.JSONChunk(..),
|
||||||
maybeShowJSON,
|
maybeShowJSON,
|
||||||
|
maybeShowJSON',
|
||||||
showFullJSON,
|
showFullJSON,
|
||||||
showCustom,
|
showCustom,
|
||||||
showHeader,
|
showHeader,
|
||||||
|
@ -197,8 +200,18 @@ endResult :: Bool -> S.ByteString
|
||||||
endResult True = "ok"
|
endResult True = "ok"
|
||||||
endResult False = "failed"
|
endResult False = "failed"
|
||||||
|
|
||||||
|
toplevelMsg :: StringContainingQuotedPath -> StringContainingQuotedPath
|
||||||
|
toplevelMsg = ("git-annex: " <>)
|
||||||
|
|
||||||
|
toplevelFileProblem :: Bool -> ErrorId -> StringContainingQuotedPath -> String -> RawFilePath -> Maybe Key -> SeekInput -> Annex ()
|
||||||
|
toplevelFileProblem makeway errorid msg action file mkey si = do
|
||||||
|
maybeShowJSON' $ JSON.start action (Just file) mkey si
|
||||||
|
maybeShowJSON' $ JSON.errorid errorid
|
||||||
|
warning' makeway id (toplevelMsg (QuotedPath file <> " " <> msg))
|
||||||
|
maybeShowJSON' $ JSON.end False
|
||||||
|
|
||||||
toplevelWarning :: Bool -> StringContainingQuotedPath -> Annex ()
|
toplevelWarning :: Bool -> StringContainingQuotedPath -> Annex ()
|
||||||
toplevelWarning makeway s = warning' makeway id ("git-annex: " <> s)
|
toplevelWarning makeway s = warning' makeway id (toplevelMsg s)
|
||||||
|
|
||||||
warning :: StringContainingQuotedPath -> Annex ()
|
warning :: StringContainingQuotedPath -> Annex ()
|
||||||
warning = warning' True indent
|
warning = warning' True indent
|
||||||
|
@ -207,10 +220,10 @@ earlyWarning :: StringContainingQuotedPath -> Annex ()
|
||||||
earlyWarning = warning' False id
|
earlyWarning = warning' False id
|
||||||
|
|
||||||
warning' :: Bool -> (S.ByteString -> S.ByteString) -> StringContainingQuotedPath -> Annex ()
|
warning' :: Bool -> (S.ByteString -> S.ByteString) -> StringContainingQuotedPath -> Annex ()
|
||||||
warning' makeway consolewhitespacef w = do
|
warning' makeway consolewhitespacef msg = do
|
||||||
when makeway $
|
when makeway $
|
||||||
outputMessage JSON.none id "\n"
|
outputMessage JSON.none id "\n"
|
||||||
outputError (\s -> consolewhitespacef s <> "\n") w
|
outputError (\s -> consolewhitespacef s <> "\n") msg
|
||||||
|
|
||||||
{- Not concurrent output safe. -}
|
{- Not concurrent output safe. -}
|
||||||
warningIO :: String -> IO ()
|
warningIO :: String -> IO ()
|
||||||
|
@ -226,6 +239,9 @@ indent = S.intercalate "\n" . map (" " <>) . S8.lines
|
||||||
maybeShowJSON :: JSON.JSONChunk v -> Annex ()
|
maybeShowJSON :: JSON.JSONChunk v -> Annex ()
|
||||||
maybeShowJSON v = void $ withMessageState $ bufferJSON (JSON.add v)
|
maybeShowJSON v = void $ withMessageState $ bufferJSON (JSON.add v)
|
||||||
|
|
||||||
|
maybeShowJSON' :: JSON.JSONBuilder -> Annex ()
|
||||||
|
maybeShowJSON' v = void $ withMessageState $ bufferJSON v
|
||||||
|
|
||||||
{- Shows a complete JSON value, only when in json mode. -}
|
{- Shows a complete JSON value, only when in json mode. -}
|
||||||
showFullJSON :: JSON.JSONChunk v -> Annex Bool
|
showFullJSON :: JSON.JSONChunk v -> Annex Bool
|
||||||
showFullJSON v = withMessageState $ bufferJSON (JSON.complete v)
|
showFullJSON v = withMessageState $ bufferJSON (JSON.complete v)
|
||||||
|
|
|
@ -20,6 +20,7 @@ module Messages.JSON (
|
||||||
addErrorMessage,
|
addErrorMessage,
|
||||||
note,
|
note,
|
||||||
info,
|
info,
|
||||||
|
errorid,
|
||||||
add,
|
add,
|
||||||
complete,
|
complete,
|
||||||
progress,
|
progress,
|
||||||
|
@ -51,6 +52,7 @@ import Utility.Metered
|
||||||
import Utility.Percentage
|
import Utility.Percentage
|
||||||
import Utility.Aeson
|
import Utility.Aeson
|
||||||
import Utility.FileSystemEncoding
|
import Utility.FileSystemEncoding
|
||||||
|
import Types.Messages
|
||||||
|
|
||||||
-- A global lock to avoid concurrent threads emitting json at the same time.
|
-- A global lock to avoid concurrent threads emitting json at the same time.
|
||||||
{-# NOINLINE emitLock #-}
|
{-# NOINLINE emitLock #-}
|
||||||
|
@ -68,7 +70,8 @@ emit' b = do
|
||||||
putMVar emitLock ()
|
putMVar emitLock ()
|
||||||
|
|
||||||
-- Building up a JSON object can be done by first using start,
|
-- Building up a JSON object can be done by first using start,
|
||||||
-- then add and note any number of times, and finally complete.
|
-- then add and note and errorid any number of times, and finally
|
||||||
|
-- complete.
|
||||||
type JSONBuilder = Maybe (Object, Bool) -> Maybe (Object, Bool)
|
type JSONBuilder = Maybe (Object, Bool) -> Maybe (Object, Bool)
|
||||||
|
|
||||||
none :: JSONBuilder
|
none :: JSONBuilder
|
||||||
|
@ -112,6 +115,12 @@ note s (Just (o, e)) = Just (HM.unionWith combinelines (HM.singleton "note" (toJ
|
||||||
String (old <> "\n" <> new)
|
String (old <> "\n" <> new)
|
||||||
combinelines new _old = new
|
combinelines new _old = new
|
||||||
|
|
||||||
|
errorid :: ErrorId -> JSONBuilder
|
||||||
|
errorid _ Nothing = Nothing
|
||||||
|
errorid eid (Just (o, e)) = Just (HM.unionWith replaceold (HM.singleton "errorid" (toJSON' (show eid))) o, e)
|
||||||
|
where
|
||||||
|
replaceold new _old = new
|
||||||
|
|
||||||
info :: String -> JSONBuilder
|
info :: String -> JSONBuilder
|
||||||
info s _ = case j of
|
info s _ = case j of
|
||||||
Object o -> Just (o, True)
|
Object o -> Just (o, True)
|
||||||
|
|
|
@ -84,3 +84,9 @@ data SerializedOutput
|
||||||
data SerializedOutputResponse
|
data SerializedOutputResponse
|
||||||
= ReadyPrompt
|
= ReadyPrompt
|
||||||
deriving (Eq, Show)
|
deriving (Eq, Show)
|
||||||
|
|
||||||
|
-- | Error identifiers. Avoid changing these.
|
||||||
|
data ErrorId
|
||||||
|
= FileNotFound
|
||||||
|
| FileBeyondSymbolicLink
|
||||||
|
deriving (Show)
|
||||||
|
|
|
@ -0,0 +1,19 @@
|
||||||
|
[[!comment format=mdwn
|
||||||
|
username="joey"
|
||||||
|
subject="""comment 8"""
|
||||||
|
date="2023-04-25T22:45:24Z"
|
||||||
|
content="""
|
||||||
|
Ok, implemented the simple alternative. Here's how it looks:
|
||||||
|
|
||||||
|
joey@darkstar:~/tmp/xxx>git-annex add 'dne' --json --json-error-messages
|
||||||
|
{"command":"add","error-messages":["git-annex: dne not found"],"errorid":"FileNotFound","file":"dne","input":["dne"],"success":false}
|
||||||
|
add: 1 failed
|
||||||
|
|
||||||
|
The errorid will remain stable. I can add those to other error messages
|
||||||
|
now, on request BTW.
|
||||||
|
|
||||||
|
Note that when git-annex relies on `git ls-files --error-unmatch` to
|
||||||
|
complain about nonexistant or non-git files, the error messages from
|
||||||
|
git will still be displayed to stderr, not this nice json. So
|
||||||
|
datalad will need to keep its parser for that part.
|
||||||
|
"""]]
|
Loading…
Reference in a new issue