]> gitweb @ CieloNegro.org - Lucu.git/blob - Network/HTTP/Lucu/Interaction.hs
"driftTo Done" was trying to change the response header, which is impossible.
[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
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     , itrRemoteHost   :: HostName
32     , itrResourcePath :: Maybe [String]
33     , itrRequest      :: 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 -> HostName -> Maybe Request -> IO Interaction
86 newInteraction conf host req
87     = do responce <- newTVarIO $ Response {
88                        resVersion = HttpVersion 1 1
89                      , resStatus  = Ok
90                      , resHeaders = [("Content-Type", defaultPageContentType)]
91                      }
92
93          requestHasBody     <- newTVarIO False
94          requestIsChunked   <- newTVarIO False
95          expectedContinue   <- newTVarIO False
96          
97          reqChunkLength     <- newTVarIO Nothing -- 現在のチャンク長
98          reqChunkRemaining  <- newTVarIO Nothing -- 現在のチャンクの殘り
99          reqChunkIsOver     <- newTVarIO False   -- 最後のチャンクを讀み終へた
100          reqBodyWanted      <- newTVarIO Nothing -- Resource が要求してゐるチャンク長
101          reqBodyWasteAll    <- newTVarIO False   -- 殘りの body を讀み捨てよと云ふ要求
102          receivedBody       <- newTVarIO B.empty
103
104          willReceiveBody   <- newTVarIO False
105          willChunkBody     <- newTVarIO False
106          willDiscardBody   <- newTVarIO False
107          willClose         <- newTVarIO False
108
109          bodyToSend <- newTVarIO B.empty
110          bodyIsNull <- newTVarIO True -- 一度でも bodyToSend が空でなくなったら False
111
112          state <- newTVarIO ExaminingRequest
113
114          wroteContinue <- newTVarIO False
115          wroteHeader   <- newTVarIO False
116
117          return $ Interaction {
118                       itrConfig       = conf
119                     , itrRemoteHost   = host
120                     , itrResourcePath = Nothing
121                     , itrRequest      = req
122                     , itrResponse     = responce
123
124                     , itrRequestHasBody    = requestHasBody
125                     , itrRequestIsChunked  = requestIsChunked
126                     , itrExpectedContinue = expectedContinue
127
128                     , itrReqChunkLength    = reqChunkLength
129                     , itrReqChunkRemaining = reqChunkRemaining
130                     , itrReqChunkIsOver    = reqChunkIsOver
131                     , itrReqBodyWanted     = reqBodyWanted
132                     , itrReqBodyWasteAll   = reqBodyWasteAll
133                     , itrReceivedBody      = receivedBody
134
135                     , itrWillReceiveBody   = willReceiveBody
136                     , itrWillChunkBody     = willChunkBody
137                     , itrWillDiscardBody   = willDiscardBody
138                     , itrWillClose         = willClose
139
140                     , itrBodyToSend = bodyToSend
141                     , itrBodyIsNull = bodyIsNull
142                     
143                     , itrState = state
144                     
145                     , itrWroteContinue = wroteContinue
146                     , itrWroteHeader   = wroteHeader
147                     }
148
149
150 writeItr :: Interaction -> (Interaction -> TVar a) -> a -> STM ()
151 writeItr itr accessor value
152     = writeTVar (accessor itr) value
153
154
155 readItr :: Interaction -> (Interaction -> TVar a) -> (a -> b) -> STM b
156 readItr itr accessor reader
157     = readTVar (accessor itr) >>= return . reader
158
159
160 readItrF :: (Functor f) => Interaction -> (Interaction -> TVar (f a)) -> (a -> b) -> STM (f b)
161 readItrF itr accessor reader
162     = readItr itr accessor (fmap reader)
163
164
165 updateItr :: Interaction -> (Interaction -> TVar a) -> (a -> a) -> STM ()
166 updateItr itr accessor updator
167     = do old <- readItr itr accessor id
168          writeItr itr accessor (updator old)
169
170
171 updateItrF :: (Functor f) => Interaction -> (Interaction -> TVar (f a)) -> (a -> a) -> STM ()
172 updateItrF itr accessor updator
173     = updateItr itr accessor (fmap updator)