1
+ % % @author yongboy <[email protected] >
2
+ % % @copyright 2012 yongboy <[email protected] >
3
+ % % @doc socketio.
4
+
5
+ -module (common_polling ).
6
+ -export ([timeout_call /1 , set_timeout /1 , set_timeout /2 , do_post_msg /1 ]).
7
+ -define (HEARBEAT_INTERVAL , socketio :get_env (heartbeat_interval )* 1000 ).
8
+ -define (HEARBEAT_TIMEOUT , socketio :get_env (heartbeat_timeout )* 1000 ).
9
+
10
+ % %
11
+ % % API Functions
12
+ % %
13
+
14
+ % % @doc handle message come from clinet
15
+ -spec do_post_msg ({_SessionId , _Msg }) -> string ().
16
+ do_post_msg ({SessionId , Msg }) ->
17
+ {[Type , MessageId , Endpoint , SubMsgData ]} = socketio_decode :decode (Msg ),
18
+ case session_server :check (SessionId ) of
19
+ false ->
20
+ string :join ([" 7:" , Endpoint , " [\" Request Invalide\" ]+[\" Please do not do that!\" ]" ], " :" );
21
+ true ->
22
+ do_handle_post_msg ({Type , MessageId , Endpoint , SubMsgData }, {SessionId , Msg }),
23
+ " 1"
24
+ end .
25
+
26
+ % % @doc timeout call
27
+ -spec timeout_call (_Any ) -> void .
28
+ timeout_call ({SessionId }) ->
29
+ session_server :unregister (SessionId );
30
+ timeout_call ({SessionId , Endpoint , Type }) ->
31
+ Implement = endpoint_server :lookup (Endpoint ),
32
+ Implement :on_disconnect ({SessionId , Endpoint , timeout }, fun (SendMsg , Others ) ->
33
+ send_call ({SessionId , Type , Endpoint }, SendMsg , Others )
34
+ end ),
35
+ session_server :unregister (SessionId ).
36
+
37
+ % % @doc set timer execute one time with default ?HEARBEAT_TIMEOUT
38
+ -spec set_timeout (_SessionId ) -> void .
39
+ set_timeout (SessionId ) ->
40
+ set_timeout (SessionId , ? HEARBEAT_TIMEOUT ).
41
+
42
+ % % @doc set timer execute one time
43
+ -spec set_timeout (_SessionId , _Timeout ) -> void .
44
+ set_timeout (SessionId , Timeout ) ->
45
+ Endpoint = session_server :call ({SessionId , getEndpoint }),
46
+ Args = case Endpoint of
47
+ undefined ->
48
+ {SessionId };
49
+ _ ->
50
+ {SessionId , Endpoint , " 5" }
51
+ end ,
52
+ TimeRef = case timer :apply_after (Timeout , ? MODULE , timeout_call , [Args ]) of
53
+ {ok , TRef } ->
54
+ TRef ;
55
+ {error , _Reason } ->
56
+ undefined
57
+ end ,
58
+ session_server :cast ({SessionId , timeout , TimeRef }).
59
+
60
+ % %
61
+ % % Local Functions
62
+ % %
63
+ do_handle_post_msg ({Type , MessageId , Endpoint , SubMsgData }, {SessionId , Msg }) ->
64
+ Implement = endpoint_server :lookup (Endpoint ),
65
+ case Type of
66
+ " 0" ->
67
+ Implement :on_disconnect ({SessionId , Endpoint , SubMsgData }, fun (SendMsg , Others ) ->
68
+ send_call ({SessionId , Type , Endpoint }, SendMsg , Others )
69
+ end ),
70
+ session_server :unregister (SessionId );
71
+ " 1" ->
72
+ session_server :cast ({SessionId , endpoint , Endpoint }),
73
+ session_server :cast ({SessionId , self (), post , Msg }),
74
+ Implement :on_connect ({SessionId , MessageId , Endpoint , SubMsgData }, fun (SendMsg , Others ) ->
75
+ send_call ({SessionId , Type , Endpoint }, SendMsg , Others )
76
+ end );
77
+ " 2" ->
78
+ set_timeout (SessionId , ? HEARBEAT_TIMEOUT ),
79
+ % % timer:send_after(?HEARBEAT_INTERVAL, Room, {self(), post, "2::"}); %% TODO
80
+ timer :apply_after (? HEARBEAT_INTERVAL , session_server , cast , [{SessionId , self (), post , " 2::" }]);
81
+ " 5" ->
82
+ Implement :on_message ({SessionId , Type , MessageId , Endpoint , SubMsgData }, fun (SendMsg , Others ) ->
83
+ send_call ({SessionId , Type , Endpoint }, SendMsg , Others )
84
+ end )
85
+ end .
86
+
87
+ send_call ({SessionId , _ , Endpoint }, SendMsg , ack ) ->
88
+ Message = {SessionId , self (), post , string :join ([" 6" , " " , Endpoint , SendMsg ], " :" )},
89
+ send_message (Message );
90
+ send_call ({SessionId , Type , Endpoint }, SendMsg , self ) ->
91
+ Message = {SessionId , self (), post , string :join ([Type , " " , Endpoint , SendMsg ], " :" )},
92
+ send_message (Message );
93
+
94
+ send_call (_ , _ , []) ->
95
+ void ;
96
+ send_call ({_ , Type , Endpoint }, SendMsg , TargetSessionIdes = [_ |_ ]) ->
97
+ lists :foreach (fun (TargetSessionId ) ->
98
+ Message = {TargetSessionId , self (), post , string :join ([Type , " " , Endpoint , SendMsg ], " :" )},
99
+ send_message (Message )
100
+ end , TargetSessionIdes );
101
+
102
+ send_call (_ , _ , {[], _ }) ->
103
+ void ;
104
+ send_call ({_ , _ , Endpoint }, SendMsg , {TargetSessionIds = [_ |_ ], MessageType }) ->
105
+ lists :foreach (fun (TargetSessionId ) ->
106
+ Message = {TargetSessionId , self (), post , string :join ([MessageType , " " , Endpoint , SendMsg ], " :" )},
107
+ send_message (Message )
108
+ end , TargetSessionIds );
109
+
110
+ send_call ({_ , _ , Endpoint }, SendMsg , {TargetSessionId , MessageType }) ->
111
+ Message = {TargetSessionId , self (), post , string :join ([MessageType , " " , Endpoint , SendMsg ], " :" )},
112
+ send_message (Message );
113
+
114
+ send_call ({_ , Type , Endpoint }, SendMsg , TargetSessionId ) ->
115
+ Message = {TargetSessionId , self (), post , string :join ([Type , " " , Endpoint , SendMsg ], " :" )},
116
+ send_message (Message ).
117
+
118
+ send_message (Message ) ->
119
+ session_server :cast (Message ).
0 commit comments