-{-# LANGUAGE OverloadedStrings #-}
{-
-Copyright (C) 2015-2016 Ramakrishnan Muthukrishnan <ram@rkrishnan.org>
-
-This file is part of FuncTorrent.
-
-FuncTorrent 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 3 of the License, or
-(at your option) any later version.
-
-FuncTorrent 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 FuncTorrent; if not, see <http://www.gnu.org/licenses/>
--}
+ - Copyright (C) 2015-2016 Ramakrishnan Muthukrishnan <ram@rkrishnan.org>
+ -
+ - This file is part of FuncTorrent.
+ -
+ - FuncTorrent 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 3 of the License, or
+ - (at your option) any later version.
+ -
+ - FuncTorrent 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 FuncTorrent; if not, see <http://www.gnu.org/licenses/>
+ -}
+{-# LANGUAGE OverloadedStrings #-}
module FuncTorrent.Tracker
(runTracker
, getConnectedPeers
, connectedPeers = ps
, left = sz }
turl = head announceList
- case (getTrackerType turl) of
+ case getTrackerType turl of
Http -> do
_ <- forkIO $ trackerLoop turl port peerId infohash fsChan initialTState
runStateT (msgHandler msgChannel) initialTState
-{-# LANGUAGE OverloadedStrings #-}
{-
-Copyright (C) 2015-2016 Ramakrishnan Muthukrishnan <ram@rkrishnan.org>
-
-This file is part of FuncTorrent.
-
-FuncTorrent 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 3 of the License, or
-(at your option) any later version.
+ - Copyright (C) 2015-2016 Ramakrishnan Muthukrishnan <ram@rkrishnan.org>
+ -
+ - This file is part of FuncTorrent.
+ -
+ - FuncTorrent 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 3 of the License, or
+ - (at your option) any later version.
+ -
+ - FuncTorrent 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 FuncTorrent; if not, see <http://www.gnu.org/licenses/>
+ -}
-FuncTorrent 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 FuncTorrent; if not, see <http://www.gnu.org/licenses/>
--}
+{-# LANGUAGE OverloadedStrings #-}
module FuncTorrent.Tracker.Http
(trackerLoop
import Prelude hiding (lookup, splitAt)
import Control.Concurrent (threadDelay)
-import Control.Concurrent.MVar (readMVar, putMVar)
+import Control.Concurrent.MVar (readMVar, putMVar, isEmptyMVar, swapMVar)
import Control.Monad (forever)
import qualified Data.ByteString.Base16 as B16 (encode)
import Data.ByteString (ByteString)
down = FS.bytesWritten st
resp <- sendGetRequest url $ mkArgs port peerId up down (left tstate) infohash
case Benc.decode resp of
- Left e -> return () -- $ pack (show e)
+ Left e -> do
+ return () -- $ pack (show e)
Right trackerInfo ->
case parseTrackerResponse trackerInfo of
Left e -> return () -- e
Right tresp -> do
_ <- threadDelay $ fromIntegral (interval tresp)
- _ <- putMVar (connectedPeers tstate) (peers tresp)
- return () -- trackerLoop port peerId st
+ ps <- isEmptyMVar $ connectedPeers tstate
+ if ps
+ then do
+ _ <- putMVar (connectedPeers tstate) (peers tresp)
+ return ()
+ else do
+ _ <- swapMVar (connectedPeers tstate) (peers tresp)
+ return ()
parseTrackerResponse :: BVal -> Either ByteString TrackerResponse
parseTrackerResponse resp =