summaryrefslogtreecommitdiff
path: root/dht/src/Data/PacketQueue.hs
blob: 15a3b436c0f1cdf0d2610d6563ad8896ad72b1d7 (plain)
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
-- | This module is useful for implementing a lossess protocol on top of a
-- lossy datagram style protocol.  It implements a buffer in which packets may
-- be stored out of order, but from which they are extracted in the proper
-- sequence.
{-# LANGUAGE NamedFieldPuns #-}
module Data.PacketQueue
    ( PacketQueue
    , getCapacity
    , getLastDequeuedPlus1
    , getLastEnqueuedPlus1
    , new
    , dequeue
    , dropPacketsLogic
    , dropPacketsBefore
    , getMissing
    -- , dequeueOrGetMissing
    -- , markButNotDequeue
    , enqueue
    , observeOutOfBand
    , packetQueueViewList
    -- , mapQ
    , Data.PacketQueue.lookup
    ) where

import Control.Concurrent.STM
import Control.Monad
import Data.Word
import Data.Array.MArray
import Data.Maybe

data PacketQueue a = PacketQueue
    { pktq    :: TArray Word32 (Maybe a)
    , seqno   :: TVar Word32 -- (buffer_start)
    , qsize   :: Word32
    , buffend :: TVar Word32 -- on incoming, next packet they'll send + 1
                             -- i.e. one more than the largest seen sequence number.
        -- Written by:
        --   observeOutOfBand
        --   dropPacketsBefore
        --   enqueue
    }

-- | Obtain a list of non-empty slots in the 'PacketQueue'.  The numeric value
-- is an index into the underlying array, not a sequence number.
packetQueueViewList :: PacketQueue a -> STM [(Word32,a)]
packetQueueViewList p = do
    let f (n,Nothing) = Nothing
        f (n,Just x)  = Just (n,x)
    catMaybes . map f <$> getAssocs (pktq p)

-- | This returns the earliest sequence number with a slot in the queue.
getLastDequeuedPlus1 :: PacketQueue a -> STM Word32
getLastDequeuedPlus1 PacketQueue {seqno} = readTVar seqno

-- | This returns the least upper bound of sequence numbers that have been
-- enqueued.
getLastEnqueuedPlus1 :: PacketQueue a -> STM Word32
getLastEnqueuedPlus1 PacketQueue {buffend} = readTVar buffend


-- | This is the number of consequetive sequence numbers, starting at
-- 'getLastDequeuedPlus1' that can be stored in the queue
getCapacity :: Applicative m => PacketQueue t -> m Word32
getCapacity (PacketQueue { qsize }) = pure qsize

-- | Create a new PacketQueue.
new :: Word32 -- ^ Capacity of queue.
    -> Word32 -- ^ Initial sequence number.
    -> STM (PacketQueue a)
new capacity seqstart = do
    let cap = if capacity `mod` 2 == 0 then capacity else capacity + 1
    q <- newArray (0,cap - 1) Nothing
    seqv <- newTVar seqstart
    bufe <- newTVar seqstart
    return PacketQueue
        { pktq    = q
        , seqno   = seqv
        , qsize   = cap
        , buffend = bufe
        }

-- | Update the packet queue given:
--
--      * packet queue
--
--      * the number of next lossless packet they intend to send you
--
-- This behaves exactly like 'enqueue' except that no packet data is written to
-- the queue.
observeOutOfBand :: PacketQueue a -> Word32-> STM ()
observeOutOfBand PacketQueue { seqno, qsize, buffend } numberOfNextLosslessPacketThatTheyWillSend = do
    low <- readTVar seqno
    let proj = numberOfNextLosslessPacketThatTheyWillSend - low
    -- Ignore packet if out of range.
    when ( proj < qsize) $ do
    modifyTVar' buffend (\be -> if be - low <= proj then numberOfNextLosslessPacketThatTheyWillSend + 1 else be)

-- | If seqno < buffend then return expected packet numbers for all
--   the Nothings in the array between them.
--   Otherwise, return empty list.
getMissing :: PacketQueue a -> STM [Word32]
getMissing PacketQueue { pktq, seqno, qsize, buffend } = do
    seqno0 <- readTVar seqno
    buffend0 <- readTVar buffend
    -- note relying on fact that [ b .. a ] is null when a < b
    let indices = take (fromIntegral qsize) $ [ seqno0 .. buffend0 - 1]
    maybes <- forM indices $ \i -> do
        x <- readArray pktq $ i `mod` qsize
        return (i,x)
    let nums = map fst . filter (isNothing . snd) $ maybes
    return nums

-- -- | If seqno < buffend then return expected packet numbers for all
-- --   the Nothings in the array between them.
-- --   Otherwise, behave as 'dequeue' would.
-- --   TODO: Do we need this function? Delete it if not.
-- dequeueOrGetMissing :: PacketQueue a -> STM (Either [Word32] a)
-- dequeueOrGetMissing PacketQueue { pktq, seqno, qsize, buffend } = do
--     seqno0 <- readTVar seqno
--     buffend0 <- readTVar buffend
--     if seqno0 < buffend0
--       then do
--         maybes <- mapM (readArray pktq) (take (fromIntegral qsize) $ map (`mod` qsize) [ seqno0 .. buffend0 ])
--         let nums = map fst . filter (isNothing . snd) $ zip [buffend0 ..]  maybes
--         return (Left nums)
--       else do
--         let i = seqno0 `mod` qsize
--         x <- maybe retry return =<< readArray pktq i
--         writeArray pktq i Nothing
--         modifyTVar' seqno   succ
--         return (Right x)

-- | Retry until the next expected packet is enqueued.  Then return it.
dequeue :: PacketQueue a -> STM a
dequeue PacketQueue { pktq, seqno, qsize } = do
    i0 <- readTVar seqno
    let i = i0 `mod` qsize
    x <- maybe retry return =<< readArray pktq i
    writeArray pktq i Nothing
    modifyTVar' seqno   succ
    return x

-- | Helper to 'dropPacketsBefore'.
dropPacketsLogic :: Word32 -> Word32 -> Word32 -> (Maybe Word32, Word32, [(Word32,Word32)])
dropPacketsLogic qsize low no0 =
    let no = no0 - 1    -- Unsigned: could overflow
        proj = no - low -- Unsigned: could overflow
    in if proj < qsize
        then
            let ilow = low  `mod` qsize
                i = no `mod` qsize
                ranges = if ilow <= i then [(ilow, i)]
                                      else [(0,i),(ilow,qsize-1)]
            in (Nothing,no0,ranges) -- Clear some, but not all, slots.
        else (Nothing,low,[]) -- out of bounds, do nothing  -- (Just no0, no0, [(0,qsize - 1)]) -- Reset to empty queue.


-- | Drop all packets preceding the given packet number.
dropPacketsBefore :: PacketQueue a -> Word32 -> STM ()
dropPacketsBefore PacketQueue{ pktq, seqno, qsize, buffend } no0 = do
    low <- readTVar seqno
    let (mbuffend, no, ranges) = dropPacketsLogic qsize low no0
    mapM_ (writeTVar buffend) mbuffend
    writeTVar seqno no
    forM_ ranges $ \(lo,hi) -> forM_ [lo .. hi] $ \i -> writeArray pktq i Nothing


-- -- | Like dequeue, but marks as viewed rather than removing
-- markButNotDequeue :: PacketQueue (Bool,a) -> STM a
-- markButNotDequeue PacketQueue { pktq, seqno, qsize } = do
--     i0 <- readTVar seqno
--     let i = i0 `mod` qsize
--     (b,x) <- maybe retry return =<< readArray pktq i
--     writeArray pktq i (Just (True,x))
--     modifyTVar' seqno   succ
--     return x

-- | Enqueue a packet.  Packets need not be enqueued in order as long as there
-- is spare capacity in the queue.  If there is not, the packet will be
-- silently discarded without blocking. (Unless this is an Overwrite-queue, in
-- which case, the packets will simply wrap around overwriting the old ones.)
--
-- If the packet was enqueued, (0,i) will be retuned where /i/ is the index at
-- which the new packet was stored in the buffer.  If the queue was full, the
-- first of the returned pair will be non-zero.
enqueue :: PacketQueue a -- ^ The packet queue.
        -> Word32        -- ^ Sequence number of the packet.
        -> a             -- ^ The packet.
        -> STM (Word32,Word32)
enqueue PacketQueue{ pktq, seqno, qsize, buffend} no x = do
    low <- readTVar seqno
    let proj = no - low
    -- Ignore packet if out of range.
    when ( proj < qsize) $ do
        let i = no `mod` qsize
        writeArray pktq i (Just x)
        modifyTVar' buffend (\be -> if be - low <= proj then no + 1 else be)
    return (proj `divMod` qsize)

-- | Obtain the packet with the given sequence number if it is stored in the
-- queue, otherwise /Nothing/ is returned without blocking.
lookup :: PacketQueue a -> Word32 -> STM (Maybe a)
lookup PacketQueue{ pktq, seqno, qsize } no = do
    low <- readTVar seqno
    let proj = no - low
    if proj < qsize
        then let i = no `mod` qsize
             in readArray pktq i
        else return Nothing

-- -- | For each item in the queue, modify or delete it.
-- mapQ :: (a -> Maybe a) -> PacketQueue a -> STM ()
-- mapQ f PacketQueue{pktq} = do
--     (z,n) <- getBounds pktq
--     forM_ [z .. n] $ \i -> do
--         e <- readArray pktq i
--         writeArray pktq i (e>>=f)