summaryrefslogtreecommitdiff
path: root/src/Data
diff options
context:
space:
mode:
authorSam Truzjan <pxqr.sta@gmail.com>2013-11-21 22:19:23 +0400
committerSam Truzjan <pxqr.sta@gmail.com>2013-11-21 22:19:23 +0400
commit6634363e46211ebb65bae32d4e6cccd940f401c1 (patch)
tree9cd41e246bd6c2d9c8470c64e4f0f1788e90460b /src/Data
parent08d1d4674ef38542e5db24fc398efefbc7bb35af (diff)
Refactor tracker messages
Diffstat (limited to 'src/Data')
-rw-r--r--src/Data/Torrent/Progress.hs18
1 files changed, 17 insertions, 1 deletions
diff --git a/src/Data/Torrent/Progress.hs b/src/Data/Torrent/Progress.hs
index c42af248..18a9cd7d 100644
--- a/src/Data/Torrent/Progress.hs
+++ b/src/Data/Torrent/Progress.hs
@@ -34,13 +34,14 @@ module Data.Torrent.Progress
34 ) where 34 ) where
35 35
36import Control.Applicative 36import Control.Applicative
37import Control.Lens 37import Control.Lens hiding ((%=))
38import Data.Aeson.TH 38import Data.Aeson.TH
39import Data.Default 39import Data.Default
40import Data.List as L 40import Data.List as L
41import Data.Monoid 41import Data.Monoid
42import Data.Serialize as S 42import Data.Serialize as S
43import Data.Ratio 43import Data.Ratio
44import Data.URLEncoded
44import Data.Word 45import Data.Word
45 46
46 47
@@ -58,6 +59,7 @@ data Progress = Progress
58$(makeLenses ''Progress) 59$(makeLenses ''Progress)
59$(deriveJSON L.tail ''Progress) 60$(deriveJSON L.tail ''Progress)
60 61
62-- | UDP tracker compatible encoding.
61instance Serialize Progress where 63instance Serialize Progress where
62 put Progress {..} = do 64 put Progress {..} = do
63 putWord64be $ fromIntegral _downloaded 65 putWord64be $ fromIntegral _downloaded
@@ -73,6 +75,7 @@ instance Default Progress where
73 def = Progress 0 0 0 75 def = Progress 0 0 0
74 {-# INLINE def #-} 76 {-# INLINE def #-}
75 77
78-- | Can be used to aggregate total progress.
76instance Monoid Progress where 79instance Monoid Progress where
77 mempty = def 80 mempty = def
78 {-# INLINE mempty #-} 81 {-# INLINE mempty #-}
@@ -84,6 +87,19 @@ instance Monoid Progress where
84 } 87 }
85 {-# INLINE mappend #-} 88 {-# INLINE mappend #-}
86 89
90instance URLShow Word64 where
91 urlShow = show
92 {-# INLINE urlShow #-}
93
94-- | HTTP Tracker protocol compatible encoding.
95instance URLEncode Progress where
96 urlEncode Progress {..} = mconcat
97 [ s "uploaded" %= _uploaded
98 , s "left" %= _left
99 , s "downloaded" %= _downloaded
100 ]
101 where s :: String -> String; s = id; {-# INLINE s #-}
102
87-- | Initial progress is used when there are no session before. 103-- | Initial progress is used when there are no session before.
88-- 104--
89-- Please note that tracker might penalize client some way if the do 105-- Please note that tracker might penalize client some way if the do