Florian Schmaus
49e1c837b2
Adjust AbstractListFilter.toString()
...
to produce a similar styled output like the other toString() methods and
add unit-test for the method.
2015-02-26 08:47:43 +01:00
Florian Schmaus
4b7a396b9b
Improve logging wrt XMPPTCPConnection.shutdownDone
2015-02-26 08:27:19 +01:00
Florian Schmaus
404b90054b
Use Executors.newSingleThreadScheduledExecutor
...
and remove the calls to setMaximumPoolSize() and steKeepAliveTime()
since they are ineffective on Android.
2015-02-25 16:17:09 +01:00
Florian Schmaus
39382b8b38
Shorten Smack's executor service names
...
instead of
"Smack Executor - Foo 42 (2)"
use
"Smack-Foo 42 (2)"
since sometimes the space for the name is limited (e.g. busybox's 'ps
-t').
2015-02-25 16:09:41 +01:00
Florian Schmaus
9006ccf291
Fix VCardManager.saveVCard(VCard)
...
In case the users tries to save a VCard he previously retrieved via
loadVCard() this would previously fail, as the 'to' address is set to
the clients full JID.
2015-02-23 22:39:40 +01:00
Florian Schmaus
7e68bb7470
Javadoc fixes in Roster
2015-02-23 22:17:31 +01:00
Florian Schmaus
4424ec6c53
Make Roster API not leak internal state
...
Fixes SMACK-645
2015-02-23 22:16:49 +01:00
Florian Schmaus
e9dd3e2fa6
Add copy constructor to Message and Presence
...
and also implement Cloneable and add clone() methods.
2015-02-23 22:15:59 +01:00
Florian Schmaus
bc3bbb5bb4
Set "rootProject.name = 'Smack'" in settings.gradle
2015-02-23 13:58:51 +01:00
Florian Schmaus
afba123ba3
Javadoc improvements in MultiMap and Stanza
2015-02-23 10:49:33 +01:00
Florian Schmaus
b74b8c5757
Make Stanza constructors 'protected'
2015-02-23 10:48:43 +01:00
Florian Schmaus
180a3bb4ca
Fix SASL X-OAUTH2: Use Base64.encode() instead of decode()
2015-02-23 08:49:30 +01:00
Florian Schmaus
90969e252a
Improve the bundle and defer mechanism
...
Instead of always bundling when the queue is empty, only bundle once the
queue has become empty and then only if it has been become empty again.
The previous algorithm would also bundle and defer the last element
found in the queue. This is not the case now.
2015-02-22 10:51:44 +01:00
Florian Schmaus
8b0ccd7420
Minor javadoc fixes and improvements
2015-02-22 10:41:53 +01:00
Florian Schmaus
fbf0ba13ce
Merge Smack 4.1.0-rc2
...
Conflicts:
smack-core/src/main/java/org/jivesoftware/smack/filter/FromMatchesFilter.java
smack-extensions/src/main/java/org/jivesoftware/smackx/iqregister/AccountManager.java
version.gradle
2015-02-21 18:07:45 +01:00
Florian Schmaus
0fae7a26c2
Samck 4.1.0-rc3-SNAPSHOT
2015-02-21 17:20:52 +01:00
Florian Schmaus
407f555cbf
Smack 4.1.0-rc2
2015-02-21 16:57:52 +01:00
Florian Schmaus
29bda59617
Log warning if account creation over insecure connection
...
Prepare for SMACK-644.
2015-02-21 16:57:16 +01:00
Florian Schmaus
19f96d2c40
Avoid duplicate provider lookup in ItemProvider
...
This also fixes a programming error, since it could be possible that the
provider was removed between the lookup and the usage.
2015-02-20 12:27:54 +01:00
Florian Schmaus
26d9a95c64
Add Smack 4.0.7 Changelog
...
Cherry-picked 5cf99508ad
from 4.0 branch
to include the 4.0.7 changelog.
Conflicts:
version.gradle
2015-02-20 09:39:24 +01:00
Florian Schmaus
bfcb403673
Fix Stream Management ack listner invocation
...
aborting to early, because of a 'return' statement, when 'continue'
should be used.
Thanks to Daniele Ricci for reporting this bug.
2015-02-19 23:01:38 +01:00
Florian Schmaus
7ebea7ce94
Add StanzaIdFilter, deprecate PacketIDFilter
2015-02-19 16:07:42 +01:00
Florian Schmaus
2856b8ace6
Fix dependency version specification
...
Mathematical range syntax was introduced with
31c53f094c
, but unforutantely brackets
and parentheses where reversed.
2015-02-19 14:28:46 +01:00
Florian Schmaus
2663a62033
Filter smack-bosh from smack-android dependencies
...
smack-bosh was recently added to androidProjects, but it was not
filtered out from the dependencies for smack-android. Since it is an
optional dependency, it should not be a dependency of smack-android.
2015-02-19 13:20:58 +01:00
Florian Schmaus
5f4374ec26
Use host(name) to construct the SSLSocket
...
in XMPPTCPConnection.
So that the hostname and not the IP is available to the SSLSocket and
the SSLSession, which handed over to HostnameVerifier. This leaves the
HostnameVerifier with the
- name of the XMPP service (first argument of verify(String, SSLSession)
- name of the used host (found in the SSLSession)
allowing more complex verification mechanisms performed by the
HostnameVerifier.
2015-02-19 12:14:16 +01:00
Florian Schmaus
887c6114b7
Add filter information to NoResponseException
...
in order to aid debugging errors. This made it necessary to override
'toString()' for all filters in Smack.
2015-02-19 12:14:16 +01:00
Florian Schmaus
d415661e35
Add BundleAndDeferCallback to smack-tcp
2015-02-19 12:14:10 +01:00
Florian Schmaus
aa8daba1cf
Add StreamManagemtCounterError
...
to allow graceful connectionClosedOnError() disconnects, since we
received a bunch of reports where the counter seems wrong, which is
causing a NPE in a thread pool executor, causing the VM or Android App
to terminate.
Now we throw the StreamManagementCounterError instead.
2015-02-18 12:07:44 +01:00
Florian Schmaus
7897fca876
Add comment about Stream Management's unacked stanzas queue
2015-02-18 11:59:45 +01:00
Florian Schmaus
33cf205bdc
Use Objects.requireNonNull() in BytestreamSIDFilter
2015-02-18 10:06:12 +01:00
Florian Schmaus
98cfad6cc6
Add RosterLoadedListener
2015-02-17 16:56:04 +01:00
Florian Schmaus
5bb4727c57
Use Jid (and subclasses) from jxmpp-jid
...
Fixes SMACK-634
2015-02-17 16:07:16 +01:00
Florian Schmaus
b910d026cd
Remove toString form XMPPException subclasses
...
and getMessage(), to use the implementations in Exception instead.
2015-02-16 14:51:37 +01:00
Florian Schmaus
1577fa1fca
Fix duplicate presence in XMPPBOSHConnection.shutdown()
2015-02-16 14:51:10 +01:00
Florian Schmaus
a0d3314b26
Smack 4.1.0-rc2-SNAPSHOT
2015-02-15 21:13:48 +01:00
Florian Schmaus
0ee2d9ed1e
Remove deprecated Packet class
2015-02-14 16:21:26 +01:00
Florian Schmaus
bc61527bd2
Expose InterruptedException
...
SMACK-632
2015-02-14 14:57:33 +01:00
Florian Schmaus
43b99a2a85
Smack 4.2.0-alpha1-SNAPSHOT
2015-02-14 09:36:52 +01:00
Florian Schmaus
8a32d22739
Smack 4.1.0-rc1
2015-02-14 09:36:31 +01:00
Florian Schmaus
26f4528698
Rename SecurityMode.enabled to 'ifpossible'
...
Using the term 'enabled' was a terriable choice from a security
perspective, as it gives the user the impression that the security is
"enabled". In fact this setting is only slightly better then
"disabled".
Make that fact clear in the javadoc too.
2015-02-13 17:01:09 +01:00
Florian Schmaus
0d19b56fbb
Support all primitive types in IntrospectionProvider
...
Fixes SMACK-453
2015-02-12 14:01:01 +01:00
Florian Schmaus
90ccd6c40e
Use string switch/case in IntrospectionProvider
2015-02-12 13:36:14 +01:00
Florian Schmaus
57c1b57b7c
s/ a XMPP/ an XMPP/
2015-02-12 12:13:19 +01:00
Florian Schmaus
a927d55bb1
Improve XMPPConnection javadoc
...
It's an interface
State that it does intentionally not declare any state changing
methods (e.g. connect(), disconnect())
2015-02-12 12:09:53 +01:00
Florian Schmaus
2853ec39b4
Fix XMPPConnection javadoc
...
The XMPPConnection interface does not define methods to manipulate the
connection state (e.g. connect(), disconnect()). The example should use
the connection type as declared type.
2015-02-11 17:37:34 +01:00
Florian Schmaus
b7ac16c1fb
Add missing 'break' statement in BOSHPacketReader
2015-02-10 16:36:34 +01:00
Florian Schmaus
96e3d5c533
Add XMPPTCPConnection(CharSequence, String) constructor
2015-02-09 07:35:16 +01:00
Florian Schmaus
943dc29f92
Move vCard unit test into its own package
2015-02-09 07:35:15 +01:00
Chris Deering
0b4072ad66
Re-implementing the vCard provider using a pull parser. Extended unit tests.
2015-02-09 07:35:15 +01:00
Florian Schmaus
1630b44b8d
Reset smSessionId on XMPPTCPConnection.disconnect()
2015-02-09 07:35:15 +01:00