summaryrefslogtreecommitdiff
path: root/src/Network/BitTorrent/PeerWire/Block.hs
diff options
context:
space:
mode:
authorSam T <sta.cs.vsu@gmail.com>2013-04-24 21:57:57 +0400
committerSam T <sta.cs.vsu@gmail.com>2013-04-24 21:57:57 +0400
commite94425b9c4764ec545284e06f1046e6601ec9ea7 (patch)
treef1dd866e3c9f44d67503c2e5affb917fb946dc70 /src/Network/BitTorrent/PeerWire/Block.hs
parenta7c82906934d7e640cda5c26448ce4fa232d2b46 (diff)
+ Add message and block pprint for logging.
Diffstat (limited to 'src/Network/BitTorrent/PeerWire/Block.hs')
-rw-r--r--src/Network/BitTorrent/PeerWire/Block.hs7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/Network/BitTorrent/PeerWire/Block.hs b/src/Network/BitTorrent/PeerWire/Block.hs
index ddbc1020..9685a4fb 100644
--- a/src/Network/BitTorrent/PeerWire/Block.hs
+++ b/src/Network/BitTorrent/PeerWire/Block.hs
@@ -4,6 +4,7 @@ module Network.BitTorrent.PeerWire.Block
4 , defaultBlockSize 4 , defaultBlockSize
5 , pieceIx, blockIx 5 , pieceIx, blockIx
6 , blockRange, ixRange, isPiece 6 , blockRange, ixRange, isPiece
7 , ppBlockIx, ppBlock
7 8
8 , putInt, getInt 9 , putInt, getInt
9 ) where 10 ) where
@@ -48,6 +49,10 @@ instance Serialize BlockIx where
48 putInt (ixLength ix) 49 putInt (ixLength ix)
49 {-# INLINE put #-} 50 {-# INLINE put #-}
50 51
52ppBlockIx :: BlockIx -> String
53ppBlockIx ix = "piece = " ++ show (ixPiece ix) ++ ", "
54 ++ "offset = " ++ show (ixOffset ix) ++ ", "
55 ++ "length = " ++ show (ixLength ix)
51 56
52data Block = Block { 57data Block = Block {
53 -- ^ Zero-based piece index. 58 -- ^ Zero-based piece index.
@@ -60,6 +65,8 @@ data Block = Block {
60 , blkData :: ByteString 65 , blkData :: ByteString
61 } deriving (Show, Eq) 66 } deriving (Show, Eq)
62 67
68ppBlock :: Block -> String
69ppBlock = ppBlockIx . blockIx
63 70
64-- | Widely used semi-official block size. 71-- | Widely used semi-official block size.
65defaultBlockSize :: Int 72defaultBlockSize :: Int