-- Copyright (C) 2003 David Roundy -- -- This program is free software; you can redistribute it and/or modify -- it under the terms of the GNU General Public License as published by -- the Free Software Foundation; either version 2, or (at your option) -- any later version. -- -- This program is distributed in the hope that it will be useful, -- but WITHOUT ANY WARRANTY; without even the implied warranty of -- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -- GNU General Public License for more details. -- -- You should have received a copy of the GNU General Public License -- along with this program; see the file COPYING. If not, write to -- the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -- Boston, MA 02110-1301, USA. module Darcs.UI.PrintPatch ( contextualPrintPatch , printContent , printContentWithPager , printFriendly , printSummary , showFriendly , showWithSummary ) where import Darcs.Prelude import Darcs.Patch ( description, showContextPatch, content, summary ) import Darcs.Patch.Apply ( ApplyState ) import Darcs.Patch.Show ( ShowContextPatch, ShowPatch, ShowPatchFor(ForDisplay) ) import Darcs.UI.External ( viewDocWith ) import Darcs.UI.Options.All ( Verbosity(..), WithContext(..), WithSummary(..) ) import Darcs.Util.Printer ( Doc, prefix, putDocLnWith, ($$) ) import Darcs.Util.Printer.Color ( fancyPrinters ) import Darcs.Util.Tree ( Tree ) import Darcs.Util.Tree.Monad ( virtualTreeIO ) -- | @'printFriendly' opts patch@ prints @patch@ in accordance with the flags -- in opts, ie, whether @--verbose@ or @--summary@ were passed at the -- command-line. printFriendly :: (ShowPatch p, ShowContextPatch p, ApplyState p ~ Tree) => Maybe (Tree IO) -> Verbosity -> WithSummary -> WithContext -> p wX wY -> IO () printFriendly (Just pristine) _ _ YesContext = contextualPrintPatch pristine printFriendly _ v s _ = putDocLnWith fancyPrinters . showFriendly v s -- | @'showFriendly' flags patch@ returns a 'Doc' representing the right -- way to show @patch@ given the list @flags@ of flags darcs was invoked with. showFriendly :: ShowPatch p => Verbosity -> WithSummary -> p wX wY -> Doc showFriendly Verbose _ = showWithContents showFriendly _ YesSummary = showWithSummary showFriendly _ NoSummary = description showWithSummary :: ShowPatch p => p wX wY -> Doc showWithSummary p = description p $$ prefix " " (summary p) showWithContents :: ShowPatch p => p wX wY -> Doc showWithContents p = description p $$ prefix " " (content p) printSummary :: ShowPatch p => p wX wY -> IO () printSummary = putDocLnWith fancyPrinters . prefix " " . summary printContent :: ShowPatch p => p wX wY -> IO () printContent = putDocLnWith fancyPrinters . prefix " " . content printContentWithPager :: ShowPatch p => p wX wY -> IO () printContentWithPager = viewDocWith fancyPrinters . prefix " " . content -- | 'contextualPrintPatch' prints a patch, together with its context, on -- standard output. contextualPrintPatch :: (ShowContextPatch p, ApplyState p ~ Tree) => Tree IO -> p wX wY -> IO () contextualPrintPatch s p = do (contextedPatch, _) <- virtualTreeIO (showContextPatch ForDisplay p) s putDocLnWith fancyPrinters contextedPatch