]> git.rkrishnan.org Git - functorrent.git/commitdiff
rewrite bitfieldToList
authorRamakrishnan Muthukrishnan <ram@rkrishnan.org>
Sun, 17 May 2015 07:52:12 +0000 (13:22 +0530)
committerRamakrishnan Muthukrishnan <ram@rkrishnan.org>
Sun, 17 May 2015 07:52:12 +0000 (13:22 +0530)
src/FuncTorrent/Peer.hs

index 93e4a1510bd841be2ae43f96fadb3d7b64fc98c4..481f5dac0b92b72fc0b85ed21442badd7444af24 100644 (file)
@@ -145,19 +145,20 @@ getMsg h = do
     msg <- hGet h l
     return $ decode $ fromStrict $ concat [lBS, msg]
 
+
 bsToInt :: ByteString -> Int
 bsToInt x = fromIntegral (runGet getWord32be (fromChunks (return x)))
 
-bitfieldToList :: [Word8] -> Integer -> [Integer]
-bitfieldToList [] pos = []
-bitfieldToList (b:bs) pos =
-  let setBits = [pos*8 + (toInteger i) | i <- [0..8], testBit b i]
-  in
-   setBits ++ (bitfieldToList bs (pos + 1))
+bitfieldToList :: [Word8] -> [Integer]
+bitfieldToList bs = go bs 0
+  where go [] _ = []
+        go (b:bs') pos =
+          let setBits = [pos*8 + (toInteger i) | i <- [0..8], testBit b i]
+          in
+           setBits ++ (go bs' (pos + 1))
 
 -- loop1 :: shake hands with all peers, find out the pieces they have, form PieceData.
 -- recvMsg :: Peer -> Handle -> Msg
-
 msgLoop :: Handle -> ByteString -> IO ()
 msgLoop h pieceHash =
   let numPieces = (toInteger . (`quot` 20) . BC.length) pieceHash