Checkpoint: working subscribe/unsubscribe and message transit, through the debug page

This commit is contained in:
Ian Gulliver
2014-05-10 15:47:33 +02:00
parent 6a6fdc1c41
commit bff49f3401
4 changed files with 175 additions and 44 deletions

View File

@@ -22,6 +22,7 @@ cosmopolite.Client = function(opt_callbacks, opt_urlPrefix, opt_namespace) {
this.namespace_ = opt_namespace || 'cosmopolite';
this.stateCache_ = {};
this.subscriptions_ = {};
var scriptUrls = [
'https://ajax.googleapis.com/ajax/libs/jquery/2.1.0/jquery.min.js',
@@ -36,6 +37,56 @@ cosmopolite.Client = function(opt_callbacks, opt_urlPrefix, opt_namespace) {
}, this);
};
cosmopolite.Client.prototype.setValue = function(key, value, is_public) {
this.sendRPC_('setValue', {
'key': key,
'value': value,
'public': is_public,
});
// Provide immediate feedback without waiting for a round trip.
// We'll also get a response from the server, so this should be eventually
// consistent.
if ('onStateChange' in this.callbacks_) {
this.callbacks_['onStateChange'](key, value);
}
};
cosmopolite.Client.prototype.getValue = function(key) {
return this.stateCache_[key];
};
cosmopolite.Client.prototype.subscribe = function(subject, messages) {
if (subject in this.subscriptions_) {
console.log('Not sending duplication subscription request for subject:', subject);
return;
}
this.subscriptions_[subject] = {
'messages': [],
};
this.sendRPC_('subscribe', {
'subject': subject,
'messages': messages,
});
};
cosmopolite.Client.prototype.unsubscribe = function(subject) {
delete this.subscriptions_[subject];
this.sendRPC_('unsubscribe', {
'subject': subject,
});
};
cosmopolite.Client.prototype.sendMessage = function(subject, message) {
this.sendRPC_('sendMessage', {
'subject': subject,
'message': message,
});
};
cosmopolite.Client.prototype.getMessages = function(subject) {
return this.subscriptions_[subject].messages;
};
cosmopolite.Client.prototype.onLoad_ = function() {
if (--this.numScriptsToLoad_ > 0) {
return;
@@ -151,46 +202,24 @@ cosmopolite.Client.prototype.sendRPCs_ = function(commands, delay) {
});
};
cosmopolite.Client.prototype.setValue = function(key, value, is_public) {
this.sendRPC_('setValue', {
'key': key,
'value': value,
'public': is_public,
})
// Provide immediate feedback without waiting for a round trip.
// We'll also get a response from the server, so this should be eventually
// consistent.
if ('onStateChange' in this.callbacks_) {
this.callbacks_['onStateChange'](key, value);
}
};
cosmopolite.Client.prototype.getValue = function(key) {
return this.stateCache_[key];
};
cosmopolite.Client.prototype.createChannel_ = function() {
this.sendRPCs_([
{
'command': 'createChannel',
'onSuccess': this.onCreateChannel_,
},
// TODO(flamingcow): Remove debugging below.
{
'command': 'subscribe',
'arguments': {
'subject': 'books',
'messages': 5,
}
},
{
'command': 'sendMessage',
'arguments': {
'subject': 'books',
'message': 'foobar',
}
},
]);
var rpcs = [
{
'command': 'createChannel',
'onSuccess': this.onCreateChannel_,
},
];
// TODO(flamingcow): Need to restart from the latest message.
for (var subject in this.subscriptions_) {
rpcs.push({
'command': 'subscribe',
'arguments': {
'subject': subject,
'messages': 0,
}
});
}
this.sendRPCs_(rpcs);
};
cosmopolite.Client.prototype.onCreateChannel_ = function(data) {
@@ -244,7 +273,7 @@ cosmopolite.Client.prototype.onServerEvent_ = function(e) {
case 'login':
if ('onLogin' in this.callbacks_) {
this.callbacks_['onLogin'](
e.google_user,
e['google_user'],
this.urlPrefix_ + '/auth/logout');
}
break;
@@ -254,6 +283,24 @@ cosmopolite.Client.prototype.onServerEvent_ = function(e) {
this.urlPrefix_ + '/auth/login');
}
break;
case 'message':
if ('onMessage' in this.callbacks_) {
if (!(e['subject'] in this.subscriptions_)) {
console.log('Message from unrecognized subject:', e);
break;
}
var subscription = this.subscriptions_[e['subject']];
var duplicate = subscription.messages.some(function(message) {
return message['id'] == e.id;
});
if (duplicate) {
console.log('Duplicate message:', e);
break;
}
subscription.messages.push(e);
this.callbacks_['onMessage'](e);
}
break;
default:
// Client out of date? Force refresh?
console.log('Unknown channel event:', e);