]> gitweb @ CieloNegro.org - Lucu.git/blob - Network/HTTP/Lucu/Interaction.hs
29c944e573bf8c41c1fbb2ca2cb00ba500181eab
[Lucu.git] / Network / HTTP / Lucu / Interaction.hs
1 -- #hide
2 module Network.HTTP.Lucu.Interaction
3     ( Interaction(..)
4     , InteractionState(..)
5     , InteractionQueue
6     , newInteractionQueue
7     , newInteraction
8     , defaultPageContentType
9
10     , writeItr
11     , readItr
12     , readItrF
13     , updateItr
14     , updateItrF
15     )
16     where
17
18 import           Control.Concurrent.STM
19 import qualified Data.ByteString.Lazy.Char8 as B
20 import           Data.ByteString.Lazy.Char8 (ByteString)
21 import qualified Data.Sequence as S
22 import           Data.Sequence (Seq)
23 import           Network.Socket
24 import           Network.HTTP.Lucu.Config
25 import           Network.HTTP.Lucu.HttpVersion
26 import           Network.HTTP.Lucu.Request
27 import           Network.HTTP.Lucu.Response
28
29 data Interaction = Interaction {
30       itrConfig       :: Config
31     , itrRemoteAddr   :: SockAddr
32     , itrResourcePath :: Maybe [String]
33     , itrRequest      :: TVar (Maybe Request)
34     , itrResponse     :: TVar Response
35
36     -- FIXME: この三つは本來 TVar であるべきでないので、唯の Bool にす
37     -- るに越した事は無いが、それは重要でない。そんな golf で自分の貴重
38     -- な時間を /dev/null に突っ込むのは、他にしたい事が何も無くなって
39     -- からにすべき。
40     , itrRequestHasBody    :: TVar Bool
41     , itrRequestIsChunked  :: TVar Bool
42     , itrExpectedContinue  :: TVar Bool
43
44     , itrReqChunkLength    :: TVar (Maybe Int)
45     , itrReqChunkRemaining :: TVar (Maybe Int)
46     , itrReqChunkIsOver    :: TVar Bool
47     , itrReqBodyWanted     :: TVar (Maybe Int)
48     , itrReqBodyWasteAll   :: TVar Bool
49     , itrReceivedBody      :: TVar ByteString -- Resource が受領した部分は削除される
50
51     , itrWillReceiveBody   :: TVar Bool
52     , itrWillChunkBody     :: TVar Bool
53     , itrWillDiscardBody   :: TVar Bool
54     , itrWillClose         :: TVar Bool
55
56     , itrBodyToSend :: TVar ByteString
57     , itrBodyIsNull :: TVar Bool
58
59     , itrState :: TVar InteractionState
60
61     , itrWroteContinue :: TVar Bool
62     , itrWroteHeader   :: TVar Bool
63     }
64
65 -- Resource の視點で見た時の状態。常に上から下へ行き、逆行しない。初期
66 -- 状態は ExaminingRequest。
67 data InteractionState = ExaminingRequest
68                       | GettingBody
69                       | DecidingHeader
70                       | DecidingBody
71                       | Done
72                         deriving (Show, Eq, Ord, Enum)
73
74 type InteractionQueue = TVar (Seq Interaction)
75
76
77 newInteractionQueue :: IO InteractionQueue
78 newInteractionQueue = newTVarIO S.empty
79
80
81 defaultPageContentType :: String
82 defaultPageContentType = "application/xhtml+xml"
83
84
85 newInteraction :: Config -> SockAddr -> Maybe Request -> IO Interaction
86 newInteraction conf addr req
87     = do request  <- newTVarIO $ req
88          responce <- newTVarIO $ Response {
89                        resVersion = HttpVersion 1 1
90                      , resStatus  = Ok
91                      , resHeaders = [("Content-Type", defaultPageContentType)]
92                      }
93
94          requestHasBody     <- newTVarIO False
95          requestIsChunked   <- newTVarIO False
96          expectedContinue   <- newTVarIO False
97          
98          reqChunkLength     <- newTVarIO Nothing -- 現在のチャンク長
99          reqChunkRemaining  <- newTVarIO Nothing -- 現在のチャンクの殘り
100          reqChunkIsOver     <- newTVarIO False   -- 最後のチャンクを讀み終へた
101          reqBodyWanted      <- newTVarIO Nothing -- Resource が要求してゐるチャンク長
102          reqBodyWasteAll    <- newTVarIO False   -- 殘りの body を讀み捨てよと云ふ要求
103          receivedBody       <- newTVarIO B.empty
104
105          willReceiveBody   <- newTVarIO False
106          willChunkBody     <- newTVarIO False
107          willDiscardBody   <- newTVarIO False
108          willClose         <- newTVarIO False
109
110          bodyToSend <- newTVarIO B.empty
111          bodyIsNull <- newTVarIO True -- 一度でも bodyToSend が空でなくなったら False
112
113          state <- newTVarIO ExaminingRequest
114
115          wroteContinue <- newTVarIO False
116          wroteHeader   <- newTVarIO False
117
118          return $ Interaction {
119                       itrConfig       = conf
120                     , itrRemoteAddr   = addr
121                     , itrResourcePath = Nothing
122                     , itrRequest      = request
123                     , itrResponse     = responce
124
125                     , itrRequestHasBody    = requestHasBody
126                     , itrRequestIsChunked  = requestIsChunked
127                     , itrExpectedContinue = expectedContinue
128
129                     , itrReqChunkLength    = reqChunkLength
130                     , itrReqChunkRemaining = reqChunkRemaining
131                     , itrReqChunkIsOver    = reqChunkIsOver
132                     , itrReqBodyWanted     = reqBodyWanted
133                     , itrReqBodyWasteAll   = reqBodyWasteAll
134                     , itrReceivedBody      = receivedBody
135
136                     , itrWillReceiveBody   = willReceiveBody
137                     , itrWillChunkBody     = willChunkBody
138                     , itrWillDiscardBody   = willDiscardBody
139                     , itrWillClose         = willClose
140
141                     , itrBodyToSend = bodyToSend
142                     , itrBodyIsNull = bodyIsNull
143                     
144                     , itrState = state
145                     
146                     , itrWroteContinue = wroteContinue
147                     , itrWroteHeader   = wroteHeader
148                     }
149
150
151 writeItr :: Interaction -> (Interaction -> TVar a) -> a -> STM ()
152 writeItr itr accessor value
153     = writeTVar (accessor itr) value
154
155
156 readItr :: Interaction -> (Interaction -> TVar a) -> (a -> b) -> STM b
157 readItr itr accessor reader
158     = readTVar (accessor itr) >>= return . reader
159
160
161 readItrF :: (Functor f) => Interaction -> (Interaction -> TVar (f a)) -> (a -> b) -> STM (f b)
162 readItrF itr accessor reader
163     = readItr itr accessor (fmap reader)
164
165
166 updateItr :: Interaction -> (Interaction -> TVar a) -> (a -> a) -> STM ()
167 updateItr itr accessor updator
168     = do old <- readItr itr accessor id
169          writeItr itr accessor (updator old)
170
171
172 updateItrF :: (Functor f) => Interaction -> (Interaction -> TVar (f a)) -> (a -> a) -> STM ()
173 updateItrF itr accessor updator
174     = updateItr itr accessor (fmap updator)