1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
|
{-# LANGUAGE ForeignFunctionInterface #-}
{-# LANGUAGE RecursiveDo #-}
module Erebos.ICE (
IceSession,
IceSessionRole(..),
IceConfig,
IceRemoteInfo,
iceCreateConfig,
iceCreateSession,
iceDestroy,
iceRemoteInfo,
iceShow,
iceConnect,
iceSend,
iceSetChan,
) where
import Control.Arrow
import Control.Concurrent.MVar
import Control.Monad
import Control.Monad.Except
import Control.Monad.Identity
import Data.ByteString (ByteString, packCStringLen, useAsCString)
import Data.ByteString.Lazy.Char8 qualified as BLC
import Data.ByteString.Unsafe
import Data.Function
import Data.Text (Text)
import Data.Text qualified as T
import Data.Text.Encoding qualified as T
import Data.Text.Read qualified as T
import Data.Void
import Data.Word
import Foreign.C.String
import Foreign.C.Types
import Foreign.ForeignPtr
import Foreign.Marshal.Alloc
import Foreign.Marshal.Array
import Foreign.Ptr
import Foreign.StablePtr
import Erebos.Flow
import Erebos.Object
import Erebos.Storable
import Erebos.Storage
#include "pjproject.h"
data IceSession = IceSession
{ isStrans :: PjIceStrans
, _isConfig :: IceConfig
, isChan :: MVar (Either [ByteString] (Flow Void ByteString))
}
instance Eq IceSession where
(==) = (==) `on` isStrans
instance Ord IceSession where
compare = compare `on` isStrans
instance Show IceSession where
show _ = "<ICE>"
data IceRemoteInfo = IceRemoteInfo
{ iriUsernameFrament :: Text
, iriPassword :: Text
, iriDefaultCandidate :: Text
, iriCandidates :: [Text]
}
data IceCandidate = IceCandidate
{ icandFoundation :: Text
, icandPriority :: Int
, icandAddr :: Text
, icandPort :: Int
, icandType :: Text
}
instance Storable IceRemoteInfo where
store' x = storeRec $ do
storeText "ice-ufrag" $ iriUsernameFrament x
storeText "ice-pass" $ iriPassword x
storeText "ice-default" $ iriDefaultCandidate x
mapM_ (storeText "ice-candidate") $ iriCandidates x
load' = loadRec $ IceRemoteInfo
<$> loadText "ice-ufrag"
<*> loadText "ice-pass"
<*> loadText "ice-default"
<*> loadTexts "ice-candidate"
instance StorableText IceCandidate where
toText x = T.concat $
[ icandFoundation x
, T.singleton ' '
, T.pack $ show $ icandPriority x
, T.singleton ' '
, icandAddr x
, T.singleton ' '
, T.pack $ show $ icandPort x
, T.singleton ' '
, icandType x
]
fromText t = case T.words t of
[found, tprio, addr, tport, ctype]
| Right (prio, _) <- T.decimal tprio
, Right (port, _) <- T.decimal tport
-> return $ IceCandidate
{ icandFoundation = found
, icandPriority = prio
, icandAddr = addr
, icandPort = port
, icandType = ctype
}
_ -> throwError "failed to parse candidate"
{#enum pj_ice_sess_role as IceSessionRole {underscoreToCase} deriving (Show, Eq) #}
data PjIceStransCfg
newtype IceConfig = IceConfig (ForeignPtr PjIceStransCfg)
foreign import ccall unsafe "pjproject.h &ice_cfg_free"
ice_cfg_free :: FunPtr (Ptr PjIceStransCfg -> IO ())
foreign import ccall unsafe "pjproject.h ice_cfg_create"
ice_cfg_create :: CString -> Word16 -> CString -> Word16 -> IO (Ptr PjIceStransCfg)
iceCreateConfig :: Maybe ( Text, Word16 ) -> Maybe ( Text, Word16 ) -> IO (Maybe IceConfig)
iceCreateConfig stun turn =
maybe ($ nullPtr) (withText . fst) stun $ \cstun ->
maybe ($ nullPtr) (withText . fst) turn $ \cturn -> do
cfg <- ice_cfg_create cstun (maybe 0 snd stun) cturn (maybe 0 snd turn)
if cfg == nullPtr
then return Nothing
else Just . IceConfig <$> newForeignPtr ice_cfg_free cfg
{#pointer *pj_ice_strans as ^ #}
iceCreateSession :: IceConfig -> IceSessionRole -> (IceSession -> IO ()) -> IO IceSession
iceCreateSession icfg@(IceConfig fcfg) role cb = do
rec sptr <- newStablePtr sess
cbptr <- newStablePtr $ cb sess
sess <- IceSession
<$> (withForeignPtr fcfg $ \cfg ->
{#call ice_create #} (castPtr cfg) (fromIntegral $ fromEnum role) (castStablePtrToPtr sptr) (castStablePtrToPtr cbptr)
)
<*> pure icfg
<*> (newMVar $ Left [])
return $ sess
{#fun ice_destroy as ^ { isStrans `IceSession' } -> `()' #}
iceRemoteInfo :: IceSession -> IO IceRemoteInfo
iceRemoteInfo sess = do
let maxlen = 128
maxcand = 29
allocaBytes maxlen $ \ufrag ->
allocaBytes maxlen $ \pass ->
allocaBytes maxlen $ \def ->
allocaBytes (maxcand*maxlen) $ \bytes ->
allocaArray maxcand $ \carr -> do
let cptrs = take maxcand $ iterate (`plusPtr` maxlen) bytes
pokeArray carr $ take maxcand cptrs
ncand <- {#call ice_encode_session #} (isStrans sess) ufrag pass def carr (fromIntegral maxlen) (fromIntegral maxcand)
if ncand < 0 then fail "failed to generate ICE remote info"
else IceRemoteInfo
<$> (T.pack <$> peekCString ufrag)
<*> (T.pack <$> peekCString pass)
<*> (T.pack <$> peekCString def)
<*> (mapM (return . T.pack <=< peekCString) $ take (fromIntegral ncand) cptrs)
iceShow :: IceSession -> IO String
iceShow sess = do
st <- memoryStorage
return . drop 1 . dropWhile (/='\n') . BLC.unpack . runIdentity =<<
ioLoadBytes =<< store st =<< iceRemoteInfo sess
iceConnect :: IceSession -> IceRemoteInfo -> (IO ()) -> IO ()
iceConnect sess remote cb = do
cbptr <- newStablePtr $ cb
ice_connect sess cbptr
(iriUsernameFrament remote)
(iriPassword remote)
(iriDefaultCandidate remote)
(iriCandidates remote)
{#fun ice_connect { isStrans `IceSession', castStablePtrToPtr `StablePtr (IO ())',
withText* `Text', withText* `Text', withText* `Text', withTextArray* `[Text]'& } -> `()' #}
withText :: Text -> (Ptr CChar -> IO a) -> IO a
withText t f = useAsCString (T.encodeUtf8 t) f
withTextArray :: Num n => [Text] -> ((Ptr (Ptr CChar), n) -> IO ()) -> IO ()
withTextArray tsAll f = helper tsAll []
where helper (t:ts) bs = withText t $ \b -> helper ts (b:bs)
helper [] bs = allocaArray (length bs) $ \ptr -> do
pokeArray ptr $ reverse bs
f (ptr, fromIntegral $ length bs)
withByteStringLen :: Num n => ByteString -> ((Ptr CChar, n) -> IO a) -> IO a
withByteStringLen t f = unsafeUseAsCStringLen t (f . (id *** fromIntegral))
{#fun ice_send as ^ { isStrans `IceSession', withByteStringLen* `ByteString'& } -> `()' #}
foreign export ccall ice_call_cb :: StablePtr (IO ()) -> IO ()
ice_call_cb :: StablePtr (IO ()) -> IO ()
ice_call_cb = join . deRefStablePtr
iceSetChan :: IceSession -> Flow Void ByteString -> IO ()
iceSetChan sess chan = do
modifyMVar_ (isChan sess) $ \orig -> do
case orig of
Left buf -> mapM_ (writeFlowIO chan) $ reverse buf
Right _ -> return ()
return $ Right chan
foreign export ccall ice_rx_data :: StablePtr IceSession -> Ptr CChar -> Int -> IO ()
ice_rx_data :: StablePtr IceSession -> Ptr CChar -> Int -> IO ()
ice_rx_data sptr buf len = do
sess <- deRefStablePtr sptr
bs <- packCStringLen (buf, len)
modifyMVar_ (isChan sess) $ \case
mc@(Right chan) -> writeFlowIO chan bs >> return mc
Left bss -> return $ Left (bs:bss)
|