]> git.rkrishnan.org Git - functorrent.git/blob - src/FuncTorrent/Tracker/Types.hs
fix copyright notice
[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        , 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)