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