summaryrefslogtreecommitdiffstats
blob: 0dcb71dcd92536c5ff6a99aface00ee059a1cd62 (plain)
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
Porting Progress from Swiften to Stroke.
This file indicates the porting progress from Swiften Library to Stroke. It indicates, upto which HEAD changes are ported to Stroke. Also indicates any remarks associated with it.
To Be Ported: history, linklocal, WhiteBoard.

-----
Adhoc:

All files ported to 6ca201d0b48f4273e24dd7bff17c4a46eeaddf39.

-----
Avatars:

All files ported to 6ca201d0b48f4273e24dd7bff17c4a46eeaddf39

-----
Base:

All files ported to 6ca201d0b48f4273e24dd7bff17c4a46eeaddf39 except for:

 Algorithm, API, Atomic, boost_bsignals, BoostFilesystemVersion,
 BoostRandomGenerator, Concat, Debug, Error, foreach, format,
 Log, Override, Path, Paths, PathTest, Platform,
 Regex, sleep, StartStopper, String, StringTest, WindowsRegistry -- Doesn't Need Porting.

SafeAllocator -- Not Ported! Class for memory allocation which is not needed in java.
DateTimeTest -- Did not port testDateTimeToLocalStringNotThrowingException, as we are not implementing
DateTime.dateToLocalString in java.

Individual Comments:
StartStopper  --  StartStoppable interface added.

-----
Chat:

All files ported to 6ca201d0b48f4273e24dd7bff17c4a46eeaddf39.

-----
Client:

All files ported to 6ca201d0b48f4273e24dd7bff17c4a46eeaddf39 except for:

Client -- Some code commented. WhiteBoard needed.
CoreClient -- Some code commented. BOSH Session Stream needed.
MemoryStorages/Storages -- Some code commented. History Port needed.

-----
Component:

All files ported to 6ca201d0b48f4273e24dd7bff17c4a46eeaddf39.

-----
Compress:

All files ported to 6ca201d0b48f4273e24dd7bff17c4a46eeaddf39.

-----
Crypto:

All files ported to 6ca201d0b48f4273e24dd7bff17c4a46eeaddf39.

Individual Comments:
Java's inbuilt Crypto Provider used.
In Network Factories we are not porting getConnectionServerFactory(), getNATTraverser() and getNetworkEnvironment() as second two are hard to port and
getConnectionServerFactory() is for building servers.

-----
Disco

All files ported to 6ca201d0b48f4273e24dd7bff17c4a46eeaddf39.

-----
Elements:

All files ported to 6ca201d0b48f4273e24dd7bff17c4a46eeaddf39 except for:

WhiteBoard Functionalities -- Not Yet Ported!

Individual Comments:
ToplevelElement -- Not Required in Stroke.Element does the work!

-----
Entity:

All files ported to 6ca201d0b48f4273e24dd7bff17c4a46eeaddf39 except for:

Individual Comments:
PayloadPersister and GenericPayloadPersister implemented as 
GenericPayloadPersister and GenericPayloadLoader.

-----
EventLoop:

All files ported to 6ca201d0b48f4273e24dd7bff17c4a46eeaddf39.

-----
FileTransfer:

All files ported to 6ca201d0b48f4273e24dd7bff17c4a46eeaddf39

Individual Comments:
Incoming and Outgoing Jingle File Transfer have been implemented 
slightly differently to swiften due to multipe inheritance.

IncomingJingleFileTransferTest -- test_AcceptFailingS5BFallsBackToIBB test commented
out in Swiften code this test is not run as it does not work in Swiften.

-----
IDN

All files ported to 6ca201d0b48f4273e24dd7bff17c4a46eeaddf39.

Individual Comments:
Third Party Library ICU used i.e. only ICUConverter supported.

-----
JID

All files ported to 6ca201d0b48f4273e24dd7bff17c4a46eeaddf39.

-----
Jingle

All files ported to 6ca201d0b48f4273e24dd7bff17c4a46eeaddf39 except for:

NotifyListeners (used in many classes) are not in line with Swiften.

-----
MUC

All files ported to 6ca201d0b48f4273e24dd7bff17c4a46eeaddf39.

-----
Network:

All files ported to 6ca201d0b48f4273e24dd7bff17c4a46eeaddf39 except for:

GConfProxyProvider, UnixProxyProvider, WindowsProxyProvider, MacOSXProxyProvider
-- No need to port.  We already have a JavaProxyProvider.

SolarisNetworkEnvironment, UnixNetworkEnvironment, WindowsNetworkEnvironment, PlatformNATTraversalWorker 
-- No need to port.  A JavaNetworkEnviroment has been implemented.

HostNameOrAddress -- No need to port. Just a utiltity method to allow .toString to be called on something
that is either HostName or a String.  We can do this in java with Object.toString().

MiniUPnPInterface, NATPMPInterface -- Not yet ported. These are difficult to import, we are using libminiupnpc which we do not have
a java equivalent for?

PlatformDomainNameServiceQuery -- Constructor needs change.  Swiften version has an extra field required in constructor that is used
for swiften implementation but not in stroke so this is not needed.

UnboundDomainNameResolver -- Not yet ported, uses unbound Library which we do not have a java equivalent for?  

-----
Parser:

All files ported to 6ca201d0b48f4273e24dd7bff17c4a46eeaddf39 except for:

ExpatParser -- Not yet ported.  Requires expact library.
LibXMLParser -- Not yet ported.  Requires libxml library. 
WhiteboardParser -- Not Yet Ported! Needs Whiteboard classes importing.

-----
Presence:

All files ported to 6ca201d0b48f4273e24dd7bff17c4a46eeaddf39.

-----
PubSub:

All files ported to 6ca201d0b48f4273e24dd7bff17c4a46eeaddf39.

-----
Queries

All files ported to 6ca201d0b48f4273e24dd7bff17c4a46eeaddf39.

-----
Roster:

All files ported to 6ca201d0b48f4273e24dd7bff17c4a46eeaddf39.

-----
SASL:

All files ported to 6ca201d0b48f4273e24dd7bff17c4a46eeaddf39.

Individual Comments:
Windows Authenticator not needed!

-----
Serializer:

All files ported to 6ca201d0b48f4273e24dd7bff17c4a46eeaddf39 except for:

WhiteboardSerializer -- Not Yet Ported! Needs whiteboard classes importing.

-----
Session:

All files ported to 6ca201d0b48f4273e24dd7bff17c4a46eeaddf39.

-----
StreamManagement:

All files ported to 6ca201d0b48f4273e24dd7bff17c4a46eeaddf39.

-----
StreamStack:

All files ported to 6ca201d0b48f4273e24dd7bff17c4a46eeaddf39.

-----
StringCodecs:

All files ported to 6ca201d0b48f4273e24dd7bff17c4a46eeaddf39.

-----
TLS:

All files ported to 6ca201d0b48f4273e24dd7bff17c4a46eeaddf39 except for:

TLSContextFactory -- Two methods unimplemented and will also affect JSSEContextFactory.  These methods are not
supported in java.

-----
VCards:

All files ported to 6ca201d0b48f4273e24dd7bff17c4a46eeaddf39.