diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2017-03-26 15:31:08 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2017-03-26 15:31:08 +0300 |
commit | 136d7d82cdab45b50cafc7c3f53cac7805e3cb7c (patch) | |
tree | a99c6bba50ade7cbb55fac0b53608cb60f2c8725 /bin/Utils/PromptMessage.hs | |
parent | rename directories (diff) | |
download | windows-env-136d7d82cdab45b50cafc7c3f53cac7805e3cb7c.tar.gz windows-env-136d7d82cdab45b50cafc7c3f53cac7805e3cb7c.zip |
put utility modules to bin/Utils/
Diffstat (limited to 'bin/Utils/PromptMessage.hs')
-rw-r--r-- | bin/Utils/PromptMessage.hs | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/bin/Utils/PromptMessage.hs b/bin/Utils/PromptMessage.hs new file mode 100644 index 0000000..37fc1e6 --- /dev/null +++ b/bin/Utils/PromptMessage.hs @@ -0,0 +1,39 @@ +-- | +-- Copyright : (c) 2016 Egor Tensin <Egor.Tensin@gmail.com> +-- License : MIT +-- Maintainer : Egor.Tensin@gmail.com +-- Stability : experimental +-- Portability : Windows-only + +module Utils.PromptMessage + ( oldNewMessage + , newMessage + , wipeMessage + ) where + +import Text.Printf (printf) + +import qualified WindowsEnv + +oldNewMessage :: WindowsEnv.Profile -> WindowsEnv.VarName -> WindowsEnv.VarValue -> WindowsEnv.VarValue -> String +oldNewMessage profile name oldValue newValue = + descrMsg ++ oldValueMsg ++ newValueMsg + where + profileKey = WindowsEnv.profileKeyPath profile + descrMsg = printf "Saving variable '%s' to '%s'...\n" name (show profileKey) + oldValueMsg = printf "\tOld value: %s\n" oldValue + newValueMsg = printf "\tNew value: %s\n" newValue + +newMessage :: WindowsEnv.Profile -> WindowsEnv.VarName -> WindowsEnv.VarValue -> String +newMessage profile name newValue = + descrMsg ++ newValueMsg + where + profileKey = WindowsEnv.profileKeyPath profile + descrMsg = printf "Saving variable '%s' to '%s'...\n" name (show profileKey) + newValueMsg = printf "\tNew value: %s\n" newValue + +wipeMessage :: WindowsEnv.Profile -> WindowsEnv.VarName -> String +wipeMessage profile name = + printf "Deleting variable '%s' from '%s'...\n" name (show profileKey) + where + profileKey = WindowsEnv.profileKeyPath profile |