summaryrefslogtreecommitdiff
path: root/src/Network/BitTorrent.hs
diff options
context:
space:
mode:
Diffstat (limited to 'src/Network/BitTorrent.hs')
-rw-r--r--src/Network/BitTorrent.hs17
1 files changed, 15 insertions, 2 deletions
diff --git a/src/Network/BitTorrent.hs b/src/Network/BitTorrent.hs
index 5521a825..a9d06ab4 100644
--- a/src/Network/BitTorrent.hs
+++ b/src/Network/BitTorrent.hs
@@ -125,10 +125,23 @@ discover swarm @ SwarmSession {..} action = {-# SCC discover #-} do
125 Torrent management 125 Torrent management
126-----------------------------------------------------------------------} 126-----------------------------------------------------------------------}
127 127
128-- | Used to check torrent location before register torrent.
129validateLocation :: TorrentLoc -> IO Torrent
130validateLocation TorrentLoc {..} = do
131 t <- fromFile metafilePath
132-- exists <- doesDirectoryExist dataDirPath
133-- unless exists $ do
134-- throw undefined
135 return t
136
137
128-- | Register torrent and start downloading. 138-- | Register torrent and start downloading.
129addTorrent :: ClientSession -> TorrentLoc -> IO () 139addTorrent :: ClientSession -> TorrentLoc -> IO ()
130addTorrent clientSession loc @ TorrentLoc {..} = do 140addTorrent clientSession loc @ TorrentLoc {..} = do
131 torrent <- registerTorrent loc 141 torrent <- validateLocation loc
142-- registerTorrent loc tInfoHash
143-- when (bf is not full)
144
132 swarm <- newLeecher clientSession torrent 145 swarm <- newLeecher clientSession torrent
133 storage <- swarm `bindTo` dataDirPath 146 storage <- swarm `bindTo` dataDirPath
134 forkIO $ discover swarm $ do 147 forkIO $ discover swarm $ do
@@ -140,7 +153,7 @@ addTorrent clientSession loc @ TorrentLoc {..} = do
140 153
141-- | Unregister torrent and stop all running sessions. 154-- | Unregister torrent and stop all running sessions.
142removeTorrent :: ClientSession -> InfoHash -> IO () 155removeTorrent :: ClientSession -> InfoHash -> IO ()
143removeTorrent ses loc = atomically $ unregisterTorrent ses loc 156removeTorrent ses loc = undefined -- atomically $ unregisterTorrent ses loc
144 157
145{- 158{-
146-- | The same as 'removeTorrrent' torrent, but delete all torrent 159-- | The same as 'removeTorrrent' torrent, but delete all torrent