]> git.rkrishnan.org Git - functorrent.git/blob - src/FuncTorrent/Tracker/Types.hs
refactor: remove peerid from Peer datatype
[functorrent.git] / src / FuncTorrent / Tracker / Types.hs
1 {-
2  - Copyright (C) 2015-2016 Ramakrishnan Muthukrishnan <ram@rkrishnan.org>
3  -
4  - This file is part of FuncTorrent.
5  -
6  - FuncTorrent is free software; you can redistribute it and/or modify
7  - it under the terms of the GNU General Public License as published by
8  - the Free Software Foundation; either version 3 of the License, or
9  - (at your option) any later version.
10  -
11  - FuncTorrent is distributed in the hope that it will be useful,
12  - but WITHOUT ANY WARRANTY; without even the implied warranty of
13  - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  - GNU General Public License for more details.
15  -
16  - You should have received a copy of the GNU General Public License
17  - along with FuncTorrent; if not,  see <http://www.gnu.org/licenses/>
18  -}
19
20 {-# LANGUAGE OverloadedStrings #-}
21 module FuncTorrent.Tracker.Types
22        ( TrackerProtocol(..)
23        , TrackerResponse(..)
24        , TrackerEventState(..)
25        , TState(..)
26        , TrackerMsg(..)
27        ) where
28
29 import Data.ByteString (ByteString)
30 import Control.Concurrent.MVar (MVar)
31
32 import FuncTorrent.PeerMsgs (Peer)
33
34 data TrackerProtocol = Http
35                      | Udp
36                      | UnknownProtocol
37                      deriving (Show)
38
39 data TrackerEventState = None
40                        | Started
41                        | Completed
42                        | Stopped
43                        deriving (Show, Eq)
44
45 data TrackerMsg = GetStatusMsg TrackerEventState
46                 | GetConnectedPeersMsg (MVar [Peer])
47
48 data TState = TState { left :: Integer
49                      , currentState :: TrackerEventState
50                      , connectedPeers :: MVar [Peer]
51                      }
52
53 -- | Tracker response
54 data TrackerResponse = TrackerResponse {
55   interval :: Integer
56   , peers :: [Peer]
57   , complete :: Maybe Integer
58   , incomplete :: Maybe Integer
59   } deriving (Show, Eq)