Diff
checker
टेक्स्ट
टेक्स्ट
छवियां
दस्तावेज़
Excel
फ़ोल्डर्स
Legal
Enterprise
डेस्कटॉप
मूल्य
साइन इन करें
Diffchecker डेस्कटॉप डाउनलोड करें
टेक्स्ट की तुलना करें
दो टेक्स्ट फ़ाइलों के बीच अंतर ढूंढें
उपकरण
इतिहास
रियल-टाइम एडिटर
अपरिवर्तित संक्षिप्त करें
लाइन रैप बंद
लेआउट
विभाजित
संयुक्त
परिवर्तन हाइलाइट करें
स्मार्ट
शब्द
अक्षर
सिंटैक्स हाइलाइटिंग
सिंटैक्स चुनें
अनदेखा करें
टेक्स्ट बदलें
पहले अंतर पर जाएँ
इनपुट संपादित करें
Diffchecker Desktop
Diffchecker चलाने का सबसे सुरक्षित तरीका। Diffchecker Desktop ऐप पाएं: आपके diffs कभी आपके कंप्यूटर से बाहर नहीं जाते!
Desktop पाएं
Untitled diff
बनाया गया
11 वर्ष पहले
Diff कभी समाप्त नहीं होता
साफ़
निर्यात करें
शेयर करें
समझाएं
41 हटाए गए
लाइनें
कुल
हटाया गया
अक्षर
कुल
हटाया गया
इस सुविधा का उपयोग जारी रखने के लिए, अपग्रेड करें
Diff
checker
Pro
मूल्य देखें
120 लाइनें
सभी को कॉपी करें
26 जोड़े गए
लाइनें
कुल
जोड़ा गया
अक्षर
कुल
जोड़ा गया
इस सुविधा का उपयोग जारी रखने के लिए, अपग्रेड करें
Diff
checker
Pro
मूल्य देखें
104 लाइनें
सभी को कॉपी करें
कॉपी
कॉपी हुआ
कॉपी
कॉपी हुआ
import Control.Concurrent
import Control.Concurrent
import Control.Concurrent.STM
import Control.Concurrent.STM
import Control.Concurrent.STM.TVar
import Control.Concurrent.STM.TVar
import Control.Monad
import Control.Monad
import System.Directory
import System.Directory
import System.Environment (getArgs)
import System.Environment (getArgs)
import System.Exit
import System.Exit
import System.INotify
import System.INotify
import System.IO
import System.IO
import System.Process
import System.Process
data Config =
data Config =
Config
Config
कॉपी
कॉपी हुआ
कॉपी
कॉपी हुआ
{
confOutputFile :: FilePath
{
confExecFile
:: FilePath
, confCabalFile
:: FilePath
, confWorking :: Bool
, confWorking :: Bool
} deriving (Show,Read)
} deriving (Show,Read)
main = do
main = do
args <- getArgs
args <- getArgs
let dir = head args
let dir = head args
कॉपी
कॉपी हुआ
कॉपी
कॉपी हुआ
let
cabalOutput
= args !! 1
let
execFile
= args !! 1
putStrLn $ "Watching directory: " ++ dir
putStrLn $ "Watching directory: " ++ dir
कॉपी
कॉपी हुआ
कॉपी
कॉपी हुआ
putStrLn $ "
Cabal output
file: " ++
cabalOutput
putStrLn $ "
Exec
file: " ++
execFile
contents
<-
getDirectoryContents dir
fileExists
<-
doesFileExist execFile
let contents' = filter filterCabal contents
if fileExists
case contents' of
then
do
(x:_) ->
do
let config = Config
execFile
False
let config = Config
cabalOutput x
False
runThread config dir
runThread config dir
कॉपी
कॉपी हुआ
कॉपी
कॉपी हुआ
[] ->
do
else
do
putStrLn
"No cabal
file
found
!"
putStrLn
$ "Exec
file
does not exist
!"
putStrLn "Exiting"
putStrLn "Exiting"
runThread config dir = do
runThread config dir = do
config <- newTVarIO config
config <- newTVarIO config
n <- initINotify
n <- initINotify
putStrLn "Press <Enter> to exit"
putStrLn "Press <Enter> to exit"
print n
print n
wd <- addWatch n
wd <- addWatch n
[ Modify, CloseWrite, Create, Delete, MoveIn, MoveOut ]
[ Modify, CloseWrite, Create, Delete, MoveIn, MoveOut ]
dir
dir
(eventHandler config)
(eventHandler config)
print wd
print wd
getLine
getLine
removeWatch wd
removeWatch wd
killINotify n
killINotify n
eventHandler :: TVar Config -> Event -> IO ()
eventHandler :: TVar Config -> Event -> IO ()
eventHandler conf x@(Modified _ (Just fp)) = handleFilteredFile conf x fp
eventHandler conf x@(Modified _ (Just fp)) = handleFilteredFile conf x fp
eventHandler conf x@(MovedIn _ fp _) = handleFilteredFile conf x fp
eventHandler conf x@(MovedIn _ fp _) = handleFilteredFile conf x fp
eventHandler conf x@(MovedOut _ fp _) = handleFilteredFile conf x fp
eventHandler conf x@(MovedOut _ fp _) = handleFilteredFile conf x fp
eventHandler conf x@(Created _ fp) = handleFilteredFile conf x fp
eventHandler conf x@(Created _ fp) = handleFilteredFile conf x fp
eventHandler conf x@(Deleted _ fp) = handleFilteredFile conf x fp
eventHandler conf x@(Deleted _ fp) = handleFilteredFile conf x fp
eventHandler _ _ = return ()
eventHandler _ _ = return ()
handleFilteredFile conf evt fp =
handleFilteredFile conf evt fp =
when (filterHS fp) $ print evt >> doWork conf
when (filterHS fp) $ print evt >> doWork conf
filterHS fp = fileExt fp == "hs"
filterHS fp = fileExt fp == "hs"
कॉपी
कॉपी हुआ
कॉपी
कॉपी हुआ
filterCabal fp = fileExt fp == "cabal"
fileExt = reverse
fileExt = reverse
. takeWhile (/= '.')
. takeWhile (/= '.')
. reverse
. reverse
doWork :: TVar Config -> IO ()
doWork :: TVar Config -> IO ()
doWork conf = do
doWork conf = do
config <- readTVarIO conf
config <- readTVarIO conf
if confWorking config
if confWorking config
then do
then do
print "Already working!"
print "Already working!"
return ()
return ()
else do
else do
print "New work available!"
print "New work available!"
atomically $ writeTVar conf (config { confWorking = True })
atomically $ writeTVar conf (config { confWorking = True })
_ <- forkIO $ runCI conf
_ <- forkIO $ runCI conf
return ()
return ()
runCI :: TVar Config -> IO ()
runCI :: TVar Config -> IO ()
runCI conf = do
runCI conf = do
कॉपी
कॉपी हुआ
कॉपी
कॉपी हुआ
runCIChain conf
config <- readTVarIO conf
config <- readTVarIO conf
कॉपी
कॉपी हुआ
कॉपी
कॉपी हुआ
contents <- readFile $ confExecFile config
execContents $ lines contents
atomically $ writeTVar conf (config { confWorking = False })
atomically $ writeTVar conf (config { confWorking = False })
return ()
return ()
कॉपी
कॉपी हुआ
कॉपी
कॉपी हुआ
runCIChain :: TVar Config -> IO ()
execContents ::
[String] -> IO Bool
runCIChain conf = do
execContents [] = return True
cabalBuild <- runCabal conf ["build"]
execContents (x:xs)
= do
print $ "*** cabal build result: " ++ show cabalBuild
let p = shell x
case cabalBuild of
(_,_,_,h
) <-
c
rea
te
Process
p
False -> return ()
e
xitCode
<- waitForProcess h
True -> do
case
exitCode
of
cabalTest <- runCabal conf ["test"]
ExitSuccess ->
execContents xs
print $ "*** cabal test result: " ++ show cabalTest
runCabal :: TVar Config ->
[String] -> IO Bool
runCabal conf args
= do
(code, out, err
) <-
rea
d
Process
WithE
xitCode
"cabal" args ""
config <- readTVarIO conf
let outputFile = confOutputFile config
_ <- when (out /= []) $ appendFile outputFile out
_ <- when (err /= []) $ appendFile outputFile err
case
code
of
ExitSuccess ->
return True
ExitFailure _ -> return False
ExitFailure _ -> return False
कॉपी
कॉपी हुआ
कॉपी
कॉपी हुआ
सेव किए गए Diffs
ऑरिजनल टेक्स्ट
फ़ाइल खोलें
import Control.Concurrent import Control.Concurrent.STM import Control.Concurrent.STM.TVar import Control.Monad import System.Directory import System.Environment (getArgs) import System.Exit import System.INotify import System.IO import System.Process data Config = Config { confOutputFile :: FilePath , confCabalFile :: FilePath , confWorking :: Bool } deriving (Show,Read) main = do args <- getArgs let dir = head args let cabalOutput = args !! 1 putStrLn $ "Watching directory: " ++ dir putStrLn $ "Cabal output file: " ++ cabalOutput contents <- getDirectoryContents dir let contents' = filter filterCabal contents case contents' of (x:_) -> do let config = Config cabalOutput x False runThread config dir [] -> do putStrLn "No cabal file found!" putStrLn "Exiting" runThread config dir = do config <- newTVarIO config n <- initINotify putStrLn "Press <Enter> to exit" print n wd <- addWatch n [ Modify, CloseWrite, Create, Delete, MoveIn, MoveOut ] dir (eventHandler config) print wd getLine removeWatch wd killINotify n eventHandler :: TVar Config -> Event -> IO () eventHandler conf x@(Modified _ (Just fp)) = handleFilteredFile conf x fp eventHandler conf x@(MovedIn _ fp _) = handleFilteredFile conf x fp eventHandler conf x@(MovedOut _ fp _) = handleFilteredFile conf x fp eventHandler conf x@(Created _ fp) = handleFilteredFile conf x fp eventHandler conf x@(Deleted _ fp) = handleFilteredFile conf x fp eventHandler _ _ = return () handleFilteredFile conf evt fp = when (filterHS fp) $ print evt >> doWork conf filterHS fp = fileExt fp == "hs" filterCabal fp = fileExt fp == "cabal" fileExt = reverse . takeWhile (/= '.') . reverse doWork :: TVar Config -> IO () doWork conf = do config <- readTVarIO conf if confWorking config then do print "Already working!" return () else do print "New work available!" atomically $ writeTVar conf (config { confWorking = True }) _ <- forkIO $ runCI conf return () runCI :: TVar Config -> IO () runCI conf = do runCIChain conf config <- readTVarIO conf atomically $ writeTVar conf (config { confWorking = False }) return () runCIChain :: TVar Config -> IO () runCIChain conf = do cabalBuild <- runCabal conf ["build"] print $ "*** cabal build result: " ++ show cabalBuild case cabalBuild of False -> return () True -> do cabalTest <- runCabal conf ["test"] print $ "*** cabal test result: " ++ show cabalTest runCabal :: TVar Config -> [String] -> IO Bool runCabal conf args = do (code, out, err) <- readProcessWithExitCode "cabal" args "" config <- readTVarIO conf let outputFile = confOutputFile config _ <- when (out /= []) $ appendFile outputFile out _ <- when (err /= []) $ appendFile outputFile err case code of ExitSuccess -> return True ExitFailure _ -> return False
परिवर्तित टेक्स्ट
फ़ाइल खोलें
import Control.Concurrent import Control.Concurrent.STM import Control.Concurrent.STM.TVar import Control.Monad import System.Directory import System.Environment (getArgs) import System.Exit import System.INotify import System.IO import System.Process data Config = Config { confExecFile :: FilePath , confWorking :: Bool } deriving (Show,Read) main = do args <- getArgs let dir = head args let execFile = args !! 1 putStrLn $ "Watching directory: " ++ dir putStrLn $ "Exec file: " ++ execFile fileExists <- doesFileExist execFile if fileExists then do let config = Config execFile False runThread config dir else do putStrLn $ "Exec file does not exist!" putStrLn "Exiting" runThread config dir = do config <- newTVarIO config n <- initINotify putStrLn "Press <Enter> to exit" print n wd <- addWatch n [ Modify, CloseWrite, Create, Delete, MoveIn, MoveOut ] dir (eventHandler config) print wd getLine removeWatch wd killINotify n eventHandler :: TVar Config -> Event -> IO () eventHandler conf x@(Modified _ (Just fp)) = handleFilteredFile conf x fp eventHandler conf x@(MovedIn _ fp _) = handleFilteredFile conf x fp eventHandler conf x@(MovedOut _ fp _) = handleFilteredFile conf x fp eventHandler conf x@(Created _ fp) = handleFilteredFile conf x fp eventHandler conf x@(Deleted _ fp) = handleFilteredFile conf x fp eventHandler _ _ = return () handleFilteredFile conf evt fp = when (filterHS fp) $ print evt >> doWork conf filterHS fp = fileExt fp == "hs" fileExt = reverse . takeWhile (/= '.') . reverse doWork :: TVar Config -> IO () doWork conf = do config <- readTVarIO conf if confWorking config then do print "Already working!" return () else do print "New work available!" atomically $ writeTVar conf (config { confWorking = True }) _ <- forkIO $ runCI conf return () runCI :: TVar Config -> IO () runCI conf = do config <- readTVarIO conf contents <- readFile $ confExecFile config execContents $ lines contents atomically $ writeTVar conf (config { confWorking = False }) return () execContents :: [String] -> IO Bool execContents [] = return True execContents (x:xs) = do let p = shell x (_,_,_,h) <- createProcess p exitCode <- waitForProcess h case exitCode of ExitSuccess -> execContents xs ExitFailure _ -> return False
अंतर खोजें