mirror of
https://github.com/nasa/openmct.git
synced 2025-01-31 08:25:31 +00:00
[Telemetry] Add TelemetrySubscriber
Add TelemetrySubscriber, a helper class to be used for supporting real-time telemetry. WTD-614.
This commit is contained in:
parent
8c55a66320
commit
34bb2ff51a
@ -64,7 +64,8 @@ define(
|
||||
* which may (or may not, depending on
|
||||
* availability) satisfy the requests
|
||||
*/
|
||||
requestTelemetry: requestTelemetry
|
||||
requestTelemetry: requestTelemetry,
|
||||
subscribe: subscribe
|
||||
};
|
||||
}
|
||||
|
||||
|
107
platform/telemetry/src/TelemetrySubscriber.js
Normal file
107
platform/telemetry/src/TelemetrySubscriber.js
Normal file
@ -0,0 +1,107 @@
|
||||
/*global define*/
|
||||
|
||||
define(
|
||||
[],
|
||||
function () {
|
||||
"use strict";
|
||||
|
||||
function TelemetrySubscriber($q, $timeout, domainObject, callback) {
|
||||
var unsubscribePromise,
|
||||
latestValues = {},
|
||||
telemetryObjects = [],
|
||||
updatePending;
|
||||
|
||||
// Look up domain objects which have telemetry capabilities.
|
||||
// This will either be the object in view, or object that
|
||||
// this object delegates its telemetry capability to.
|
||||
function promiseRelevantObjects(domainObject) {
|
||||
// If object has been cleared, there are no relevant
|
||||
// telemetry-providing domain objects.
|
||||
if (!domainObject) {
|
||||
return $q.when([]);
|
||||
}
|
||||
|
||||
// Otherwise, try delegation first, and attach the
|
||||
// object itself if it has a telemetry capability.
|
||||
return $q.when(domainObject.useCapability(
|
||||
"delegation",
|
||||
"telemetry"
|
||||
)).then(function (result) {
|
||||
var head = domainObject.hasCapability("telemetry") ?
|
||||
[ domainObject ] : [],
|
||||
tail = result || [];
|
||||
return head.concat(tail);
|
||||
});
|
||||
}
|
||||
|
||||
function fireCallback(values) {
|
||||
callback(values);
|
||||
updatePending = false;
|
||||
}
|
||||
|
||||
function update(domainObject, telemetry) {
|
||||
var count = telemetry && telemetry.getPointCount();
|
||||
|
||||
if (!updatePending && count) {
|
||||
updatePending = true;
|
||||
$timeout(fireCallback, 0);
|
||||
}
|
||||
|
||||
if (count > 0) {
|
||||
latestValues[domainObject.getId()] = {
|
||||
domain: telemetry.getDomainValue(count - 1),
|
||||
range: telemetry.getRangeValue(count - 1)
|
||||
};
|
||||
}
|
||||
}
|
||||
|
||||
function subscribe(domainObject) {
|
||||
var telemetryCapability =
|
||||
domainObject.getCapability("telemetry");
|
||||
return telemetryCapability.subscribe(function (telemetry) {
|
||||
update(domainObject, telemetry);
|
||||
});
|
||||
}
|
||||
|
||||
function subscribeAll(domainObjects) {
|
||||
return domainObjects.map(subscribe);
|
||||
}
|
||||
|
||||
function cacheObjectReferences(objects) {
|
||||
telemetryObjects = objects;
|
||||
return objects;
|
||||
}
|
||||
|
||||
// Get a reference to relevant objects (those with telemetry
|
||||
// capabilities)
|
||||
unsubscribePromise =
|
||||
promiseRelevantObjects(domainObject)
|
||||
.then(cacheObjectReferences)
|
||||
.then(subscribeAll);
|
||||
|
||||
return {
|
||||
unsubscribe: function () {
|
||||
return unsubscribePromise.then(function (unsubscribes) {
|
||||
return $q.all(unsubscribes.map(function (unsubscribe) {
|
||||
return unsubscribe();
|
||||
}));
|
||||
});
|
||||
},
|
||||
getDomainValue: function (domainObject) {
|
||||
var id = domainObject.getId();
|
||||
return (latestValues[id] || {}).domain;
|
||||
},
|
||||
getRangeValue: function (domainObject) {
|
||||
var id = domainObject.getId();
|
||||
return (latestValues[id] || {}).range;
|
||||
},
|
||||
getTelemetryObjects: function () {
|
||||
return telemetryObjects;
|
||||
}
|
||||
};
|
||||
}
|
||||
|
||||
return TelemetrySubscriber;
|
||||
|
||||
}
|
||||
);
|
Loading…
x
Reference in New Issue
Block a user