1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
|
-- TODO: make int's instances platform independent so we can make
-- library portable.
-- |
-- Copyright : (c) Sam T. 2013
-- License : MIT
-- Maintainer : pxqr.sta@gmail.com
-- Stability : stable
-- Portability : non-portable
--
-- This module provides convinient and fast way to serialize,
-- deserealize and construct/destructure Bencoded values with
-- optional fields.
--
-- It supports four different types of values:
--
-- * byte strings — represented as 'ByteString';
--
-- * integers — represented as 'Integer';
--
-- * lists - represented as ordinary lists;
--
-- * dictionaries — represented as 'Map';
--
-- To serialize any other types we need to make conversion. To
-- make conversion more convenient there is type class for it:
-- 'BEncodable'. Any textual strings are considered as UTF8 encoded
-- 'Text'.
--
-- The complete Augmented BNF syntax for bencoding format is:
--
--
-- > <BE> ::= <DICT> | <LIST> | <INT> | <STR>
-- >
-- > <DICT> ::= "d" 1 * (<STR> <BE>) "e"
-- > <LIST> ::= "l" 1 * <BE> "e"
-- > <INT> ::= "i" <SNUM> "e"
-- > <STR> ::= <NUM> ":" n * <CHAR>; where n equals the <NUM>
-- >
-- > <SNUM> ::= "-" <NUM> / <NUM>
-- > <NUM> ::= 1 * <DIGIT>
-- > <CHAR> ::= %
-- > <DIGIT> ::= "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9"
--
--
-- This module is considered to be imported qualified.
--
{-# LANGUAGE FlexibleInstances #-}
{-# LANGUAGE Trustworthy #-}
module Data.BEncode
( -- * Datatype
BEncode(..)
, Dict
-- * Construction && Destructuring
, BEncodable (..)
, dictAssoc
, Result
-- ** Dictionaries
-- *** Building
, (-->)
, (-->?)
, fromAssocs
, fromAscAssocs
-- *** Extraction
, reqKey
, optKey
, (>--)
, (>--?)
-- * Serialization
, encode
, decode
, encoded
, decoded
-- * Predicates
, isInteger
, isString
, isList
, isDict
-- * Extra
, builder
, parser
, decodingError
, printPretty
) where
import Control.Applicative
import Control.Monad
import Data.Int
import Data.Maybe (mapMaybe)
import Data.Monoid ((<>))
import Data.Foldable (foldMap)
import Data.Traversable (traverse)
import Data.Word (Word8, Word16, Word32, Word64, Word)
import Data.Map (Map)
import qualified Data.Map as M
import Data.Set (Set)
import qualified Data.Set as S
import Data.Attoparsec.ByteString.Char8 (Parser)
import qualified Data.Attoparsec.ByteString.Char8 as P
import Data.ByteString (ByteString)
import qualified Data.ByteString as B
import qualified Data.ByteString.Char8 as BC
import qualified Data.ByteString.Lazy as Lazy
import qualified Data.ByteString.Lazy.Builder as B
import qualified Data.ByteString.Lazy.Builder.ASCII as ASCII
import Data.ByteString.Internal as B (c2w, w2c)
import Data.Text (Text)
import qualified Data.Text.Encoding as T
import Data.Version
import Text.PrettyPrint hiding ((<>))
import qualified Text.ParserCombinators.ReadP as ReadP
type Dict = Map ByteString BEncode
-- | 'BEncode' is straightforward ADT for b-encoded values. Please
-- note that since dictionaries are sorted, in most cases we can
-- compare BEncoded values without serialization and vice versa.
-- Lists is not required to be sorted through. Also note that
-- 'BEncode' have JSON-like instance for 'Pretty'.
--
data BEncode = BInteger {-# UNPACK #-} !Int64
| BString !ByteString
| BList [BEncode]
| BDict Dict
deriving (Show, Read, Eq, Ord)
type Result = Either String
class BEncodable a where
toBEncode :: a -> BEncode
fromBEncode :: BEncode -> Result a
decodingError :: String -> Result a
decodingError s = Left ("fromBEncode: unable to decode " ++ s)
{-# INLINE decodingError #-}
instance BEncodable BEncode where
{-# SPECIALIZE instance BEncodable BEncode #-}
toBEncode = id
{-# INLINE toBEncode #-}
fromBEncode = Right
{-# INLINE fromBEncode #-}
instance BEncodable Int where
{-# SPECIALIZE instance BEncodable Int #-}
toBEncode = BInteger . fromIntegral
{-# INLINE toBEncode #-}
fromBEncode (BInteger i) = Right (fromIntegral i)
fromBEncode _ = decodingError "integer"
{-# INLINE fromBEncode #-}
instance BEncodable Bool where
toBEncode = toBEncode . fromEnum
{-# INLINE toBEncode #-}
fromBEncode b = do
i <- fromBEncode b
case i :: Int of
0 -> return False
1 -> return True
_ -> decodingError "bool"
{-# INLINE fromBEncode #-}
instance BEncodable Integer where
toBEncode = BInteger . fromIntegral
{-# INLINE toBEncode #-}
fromBEncode b = fromIntegral <$> (fromBEncode b :: Result Int)
{-# INLINE fromBEncode #-}
instance BEncodable ByteString where
toBEncode = BString
{-# INLINE toBEncode #-}
fromBEncode (BString s) = Right s
fromBEncode _ = decodingError "string"
{-# INLINE fromBEncode #-}
instance BEncodable Text where
toBEncode = toBEncode . T.encodeUtf8
{-# INLINE toBEncode #-}
fromBEncode b = T.decodeUtf8 <$> fromBEncode b
{-# INLINE fromBEncode #-}
instance BEncodable a => BEncodable [a] where
{-# SPECIALIZE instance BEncodable [BEncode] #-}
toBEncode = BList . map toBEncode
{-# INLINE toBEncode #-}
fromBEncode (BList xs) = mapM fromBEncode xs
fromBEncode _ = decodingError "list"
{-# INLINE fromBEncode #-}
instance BEncodable a => BEncodable (Map ByteString a) where
{-# SPECIALIZE instance BEncodable (Map ByteString BEncode) #-}
toBEncode = BDict . M.map toBEncode
{-# INLINE toBEncode #-}
fromBEncode (BDict d) = traverse fromBEncode d
fromBEncode _ = decodingError "dictionary"
{-# INLINE fromBEncode #-}
instance (Eq a, BEncodable a) => BEncodable (Set a) where
{-# SPECIALIZE instance (Eq a, BEncodable a) => BEncodable (Set a) #-}
toBEncode = BList . map toBEncode . S.toAscList
{-# INLINE toBEncode #-}
fromBEncode (BList xs) = S.fromAscList <$> traverse fromBEncode xs
fromBEncode _ = decodingError "Data.Set"
{-# INLINE fromBEncode #-}
instance BEncodable () where
{-# SPECIALIZE instance BEncodable () #-}
toBEncode () = BList []
{-# INLINE toBEncode #-}
fromBEncode (BList []) = Right ()
fromBEncode _ = decodingError "Unable to decode unit value"
{-# INLINE fromBEncode #-}
instance (BEncodable a, BEncodable b) => BEncodable (a, b) where
{-# SPECIALIZE instance (BEncodable a, BEncodable b) => BEncodable (a, b) #-}
toBEncode (a, b) = BList [toBEncode a, toBEncode b]
{-# INLINE toBEncode #-}
fromBEncode (BList [a, b]) = (,) <$> fromBEncode a <*> fromBEncode b
fromBEncode _ = decodingError "Unable to decode a pair."
{-# INLINE fromBEncode #-}
instance (BEncodable a, BEncodable b, BEncodable c) => BEncodable (a, b, c) where
{-# SPECIALIZE instance (BEncodable a, BEncodable b, BEncodable c)
=> BEncodable (a, b, c) #-}
{-# INLINE toBEncode #-}
toBEncode (a, b, c) = BList [toBEncode a, toBEncode b, toBEncode c]
fromBEncode (BList [a, b, c]) =
(,,) <$> fromBEncode a <*> fromBEncode b <*> fromBEncode c
fromBEncode _ = decodingError "Unable to decode a triple"
{-# INLINE fromBEncode #-}
instance (BEncodable a, BEncodable b, BEncodable c, BEncodable d)
=> BEncodable (a, b, c, d) where
{-# SPECIALIZE instance (BEncodable a, BEncodable b, BEncodable c, BEncodable d)
=> BEncodable (a, b, c, d) #-}
{-# INLINE toBEncode #-}
toBEncode (a, b, c, d) = BList [ toBEncode a, toBEncode b
, toBEncode c, toBEncode d
]
fromBEncode (BList [a, b, c, d]) =
(,,,) <$> fromBEncode a <*> fromBEncode b
<*> fromBEncode c <*> fromBEncode d
fromBEncode _ = decodingError "Unable to decode a tuple4"
{-# INLINE fromBEncode #-}
instance (BEncodable a, BEncodable b, BEncodable c, BEncodable d, BEncodable e)
=> BEncodable (a, b, c, d, e) where
{-# SPECIALIZE instance ( BEncodable a, BEncodable b
, BEncodable c, BEncodable d
, BEncodable e)
=> BEncodable (a, b, c, d, e) #-}
{-# INLINE toBEncode #-}
toBEncode (a, b, c, d, e) = BList [ toBEncode a, toBEncode b
, toBEncode c, toBEncode d
, toBEncode e
]
fromBEncode (BList [a, b, c, d, e]) =
(,,,,) <$> fromBEncode a <*> fromBEncode b
<*> fromBEncode c <*> fromBEncode d <*> fromBEncode e
fromBEncode _ = decodingError "Unable to decode a tuple5"
{-# INLINE fromBEncode #-}
instance BEncodable Version where
{-# SPECIALIZE instance BEncodable Version #-}
{-# INLINE toBEncode #-}
toBEncode = toBEncode . BC.pack . showVersion
fromBEncode (BString bs)
| [(v, _)] <- ReadP.readP_to_S parseVersion (BC.unpack bs)
= return v
fromBEncode _ = decodingError "Data.Version"
{-# INLINE fromBEncode #-}
dictAssoc :: [(ByteString, BEncode)] -> BEncode
dictAssoc = BDict . M.fromList
{-# INLINE dictAssoc #-}
{--------------------------------------------------------------------
Building dictionaries
--------------------------------------------------------------------}
data Assoc = Required ByteString BEncode
| Optional ByteString (Maybe BEncode)
(-->) :: BEncodable a => ByteString -> a -> Assoc
key --> val = Required key (toBEncode val)
{-# INLINE (-->) #-}
(-->?) :: BEncodable a => ByteString -> Maybe a -> Assoc
key -->? mval = Optional key (toBEncode <$> mval)
{-# INLINE (-->?) #-}
mkAssocs :: [Assoc] -> [(ByteString, BEncode)]
mkAssocs = mapMaybe unpackAssoc
where
unpackAssoc (Required n v) = Just (n, v)
unpackAssoc (Optional n (Just v)) = Just (n, v)
unpackAssoc (Optional _ Nothing) = Nothing
fromAssocs :: [Assoc] -> BEncode
fromAssocs = BDict . M.fromList . mkAssocs
{-# INLINE fromAssocs #-}
-- | A faster version of 'fromAssocs'. Should be used only when keys
-- are sorted by ascending.
fromAscAssocs :: [Assoc] -> BEncode
fromAscAssocs = BDict . M.fromList . mkAssocs
{-# INLINE fromAscAssocs #-}
{--------------------------------------------------------------------
Extraction
--------------------------------------------------------------------}
reqKey :: BEncodable a => Dict -> ByteString -> Result a
reqKey d key
| Just b <- M.lookup key d = fromBEncode b
| otherwise = Left msg
where
msg = "required field `" ++ BC.unpack key ++ "' not found"
optKey :: BEncodable a => Dict -> ByteString -> Result (Maybe a)
optKey d key
| Just b <- M.lookup key d
, Right r <- fromBEncode b = return (Just r)
| otherwise = return Nothing
(>--) :: BEncodable a => Dict -> ByteString -> Result a
(>--) = reqKey
{-# INLINE (>--) #-}
(>--?) :: BEncodable a => Dict -> ByteString -> Result (Maybe a)
(>--?) = optKey
{-# INLINE (>--?) #-}
{--------------------------------------------------------------------
Predicated
--------------------------------------------------------------------}
isInteger :: BEncode -> Bool
isInteger (BInteger _) = True
isInteger _ = False
{-# INLINE isInteger #-}
isString :: BEncode -> Bool
isString (BString _) = True
isString _ = False
{-# INLINE isString #-}
isList :: BEncode -> Bool
isList (BList _) = True
isList _ = False
{-# INLINE isList #-}
isDict :: BEncode -> Bool
isDict (BList _) = True
isDict _ = False
{-# INLINE isDict #-}
{--------------------------------------------------------------------
Encoding
--------------------------------------------------------------------}
encode :: BEncode -> Lazy.ByteString
encode = B.toLazyByteString . builder
decode :: ByteString -> Result BEncode
decode = P.parseOnly parser
decoded :: BEncodable a => ByteString -> Result a
decoded = decode >=> fromBEncode
encoded :: BEncodable a => a -> Lazy.ByteString
encoded = encode . toBEncode
{--------------------------------------------------------------------
Internals
--------------------------------------------------------------------}
builder :: BEncode -> B.Builder
builder = go
where
go (BInteger i) = B.word8 (c2w 'i') <>
ASCII.int64Dec i <>
B.word8 (c2w 'e')
go (BString s) = buildString s
go (BList l) = B.word8 (c2w 'l') <>
foldMap go l <>
B.word8 (c2w 'e')
go (BDict d) = B.word8 (c2w 'd') <>
foldMap mkKV (M.toAscList d) <>
B.word8 (c2w 'e')
where
mkKV (k, v) = buildString k <> go v
buildString s = ASCII.intDec (B.length s) <>
B.word8 (c2w ':') <>
B.byteString s
{-# INLINE buildString #-}
-- | TODO try to replace peekChar with something else
parser :: Parser BEncode
parser = valueP
where
valueP = do
mc <- P.peekChar
case mc of
Nothing -> fail "end of input"
Just c ->
case c of
-- if we have digit it always should be string length
di | di <= '9' -> BString <$> stringP
'i' -> P.anyChar *> ((BInteger <$> integerP) <* P.anyChar)
'l' -> P.anyChar *> ((BList <$> listBody) <* P.anyChar)
'd' -> do
P.anyChar
(BDict . M.fromDistinctAscList <$>
many ((,) <$> stringP <*> valueP))
<* P.anyChar
t -> fail ("bencode unknown tag: " ++ [t])
listBody = do
c <- P.peekChar
case c of
Just 'e' -> return []
_ -> (:) <$> valueP <*> listBody
stringP :: Parser ByteString
stringP = do
n <- P.decimal :: Parser Int
P.char ':'
P.take n
{-# INLINE stringP #-}
integerP :: Parser Int64
integerP = do
c <- P.peekChar
case c of
Just '-' -> do
P.anyChar
negate <$> P.decimal
_ -> P.decimal
{-# INLINE integerP #-}
{--------------------------------------------------------------------
Pretty Printing
--------------------------------------------------------------------}
printPretty :: BEncode -> IO ()
printPretty = print . ppBEncode
ppBS :: ByteString -> Doc
ppBS = text . map w2c . B.unpack
ppBEncode :: BEncode -> Doc
ppBEncode (BInteger i) = int $ fromIntegral i
ppBEncode (BString s) = ppBS s
ppBEncode (BList l) = brackets $ hsep $ punctuate comma $ map ppBEncode l
ppBEncode (BDict d)
= braces $ vcat $ punctuate comma $ map ppKV $ M.toAscList d
where
ppKV (k, v) = ppBS k <+> colon <+> ppBEncode v
{--------------------------------------------------------------------
Other instances
--------------------------------------------------------------------}
instance BEncodable Word8 where
{-# SPECIALIZE instance BEncodable Word8 #-}
toBEncode = toBEncode . (fromIntegral :: Word8 -> Word64)
{-# INLINE toBEncode #-}
fromBEncode b = (fromIntegral :: Word64 -> Word8) <$> fromBEncode b
{-# INLINE fromBEncode #-}
instance BEncodable Word16 where
{-# SPECIALIZE instance BEncodable Word16 #-}
toBEncode = toBEncode . (fromIntegral :: Word16 -> Word64)
{-# INLINE toBEncode #-}
fromBEncode b = (fromIntegral :: Word64 -> Word16) <$> fromBEncode b
{-# INLINE fromBEncode #-}
instance BEncodable Word32 where
{-# SPECIALIZE instance BEncodable Word32 #-}
toBEncode = toBEncode . (fromIntegral :: Word32 -> Word64)
{-# INLINE toBEncode #-}
fromBEncode b = (fromIntegral :: Word64 -> Word32) <$> fromBEncode b
{-# INLINE fromBEncode #-}
instance BEncodable Word64 where
{-# SPECIALIZE instance BEncodable Word64 #-}
toBEncode = toBEncode . (fromIntegral :: Word64 -> Int)
{-# INLINE toBEncode #-}
fromBEncode b = (fromIntegral :: Int -> Word64) <$> fromBEncode b
{-# INLINE fromBEncode #-}
instance BEncodable Word where -- TODO: make platform independent
{-# SPECIALIZE instance BEncodable Word #-}
toBEncode = toBEncode . (fromIntegral :: Word -> Int)
{-# INLINE toBEncode #-}
fromBEncode b = (fromIntegral :: Int -> Word) <$> fromBEncode b
{-# INLINE fromBEncode #-}
|