basic message acking
This commit is contained in:
		
							parent
							
								
									9ad5c6925d
								
							
						
					
					
						commit
						4a6a6c8403
					
				| @ -49,6 +49,7 @@ import eu.siacs.conversations.xml.Element; | ||||
| import eu.siacs.conversations.xmpp.OnBindListener; | ||||
| import eu.siacs.conversations.xmpp.OnContactStatusChanged; | ||||
| import eu.siacs.conversations.xmpp.OnIqPacketReceived; | ||||
| import eu.siacs.conversations.xmpp.OnMessageAcknowledged; | ||||
| import eu.siacs.conversations.xmpp.OnStatusChanged; | ||||
| import eu.siacs.conversations.xmpp.XmppConnection; | ||||
| import eu.siacs.conversations.xmpp.jingle.JingleConnectionManager; | ||||
| @ -147,7 +148,8 @@ public class XmppConnectionService extends Service { | ||||
| 		@Override | ||||
| 		public void onStatusChanged(Account account) { | ||||
| 			if (mOnAccountUpdate != null) { | ||||
| 				mOnAccountUpdate.onAccountUpdate();; | ||||
| 				mOnAccountUpdate.onAccountUpdate(); | ||||
| 				; | ||||
| 			} | ||||
| 			if (account.getStatus() == Account.STATUS_ONLINE) { | ||||
| 				for (Conversation conversation : account.pendingConferenceLeaves) { | ||||
| @ -181,10 +183,9 @@ public class XmppConnectionService extends Service { | ||||
| 				if (connection != null) { | ||||
| 					int next = connection.getTimeToNextAttempt(); | ||||
| 					Log.d(LOGTAG, account.getJid() | ||||
| 							+ ": error connecting account. try again in " + next | ||||
| 							+ "s for the " | ||||
| 							+ (connection.getAttempt() + 1) | ||||
| 							+ " time"); | ||||
| 							+ ": error connecting account. try again in " | ||||
| 							+ next + "s for the " | ||||
| 							+ (connection.getAttempt() + 1) + " time"); | ||||
| 					scheduleWakeupCall((int) (next * 1.2), false); | ||||
| 				} | ||||
| 			} | ||||
| @ -217,12 +218,31 @@ public class XmppConnectionService extends Service { | ||||
| 			account.pendingConferenceLeaves.clear(); | ||||
| 			fetchRosterFromServer(account); | ||||
| 			fetchBookmarks(account); | ||||
| 				sendPresencePacket(account, mPresenceGenerator.sendPresence(account)); | ||||
| 			sendPresencePacket(account, | ||||
| 					mPresenceGenerator.sendPresence(account)); | ||||
| 			connectMultiModeConversations(account); | ||||
| 			updateConversationUi(); | ||||
| 		} | ||||
| 	}; | ||||
| 
 | ||||
| 	private OnMessageAcknowledged mOnMessageAcknowledgedListener = new OnMessageAcknowledged() { | ||||
| 
 | ||||
| 		@Override | ||||
| 		public void onMessageAcknowledged(Account account, String uuid) { | ||||
| 			for (Conversation conversation : getConversations()) { | ||||
| 				if (conversation.getAccount() == account) { | ||||
| 					for (Message message : conversation.getMessages()) { | ||||
| 						if (message.getStatus() == Message.STATUS_UNSEND | ||||
| 								&& message.getUuid().equals(uuid)) { | ||||
| 							markMessage(message, Message.STATUS_SEND); | ||||
| 							return; | ||||
| 						} | ||||
| 					} | ||||
| 				} | ||||
| 			} | ||||
| 		} | ||||
| 	}; | ||||
| 
 | ||||
| 	public PgpEngine getPgpEngine() { | ||||
| 		if (pgpServiceConnection.isBound()) { | ||||
| 			if (this.mPgpEngine == null) { | ||||
| @ -320,8 +340,10 @@ public class XmppConnectionService extends Service { | ||||
| 						} | ||||
| 					} | ||||
| 					if (account.getStatus() == Account.STATUS_ONLINE) { | ||||
| 						long lastReceived = account.getXmppConnection().getLastPacketReceived(); | ||||
| 						long lastSent = account.getXmppConnection().getLastPingSent(); | ||||
| 						long lastReceived = account.getXmppConnection() | ||||
| 								.getLastPacketReceived(); | ||||
| 						long lastSent = account.getXmppConnection() | ||||
| 								.getLastPingSent(); | ||||
| 						if (lastSent - lastReceived >= PING_TIMEOUT * 1000) { | ||||
| 							Log.d(LOGTAG, account.getJid() + ": ping timeout"); | ||||
| 							this.reconnectAccount(account, true); | ||||
| @ -369,7 +391,8 @@ public class XmppConnectionService extends Service { | ||||
| 		ExceptionHelper.init(getApplicationContext()); | ||||
| 		PRNGFixes.apply(); | ||||
| 		this.mRandom = new SecureRandom(); | ||||
| 		this.mMemorizingTrustManager = new MemorizingTrustManager(getApplicationContext()); | ||||
| 		this.mMemorizingTrustManager = new MemorizingTrustManager( | ||||
| 				getApplicationContext()); | ||||
| 		this.databaseBackend = DatabaseBackend | ||||
| 				.getInstance(getApplicationContext()); | ||||
| 		this.fileBackend = new FileBackend(getApplicationContext()); | ||||
| @ -466,10 +489,11 @@ public class XmppConnectionService extends Service { | ||||
| 		connection.setOnMessagePacketReceivedListener(this.mMessageParser); | ||||
| 		connection.setOnStatusChangedListener(this.statusListener); | ||||
| 		connection.setOnPresencePacketReceivedListener(this.mPresenceParser); | ||||
| 		connection | ||||
| 				.setOnUnregisteredIqPacketReceivedListener(this.mIqParser); | ||||
| 		connection.setOnUnregisteredIqPacketReceivedListener(this.mIqParser); | ||||
| 		connection.setOnJinglePacketReceivedListener(this.jingleListener); | ||||
| 		connection.setOnBindListener(this.mOnBindListener); | ||||
| 		connection | ||||
| 				.setOnMessageAcknowledgeListener(this.mOnMessageAcknowledgedListener); | ||||
| 		return connection; | ||||
| 	} | ||||
| 
 | ||||
| @ -514,7 +538,6 @@ public class XmppConnectionService extends Service { | ||||
| 								.getUserID()); | ||||
| 						packet = mMessageGenerator.generateOtrChat(message); | ||||
| 						send = true; | ||||
| 						message.setStatus(Message.STATUS_SEND); | ||||
| 
 | ||||
| 					} else if (message.getPresence() == null) { | ||||
| 						message.setStatus(Message.STATUS_WAITING); | ||||
| @ -523,14 +546,10 @@ public class XmppConnectionService extends Service { | ||||
| 					message.getConversation().endOtrIfNeeded(); | ||||
| 					failWaitingOtrMessages(message.getConversation()); | ||||
| 					packet = mMessageGenerator.generatePgpChat(message); | ||||
| 					message.setStatus(Message.STATUS_SEND); | ||||
| 					send = true; | ||||
| 				} else { | ||||
| 					message.getConversation().endOtrIfNeeded(); | ||||
| 					failWaitingOtrMessages(message.getConversation()); | ||||
| 					if (message.getConversation().getMode() == Conversation.MODE_SINGLE || message.getType() == Message.TYPE_PRIVATE) { | ||||
| 						message.setStatus(Message.STATUS_SEND); | ||||
| 					} | ||||
| 					packet = mMessageGenerator.generateChat(message); | ||||
| 					send = true; | ||||
| 				} | ||||
| @ -562,11 +581,14 @@ public class XmppConnectionService extends Service { | ||||
| 			databaseBackend.createMessage(message); | ||||
| 		} | ||||
| 		conv.getMessages().add(message); | ||||
| 		updateConversationUi(); | ||||
| 		if ((send) && (packet != null)) { | ||||
| 			if (!account.getXmppConnection().getFeatures().sm() | ||||
| 					&& conv.getMode() != Conversation.MODE_MULTI) { | ||||
| 				message.setStatus(Message.STATUS_SEND); | ||||
| 			} | ||||
| 			sendMessagePacket(account, packet); | ||||
| 		} | ||||
| 
 | ||||
| 		updateConversationUi(); | ||||
| 	} | ||||
| 
 | ||||
| 	private void sendUnsendMessages(Conversation conversation) { | ||||
| @ -672,7 +694,8 @@ public class XmppConnectionService extends Service { | ||||
| 			public void onIqPacketReceived(Account account, IqPacket packet) { | ||||
| 				Element query = packet.query(); | ||||
| 				List<Bookmark> bookmarks = new CopyOnWriteArrayList<Bookmark>(); | ||||
| 				Element storage = query.findChild("storage", "storage:bookmarks"); | ||||
| 				Element storage = query.findChild("storage", | ||||
| 						"storage:bookmarks"); | ||||
| 				if (storage != null) { | ||||
| 					for (Element item : storage.getChildren()) { | ||||
| 						if (item.getName().equals("conference")) { | ||||
| @ -683,7 +706,8 @@ public class XmppConnectionService extends Service { | ||||
| 								conversation.setBookmark(bookmark); | ||||
| 							} else { | ||||
| 								if (bookmark.autojoin()) { | ||||
| 									conversation = findOrCreateConversation(account, bookmark.getJid(), true); | ||||
| 									conversation = findOrCreateConversation( | ||||
| 											account, bookmark.getJid(), true); | ||||
| 									conversation.setBookmark(bookmark); | ||||
| 									joinMuc(conversation); | ||||
| 								} | ||||
| @ -796,7 +820,8 @@ public class XmppConnectionService extends Service { | ||||
| 		return null; | ||||
| 	} | ||||
| 
 | ||||
| 	public Conversation find(List<Conversation> haystack, Account account, String jid) { | ||||
| 	public Conversation find(List<Conversation> haystack, Account account, | ||||
| 			String jid) { | ||||
| 		for (Conversation conversation : haystack) { | ||||
| 			if ((conversation.getAccount().equals(account)) | ||||
| 					&& (conversation.getContactJid().split("/")[0].equals(jid))) { | ||||
| @ -806,7 +831,6 @@ public class XmppConnectionService extends Service { | ||||
| 		return null; | ||||
| 	} | ||||
| 
 | ||||
| 	 | ||||
| 	public Conversation findOrCreateConversation(Account account, String jid, | ||||
| 			boolean muc) { | ||||
| 		Conversation conversation = find(account, jid); | ||||
| @ -958,7 +982,8 @@ public class XmppConnectionService extends Service { | ||||
| 		account.pendingConferenceJoins.remove(conversation); | ||||
| 		account.pendingConferenceLeaves.remove(conversation); | ||||
| 		if (account.getStatus() == Account.STATUS_ONLINE) { | ||||
| 			Log.d(LOGTAG,"joining conversation "+conversation.getContactJid()); | ||||
| 			Log.d(LOGTAG, | ||||
| 					"joining conversation " + conversation.getContactJid()); | ||||
| 			String nick = conversation.getMucOptions().getProposedNick(); | ||||
| 			conversation.getMucOptions().setJoinNick(nick); | ||||
| 			PresencePacket packet = new PresencePacket(); | ||||
| @ -975,8 +1000,8 @@ public class XmppConnectionService extends Service { | ||||
| 				final SimpleDateFormat mDateFormat = new SimpleDateFormat( | ||||
| 						"yyyy-MM-dd'T'HH:mm:ss.SSS'Z'", Locale.US); | ||||
| 				mDateFormat.setTimeZone(TimeZone.getTimeZone("UTC")); | ||||
| 				Date date = new Date( | ||||
| 						conversation.getLatestMessage().getTimeSent() + 1000); | ||||
| 				Date date = new Date(conversation.getLatestMessage() | ||||
| 						.getTimeSent() + 1000); | ||||
| 				x.addChild("history").setAttribute("since", | ||||
| 						mDateFormat.format(date)); | ||||
| 			} | ||||
| @ -1011,7 +1036,8 @@ public class XmppConnectionService extends Service { | ||||
| 						renameListener.onRename(success); | ||||
| 					} | ||||
| 					if (success) { | ||||
| 						conversation.setContactJid(conversation.getMucOptions().getJoinJid()); | ||||
| 						conversation.setContactJid(conversation.getMucOptions() | ||||
| 								.getJoinJid()); | ||||
| 						databaseBackend.updateConversation(conversation); | ||||
| 						Bookmark bookmark = conversation.getBookmark(); | ||||
| 						if (bookmark != null) { | ||||
| @ -1058,7 +1084,8 @@ public class XmppConnectionService extends Service { | ||||
| 			sendPresencePacket(conversation.getAccount(), packet); | ||||
| 			conversation.getMucOptions().setOffline(); | ||||
| 			conversation.deregisterWithBookmark(); | ||||
| 			Log.d(LOGTAG,conversation.getAccount().getJid()+" leaving muc "+conversation.getContactJid()); | ||||
| 			Log.d(LOGTAG, conversation.getAccount().getJid() + " leaving muc " | ||||
| 					+ conversation.getContactJid()); | ||||
| 		} else { | ||||
| 			account.pendingConferenceLeaves.add(conversation); | ||||
| 		} | ||||
| @ -1176,25 +1203,29 @@ public class XmppConnectionService extends Service { | ||||
| 		Account account = contact.getAccount(); | ||||
| 		if (account.getStatus() == Account.STATUS_ONLINE) { | ||||
| 			boolean ask = contact.getOption(Contact.Options.ASKING); | ||||
| 			boolean sendUpdates = contact.getOption(Contact.Options.PENDING_SUBSCRIPTION_REQUEST) | ||||
| 			boolean sendUpdates = contact | ||||
| 					.getOption(Contact.Options.PENDING_SUBSCRIPTION_REQUEST) | ||||
| 					&& contact.getOption(Contact.Options.PREEMPTIVE_GRANT); | ||||
| 			IqPacket iq = new IqPacket(IqPacket.TYPE_SET); | ||||
| 			iq.query("jabber:iq:roster").addChild(contact.asElement()); | ||||
| 			account.getXmppConnection().sendIqPacket(iq, null); | ||||
| 			if (sendUpdates) { | ||||
| 				sendPresencePacket(account, mPresenceGenerator.sendPresenceUpdatesTo(contact)); | ||||
| 				sendPresencePacket(account, | ||||
| 						mPresenceGenerator.sendPresenceUpdatesTo(contact)); | ||||
| 			} | ||||
| 			if (ask) { | ||||
| 				sendPresencePacket(account, mPresenceGenerator.requestPresenceUpdatesFrom(contact)); | ||||
| 				sendPresencePacket(account, | ||||
| 						mPresenceGenerator.requestPresenceUpdatesFrom(contact)); | ||||
| 			} | ||||
| 		} | ||||
| 	} | ||||
| 
 | ||||
| 	 | ||||
| 	public void publishAvatar(Account account, Uri image, final UiCallback<Avatar> callback) { | ||||
| 	public void publishAvatar(Account account, Uri image, | ||||
| 			final UiCallback<Avatar> callback) { | ||||
| 		final Bitmap.CompressFormat format = Defaults.AVATAR_FORMAT; | ||||
| 		final int size = Defaults.AVATAR_SIZE; | ||||
| 		final Avatar avatar = getFileBackend().getPepAvatar(image, size, format); | ||||
| 		final Avatar avatar = getFileBackend() | ||||
| 				.getPepAvatar(image, size, format); | ||||
| 		if (avatar != null) { | ||||
| 			avatar.height = size; | ||||
| 			avatar.width = size; | ||||
| @ -1215,23 +1246,29 @@ public class XmppConnectionService extends Service { | ||||
| 				@Override | ||||
| 				public void onIqPacketReceived(Account account, IqPacket result) { | ||||
| 					if (result.getType() == IqPacket.TYPE_RESULT) { | ||||
| 						IqPacket packet = XmppConnectionService.this.mIqGenerator.publishAvatarMetadata(avatar); | ||||
| 						IqPacket packet = XmppConnectionService.this.mIqGenerator | ||||
| 								.publishAvatarMetadata(avatar); | ||||
| 						sendIqPacket(account, packet, new OnIqPacketReceived() { | ||||
| 
 | ||||
| 							@Override | ||||
| 							public void onIqPacketReceived(Account account, IqPacket result) { | ||||
| 							public void onIqPacketReceived(Account account, | ||||
| 									IqPacket result) { | ||||
| 								if (result.getType() == IqPacket.TYPE_RESULT) { | ||||
| 									if (account.setAvatar(avatar.getFilename())) { | ||||
| 										databaseBackend.updateAccount(account); | ||||
| 									} | ||||
| 									callback.success(avatar); | ||||
| 								} else { | ||||
| 									callback.error(R.string.error_publish_avatar_server_reject, avatar); | ||||
| 									callback.error( | ||||
| 											R.string.error_publish_avatar_server_reject, | ||||
| 											avatar); | ||||
| 								} | ||||
| 							} | ||||
| 						}); | ||||
| 					} else { | ||||
| 						callback.error(R.string.error_publish_avatar_server_reject, avatar); | ||||
| 						callback.error( | ||||
| 								R.string.error_publish_avatar_server_reject, | ||||
| 								avatar); | ||||
| 					} | ||||
| 				} | ||||
| 			}); | ||||
| @ -1244,8 +1281,10 @@ public class XmppConnectionService extends Service { | ||||
| 		fetchAvatar(account, avatar, null); | ||||
| 	} | ||||
| 
 | ||||
| 	public void fetchAvatar(Account account, final Avatar avatar, final UiCallback<Avatar> callback) { | ||||
| 		Log.d(LOGTAG,account.getJid()+": retrieving avatar for "+avatar.owner); | ||||
| 	public void fetchAvatar(Account account, final Avatar avatar, | ||||
| 			final UiCallback<Avatar> callback) { | ||||
| 		Log.d(LOGTAG, account.getJid() + ": retrieving avatar for " | ||||
| 				+ avatar.owner); | ||||
| 		IqPacket packet = this.mIqGenerator.retrieveAvatar(avatar); | ||||
| 		sendIqPacket(account, packet, new OnIqPacketReceived() { | ||||
| 
 | ||||
| @ -1259,7 +1298,8 @@ public class XmppConnectionService extends Service { | ||||
| 								databaseBackend.updateAccount(account); | ||||
| 							} | ||||
| 						} else { | ||||
| 							Contact contact = account.getRoster().getContact(avatar.owner); | ||||
| 							Contact contact = account.getRoster().getContact( | ||||
| 									avatar.owner); | ||||
| 							contact.setAvatar(avatar.getFilename()); | ||||
| 						} | ||||
| 						if (callback != null) { | ||||
| @ -1275,14 +1315,16 @@ public class XmppConnectionService extends Service { | ||||
| 		}); | ||||
| 	} | ||||
| 
 | ||||
| 	public void checkForAvatar(Account account, final UiCallback<Avatar> callback) { | ||||
| 	public void checkForAvatar(Account account, | ||||
| 			final UiCallback<Avatar> callback) { | ||||
| 		IqPacket packet = this.mIqGenerator.retrieveAvatarMetaData(null); | ||||
| 		this.sendIqPacket(account, packet, new OnIqPacketReceived() { | ||||
| 
 | ||||
| 			@Override | ||||
| 			public void onIqPacketReceived(Account account, IqPacket packet) { | ||||
| 				if (packet.getType() == IqPacket.TYPE_RESULT) { | ||||
| 					Element pubsub = packet.findChild("pubsub", "http://jabber.org/protocol/pubsub"); | ||||
| 					Element pubsub = packet.findChild("pubsub", | ||||
| 							"http://jabber.org/protocol/pubsub"); | ||||
| 					if (pubsub != null) { | ||||
| 						Element items = pubsub.findChild("items"); | ||||
| 						if (items != null) { | ||||
| @ -1438,7 +1480,8 @@ public class XmppConnectionService extends Service { | ||||
| 		if (confirmMessages() && id != null) { | ||||
| 			Account account = conversation.getAccount(); | ||||
| 			String to = conversation.getContactJid(); | ||||
| 			this.sendMessagePacket(conversation.getAccount(), mMessageGenerator.confirm(account, to, id)); | ||||
| 			this.sendMessagePacket(conversation.getAccount(), | ||||
| 					mMessageGenerator.confirm(account, to, id)); | ||||
| 		} | ||||
| 	} | ||||
| 
 | ||||
| @ -1521,7 +1564,8 @@ public class XmppConnectionService extends Service { | ||||
| 		account.getXmppConnection().sendPresencePacket(packet); | ||||
| 	} | ||||
| 
 | ||||
| 	public void sendIqPacket(Account account, IqPacket packet, OnIqPacketReceived callback) { | ||||
| 	public void sendIqPacket(Account account, IqPacket packet, | ||||
| 			OnIqPacketReceived callback) { | ||||
| 		account.getXmppConnection().sendIqPacket(packet, callback); | ||||
| 	} | ||||
| 
 | ||||
|  | ||||
| @ -0,0 +1,7 @@ | ||||
| package eu.siacs.conversations.xmpp; | ||||
| 
 | ||||
| import eu.siacs.conversations.entities.Account; | ||||
| 
 | ||||
| public interface OnMessageAcknowledged { | ||||
| 	public void onMessageAcknowledged(Account account, String id); | ||||
| } | ||||
| @ -31,6 +31,7 @@ import android.os.PowerManager; | ||||
| import android.os.PowerManager.WakeLock; | ||||
| import android.os.SystemClock; | ||||
| import android.util.Log; | ||||
| import android.util.SparseArray; | ||||
| import eu.siacs.conversations.entities.Account; | ||||
| import eu.siacs.conversations.services.XmppConnectionService; | ||||
| import eu.siacs.conversations.utils.CryptoHelper; | ||||
| @ -74,6 +75,7 @@ public class XmppConnection implements Runnable { | ||||
| 
 | ||||
| 	private String streamId = null; | ||||
| 	private int smVersion = 3; | ||||
| 	private SparseArray<String> messageReceipts = new SparseArray<String>(); | ||||
| 	 | ||||
| 	private boolean usingCompression = false; | ||||
| 
 | ||||
| @ -98,6 +100,7 @@ public class XmppConnection implements Runnable { | ||||
| 	private OnMessagePacketReceived messageListener = null; | ||||
| 	private OnStatusChanged statusListener = null; | ||||
| 	private OnBindListener bindListener = null; | ||||
| 	private OnMessageAcknowledged acknowledgedListener = null; | ||||
| 	private MemorizingTrustManager mMemorizingTrustManager; | ||||
| 
 | ||||
| 	public XmppConnection(Account account, XmppConnectionService service) { | ||||
| @ -248,7 +251,6 @@ public class XmppConnection implements Runnable { | ||||
| 						challange,mRandom)); | ||||
| 				tagWriter.writeElement(response); | ||||
| 			} else if (nextTag.isStart("enabled")) { | ||||
| 				this.stanzasSent = 0; | ||||
| 				Element enabled = tagReader.readElement(nextTag); | ||||
| 				if ("true".equals(enabled.getAttribute("resume"))) { | ||||
| 					this.streamId = enabled.getAttribute("id"); | ||||
| @ -276,8 +278,12 @@ public class XmppConnection implements Runnable { | ||||
| 				Element ack = tagReader.readElement(nextTag); | ||||
| 				lastPaketReceived = SystemClock.elapsedRealtime(); | ||||
| 				int serverSequence = Integer.parseInt(ack.getAttribute("h")); | ||||
| 				if (serverSequence > this.stanzasSent) { | ||||
| 					this.stanzasSent = serverSequence; | ||||
| 				String msgId = this.messageReceipts.get(serverSequence); | ||||
| 				if (msgId != null) { | ||||
| 					if (this.acknowledgedListener != null) { | ||||
| 						this.acknowledgedListener.onMessageAcknowledged(account, msgId); | ||||
| 					} | ||||
| 					this.messageReceipts.remove(serverSequence); | ||||
| 				} | ||||
| 			} else if (nextTag.isStart("failed")) { | ||||
| 				tagReader.readElement(nextTag); | ||||
| @ -610,10 +616,12 @@ public class XmppConnection implements Runnable { | ||||
| 							smVersion = 3; | ||||
| 							EnablePacket enable = new EnablePacket(smVersion); | ||||
| 							tagWriter.writeStanzaAsync(enable); | ||||
| 							stanzasSent = 0; | ||||
| 						} else if (streamFeatures.hasChild("sm", "urn:xmpp:sm:2")) { | ||||
| 							smVersion = 2; | ||||
| 							EnablePacket enable = new EnablePacket(smVersion); | ||||
| 							tagWriter.writeStanzaAsync(enable); | ||||
| 							stanzasSent = 0; | ||||
| 						} | ||||
| 						sendServiceDiscoveryInfo(account.getServer()); | ||||
| 						sendServiceDiscoveryItems(account.getServer()); | ||||
| @ -751,9 +759,15 @@ public class XmppConnection implements Runnable { | ||||
| 	 | ||||
| 	private synchronized void sendPacket(final AbstractStanza packet, | ||||
| 			PacketReceived callback) { | ||||
| 		// TODO dont increment stanza count if packet = request packet or ack; | ||||
| 		if (packet.getName().equals("iq") || packet.getName().equals("message") || packet.getName().equals("presence")) { | ||||
| 			++stanzasSent; | ||||
| 		} | ||||
| 		tagWriter.writeStanzaAsync(packet); | ||||
| 		if (packet instanceof MessagePacket && packet.getId() != null && this.streamId != null) { | ||||
| 			Log.d(LOGTAG,"request delivery report for stanza "+stanzasSent); | ||||
| 			this.messageReceipts.put(stanzasSent, packet.getId()); | ||||
| 			tagWriter.writeStanzaAsync(new RequestPacket(this.smVersion)); | ||||
| 		} | ||||
| 		if (callback != null) { | ||||
| 			if (packet.getId() == null) { | ||||
| 				packet.setId(nextRandomId()); | ||||
| @ -802,6 +816,10 @@ public class XmppConnection implements Runnable { | ||||
| 		this.bindListener = listener; | ||||
| 	} | ||||
| 	 | ||||
| 	public void setOnMessageAcknowledgeListener(OnMessageAcknowledged listener) { | ||||
| 		this.acknowledgedListener = listener; | ||||
| 	} | ||||
| 
 | ||||
| 	public void disconnect(boolean force) { | ||||
| 		changeStatus(Account.STATUS_OFFLINE); | ||||
| 		Log.d(LOGTAG, "disconnecting"); | ||||
|  | ||||
		Loading…
	
		Reference in New Issue
	
	Block a user
	 iNPUTmice
						iNPUTmice