2019-11-12 15:29:07 +03:00
|
|
|
/*
|
2019-11-18 12:16:29 +03:00
|
|
|
Copyright 2019 The Matrix.org Foundation C.I.C.
|
2019-11-12 15:29:07 +03:00
|
|
|
|
|
|
|
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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
2019-11-18 16:29:03 +03:00
|
|
|
* Object holding the global EventIndex object. Can only be initialized if the
|
|
|
|
* platform supports event indexing.
|
2019-11-12 15:29:07 +03:00
|
|
|
*/
|
|
|
|
|
|
|
|
import PlatformPeg from "./PlatformPeg";
|
2019-11-18 16:36:08 +03:00
|
|
|
import EventIndex from "./EventIndex";
|
2019-11-12 15:29:07 +03:00
|
|
|
|
|
|
|
class EventIndexPeg {
|
|
|
|
constructor() {
|
|
|
|
this.index = null;
|
|
|
|
}
|
|
|
|
|
2019-11-18 12:27:10 +03:00
|
|
|
/**
|
|
|
|
* Create a new EventIndex and initialize it if the platform supports it.
|
2019-11-13 18:21:26 +03:00
|
|
|
*
|
|
|
|
* @return {Promise<bool>} A promise that will resolve to true if an
|
|
|
|
* EventIndex was successfully initialized, false otherwise.
|
2019-11-12 15:29:07 +03:00
|
|
|
*/
|
|
|
|
async init() {
|
2019-11-13 14:25:16 +03:00
|
|
|
const indexManager = PlatformPeg.get().getEventIndexingManager();
|
2019-11-18 12:34:48 +03:00
|
|
|
if (!indexManager || await indexManager.supportsEventIndexing() !== true) {
|
2019-11-13 17:39:39 +03:00
|
|
|
console.log("EventIndex: Platform doesn't support event indexing,",
|
|
|
|
"not initializing.");
|
|
|
|
return false;
|
|
|
|
}
|
2019-11-12 15:29:07 +03:00
|
|
|
|
2019-11-13 17:39:39 +03:00
|
|
|
const index = new EventIndex();
|
|
|
|
|
|
|
|
try {
|
2019-11-14 16:13:49 +03:00
|
|
|
await index.init();
|
2019-11-13 17:39:39 +03:00
|
|
|
} catch (e) {
|
|
|
|
console.log("EventIndex: Error initializing the event index", e);
|
2019-11-14 18:01:14 +03:00
|
|
|
return false;
|
2019-11-13 17:39:39 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
console.log("EventIndex: Successfully initialized the event index");
|
|
|
|
|
2019-11-12 15:29:07 +03:00
|
|
|
this.index = index;
|
|
|
|
|
2019-11-13 12:30:38 +03:00
|
|
|
return true;
|
2019-11-12 15:29:07 +03:00
|
|
|
}
|
|
|
|
|
2019-11-13 18:21:26 +03:00
|
|
|
/**
|
2019-11-14 18:13:22 +03:00
|
|
|
* Get the current event index.
|
|
|
|
*
|
|
|
|
* @return {EventIndex} The current event index.
|
2019-11-13 18:21:26 +03:00
|
|
|
*/
|
2019-11-14 18:13:22 +03:00
|
|
|
get() {
|
|
|
|
return this.index;
|
|
|
|
}
|
|
|
|
|
2019-11-12 17:40:49 +03:00
|
|
|
stop() {
|
|
|
|
if (this.index === null) return;
|
2019-11-14 18:13:22 +03:00
|
|
|
this.index.stopCrawler();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Unset our event store
|
|
|
|
*
|
|
|
|
* After a call to this the init() method will need to be called again.
|
|
|
|
*
|
|
|
|
* @return {Promise} A promise that will resolve once the event index is
|
|
|
|
* closed.
|
|
|
|
*/
|
|
|
|
async unset() {
|
|
|
|
if (this.index === null) return;
|
|
|
|
this.index.close();
|
2019-11-12 17:40:49 +03:00
|
|
|
this.index = null;
|
2019-11-12 15:29:07 +03:00
|
|
|
}
|
|
|
|
|
2019-11-13 18:21:26 +03:00
|
|
|
/**
|
|
|
|
* Delete our event indexer.
|
|
|
|
*
|
|
|
|
* After a call to this the init() method will need to be called again.
|
|
|
|
*
|
|
|
|
* @return {Promise} A promise that will resolve once the event index is
|
|
|
|
* deleted.
|
|
|
|
*/
|
2019-11-12 15:29:07 +03:00
|
|
|
async deleteEventIndex() {
|
2019-11-14 18:13:22 +03:00
|
|
|
const indexManager = PlatformPeg.get().getEventIndexingManager();
|
|
|
|
|
|
|
|
if (indexManager !== null) {
|
|
|
|
this.stop();
|
|
|
|
console.log("EventIndex: Deleting event index.");
|
|
|
|
await indexManager.deleteEventIndex();
|
|
|
|
this.index = null;
|
|
|
|
}
|
2019-11-12 15:29:07 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!global.mxEventIndexPeg) {
|
|
|
|
global.mxEventIndexPeg = new EventIndexPeg();
|
|
|
|
}
|
|
|
|
module.exports = global.mxEventIndexPeg;
|