]> git.rkrishnan.org Git - functorrent.git/commitdiff
helper function: havePiece
authorRamakrishnan Muthukrishnan <ram@rkrishnan.org>
Sun, 19 Jul 2015 06:33:23 +0000 (12:03 +0530)
committerRamakrishnan Muthukrishnan <ram@rkrishnan.org>
Sun, 19 Jul 2015 06:33:23 +0000 (12:03 +0530)
src/FuncTorrent/Peer.hs

index e0a27c9f6a7a500efd2b2fb0a49fff84b15fdc50..490f08014f14344b046173d982fccebbb4d49390 100644 (file)
@@ -18,7 +18,7 @@ import Control.Monad (replicateM, liftM, forever)
 import Control.Applicative ((<$>), liftA3)
 import Data.Bits
 import Data.Word (Word8)
-import Data.Map (Map(..), fromList)
+import Data.Map (Map(..), fromList, (!))
 
 import FuncTorrent.Metainfo (Info(..), Metainfo(..))
 import FuncTorrent.Utils (splitN)
@@ -40,7 +40,7 @@ type Pieces = [PieceData]
 data PieceDlState = Pending
                   | InProgress
                   | Have
-                  deriving (Show)
+                  deriving (Show, Eq)
 
 -- todo - map with index to a new data structure (peers who have that piece amd state)
 data PieceData = PieceData { peers :: [Peer]        -- ^ list of peers who have this piece
@@ -69,13 +69,17 @@ data PeerMsg = KeepAliveMsg
 
 -- Make the initial Piece map, with the assumption that no peer has the
 -- piece and that every piece is pending download.
-mkPieceMap :: Integer -> ByteString -> Map Integer PieceData
+mkPieceMap :: Integer -> ByteString -> PieceMap
 mkPieceMap numPieces pieceHash = fromList kvs
   where kvs = [(i, PieceData { peers = []
                              , state = Pending
                              , hash = h }) | (i, h) <- zip [0..numPieces] hashes]
         hashes = splitN (fromIntegral numPieces) pieceHash
 
+havePiece :: PieceMap -> Integer -> Bool
+havePiece pm index =
+  state (pm ! index) == Have
+
 genHandShakeMsg :: ByteString -> String -> ByteString
 genHandShakeMsg infoHash peer_id = concat [pstrlen, pstr, reserved, infoHash, peerID]
   where pstrlen = singleton 19