2021-10-10 10:32:28 +00:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
import argparse
|
|
|
|
import logging
|
|
|
|
import os
|
2021-11-04 17:13:24 +00:00
|
|
|
import sys
|
2021-10-10 10:32:28 +00:00
|
|
|
import json
|
|
|
|
import shutil
|
|
|
|
import asyncio
|
|
|
|
import hashlib
|
|
|
|
import struct
|
|
|
|
import pytz
|
2021-11-04 17:13:24 +00:00
|
|
|
from os.path import join, dirname, abspath
|
|
|
|
from datetime import datetime
|
|
|
|
|
|
|
|
from sqlalchemy import delete, select
|
|
|
|
from sqlalchemy.orm import joinedload
|
2021-10-10 10:32:28 +00:00
|
|
|
|
|
|
|
from obs.face.importer import ImportMeasurementsCsv
|
|
|
|
from obs.face.geojson import ExportMeasurements
|
|
|
|
from obs.face.annotate import AnnotateMeasurements
|
|
|
|
from obs.face.filter import (
|
|
|
|
AnonymizationMode,
|
|
|
|
ChainFilter,
|
|
|
|
ConfirmedFilter,
|
|
|
|
DistanceMeasuredFilter,
|
|
|
|
PrivacyFilter,
|
|
|
|
PrivacyZone,
|
|
|
|
PrivacyZonesFilter,
|
|
|
|
RequiredFieldsFilter,
|
|
|
|
)
|
2021-10-29 09:26:39 +00:00
|
|
|
from obs.face.osm import DataSource, DatabaseTileSource, OverpassTileSource
|
2021-10-10 10:32:28 +00:00
|
|
|
|
2021-11-04 17:13:24 +00:00
|
|
|
from obs.api.db import make_session, connect_db, OvertakingEvent, async_session, Track
|
|
|
|
from obs.api.app import app
|
2021-10-10 10:32:28 +00:00
|
|
|
|
|
|
|
log = logging.getLogger(__name__)
|
|
|
|
|
|
|
|
|
|
|
|
async def main():
|
|
|
|
logging.basicConfig(level=logging.DEBUG, format="%(levelname)s: %(message)s")
|
|
|
|
|
|
|
|
parser = argparse.ArgumentParser(
|
|
|
|
description="processes a single track for use in the portal, "
|
|
|
|
"using the obs.face algorithms"
|
|
|
|
)
|
|
|
|
|
|
|
|
parser.add_argument(
|
2021-11-04 17:13:24 +00:00
|
|
|
"--loop-delay",
|
2021-10-10 10:32:28 +00:00
|
|
|
action="store",
|
2021-11-04 17:13:24 +00:00
|
|
|
type=int,
|
|
|
|
default=10,
|
|
|
|
help="delay between loops, if no track was found in the queue (polling)",
|
2021-10-10 10:32:28 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
parser.add_argument(
|
2021-11-04 17:13:24 +00:00
|
|
|
"tracks",
|
|
|
|
metavar="ID_OR_SLUG",
|
|
|
|
nargs="*",
|
|
|
|
help="ID or slug of tracks to process, if not passed, the queue is processed in a loop",
|
2021-10-10 10:32:28 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
args = parser.parse_args()
|
|
|
|
|
2021-11-04 17:13:24 +00:00
|
|
|
async with connect_db(app.config.POSTGRES_URL):
|
|
|
|
async with make_session() as session:
|
|
|
|
log.info("Loading OpenStreetMap data")
|
|
|
|
tile_source = DatabaseTileSource(async_session.get())
|
|
|
|
# tile_source = OverpassTileSource(app.config.OBS_FACE_CACHE_DIR)
|
|
|
|
data_source = DataSource(tile_source)
|
|
|
|
|
|
|
|
if args.tracks:
|
|
|
|
await process_tracks(session, data_source, args.tracks)
|
|
|
|
else:
|
|
|
|
await process_tracks_loop(session, data_source, args.loop_delay)
|
|
|
|
|
|
|
|
|
|
|
|
async def process_tracks_loop(session, data_source, delay):
|
|
|
|
while True:
|
|
|
|
track = (
|
|
|
|
await session.execute(
|
|
|
|
select(Track)
|
|
|
|
.where(Track.processing_status == "queued")
|
|
|
|
.order_by(Track.processing_queued_at)
|
|
|
|
.options(joinedload(Track.author))
|
|
|
|
)
|
|
|
|
).scalar()
|
|
|
|
|
|
|
|
if track is None:
|
|
|
|
await asyncio.sleep(delay)
|
2021-10-29 09:26:39 +00:00
|
|
|
else:
|
2021-11-04 17:13:24 +00:00
|
|
|
try:
|
|
|
|
await process_track(session, track, data_source)
|
|
|
|
except:
|
|
|
|
log.exception("Failed to process track %s. Will continue.", track.slug)
|
|
|
|
|
|
|
|
|
|
|
|
async def process_tracks(session, data_source, tracks):
|
|
|
|
"""
|
|
|
|
Processes the tracks and writes event data to the database.
|
|
|
|
|
|
|
|
:param tracks: A list of strings which
|
|
|
|
"""
|
|
|
|
for track_id_or_slug in tracks:
|
|
|
|
track = (
|
|
|
|
await session.execute(
|
|
|
|
select(Track)
|
|
|
|
.where(
|
|
|
|
Track.id == track_id_or_slug
|
|
|
|
if isinstance(track_id_or_slug, int)
|
|
|
|
else Track.slug == track_id_or_slug
|
|
|
|
)
|
|
|
|
.options(joinedload(Track.author))
|
|
|
|
)
|
|
|
|
).scalar()
|
2021-10-10 10:32:28 +00:00
|
|
|
|
2021-11-04 17:13:24 +00:00
|
|
|
if not track:
|
|
|
|
raise ValueError(f"Track {track_id_or_slug!r} not found.")
|
2021-10-10 10:32:28 +00:00
|
|
|
|
2021-11-04 17:13:24 +00:00
|
|
|
await process_track(session, track, data_source)
|
2021-10-10 10:32:28 +00:00
|
|
|
|
|
|
|
|
2021-11-04 17:13:24 +00:00
|
|
|
def to_naive_utc(t):
|
|
|
|
if t is None:
|
|
|
|
return None
|
|
|
|
return t.astimezone(pytz.UTC).replace(tzinfo=None)
|
2021-10-10 10:32:28 +00:00
|
|
|
|
|
|
|
|
2021-11-04 17:13:24 +00:00
|
|
|
async def process_track(session, track, data_source):
|
|
|
|
try:
|
|
|
|
track.processing_status = "complete"
|
|
|
|
track.processed_at = datetime.utcnow()
|
|
|
|
await session.commit()
|
2021-10-10 10:32:28 +00:00
|
|
|
|
2021-11-04 17:13:24 +00:00
|
|
|
original_file_path = track.get_original_file_path(app.config)
|
|
|
|
|
|
|
|
output_dir = join(
|
|
|
|
app.config.PROCESSING_OUTPUT_DIR, track.author.username, track.slug
|
|
|
|
)
|
|
|
|
os.makedirs(output_dir, exist_ok=True)
|
|
|
|
|
|
|
|
log.info("Annotating and filtering CSV file")
|
|
|
|
imported_data, statistics = ImportMeasurementsCsv().read(
|
|
|
|
original_file_path,
|
|
|
|
user_id="dummy", # TODO: user username or id or nothing?
|
|
|
|
dataset_id=Track.slug, # TODO: use track id or slug or nothing?
|
|
|
|
)
|
|
|
|
|
|
|
|
annotator = AnnotateMeasurements(
|
|
|
|
data_source, cache_dir=app.config.OBS_FACE_CACHE_DIR
|
|
|
|
)
|
|
|
|
input_data = await annotator.annotate(imported_data)
|
|
|
|
|
|
|
|
track_filter = ChainFilter(
|
|
|
|
RequiredFieldsFilter(),
|
|
|
|
PrivacyFilter(
|
|
|
|
user_id_mode=AnonymizationMode.REMOVE,
|
|
|
|
measurement_id_mode=AnonymizationMode.REMOVE,
|
|
|
|
),
|
|
|
|
# TODO: load user privacy zones and create a PrivacyZonesFilter() from them
|
|
|
|
)
|
|
|
|
measurements_filter = DistanceMeasuredFilter()
|
|
|
|
overtaking_events_filter = ConfirmedFilter()
|
|
|
|
|
|
|
|
track_points = track_filter.filter(input_data, log=log)
|
|
|
|
measurements = measurements_filter.filter(track_points, log=log)
|
|
|
|
overtaking_events = overtaking_events_filter.filter(measurements, log=log)
|
|
|
|
|
|
|
|
exporter = ExportMeasurements("measurements.dummy")
|
|
|
|
await exporter.add_measurements(measurements)
|
|
|
|
measurements_json = exporter.get_data()
|
|
|
|
del exporter
|
|
|
|
|
|
|
|
exporter = ExportMeasurements("overtaking_events.dummy")
|
|
|
|
await exporter.add_measurements(overtaking_events)
|
|
|
|
overtaking_events_json = exporter.get_data()
|
|
|
|
del exporter
|
|
|
|
|
|
|
|
track_json = {
|
|
|
|
"type": "Feature",
|
|
|
|
"geometry": {
|
|
|
|
"type": "LineString",
|
|
|
|
"coordinates": [[m["latitude"], m["longitude"]] for m in track_points],
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
for output_filename, data in [
|
|
|
|
("measurements.json", measurements_json),
|
|
|
|
("overtakingEvents.json", overtaking_events_json),
|
|
|
|
("track.json", track_json),
|
|
|
|
]:
|
|
|
|
target = join(output_dir, output_filename)
|
|
|
|
log.debug("Writing file %s", target)
|
|
|
|
with open(target, "w") as fp:
|
|
|
|
json.dump(data, fp, indent=4)
|
|
|
|
|
|
|
|
log.info("Import events into database...")
|
|
|
|
await clear_track_data(session, track)
|
|
|
|
await import_overtaking_events(session, track, overtaking_events)
|
|
|
|
|
|
|
|
log.info("Write track statistics and update status...")
|
|
|
|
track.recorded_at = to_naive_utc(statistics["t_min"])
|
|
|
|
track.recorded_until = to_naive_utc(statistics["t_max"])
|
|
|
|
track.duration = statistics["t"]
|
|
|
|
track.length = statistics["d"]
|
|
|
|
track.segments = statistics["n_segments"]
|
|
|
|
track.num_events = statistics["n_confirmed"]
|
|
|
|
track.num_measurements = statistics["n_measurements"]
|
|
|
|
track.num_valid = statistics["n_valid"]
|
|
|
|
track.processing_status = "complete"
|
|
|
|
track.processed_at = datetime.utcnow()
|
2021-10-29 09:26:39 +00:00
|
|
|
await session.commit()
|
2021-10-10 10:32:28 +00:00
|
|
|
|
2021-11-04 17:13:24 +00:00
|
|
|
log.info("Track %s imported.", track.slug)
|
|
|
|
except BaseException as e:
|
|
|
|
await clear_track_data(session, track)
|
|
|
|
track.processing_status = "error"
|
|
|
|
track.processing_log = str(e)
|
|
|
|
track.processed_at = datetime.utcnow()
|
|
|
|
|
|
|
|
await session.commit()
|
|
|
|
raise
|
|
|
|
|
|
|
|
|
|
|
|
async def clear_track_data(session, track):
|
|
|
|
track.recorded_at = None
|
|
|
|
track.recorded_until = None
|
|
|
|
track.duration = None
|
|
|
|
track.length = None
|
|
|
|
track.segments = None
|
|
|
|
track.num_events = None
|
|
|
|
track.num_measurements = None
|
|
|
|
track.num_valid = None
|
2021-10-10 10:32:28 +00:00
|
|
|
|
|
|
|
await session.execute(
|
2021-11-04 17:13:24 +00:00
|
|
|
delete(OvertakingEvent).where(OvertakingEvent.track_id == track.id)
|
2021-10-10 10:32:28 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
|
2021-11-04 17:13:24 +00:00
|
|
|
async def import_overtaking_events(session, track, overtaking_events):
|
2021-10-10 10:32:28 +00:00
|
|
|
event_models = []
|
|
|
|
for m in overtaking_events:
|
2021-11-04 17:13:24 +00:00
|
|
|
hex_hash = hashlib.sha256(
|
|
|
|
struct.pack("QQ", track.id, int(m["time"].timestamp()))
|
|
|
|
).hexdigest()
|
2021-10-10 10:32:28 +00:00
|
|
|
|
|
|
|
event_models.append(
|
|
|
|
OvertakingEvent(
|
2021-11-04 17:13:24 +00:00
|
|
|
track_id=track.id,
|
2021-10-10 10:32:28 +00:00
|
|
|
hex_hash=hex_hash,
|
|
|
|
way_id=m["OSM_way_id"],
|
|
|
|
direction_reversed=m["OSM_way_orientation"] < 0,
|
2021-10-29 09:26:39 +00:00
|
|
|
geometry=json.dumps(
|
|
|
|
{
|
|
|
|
"type": "Point",
|
|
|
|
"coordinates": [m["longitude"], m["latitude"]],
|
|
|
|
}
|
|
|
|
),
|
2021-10-10 10:32:28 +00:00
|
|
|
latitude=m["latitude"],
|
|
|
|
longitude=m["longitude"],
|
|
|
|
time=m["time"].astimezone(pytz.utc).replace(tzinfo=None),
|
|
|
|
distance_overtaker=m["distance_overtaker"],
|
|
|
|
distance_stationary=m["distance_stationary"],
|
|
|
|
course=m["course"],
|
|
|
|
speed=m["speed"],
|
|
|
|
)
|
|
|
|
)
|
|
|
|
|
|
|
|
session.add_all(event_models)
|
|
|
|
|
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
asyncio.run(main())
|