Esempio n. 1
0
def web_ingest(source_id):
    ds = DatasourceManager().get_plugin(source_id)
    body_json = request.get_json()
    if body_json is not None:
        ds.ingest(request.json)
        return ("", 200)
    else:
        return ("", 400)
Esempio n. 2
0
 def __init__(self):
     self.qoisystem_map = {}
     self.datasource_manager = DatasourceManager()
     self.initialise()  #TODO enable!
     logger.info("Semantic Enrichment started")
Esempio n. 3
0
class SemanticEnrichment:
    def __init__(self):
        self.qoisystem_map = {}
        self.datasource_manager = DatasourceManager()
        self.initialise()  #TODO enable!
        logger.info("Semantic Enrichment started")

    def initialise(self):
        self.datasource_manager.initialise_subscriptions()

        # get and notify for existing streams in a separate thread as this is blocking
        t = threading.Thread(target=self.initialise_existing_streams)
        t.start()

    def initialise_existing_streams(self):
        streams = broker_interface.get_all_entities(NGSI_Type.IoTStream)
        logger.debug("There are " + str(len(streams)) + " existing streams")
        for stream in streams:
            logger.debug("Notifiy existing stream " +
                         ngsi_parser.get_id(stream))
            self.notify_datasource(stream)

    def notify_datasource(self, ngsi_data):
        ngsi_id, ngsi_type = ngsi_parser.get_IDandType(ngsi_data)
        # Save data locally, instantiate subscriptions
        self.datasource_manager.update(ngsi_type, ngsi_id, ngsi_data)

        # check if type is stream, if yes we have to initialise/update qoi
        if ngsi_type is NGSI_Type.IoTStream:
            if ngsi_id not in self.qoisystem_map:
                self.qoisystem_map[ngsi_id] = QoiSystem(
                    ngsi_id, self.datasource_manager)

                qoi_ngsi = self.qoisystem_map[ngsi_id].get_qoivector_ngsi()
                logger.debug("Formatting qoi data as ngsi-ld: " +
                             str(qoi_ngsi))

                #  relationship to be added to the dataset to link QoI
                ngsi = {
                    "qoi:hasQuality": {
                        "type": "Relationship",
                        "object": qoi_ngsi['id']
                    },
                    "@context": [
                        "http://uri.etsi.org/ngsi-ld/v1/ngsi-ld-core-context.jsonld",
                        {
                            "qoi": "https://w3id.org/iot/qoi#"
                        }
                    ]
                }
                # update locally
                self.datasource_manager.link_qoi(ngsi_id, qoi_ngsi['id'])

                # save qoi data
                broker_interface.create_ngsi_entity(qoi_ngsi)
                # save relationship for qoi data
                broker_interface.add_ngsi_attribute(ngsi, ngsi_id)

        # if incoming data is observation we have to update QoI
        elif ngsi_type is NGSI_Type.StreamObservation:
            #TODO check if observation has imputed flag, if yes discard it
            if not ngsi_parser.is_imputedObservation(ngsi_data):
                self.receive(ngsi_data)

    def receive(self, observation):
        # get stream id from observation
        stream_id = ngsi_parser.get_observation_stream(observation)

        try:
            self.qoisystem_map[stream_id].update(observation)

            # get current qoi data
            qoi_ngsi = self.qoisystem_map[stream_id].get_qoivector_ngsi()
            logger.debug("Formatting qoi data as ngsi-ld: " + str(qoi_ngsi))

            # save qoi data
            broker_interface.create_ngsi_entity(qoi_ngsi)
        except KeyError:
            logger.error("There is no stream " + str(stream_id) +
                         " found for this observation!")

    def get_qoivector_ngsi(self, sourceid):
        return self.qoisystem_map[sourceid].get_qoivector_ngsi()

    def get_subscriptions(self):
        return self.datasource_manager.get_subscriptions()

    def add_subscription(self, subscription):
        self.datasource_manager.add_subscription(subscription)

    def del_subscription(self, subid):
        self.datasource_manager.del_subscription(subid)

    def get_streams(self):
        return self.datasource_manager.streams

    def get_sensor(self, sensor_id):
        return self.datasource_manager.get_sensor(sensor_id)

    def get_observation(self, observation_id):
        return self.datasource_manager.get_observation(observation_id)

    def get_observableproperty(self, obsproperty_id):
        return self.datasource_manager.get_observableproperty(obsproperty_id)

    def get_metadata(self):
        return self.datasource_manager.matcher.get_all()

    def delete_metadata(self, mtype):
        self.datasource_manager.matcher.delete(mtype)

    def add_metadata(self, entitytype, metadata):
        try:
            tmp = {'type': entitytype, 'metadata': ast.literal_eval(metadata)}
            self.datasource_manager.matcher.store(tmp)
        except Exception as e:
            logger.debug("Error while adding metadata: " + str(e))
Esempio n. 4
0
def unpause_datasource(source_id):
    ds = DatasourceManager().get_plugin(source_id)
    ds.unpause()
    return redirect("/dashboard", code=302)
Esempio n. 5
0
def restart_button(source_id):
    ds = DatasourceManager().get_plugin(source_id)
    ds.retstart(purge_data=True)
    return render_template("reset.html.j2")
Esempio n. 6
0
def dashboard():
    plugins = DatasourceManager().get_plugins()
    return render_template("dashboard.html.j2", plugins=plugins)
Esempio n. 7
0
def run_log_details(source_id, run_id):
    run_log = DatasourceManager().get_run_logs_for_plugin_run(
        source_id=source_id, run_id=run_id, limit=10)
    return render_template("logs.html.j2", log_messages=run_log)
Esempio n. 8
0
def source_details(source_id):
    ds = DatasourceManager().get_plugin(source_id)
    ds_run_logs = DatasourceManager().get_run_logs_for_plugin(
        source_id=source_id, limit=10)
    return render_template("source.html.j2", ds=ds, ds_run_log=ds_run_logs)
Esempio n. 9
0
    loop
        return query execute format( 'select * from %I.config', sname );

    end loop;
    return;
end
$BODY$ language plpgsql stable;

""")
db_conn.commit()

db_cursor.close()
db_conn.close()


def pump_sources():
    while 1:
        dsm.update_sources()


if environ.get("WERKZEUG_RUN_MAIN") == "true":
    dsm = DatasourceManager()
    dsm.load_sources()
    source_thread = Thread(daemon=True, target=pump_sources)
    source_thread.start()

if DEBUG:
    app.jinja_env.auto_reload = True
    app.config["TEMPLATES_AUTO_RELOAD"] = True
app.run(host="0.0.0.0", debug=DEBUG, port=LISTEN_PORT)