com.pubnub.api.PubnubCoreAsync Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pubnub-android-debug Show documentation
Show all versions of pubnub-android-debug Show documentation
PubNub is a cross-platform client-to-client (1:1 and 1:many) push service in the cloud, capable of broadcasting real-time messages to millions of web and mobile clients simultaneously, in less than a quarter second!
The newest version!
package com.pubnub.api;
import org.json.JSONArray;
import org.json.JSONException;
import org.json.JSONObject;
import java.io.IOException;
import java.io.UnsupportedEncodingException;
import java.util.ArrayList;
import java.util.Hashtable;
import java.util.Random;
abstract class PubnubCoreAsync extends PubnubCore implements PubnubAsyncInterface {
private volatile boolean resumeOnReconnect;
public static boolean daemonThreads = false;
private Subscriptions channelSubscriptions;
private Subscriptions channelGroupSubscriptions;
protected TimedTaskManager timedTaskManager;
private volatile String _timetoken = "0";
private volatile String _region = null;
private volatile String _saved_timetoken = "0";
protected static String PRESENCE_SUFFIX = "-pnpres";
protected static String WILDCARD_SUFFIX = "*";
protected static String WILDCARD_PRESENCE_SUFFIX = WILDCARD_SUFFIX + PRESENCE_SUFFIX;
private static Logger log = new Logger(PubnubCore.class);
private int PRESENCE_HEARTBEAT_TASK = 0;
private int HEARTBEAT = 320;
private volatile int PRESENCE_HB_INTERVAL = 0;
private boolean V2 = true;
public void setV2(boolean v2) {
this.V2 = v2;
}
public void shutdown() {
nonSubscribeManager.stop();
subscribeManager.stop();
timedTaskManager.stop();
}
public boolean isResumeOnReconnect() {
return resumeOnReconnect;
}
public void setRetryInterval(int retryInterval) {
subscribeManager.setRetryInterval(retryInterval);
}
public void setWindowInterval(int windowInterval) {
subscribeManager.setWindowInterval(windowInterval);
}
public int getRetryInterval() {
return subscribeManager.retryInterval;
}
public int getWindowInterval() {
return subscribeManager.windowInterval;
}
String[] getPresenceHeartbeatUrl() {
String channelString = channelSubscriptions.getItemStringNoPresence();
String channelGroupString = channelGroupSubscriptions.getItemStringNoPresence();
if (channelString.length() <= 0 && channelGroupString.length() <= 0) {
return null;
}
// if we do not have any channels but only channel groups: add , as channelString.
if (channelString.length() <= 0 && channelGroupString.length() > 0 ) {
channelString = ",";
}
return new String[] { getPubnubUrl(), "v2", "presence", "sub-key", this.SUBSCRIBE_KEY, "channel",
PubnubUtil.urlEncode(channelString), "heartbeat" };
}
private String getState() {
return (channelSubscriptions.state.length() > 0) ? channelSubscriptions.state.toString() : null;
}
class PresenceHeartbeatTask extends TimedTask {
private Callback callback;
PresenceHeartbeatTask(int interval, Callback callback) {
super(interval);
this.callback = callback;
}
public void run() {
String[] urlComponents = getPresenceHeartbeatUrl();
if (urlComponents == null)
return;
// String[] urlComponents = { getPubnubUrl(), "time", "0"};
Hashtable parameters = PubnubUtil.hashtableClone(params);
if (parameters.get("uuid") == null)
parameters.put("uuid", UUID);
String channelGroupString = channelGroupSubscriptions.getItemStringNoPresence();
if (channelGroupString.length() > 0) {
parameters.put("channel-group", channelGroupString);
}
String st = getState();
if (st != null)
parameters.put("state", st);
if (HEARTBEAT > 0 && HEARTBEAT < 320)
parameters.put("heartbeat", String.valueOf(HEARTBEAT));
HttpRequest hreq = new HttpRequest(urlComponents, parameters, new ResponseHandler() {
public void handleResponse(HttpRequest hreq, String response) {
JSONObject jso;
try {
jso = new JSONObject(response);
response = jso.getString("message");
} catch (JSONException e) {
handleError(hreq, PubnubError.getErrorObject(PubnubError.PNERROBJ_INVALID_JSON, 1, response));
return;
}
callback.successCallback(channelSubscriptions.getItemStringNoPresence(), response);
}
public void handleError(HttpRequest hreq, PubnubError error) {
callback.errorCallback(channelSubscriptions.getItemStringNoPresence(), error);
}
});
_request(hreq, nonSubscribeManager);
}
}
public void setPnExpires(int pnexpires, Callback callback) {
setHeartbeat(pnexpires, callback);
}
public void setHeartbeat(int heartbeat, Callback callback) {
Callback cb = getWrappedCallback(callback);
HEARTBEAT = (heartbeat > 0 && heartbeat < 5) ? 5 : heartbeat;
if (PRESENCE_HB_INTERVAL == 0) {
PRESENCE_HB_INTERVAL = (HEARTBEAT - 3 >= 1) ? HEARTBEAT - 3 : 1;
}
if (PRESENCE_HEARTBEAT_TASK == 0) {
PRESENCE_HEARTBEAT_TASK = timedTaskManager.addTask("Presence-Heartbeat", new PresenceHeartbeatTask(
PRESENCE_HB_INTERVAL, cb));
} else if (PRESENCE_HB_INTERVAL == 0 || PRESENCE_HB_INTERVAL > 320) {
timedTaskManager.removeTask(PRESENCE_HEARTBEAT_TASK);
} else {
timedTaskManager.updateTask(PRESENCE_HEARTBEAT_TASK, PRESENCE_HB_INTERVAL);
}
disconnectAndResubscribe();
}
public void setPnExpires(int pnexpires) {
setPnExpires(pnexpires, null);
}
public void setHeartbeat(int heartbeat) {
setHeartbeat(heartbeat, null);
}
public void setHeartbeatInterval(int heartbeatInterval) {
setHeartbeatInterval(heartbeatInterval, null);
}
public void setHeartbeatInterval(int heartbeatInterval, Callback callback) {
Callback cb = getWrappedCallback(callback);
PRESENCE_HB_INTERVAL = heartbeatInterval;
if (PRESENCE_HEARTBEAT_TASK == 0) {
PRESENCE_HEARTBEAT_TASK = timedTaskManager.addTask("Presence-Heartbeat", new PresenceHeartbeatTask(
PRESENCE_HB_INTERVAL, cb));
} else if (PRESENCE_HB_INTERVAL == 0 || PRESENCE_HB_INTERVAL > 320) {
timedTaskManager.removeTask(PRESENCE_HEARTBEAT_TASK);
} else {
timedTaskManager.updateTask(PRESENCE_HEARTBEAT_TASK, PRESENCE_HB_INTERVAL);
}
}
public int getHeartbeatInterval() {
return PRESENCE_HB_INTERVAL;
}
public int getPnExpires() {
return getHeartbeat();
}
public int getHeartbeat() {
return HEARTBEAT;
}
public void setMaxRetries(int maxRetries) {
subscribeManager.setMaxRetries(maxRetries);
}
public int getMaxRetries() {
return subscribeManager.maxRetries;
}
public void setCacheBusting(boolean cacheBusting) {
this.CACHE_BUSTING = cacheBusting;
}
public boolean getCacheBusting() {
return this.CACHE_BUSTING;
}
public String getCurrentlySubscribedChannelNames() {
String currentChannels = channelSubscriptions.getItemString();
return currentChannels.equals("") ? "no channels." : currentChannels;
}
public void setResumeOnReconnect(boolean resumeOnReconnect) {
this.resumeOnReconnect = resumeOnReconnect;
}
public boolean getResumeOnReconnect() {
return this.resumeOnReconnect;
}
public PubnubCoreAsync(String publish_key, String subscribe_key, String secret_key, String cipher_key,
boolean ssl_on, String initialization_vector) {
super(publish_key, subscribe_key, secret_key, cipher_key, ssl_on, initialization_vector);
this.initAsync();
}
public PubnubCoreAsync(String publish_key, String subscribe_key, String secret_key, String cipher_key,
boolean ssl_on) {
super(publish_key, subscribe_key, secret_key, cipher_key, ssl_on);
this.initAsync();
}
public PubnubCoreAsync(String publish_key, String subscribe_key, String secret_key, boolean ssl_on) {
super(publish_key, subscribe_key, secret_key, "", ssl_on);
this.initAsync();
}
public PubnubCoreAsync(String publish_key, String subscribe_key) {
super(publish_key, subscribe_key, "", "", false);
this.initAsync();
}
public PubnubCoreAsync(String publish_key, String subscribe_key, boolean ssl) {
super(publish_key, subscribe_key, "", "", ssl);
this.initAsync();
}
public PubnubCoreAsync(String publish_key, String subscribe_key, String secret_key) {
super(publish_key, subscribe_key, secret_key, "", false);
this.initAsync();
}
Random random = new Random();
private void initAsync() {
if (channelSubscriptions == null)
channelSubscriptions = new Subscriptions();
if (channelGroupSubscriptions == null)
channelGroupSubscriptions = new Subscriptions();
if (subscribeManager == null)
subscribeManager = new SubscribeManager("Subscribe-Manager-" + System.identityHashCode(this), 10000,
310000, daemonThreads);
if (nonSubscribeManager == null)
nonSubscribeManager = new NonSubscribeManager("Non-Subscribe-Manager-" + System.identityHashCode(this),
10000, 15000, daemonThreads);
if (timedTaskManager == null)
timedTaskManager = new TimedTaskManager("TimedTaskManager");
subscribeManager.setHeader("V", VERSION);
subscribeManager.setHeader("Accept-Encoding", "gzip");
subscribeManager.setHeader("User-Agent", getUserAgent());
nonSubscribeManager.setHeader("V", VERSION);
nonSubscribeManager.setHeader("Accept-Encoding", "gzip");
nonSubscribeManager.setHeader("User-Agent", getUserAgent());
}
public void setSubscribeTimeout(int timeout) {
subscribeManager.setRequestTimeout(timeout);
this.disconnectAndResubscribe();
}
protected int getSubscribeTimeout() {
return subscribeManager.requestTimeout;
}
public void setNonSubscribeTimeout(int timeout) {
nonSubscribeManager.setRequestTimeout(timeout);
}
protected int getNonSubscribeTimeout() {
return nonSubscribeManager.requestTimeout;
}
public void publish(String channel, JSONObject message, boolean storeInHistory, Callback callback) {
Hashtable args = new Hashtable();
args.put("channel", channel);
args.put("message", message);
args.put("callback", callback);
args.put("storeInHistory", (storeInHistory) ? "" : "0");
_publish(args, false);
}
public void publish(String channel, JSONArray message, boolean storeInHistory, Callback callback) {
Hashtable args = new Hashtable();
args.put("channel", channel);
args.put("message", message);
args.put("callback", callback);
args.put("storeInHistory", (storeInHistory) ? "" : "0");
_publish(args, false);
}
public void publish(String channel, String message, boolean storeInHistory, Callback callback) {
Hashtable args = new Hashtable();
args.put("channel", channel);
args.put("message", message);
args.put("callback", callback);
args.put("storeInHistory", (storeInHistory) ? "" : "0");
_publish(args, false);
}
public void publish(String channel, Integer message, boolean storeInHistory, Callback callback) {
Hashtable args = new Hashtable();
args.put("channel", channel);
args.put("message", message);
args.put("callback", callback);
args.put("storeInHistory", (storeInHistory) ? "" : "0");
_publish(args, false);
}
public void publish(String channel, Double message, boolean storeInHistory, Callback callback) {
Hashtable args = new Hashtable();
args.put("channel", channel);
args.put("message", message);
args.put("callback", callback);
args.put("storeInHistory", (storeInHistory) ? "" : "0");
_publish(args, false);
}
public void publish(String channel, JSONObject message, Callback callback) {
Hashtable args = new Hashtable();
args.put("channel", channel);
args.put("message", message);
args.put("callback", callback);
_publish(args, false);
}
public void publish(String channel, JSONArray message, Callback callback) {
Hashtable args = new Hashtable();
args.put("channel", channel);
args.put("message", message);
args.put("callback", callback);
_publish(args, false);
}
public void publish(String channel, String message, Callback callback) {
Hashtable args = new Hashtable();
args.put("channel", channel);
args.put("message", message);
args.put("callback", callback);
_publish(args, false);
}
public void publish(String channel, Integer message, Callback callback) {
Hashtable args = new Hashtable();
args.put("channel", channel);
args.put("message", message);
args.put("callback", callback);
_publish(args, false);
}
public void publish(String channel, Double message, Callback callback) {
Hashtable args = new Hashtable();
args.put("channel", channel);
args.put("message", message);
args.put("callback", callback);
_publish(args, false);
}
public void publish(String channel, JSONObject message, boolean storeInHistory, JSONObject metadata,
Callback callback) {
Hashtable args = new Hashtable();
args.put("channel", channel);
args.put("message", message);
args.put("callback", callback);
args.put("meta", metadata);
args.put("storeInHistory", (storeInHistory) ? "" : "0");
_publish(args, false);
}
public void publish(String channel, JSONArray message, boolean storeInHistory, JSONObject metadata,
Callback callback) {
Hashtable args = new Hashtable();
args.put("channel", channel);
args.put("message", message);
args.put("callback", callback);
args.put("meta", metadata);
args.put("storeInHistory", (storeInHistory) ? "" : "0");
_publish(args, false);
}
public void publish(String channel, String message, boolean storeInHistory, JSONObject metadata, Callback callback) {
Hashtable args = new Hashtable();
args.put("channel", channel);
args.put("message", message);
args.put("callback", callback);
args.put("meta", metadata);
args.put("storeInHistory", (storeInHistory) ? "" : "0");
_publish(args, false);
}
public void publish(String channel, Integer message, boolean storeInHistory, JSONObject metadata, Callback callback) {
Hashtable args = new Hashtable();
args.put("channel", channel);
args.put("message", message);
args.put("callback", callback);
args.put("meta", metadata);
args.put("storeInHistory", (storeInHistory) ? "" : "0");
_publish(args, false);
}
public void publish(String channel, Double message, boolean storeInHistory, JSONObject metadata, Callback callback) {
Hashtable args = new Hashtable();
args.put("channel", channel);
args.put("message", message);
args.put("callback", callback);
args.put("meta", metadata);
args.put("storeInHistory", (storeInHistory) ? "" : "0");
_publish(args, false);
}
public void publish(String channel, JSONObject message, JSONObject metadata, Callback callback) {
Hashtable args = new Hashtable();
args.put("channel", channel);
args.put("message", message);
args.put("meta", metadata);
args.put("callback", callback);
_publish(args, false);
}
public void publish(String channel, JSONArray message, JSONObject metadata, Callback callback) {
Hashtable args = new Hashtable();
args.put("channel", channel);
args.put("message", message);
args.put("meta", metadata);
args.put("callback", callback);
_publish(args, false);
}
public void publish(String channel, String message, JSONObject metadata, Callback callback) {
Hashtable args = new Hashtable();
args.put("channel", channel);
args.put("message", message);
args.put("meta", metadata);
args.put("callback", callback);
_publish(args, false);
}
public void publish(String channel, Integer message, JSONObject metadata, Callback callback) {
Hashtable args = new Hashtable();
args.put("channel", channel);
args.put("message", message);
args.put("meta", metadata);
args.put("callback", callback);
_publish(args, false);
}
public void publish(String channel, Double message, JSONObject metadata, Callback callback) {
Hashtable args = new Hashtable();
args.put("channel", channel);
args.put("message", message);
args.put("meta", metadata);
args.put("callback", callback);
_publish(args, false);
}
protected void publish(Hashtable args, Callback callback) {
args.put("callback", callback);
_publish(args, false);
}
public void presence(String channel, Callback callback) throws PubnubException {
Hashtable args = new Hashtable(2);
args.put("channels", new String[] { channel + PRESENCE_SUFFIX });
args.put("callback", callback);
subscribe(args);
}
public void presence(String[] channels, Callback callback) throws PubnubException {
Hashtable args = new Hashtable(2);
String[] presenceChannels = new String[channels.length];
for (int i = 0; i < channels.length; i++) {
presenceChannels[i] = channels[i] + PRESENCE_SUFFIX;
}
args.put("channels", presenceChannels);
args.put("callback", callback);
subscribe(args);
}
public void channelGroupPresence(String group, Callback callback) throws PubnubException {
Hashtable args = new Hashtable(2);
args.put("groups", new String[] { group + PRESENCE_SUFFIX });
args.put("callback", callback);
subscribe(args);
}
public void channelGroupPresence(String[] groups, Callback callback) throws PubnubException {
Hashtable args = new Hashtable(2);
String[] presenceChannelGroups = new String[groups.length];
for (int i = 0; i < groups.length; i++) {
presenceChannelGroups[i] = groups[i] + PRESENCE_SUFFIX;
}
args.put("groups", presenceChannelGroups);
args.put("callback", callback);
subscribe(args);
}
public void whereNow(final String uuid, Callback callback) {
whereNow(uuid, callback);
}
public void whereNow(Callback callback) {
whereNow(this.UUID, callback);
}
public void setState(String channel, String uuid, JSONObject state, Callback callback) {
_setState(channelSubscriptions, PubnubUtil.urlEncode(channel), null, uuid, state, callback, false);
}
public void channelGroupSetState(String group, String uuid, JSONObject state, Callback callback) {
_setState(channelSubscriptions, ".", group, uuid, state, callback, false);
}
protected void setState(Subscriptions sub, String channel, String group, String uuid, JSONObject state,
Callback callback) {
_setState(sub, channel, group, uuid, state, callback, true);
}
public void getState(String channel, String uuid, Callback callback) {
_getState(channel, uuid, callback, false);
}
public void channelGroupListNamespaces(Callback callback) {
_channelGroupListNamespaces(callback, false);
}
public void channelGroupRemoveNamespace(String namespace, Callback callback) {
_channelGroupRemoveNamespace(namespace, callback, false);
}
public void channelGroupListGroups(String namespace, Callback callback) {
_channelGroupListGroups(null, callback, false);
}
public void channelGroupListGroups(Callback callback) {
channelGroupListGroups(null, callback);
}
public void channelGroupListChannels(String group, Callback callback) {
_channelGroupListChannels(group, callback, false);
}
public void channelGroupAddChannel(String group, String channel, Callback callback) {
channelGroupUpdate("add", group, new String[] { channel }, callback);
}
public void channelGroupAddChannel(String group, String[] channels, Callback callback) {
channelGroupUpdate("add", group, channels, callback);
}
public void channelGroupRemoveChannel(String group, String channel, Callback callback) {
channelGroupUpdate("remove", group, new String[] { channel }, callback);
}
public void channelGroupRemoveChannel(String group, String[] channels, Callback callback) {
channelGroupUpdate("remove", group, channels, callback);
}
private void channelGroupUpdate(String action, String group, String[] channels, final Callback callback) {
_channelGroupUpdate(action, group, channels, callback, false);
}
public void channelGroupRemoveGroup(String group, Callback callback) {
_channelGroupRemoveGroup(group, callback, false);
}
public void hereNow(final String channel, Callback callback) {
hereNow(new String[] { channel }, null, false, true, callback);
}
public void hereNow(boolean state, boolean uuids, Callback callback) {
hereNow(null, null, state, uuids, callback);
}
public void hereNow(final String channel, boolean state, boolean uuids, Callback callback) {
hereNow(new String[] { channel }, null, state, uuids, callback);
}
public void channelGroupHereNow(String group, Callback callback) {
channelGroupHereNow(group, false, true, callback);
}
public void channelGroupHereNow(String group, boolean state, boolean uuids, Callback callback) {
channelGroupHereNow(new String[] { group }, state, uuids, callback);
}
public void channelGroupHereNow(String[] groups, boolean state, boolean uuids, Callback callback) {
hereNow(null, groups, state, uuids, callback);
}
public void hereNow(String[] channels, String[] channelGroups, boolean state, boolean uuids, Callback callback) {
_hereNow(channels, channelGroups, state, uuids, callback, false);
}
public void history(final String channel, long start, long end, int count, boolean reverse, Callback callback) {
history(channel, start, end, count, reverse, false, callback);
}
public void history(final String channel, long start, long end, int count, boolean reverse,
boolean includeTimetoken, Callback callback) {
_history(channel, start, end, count, reverse, includeTimetoken, callback, false);
}
public void history(String channel, long start, long end, boolean reverse, Callback callback) {
history(channel, start, end, -1, reverse, callback);
}
public void history(String channel, int count, Callback callback) {
history(channel, -1, -1, count, false, callback);
}
public void history(String channel, boolean includeTimetoken, int count, Callback callback) {
history(channel, -1, -1, count, false, includeTimetoken, callback);
}
public void history(String channel, long start, boolean reverse, Callback callback) {
history(channel, start, -1, -1, reverse, callback);
}
public void history(String channel, long start, long end, Callback callback) {
history(channel, start, end, -1, false, callback);
}
public void history(String channel, long start, long end, int count, Callback callback) {
history(channel, start, end, count, false, callback);
}
public void history(String channel, long start, int count, boolean reverse, Callback callback) {
history(channel, start, -1, count, reverse, callback);
}
public void history(String channel, long start, int count, Callback callback) {
history(channel, start, -1, count, false, callback);
}
public void history(String channel, int count, boolean reverse, Callback callback) {
history(channel, -1, -1, count, reverse, callback);
}
public void history(String channel, boolean reverse, Callback callback) {
history(channel, -1, -1, -1, reverse, callback);
}
public void time(Callback callback) {
_time(callback, false);
}
private void _leave(String channel, Callback callback) {
_leave(channel, null, PubnubUtil.hashtableClone(this.params), callback);
}
private void _leave(String channel) {
_leave(channel, null);
}
private void channelGroupLeave(String group) {
channelGroupLeave(group, null);
}
private void channelGroupLeave(String group, Callback callback) {
_leave(null, group, PubnubUtil.hashtableClone(this.params), callback);
}
private void _leave(String[] channels, String[] channelGroups, Hashtable params) {
_leave(channels, channelGroups, params, null);
}
private void _leave(String[] channels, String[] channelGroups, Hashtable params, Callback callback) {
_leave(PubnubUtil.joinString(channels, ","), PubnubUtil.joinString(channelGroups, ","), params, callback);
}
private void _leave(String[] channels, String[] channelGroups) {
_leave(channels, channelGroups, PubnubUtil.hashtableClone(this.params), null);
}
private void _leave(String[] channels, String[] channelGroups, Callback callback) {
_leave(PubnubUtil.joinString(channels, ","), PubnubUtil.joinString(channelGroups, ","),
PubnubUtil.hashtableClone(this.params), callback);
}
private void _leave(String channel, String channelGroup, Callback callback) {
_leave(channel, channelGroup, PubnubUtil.hashtableClone(this.params), callback);
}
private void _leave(String channel, String channelGroup, Hashtable params, Callback callback) {
final Callback cb = getWrappedCallback(callback);
if (PubnubUtil.isEmptyString(channel) && PubnubUtil.isEmptyString(channelGroup))
return;
if (PubnubUtil.isEmptyString(channel))
channel = ",";
String[] urlArgs = { getPubnubUrl(), "v2/presence/sub_key", this.SUBSCRIBE_KEY, "channel",
PubnubUtil.urlEncode(channel), "leave" };
params.put("uuid", UUID);
if (!PubnubUtil.isEmptyString(channelGroup))
params.put("channel-group", channelGroup);
HttpRequest hreq = new HttpRequest(urlArgs, params, new ResponseHandler() {
public void handleResponse(HttpRequest hreq, String response) {
cb.successCallback(null, response);
}
public void handleError(HttpRequest hreq, PubnubError error) {
cb.errorCallback(null, error);
}
});
_request(hreq, nonSubscribeManager);
}
/**
* Unsubscribe from channels.
*
* @param channels
* String array containing channel names
*/
public void unsubscribe(String[] channels, Callback callback) {
for (int i = 0; i < channels.length; i++) {
String channel = channels[i];
channelSubscriptions.removeItem(channel);
channelSubscriptions.state.remove(channel);
}
_leave(channels, null, callback);
resubscribe();
}
/**
* Unsubscribe from channels.
*
* @param channels
* String array containing channel names
*/
public void unsubscribe(String[] channels) {
unsubscribe(channels, null);
}
/**
* Unsubscribe/Disconnect from channel.
*
* @param channel
* channel name as String.
*/
public void unsubscribe(String channel) {
unsubscribe(channel, null);
}
/**
* Unsubscribe/Disconnect from channel.
*
* @param channel
* channel name as String.
*/
public void unsubscribe(String channel, Callback callback) {
unsubscribe(new String[] { channel }, callback);
}
/**
* Unsubscribe/Disconnect from channel.
*
* @param args
* Hashtable containing channel name.
*/
protected void unsubscribe(Hashtable args) {
String[] channelList = (String[]) args.get("channels");
if (channelList == null) {
channelList = new String[] { (String) args.get("channel") };
}
unsubscribe(channelList);
}
/**
* Unsubscribe from channel group
*
* @param group
* to unsubscribe
*/
public void channelGroupUnsubscribe(String group) {
channelGroupUnsubscribe(group, null);
}
/**
* Unsubscribe from channel group
*
* @param group
* to unsubscribe
* @param callback
* Callback
*/
public void channelGroupUnsubscribe(String group, Callback callback) {
channelGroupUnsubscribe(new String[] { group }, callback);
}
/**
* Unsubscribe from multiple channel groups
*
* @param groups
* to unsubscribe
* @param callback
* Callback
*/
public void channelGroupUnsubscribe(String[] groups, Callback callback) {
for (int i = 0; i < groups.length; i++) {
String group = groups[i];
channelGroupSubscriptions.removeItem(group);
}
_leave(null, groups, callback);
resubscribe();
}
/**
* Unsubscribe from multiple channel groups
*
* @param groups
* to unsubscribe
*/
public void channelGroupUnsubscribe(String[] groups) {
channelGroupUnsubscribe(groups, null);
}
/**
* Unsubscribe from presence channel.
*
* @param channel
* channel name as String.
* @param callback
* Callback
*/
public void unsubscribePresence(String channel, Callback callback) {
unsubscribe(new String[] { channel + PRESENCE_SUFFIX }, callback);
}
/**
* Unsubscribe from presence channel.
*
* @param channel
* channel name as String.
*/
public void unsubscribePresence(String channel) {
unsubscribePresence(channel, null);
}
/**
* Unsubscribe from all channels and channel groups.
*
* @param callback
*/
public void unsubscribeAll(Callback callback) {
String[] channels = channelSubscriptions.getItemNames();
String[] groups = channelGroupSubscriptions.getItemNames();
for (int i = 0; i < channels.length; i++) {
String channel = channels[i];
channelSubscriptions.removeItem(channel);
}
for (int i = 0; i < groups.length; i++) {
String group = groups[i];
channelGroupSubscriptions.removeItem(group);
}
_leave(channels, groups, callback);
disconnectAndResubscribe();
}
/**
* Unsubscribe from all channels and channel groups.
*/
public void unsubscribeAll() {
unsubscribeAll(null);
}
/**
* Unsubscribe from all channels.
*/
public void unsubscribeAllChannels() {
unsubscribeAllChannels(null);
}
/**
* Unsubscribe from all channels.
*
* @param callback
* Callback
*/
public void unsubscribeAllChannels(Callback callback) {
String[] channels = channelSubscriptions.getItemNames();
for (int i = 0; i < channels.length; i++) {
String channel = channels[i];
channelSubscriptions.removeItem(channel);
}
_leave(channels, null, callback);
disconnectAndResubscribe();
}
/**
* Unsubscribe from all channel groups.
*/
public void channelGroupUnsubscribeAllGroups() {
channelGroupUnsubscribeAllGroups(null);
}
/**
* Unsubscribe from all channel groups.
*
* @param callback
* Callback
*/
public void channelGroupUnsubscribeAllGroups(Callback callback) {
String[] groups = channelGroupSubscriptions.getItemNames();
for (int i = 0; i < groups.length; i++) {
String group = groups[i];
channelGroupSubscriptions.removeItem(group);
}
_leave(null, groups, callback);
disconnectAndResubscribe();
}
protected void subscribe(Hashtable args, Callback callback) throws PubnubException {
args.put("callback", callback);
subscribe(args);
}
protected void subscribe(Hashtable args) throws PubnubException {
keepOnlyPluralSubscriptionItems(args);
if (!inputsValid(args)) {
return;
}
_subscribe(args);
}
public void subscribe(String[] channels, Callback callback) throws PubnubException {
subscribe(channels, callback, "0");
}
public void subscribe(String[] channels, Callback callback, String timetoken) throws PubnubException {
Hashtable args = new Hashtable();
args.put("channels", channels);
args.put("callback", callback);
args.put("timetoken", timetoken);
subscribe(args);
}
public void subscribe(String[] channels, Callback callback, long timetoken) throws PubnubException {
subscribe(channels, callback, String.valueOf(timetoken));
}
public void subscribe(String channel, Callback callback) throws PubnubException {
subscribe(channel, callback, "0");
}
public void subscribe(String channel, Callback callback, String timetoken) throws PubnubException {
subscribe(new String[] { channel }, callback, timetoken);
}
public void subscribe(String channel, Callback callback, long timetoken) throws PubnubException {
subscribe(channel, callback, String.valueOf(timetoken));
}
public void subscribe(String channel, String group, Callback callback) throws PubnubException {
subscribe(channel, group, callback, "0");
}
public void subscribe(String channel, String group, Callback callback, long timetoken) throws PubnubException {
subscribe(channel, group, callback, String.valueOf(timetoken));
}
public void subscribe(String channel, String group, Callback callback, String timetoken) throws PubnubException {
subscribe(new String[] { channel }, new String[] { group }, callback, timetoken);
}
public void subscribe(String[] channels, String group, Callback callback) throws PubnubException {
subscribe(channels, group, callback, "0");
}
public void subscribe(String[] channels, String group, Callback callback, long timetoken) throws PubnubException {
subscribe(channels, group, callback, String.valueOf(timetoken));
}
public void subscribe(String[] channels, String group, Callback callback, String timetoken) throws PubnubException {
subscribe(channels, new String[] { group }, callback, timetoken);
}
public void subscribe(String channel, String[] groups, Callback callback) throws PubnubException {
subscribe(channel, groups, callback, "0");
}
public void subscribe(String channel, String[] groups, Callback callback, long timetoken) throws PubnubException {
subscribe(channel, groups, callback, String.valueOf(timetoken));
}
public void subscribe(String channel, String[] groups, Callback callback, String timetoken) throws PubnubException {
subscribe(new String[] { channel }, groups, callback, timetoken);
}
public void subscribe(String[] channels, String[] groups, Callback callback) throws PubnubException {
subscribe(channels, groups, callback, "0");
}
public void subscribe(String[] channels, String[] groups, Callback callback, long timetoken) throws PubnubException {
subscribe(channels, groups, callback, String.valueOf(timetoken));
}
public void subscribe(String[] channels, String[] groups, Callback callback, String timetoken)
throws PubnubException {
Hashtable args = new Hashtable();
args.put("channels", channels);
args.put("groups", groups);
args.put("callback", callback);
args.put("timetoken", timetoken);
subscribe(args);
}
public void channelGroupSubscribe(String group, Callback callback) throws PubnubException {
channelGroupSubscribe(group, callback, "0");
}
public void channelGroupSubscribe(String[] groups, Callback callback) throws PubnubException {
channelGroupSubscribe(groups, callback, "0");
}
public void channelGroupSubscribe(String group, Callback callback, long timetoken) throws PubnubException {
channelGroupSubscribe(group, callback, String.valueOf(timetoken));
}
public void channelGroupSubscribe(String group, Callback callback, String timetoken) throws PubnubException {
channelGroupSubscribe(new String[] { group }, callback, timetoken);
}
public void channelGroupSubscribe(String[] groups, Callback callback, long timetoken) throws PubnubException {
channelGroupSubscribe(groups, callback, String.valueOf(timetoken));
}
public void channelGroupSubscribe(String[] groups, Callback callback, String timetoken) throws PubnubException {
Hashtable args = new Hashtable();
args.put("groups", groups);
args.put("callback", callback);
args.put("timetoken", timetoken);
subscribe(args);
}
protected void callErrorCallbacks(String[] channelList, PubnubError error) {
for (int i = 0; i < channelList.length; i++) {
String channel = channelList[i];
Callback cb = channelSubscriptions.getItem(channel).callback;
cb.errorCallback(channel, error);
}
}
private void _subscribe(Hashtable args) {
String[] channelList = (String[]) args.get("channels");
String[] groupList = (String[]) args.get("groups");
if (channelList == null) {
channelList = new String[0];
}
if (groupList == null) {
groupList = new String[0];
}
Callback callback = (Callback) args.get("callback");
String timetoken = (String) args.get("timetoken");
if (!_timetoken.equals("0"))
_saved_timetoken = _timetoken;
_timetoken = (timetoken == null) ? "0" : timetoken;
/*
* Scan through the channels array. If a channel does not exist in
* hashtable create a new item with default values. If already exists
* and connected, then return
*/
for (int i = 0; i < channelList.length; i++) {
String channel = channelList[i];
if (channel.endsWith(WILDCARD_SUFFIX + PRESENCE_SUFFIX)) {
String messagesChannel = channel.substring(0, channel.indexOf(PRESENCE_SUFFIX));
SubscriptionItem wildcardMessagesObj = (SubscriptionItem) channelSubscriptions.getItem(messagesChannel);
SubscriptionItem wildcardPresenceObj = (SubscriptionItem) channelSubscriptions.getItem(channel);
if (wildcardMessagesObj == null) {
SubscriptionItem ch = new SubscriptionItem(messagesChannel, callback);
channelSubscriptions.addItem(ch);
}
if (wildcardPresenceObj == null) {
SubscriptionItem pr = new SubscriptionItem(channel, callback);
channelSubscriptions.addItem(pr);
}
} else {
SubscriptionItem channelObj = (SubscriptionItem) channelSubscriptions.getItem(channel);
if (channelObj == null) {
SubscriptionItem ch = new SubscriptionItem(channel, callback);
channelSubscriptions.addItem(ch);
}
}
}
for (int i = 0; i < groupList.length; i++) {
String group = groupList[i];
SubscriptionItem channelGroupObj = (SubscriptionItem) channelGroupSubscriptions.getItem(group);
if (channelGroupObj == null) {
SubscriptionItem chg = new SubscriptionItem(group, callback);
channelGroupSubscriptions.addItem(chg);
}
}
_subscribe_base(true);
}
private void _subscribe_base(boolean fresh) {
_subscribe_base(fresh, false, null);
}
private void _subscribe_base(boolean fresh, boolean dar) {
_subscribe_base(fresh, dar, null);
}
private void _subscribe_base(Worker worker) {
_subscribe_base(false, false, worker);
}
private void _subscribe_base(boolean fresh, Worker worker) {
_subscribe_base(fresh, false, worker);
}
private boolean isWorkerDead(HttpRequest hreq) {
return (hreq == null || hreq.getWorker() == null) ? false : hreq.getWorker()._die;
}
private void _subscribe_base(boolean fresh, boolean dar, Worker worker) {
String channelString = channelSubscriptions.getItemString(WILDCARD_PRESENCE_SUFFIX);
String groupString = channelGroupSubscriptions.getItemString();
String[] channelsArray = channelSubscriptions.getItemNames(WILDCARD_PRESENCE_SUFFIX);
String[] groupsArray = channelGroupSubscriptions.getItemNames();
if (channelsArray.length <= 0 && groupsArray.length <= 0) {
subscribeManager.resetHttpManager();
return;
}
if (channelString == null) {
callErrorCallbacks(channelsArray, PubnubError.PNERROBJ_PARSING_ERROR);
return;
}
if (channelString.equals("")) {
channelString = ",";
} else {
channelString = PubnubUtil.urlEncode(channelString);
}
String[] urlComponents = { getPubnubUrl(), ((this.V2) ? "v2/" : "") + "subscribe", this.SUBSCRIBE_KEY,
channelString, "0" + ((this.V2) ? "" : "/" + _timetoken) };
Hashtable params = PubnubUtil.hashtableClone(this.params);
params.put("uuid", UUID);
if (this.V2) {
params.put("tt", _timetoken);
if (this._region != null)
params.put("tr", this._region);
} else {
}
if (groupsArray.length > 0) {
params.put("channel-group", groupString);
}
String st = getState();
if (st != null)
params.put("state", st);
if (HEARTBEAT > 5 && HEARTBEAT < 320)
params.put("heartbeat", String.valueOf(HEARTBEAT));
log.verbose("Subscribing with timetoken : " + _timetoken);
if (channelSubscriptions.getFilter() != null && channelSubscriptions.getFilter().length() > 0) {
params.put("filter-expr", channelSubscriptions.getFilter());
}
HttpRequest hreq = new HttpRequest(urlComponents, params, new ResponseHandler() {
void changeKey(JSONObject o, String ok, String nk) throws JSONException {
if (!o.isNull(ok)) {
Object t = o.get(ok);
o.put(nk, t);
o.remove(ok);
}
}
JSONObject expandV2Keys(JSONObject m) throws JSONException {
if (!m.isNull("o")) {
changeKey(m.getJSONObject("o"), "t", "timetoken");
changeKey(m.getJSONObject("o"), "r", "region_code");
}
if (!m.isNull("p")) {
changeKey(m.getJSONObject("p"), "t", "timetoken");
changeKey(m.getJSONObject("p"), "r", "region_code");
}
changeKey(m, "a", "shard");
changeKey(m, "b", "subscription_match");
changeKey(m, "c", "channel");
changeKey(m, "d", "payload");
changeKey(m, "ear", "eat_after_reading");
changeKey(m, "f", "flags");
changeKey(m, "i", "issuing_client_id");
changeKey(m, "k", "subscribe_key");
changeKey(m, "s", "sequence_number");
changeKey(m, "o", "origination_timetoken");
changeKey(m, "p", "publish_timetoken");
changeKey(m, "r", "replication_map");
changeKey(m, "u", "user_metadata");
changeKey(m, "w", "waypoint_list");
return m;
}
void v2Handler(JSONObject jso, HttpRequest hreq) throws JSONException {
JSONArray messages = jso.getJSONArray("m");
for (int i = 0; i < messages.length(); i++) {
JSONObject messageObj = messages.getJSONObject(i);
String channel = messageObj.getString("c");
String sub_channel = (messageObj.isNull("b")) ? null : messageObj.getString("b");
Object message = messageObj.get("d");
SubscriptionItem chobj = null;
if (channelSubscriptions != null && sub_channel != null)
chobj = channelSubscriptions.getItem(sub_channel);
if (chobj == null && channelGroupSubscriptions != null && sub_channel != null)
chobj = channelGroupSubscriptions.getItem(sub_channel);
if (chobj == null && channelSubscriptions != null)
chobj = channelSubscriptions.getItem(channel);
if (chobj == null && channel.indexOf("-pnpres") > 0) {
chobj = channelSubscriptions.getItem(channel);
channel = PubnubUtil.splitString(channel, "-pnpres")[0];
}
if (chobj != null) {
Callback callback = chobj.callback;
invokeSubscribeCallbackV2(chobj.name, chobj.callback, message, expandV2Keys(messageObj),
_timetoken, hreq);
}
}
}
void v1Handler(JSONArray jsa, HttpRequest hreq) throws JSONException {
JSONArray messages = new JSONArray(jsa.get(0).toString());
if (jsa.length() == 4) {
/*
* Response has multiple channels or/and groups
*/
String[] _groups = PubnubUtil.splitString(jsa.getString(2), ",");
String[] _channels = PubnubUtil.splitString(jsa.getString(3), ",");
for (int i = 0; i < _channels.length; i++) {
handleFourElementsSubscribeResponse(_groups[i], _channels[i], messages.get(i), _timetoken, hreq);
}
} else if (jsa.length() == 3) {
/*
* Response has multiple channels
*/
String[] _channels = PubnubUtil.splitString(jsa.getString(2), ",");
for (int i = 0; i < _channels.length; i++) {
SubscriptionItem _channel = channelSubscriptions.getItem(_channels[i]);
Object message = messages.get(i);
if (_channel != null) {
invokeSubscribeCallback(_channel.name, _channel.callback, message, _timetoken, hreq);
}
}
} else if (jsa.length() < 3) {
/*
* Response for single channel Callback on single channel
*/
SubscriptionItem _channel = channelSubscriptions.getFirstItem();
if (_channel != null) {
for (int i = 0; i < messages.length(); i++) {
Object message = messages.get(i);
invokeSubscribeCallback(_channel.name, _channel.callback, message, _timetoken, hreq);
}
}
}
}
public void handleResponse(HttpRequest hreq, String response) {
JSONArray jsa = null;
JSONObject jso = null;
String _in_response_timetoken = "";
boolean handleV2 = false;
try {
jsa = new JSONArray(response);
_in_response_timetoken = jsa.get(1).toString();
} catch (JSONException e) {
try {
// handle V2 response
handleV2 = true;
jso = new JSONObject(response);
_in_response_timetoken = jso.getJSONObject("t").getString("t");
_region = jso.getJSONObject("t").getString("r");
} catch (JSONException e1) {
if (hreq.isSubzero()) {
log.verbose("Response of subscribe 0 request. Need to do dAr process again");
_subscribe_base(false, hreq.isDar(), hreq.getWorker());
} else
_subscribe_base(false);
return;
}
}
/*
* Check if response has channel names. A JSON response with
* more than 2 items means the response contains the channel
* names as well. The channel names are in a comma delimted
* string. Call success callback on all he channels passing the
* corresponding response message.
*/
_timetoken = (!_saved_timetoken.equals("0") && isResumeOnReconnect()) ? _saved_timetoken
: _in_response_timetoken;
log.verbose("Resume On Reconnect is " + isResumeOnReconnect());
log.verbose("Saved Timetoken : " + _saved_timetoken);
log.verbose("In Response Timetoken : " + _in_response_timetoken);
log.verbose("Timetoken value set to " + _timetoken);
_saved_timetoken = "0";
log.verbose("Saved Timetoken reset to 0");
if (!hreq.isDar()) {
channelSubscriptions.invokeConnectCallbackOnItems(_timetoken);
channelGroupSubscriptions.invokeConnectCallbackOnItems(_timetoken);
} else {
channelSubscriptions.invokeReconnectCallbackOnItems(_timetoken);
channelGroupSubscriptions.invokeReconnectCallbackOnItems(_timetoken);
}
try {
if (handleV2)
v2Handler(jso, hreq);
else
v1Handler(jsa, hreq);
} catch (JSONException e) {
}
if (hreq.isSubzero()) {
log.verbose("Response of subscribe 0 request. Need to do dAr process again");
_subscribe_base(false, hreq.isDar(), hreq.getWorker());
} else
_subscribe_base(false);
}
public void handleBackFromDar(HttpRequest hreq) {
_subscribe_base(false, hreq.getWorker());
}
public void handleError(HttpRequest hreq, PubnubError error) {
disconnectAndResubscribe(error);
}
public void handleTimeout(HttpRequest hreq) {
log.verbose("Timeout Occurred, Calling disconnect callbacks on the channels");
String timeoutTimetoken = (isResumeOnReconnect()) ? (_timetoken.equals("0")) ? _saved_timetoken
: _timetoken : "0";
log.verbose("Timeout Timetoken : " + timeoutTimetoken);
channelSubscriptions.invokeDisconnectCallbackOnItems(timeoutTimetoken);
channelGroupSubscriptions.invokeDisconnectCallbackOnItems(timeoutTimetoken);
channelSubscriptions.invokeErrorCallbackOnItems(PubnubError.getErrorObject(
PubnubError.PNERROBJ_TIMEOUT, 1));
channelGroupSubscriptions.invokeErrorCallbackOnItems(PubnubError.getErrorObject(
PubnubError.PNERROBJ_TIMEOUT, 1));
// disconnectAndResubscribe();
// channelSubscriptions.removeAllItems();
}
public String getTimetoken() {
return _timetoken;
}
});
if (_timetoken.equals("0")) {
hreq.setSubzero(true);
log.verbose("This is a subscribe 0 request");
}
hreq.setDar(dar);
if (worker != null && worker instanceof Worker)
hreq.setWorker(worker);
_request(hreq, subscribeManager, fresh);
}
private void handleFourElementsSubscribeResponse(String thirdString, String fourthString, Object message,
String timetoken, HttpRequest hreq) throws JSONException {
SubscriptionItem thirdChannelGroup = channelGroupSubscriptions.getItem(thirdString);
SubscriptionItem thirdChannel = channelSubscriptions.getItem(thirdString);
SubscriptionItem fourthChannel = channelSubscriptions.getItem(fourthString);
if (isWorkerDead(hreq))
return;
if (thirdString.equals(fourthString) && fourthChannel != null) {
invokeSubscribeCallback(fourthString, fourthChannel.callback, message, timetoken, hreq);
} else if (thirdString.endsWith("*")) {
if (fourthChannel != null && fourthString.endsWith(PRESENCE_SUFFIX)) {
invokeSubscribeCallback(fourthString, fourthChannel.callback, message, timetoken, hreq);
} else if (thirdChannelGroup != null && !fourthString.endsWith(PRESENCE_SUFFIX)) {
invokeSubscribeCallback(fourthString, thirdChannelGroup.callback, message, timetoken, hreq);
} else if (thirdChannel != null && thirdString.endsWith(WILDCARD_SUFFIX)
&& !fourthString.endsWith(PRESENCE_SUFFIX) /*
* !!! get
* reviewed by
* Alex
*/) {
invokeSubscribeCallback(fourthString, thirdChannel.callback, message, timetoken, hreq);
} else {
// !!! This should be handled by error Callback. Or use logging
// mechanism
// System.out.println("ERROR: Unable to handle wildcard response: "
// + message);
}
} else if (!thirdString.equals(fourthString) && thirdChannelGroup != null) {
invokeSubscribeCallback(fourthString, thirdChannelGroup.callback, message, timetoken, hreq);
} else {
// !!!! This should be handled in error callback. Or use logging
// mechanism.
// System.out.println("ERROR: Unable to handle response: " +
// message);
}
}
private void invokeSubscribeCallback(String channel, Callback callback, Object message, String timetoken,
HttpRequest hreq) throws JSONException {
if (CIPHER_KEY.length() > 0 && !channel.endsWith(PRESENCE_SUFFIX)) {
PubnubCrypto pc = new PubnubCrypto(CIPHER_KEY, IV);
try {
message = pc.decrypt(message.toString());
if (!isWorkerDead(hreq))
callback.successWrapperCallback(channel,
PubnubUtil.parseJSON(PubnubUtil.stringToJSON(message.toString()), true), timetoken);
} catch (IllegalStateException e) {
if (!isWorkerDead(hreq))
callback.errorCallback(channel,
PubnubError.getErrorObject(PubnubError.PNERROBJ_DECRYPTION_ERROR, 12, message.toString()));
} catch (PubnubException e) {
if (!isWorkerDead(hreq))
callback.errorCallback(
channel,
getPubnubError(e, PubnubError.PNERROBJ_DECRYPTION_ERROR, 16,
message.toString() + " : " + e.toString()));
} catch (Exception e) {
if (!isWorkerDead(hreq))
callback.errorCallback(
channel,
PubnubError.getErrorObject(PubnubError.PNERROBJ_DECRYPTION_ERROR, 15, message.toString()
+ " : " + e.toString()));
}
} else {
if (!isWorkerDead(hreq))
callback.successWrapperCallback(channel, PubnubUtil.parseJSON(message, false), timetoken);
}
}
private void invokeSubscribeCallbackV2(String channel, Callback callback, Object message, JSONObject envelope,
String timetoken, HttpRequest hreq) throws JSONException {
if (CIPHER_KEY.length() > 0 && !channel.endsWith(PRESENCE_SUFFIX)) {
PubnubCrypto pc = new PubnubCrypto(CIPHER_KEY, IV);
try {
message = pc.decrypt(message.toString());
if (!isWorkerDead(hreq))
callback.successWrapperCallbackV2(channel,
PubnubUtil.parseJSON(PubnubUtil.stringToJSON(message.toString()), true), envelope, timetoken);
} catch (IllegalStateException e) {
if (!isWorkerDead(hreq))
callback.errorCallback(channel,
PubnubError.getErrorObject(PubnubError.PNERROBJ_DECRYPTION_ERROR, 12, message.toString()));
} catch (PubnubException e) {
if (!isWorkerDead(hreq))
callback.errorCallback(
channel,
getPubnubError(e, PubnubError.PNERROBJ_DECRYPTION_ERROR, 16,
message.toString() + " : " + e.toString()));
} catch (Exception e) {
if (!isWorkerDead(hreq))
callback.errorCallback(
channel,
PubnubError.getErrorObject(PubnubError.PNERROBJ_DECRYPTION_ERROR, 15, message.toString()
+ " : " + e.toString()));
}
} else {
if (!isWorkerDead(hreq))
callback.successWrapperCallbackV2(channel, PubnubUtil.parseJSON(message, false), envelope, timetoken);
}
}
private void changeOrigin() {
this.ORIGIN_STR = null;
this.HOSTNAME_SUFFIX = getRandom();
}
private void resubscribe() {
changeOrigin();
if (!_timetoken.equals("0"))
_saved_timetoken = _timetoken;
_timetoken = "0";
log.verbose("Before Resubscribe Timetoken : " + _timetoken);
log.verbose("Before Resubscribe Saved Timetoken : " + _saved_timetoken);
_subscribe_base(true, true);
}
private void resubscribe(String timetoken) {
changeOrigin();
if (!timetoken.equals("0"))
_saved_timetoken = timetoken;
_timetoken = "0";
log.verbose("Before Resubscribe Timetoken : " + _timetoken);
log.verbose("Before Resubscribe Saved Timetoken : " + _saved_timetoken);
_subscribe_base(true, true);
}
public void disconnectAndResubscribeWithTimetoken(String timetoken) {
disconnectAndResubscribeWithTimetoken(timetoken, PubnubError.PNERROBJ_DISCONN_AND_RESUB);
}
public void disconnectAndResubscribeWithTimetoken(String timetoken, PubnubError error) {
log.verbose("Received disconnectAndResubscribeWithTimetoken");
channelSubscriptions.invokeErrorCallbackOnItems(error);
channelGroupSubscriptions.invokeErrorCallbackOnItems(error);
resubscribe(timetoken);
}
public void disconnectAndResubscribe() {
disconnectAndResubscribe(PubnubError.PNERROBJ_DISCONNECT);
}
public void disconnectAndResubscribe(PubnubError error) {
log.verbose("Received disconnectAndResubscribe");
channelSubscriptions.invokeErrorCallbackOnItems(error);
channelGroupSubscriptions.invokeErrorCallbackOnItems(error);
resubscribe();
}
public String[] getSubscribedChannelsArray() {
return channelSubscriptions.getItemNames();
}
public void setAuthKey(String authKey) {
super.setAuthKey(authKey);
resubscribe();
}
public void unsetAuthKey() {
super.unsetAuthKey();
resubscribe();
}
public String getFilter() {
return channelSubscriptions.getFilter();
}
public void setFilter(String filter) {
channelSubscriptions.setFilter(filter);
}
}