2021-08-23 18:41:48 +02:00
|
|
|
use std::fs::File;
|
|
|
|
use std::io;
|
|
|
|
|
|
|
|
use concat_arrays::concat_arrays;
|
|
|
|
use log::warn;
|
|
|
|
use serde_json::Value;
|
|
|
|
|
|
|
|
use super::helpers::{create_writer, writer_into_reader, GrenadParameters};
|
|
|
|
use crate::{FieldId, InternalError, Result};
|
|
|
|
|
|
|
|
/// Extracts the geographical coordinates contained in each document under the `_geo` field.
|
|
|
|
///
|
|
|
|
/// Returns the generated grenad reader containing the docid as key associated to the (latitude, longitude)
|
|
|
|
pub fn extract_geo_points<R: io::Read>(
|
|
|
|
mut obkv_documents: grenad::Reader<R>,
|
|
|
|
indexer: GrenadParameters,
|
2021-08-30 15:47:11 +02:00
|
|
|
geo_field_id: FieldId,
|
2021-08-23 18:41:48 +02:00
|
|
|
) -> Result<grenad::Reader<File>> {
|
|
|
|
let mut writer = tempfile::tempfile().and_then(|file| {
|
|
|
|
create_writer(indexer.chunk_compression_type, indexer.chunk_compression_level, file)
|
|
|
|
})?;
|
|
|
|
|
|
|
|
while let Some((docid_bytes, value)) = obkv_documents.next()? {
|
|
|
|
let obkv = obkv::KvReader::new(value);
|
2021-08-25 16:59:38 +02:00
|
|
|
let point = match obkv.get(geo_field_id) {
|
|
|
|
Some(point) => point,
|
|
|
|
None => continue,
|
|
|
|
};
|
2021-08-23 18:41:48 +02:00
|
|
|
let point: Value = serde_json::from_slice(point).map_err(InternalError::SerdeJson)?;
|
|
|
|
|
2021-08-25 16:00:25 +02:00
|
|
|
if let Some((lat, lng)) = point["lat"].as_f64().zip(point["lng"].as_f64()) {
|
2021-08-23 18:41:48 +02:00
|
|
|
// this will create an array of 16 bytes (two 8 bytes floats)
|
2021-08-25 16:59:38 +02:00
|
|
|
let bytes: [u8; 16] = concat_arrays![lat.to_ne_bytes(), lng.to_ne_bytes()];
|
2021-08-23 18:41:48 +02:00
|
|
|
writer.insert(docid_bytes, bytes)?;
|
|
|
|
} else {
|
|
|
|
// TAMO: improve the warn
|
|
|
|
warn!("Malformed `_geo` field");
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Ok(writer_into_reader(writer)?)
|
|
|
|
}
|