blob: e013ded1cbfdf6c20fbb603ba12ba3c3198e1777 (
plain) (
blame)
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
|
macaw/céu
canopy/sol
# logic:
- db
- pending iqs
- ui update sender
## logic methods
- handle_offline: called by lamp
- handle_online: called by lamp
- handle_stanza: called by read thread
- handle_connect: called by lamp
- handle_disconnect: called by lamp
- handle_error?: called by lamp handle threads and read thread for error logging
- handle_stream_error: called by supervisor when stream needs to be reset
# lamp:
- login jid (bare or full)
- password provider
- lamp command receiver
- connected session state(connected, supervisorhandle to disconnect current connected session)
- connected state (if intended to be connected or not, for retrying reconnection every minute or something)
- on_crash for connection supervisor
- internal logic struct which has methods to handle logic commands
# connected:
- writehandle
- current full jid for connected session
# supervisor:
- control_recv
- read_thread_crash
- write_thread_crash
- read_control_handle
- write_control_handle
- on_crash
- connected
- password
- logic
# read:
must be passed around when crash
- supervisor_control
- tasks
can be cloned from supervisor
- connected .
- logic .
can be recreated by supervisor
- stream
- disconnecting
- disconnect_timedout
- on_crash
- control_recv
# write:
must be passed around when crash
- stanza_recv
can be recreated by supervisor
- stream
- on_crash
- control_recv
message types:
command:
- getroster
- send message
- etc.
lamp commands:
- connect
- disconnect
- command(command)
|