blob: abf62657a4b7d6b479b75dda035c074fab931c54 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
|
{-# LANGUAGE RankNTypes #-}
{-# LANGUAGE ExistentialQuantification #-}
{-# LANGUAGE RecordWildCards #-}
module Main (main) where
import Control.Concurrent
import Control.Monad.Trans
import Options.Applicative
import System.Environment
import System.Exit
import System.IO
import Text.Read
import Network.BitTorrent
{-----------------------------------------------------------------------
-- Command line arguments
-----------------------------------------------------------------------}
data TorrentBox = forall s. TorrentSource s => TorrentBox { unTorrentBox :: s }
data Args = Args
{ topic :: TorrentBox
, contentDir :: FilePath
}
argsParser :: Parser Args
argsParser = Args <$> (TorrentBox <$> infohashP <|> TorrentBox <$> torrentP)
<*> destDirP
where
infohashP :: Parser InfoHash
infohashP = argument readMaybe
(metavar "SHA1" <> help "infohash of torrent file")
torrentP :: Parser FilePath
torrentP = argument Just
( metavar "FILE"
<> help "A .torrent file"
)
destDirP :: Parser FilePath
destDirP = argument Just
( metavar "DIR"
<> help "Directory to put content"
)
argsInfo :: ParserInfo Args
argsInfo = info (helper <*> argsParser)
( fullDesc
<> progDesc "A simple CLI bittorrent client"
<> header "foo"
)
{-----------------------------------------------------------------------
-- Client
-----------------------------------------------------------------------}
run :: Args -> BitTorrent ()
run (Args (TorrentBox t) dir) = do
h <- openHandle dir t
start h
liftIO $ threadDelay 10000000000
main :: IO ()
main = execParser argsInfo >>= simpleClient . run
|