2013-11-08 10:22:08 +04:00
|
|
|
|
//
|
|
|
|
|
// Copyright (c) Microsoft and contributors. All rights reserved.
|
|
|
|
|
//
|
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
//
|
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
|
//
|
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
|
// limitations under the License.
|
|
|
|
|
//
|
2012-03-13 05:10:28 +04:00
|
|
|
|
|
|
|
|
|
// Module dependencies.
|
|
|
|
|
var Protocol1RuntimeClient = require('./protocol1runtimeclient');
|
|
|
|
|
|
|
|
|
|
function RuntimeVersionManager(runtimeVersionProtocolClient, runtimeKernel) {
|
|
|
|
|
this.protocolClient = runtimeVersionProtocolClient;
|
|
|
|
|
this.runtimeKernel = runtimeKernel;
|
|
|
|
|
|
|
|
|
|
var self = this;
|
|
|
|
|
var runtimeClientFactory = {
|
|
|
|
|
getVersion: function () {
|
|
|
|
|
return '2011-03-08';
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
createRuntimeClient: function (path) {
|
|
|
|
|
return new Protocol1RuntimeClient(
|
|
|
|
|
self.runtimeKernel.getGoalStateClient(),
|
|
|
|
|
self.runtimeKernel.getCurrentStateClient(),
|
|
|
|
|
path);
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
this.supportedVersionList = [ runtimeClientFactory ];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
RuntimeVersionManager.prototype.getRuntimeClient = function (versionEndpoint, callback) {
|
|
|
|
|
var self = this;
|
|
|
|
|
|
|
|
|
|
self.protocolClient.getVersionMap(versionEndpoint, function (error, versionMap) {
|
|
|
|
|
if (error) {
|
|
|
|
|
callback(error);
|
|
|
|
|
} else {
|
|
|
|
|
for (var i in self.supportedVersionList) {
|
2013-02-17 22:07:04 +04:00
|
|
|
|
if (self.supportedVersionList.hasOwnProperty(i)) {
|
|
|
|
|
var factory = self.supportedVersionList[i];
|
2012-03-13 05:10:28 +04:00
|
|
|
|
|
2013-02-17 22:07:04 +04:00
|
|
|
|
if (versionMap[factory.getVersion()]) {
|
|
|
|
|
callback(undefined, factory.createRuntimeClient(versionMap[factory.getVersion()]));
|
|
|
|
|
return;
|
|
|
|
|
}
|
2012-03-13 05:10:28 +04:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
callback('Server does not support any known protocol versions.');
|
|
|
|
|
}
|
|
|
|
|
});
|
2013-02-17 22:07:04 +04:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
module.exports = RuntimeVersionManager;
|