2020-03-19 10:28:21 +00:00
|
|
|
import Service, { inject as service } from '@ember/service';
|
2020-07-17 13:42:45 +00:00
|
|
|
import { proxy } from 'consul-ui/utils/dom/event-source';
|
2020-03-19 10:28:21 +00:00
|
|
|
|
|
|
|
import MultiMap from 'mnemonist/multi-map';
|
|
|
|
|
|
|
|
// TODO: Expose sizes of things via env vars
|
|
|
|
|
|
|
|
// caches cursors and previous events when the EventSources are destroyed
|
2020-05-11 15:37:11 +00:00
|
|
|
let cache = null;
|
2020-03-19 10:28:21 +00:00
|
|
|
// keeps a record of currently in use EventSources
|
2020-05-11 15:37:11 +00:00
|
|
|
let sources = null;
|
2020-03-19 10:28:21 +00:00
|
|
|
// keeps a count of currently in use EventSources
|
2020-05-11 15:37:11 +00:00
|
|
|
let usage = null;
|
2020-11-09 09:25:35 +00:00
|
|
|
export default class DataSourceService extends Service {
|
|
|
|
@service('dom')
|
|
|
|
dom;
|
2020-03-19 10:28:21 +00:00
|
|
|
|
2020-11-09 09:25:35 +00:00
|
|
|
@service('encoder')
|
|
|
|
encoder;
|
|
|
|
|
|
|
|
@service('data-source/protocols/http')
|
|
|
|
consul;
|
|
|
|
|
|
|
|
@service('data-source/protocols/local-storage')
|
|
|
|
settings;
|
|
|
|
|
|
|
|
init() {
|
|
|
|
super.init(...arguments);
|
2020-05-27 10:23:21 +00:00
|
|
|
cache = new Map();
|
|
|
|
sources = new Map();
|
|
|
|
usage = new MultiMap(Set);
|
2020-05-11 15:37:11 +00:00
|
|
|
this._listeners = this.dom.listeners();
|
2020-11-09 09:25:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
resetCache() {
|
2020-03-19 10:28:21 +00:00
|
|
|
cache = new Map();
|
2020-11-09 09:25:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
willDestroy() {
|
2020-03-19 10:28:21 +00:00
|
|
|
this._listeners.remove();
|
2020-05-27 10:23:21 +00:00
|
|
|
sources.forEach(function(item) {
|
2020-04-21 15:49:11 +00:00
|
|
|
item.close();
|
|
|
|
});
|
|
|
|
cache = null;
|
|
|
|
sources = null;
|
2020-07-17 13:42:45 +00:00
|
|
|
usage.clear();
|
2020-04-21 15:49:11 +00:00
|
|
|
usage = null;
|
2020-11-09 09:25:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
source(cb, attrs) {
|
2020-07-17 13:42:45 +00:00
|
|
|
const src = cb(this.encoder.uriTag());
|
|
|
|
return new Promise((resolve, reject) => {
|
|
|
|
const ref = {};
|
|
|
|
const source = this.open(src, ref, true);
|
|
|
|
source.configuration.ref = ref;
|
|
|
|
const remove = this._listeners.add(source, {
|
|
|
|
message: e => {
|
|
|
|
remove();
|
|
|
|
// the source only gets wrapped in the proxy
|
|
|
|
// after the first message
|
|
|
|
// but the proxy itself is resolve to the route
|
|
|
|
resolve(proxy(e.target, e.data));
|
|
|
|
},
|
|
|
|
error: e => {
|
|
|
|
remove();
|
|
|
|
this.close(source, ref);
|
|
|
|
reject(e.error);
|
|
|
|
},
|
|
|
|
});
|
|
|
|
if (typeof source.getCurrentEvent() !== 'undefined') {
|
|
|
|
source.dispatchEvent(source.getCurrentEvent());
|
|
|
|
}
|
|
|
|
});
|
2020-11-09 09:25:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
unwrap(src, ref) {
|
2020-07-17 13:42:45 +00:00
|
|
|
const source = src._source;
|
|
|
|
usage.set(source, ref);
|
|
|
|
usage.remove(source, source.configuration.ref);
|
|
|
|
delete source.configuration.ref;
|
|
|
|
return source;
|
2020-11-09 09:25:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
open(uri, ref, open = false) {
|
2020-07-17 13:42:45 +00:00
|
|
|
if (typeof uri !== 'string') {
|
|
|
|
return this.unwrap(uri, ref);
|
|
|
|
}
|
2020-03-19 10:28:21 +00:00
|
|
|
let source;
|
|
|
|
// Check the cache for an EventSource that is already being used
|
|
|
|
// for this uri. If we don't have one, set one up.
|
|
|
|
if (uri.indexOf('://') === -1) {
|
|
|
|
uri = `consul://${uri}`;
|
|
|
|
}
|
2020-07-17 13:42:45 +00:00
|
|
|
let [providerName, pathname] = uri.split('://');
|
|
|
|
const provider = this[providerName];
|
2020-03-19 10:28:21 +00:00
|
|
|
if (!sources.has(uri)) {
|
|
|
|
let configuration = {};
|
|
|
|
if (cache.has(uri)) {
|
|
|
|
configuration = cache.get(uri);
|
|
|
|
}
|
2020-07-17 13:42:45 +00:00
|
|
|
configuration.uri = uri;
|
2020-03-19 10:28:21 +00:00
|
|
|
source = provider.source(pathname, configuration);
|
2020-07-17 13:42:45 +00:00
|
|
|
const remove = this._listeners.add(source, {
|
2020-03-19 10:28:21 +00:00
|
|
|
close: e => {
|
2020-07-17 13:42:45 +00:00
|
|
|
// a close could be fired either by:
|
|
|
|
// 1. A non-blocking query leaving the page
|
|
|
|
// 2. A non-blocking query responding
|
|
|
|
// 3. A blocking query responding when is in a closing state
|
|
|
|
// 3. A non-blocking query or a blocking query being cancelled
|
2020-03-19 10:28:21 +00:00
|
|
|
const source = e.target;
|
2020-05-27 10:23:21 +00:00
|
|
|
const event = source.getCurrentEvent();
|
|
|
|
const cursor = source.configuration.cursor;
|
|
|
|
// only cache data if we have any
|
|
|
|
if (typeof event !== 'undefined' && typeof cursor !== 'undefined') {
|
|
|
|
cache.set(uri, {
|
2020-07-09 09:08:47 +00:00
|
|
|
currentEvent: event,
|
|
|
|
cursor: cursor,
|
2020-05-27 10:23:21 +00:00
|
|
|
});
|
|
|
|
}
|
2020-03-19 10:28:21 +00:00
|
|
|
// the data is cached delete the EventSource
|
2020-07-09 09:08:47 +00:00
|
|
|
if (!usage.has(source)) {
|
2020-07-17 13:42:45 +00:00
|
|
|
// A non-blocking query could close but still be on the page
|
2020-07-09 09:08:47 +00:00
|
|
|
sources.delete(uri);
|
|
|
|
}
|
2020-07-17 13:42:45 +00:00
|
|
|
remove();
|
2020-03-19 10:28:21 +00:00
|
|
|
},
|
|
|
|
});
|
|
|
|
sources.set(uri, source);
|
|
|
|
} else {
|
|
|
|
source = sources.get(uri);
|
2020-07-17 13:42:45 +00:00
|
|
|
// bump to the end of the list
|
|
|
|
sources.delete(uri);
|
|
|
|
sources.set(uri, source);
|
2020-03-19 10:28:21 +00:00
|
|
|
}
|
2020-07-09 09:08:47 +00:00
|
|
|
// only open if its not already being used
|
|
|
|
// in the case of blocking queries being disabled
|
|
|
|
// you may want to specifically force an open
|
|
|
|
// if blocking queries are enabled then opening an already
|
|
|
|
// open blocking query does nothing
|
2020-07-17 13:42:45 +00:00
|
|
|
if (!usage.has(source) || source.readyState > 1 || open) {
|
2020-07-09 09:08:47 +00:00
|
|
|
source.open();
|
|
|
|
}
|
2020-03-19 10:28:21 +00:00
|
|
|
// set/increase the usage counter
|
|
|
|
usage.set(source, ref);
|
|
|
|
return source;
|
2020-11-09 09:25:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
close(source, ref) {
|
2020-07-17 13:42:45 +00:00
|
|
|
// this close is called when the source has either left the page
|
|
|
|
// or in the case of a proxied source, it errors
|
2020-03-19 10:28:21 +00:00
|
|
|
if (source) {
|
|
|
|
// decrease the usage counter
|
|
|
|
usage.remove(source, ref);
|
|
|
|
// if the EventSource is no longer being used
|
|
|
|
// close it (data caching is dealt with by the above 'close' event listener)
|
|
|
|
if (!usage.has(source)) {
|
|
|
|
source.close();
|
2020-07-17 13:42:45 +00:00
|
|
|
if (source.readyState === 2) {
|
|
|
|
// in the case that a non-blocking query is on the page
|
|
|
|
// and it has already responded and has therefore been cached
|
|
|
|
// but not removed itself from sources
|
|
|
|
// delete from sources
|
|
|
|
sources.delete(source.configuration.uri);
|
|
|
|
}
|
2020-03-19 10:28:21 +00:00
|
|
|
}
|
|
|
|
}
|
2020-11-09 09:25:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
closed() {
|
2020-07-17 13:42:45 +00:00
|
|
|
// anything that is closed or closing
|
|
|
|
return [...sources.entries()]
|
|
|
|
.filter(([key, item]) => {
|
|
|
|
return item.readyState > 1;
|
|
|
|
})
|
|
|
|
.map(item => item[0]);
|
2020-11-09 09:25:35 +00:00
|
|
|
}
|
|
|
|
}
|