2018-10-03 16:21:33 +02:00
|
|
|
use std::str::from_utf8_unchecked;
|
|
|
|
use std::io::{self, Write};
|
2018-10-09 18:23:35 +02:00
|
|
|
use structopt::StructOpt;
|
|
|
|
use std::path::PathBuf;
|
2018-10-03 16:21:33 +02:00
|
|
|
|
|
|
|
use elapsed::measure_time;
|
|
|
|
use rocksdb::{DB, DBOptions, IngestExternalFileOptions};
|
2018-10-17 13:35:34 +02:00
|
|
|
use raptor::rank::{criterion, Config, RankedStream, Document};
|
2018-10-10 16:57:21 +02:00
|
|
|
use raptor::{automaton, Metadata, CommonWords};
|
2018-10-03 16:21:33 +02:00
|
|
|
|
2018-10-09 18:23:35 +02:00
|
|
|
#[derive(Debug, StructOpt)]
|
|
|
|
pub struct CommandConsole {
|
|
|
|
/// The stop word file, each word must be separated by a newline.
|
|
|
|
#[structopt(long = "stop-words", parse(from_os_str))]
|
|
|
|
pub stop_words: PathBuf,
|
|
|
|
|
|
|
|
/// Meta file name (e.g. relaxed-colden).
|
|
|
|
#[structopt(parse(from_os_str))]
|
|
|
|
pub meta_name: PathBuf,
|
|
|
|
}
|
2018-10-03 16:21:33 +02:00
|
|
|
|
|
|
|
pub struct ConsoleSearch {
|
|
|
|
common_words: CommonWords,
|
|
|
|
metadata: Metadata,
|
|
|
|
db: DB,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl ConsoleSearch {
|
|
|
|
pub fn from_command(command: CommandConsole) -> io::Result<ConsoleSearch> {
|
2018-10-09 18:23:35 +02:00
|
|
|
let common_words = CommonWords::from_file(command.stop_words)?;
|
|
|
|
|
|
|
|
let map_file = command.meta_name.with_extension("map");
|
|
|
|
let idx_file = command.meta_name.with_extension("idx");
|
|
|
|
let sst_file = command.meta_name.with_extension("sst");
|
2018-10-03 16:21:33 +02:00
|
|
|
|
|
|
|
let metadata = unsafe { Metadata::from_paths(map_file, idx_file).unwrap() };
|
|
|
|
|
|
|
|
let rocksdb = "rocksdb/storage";
|
|
|
|
let db = DB::open_default(rocksdb).unwrap();
|
2018-10-09 18:23:35 +02:00
|
|
|
let sst_file = sst_file.to_str().unwrap();
|
|
|
|
db.ingest_external_file(&IngestExternalFileOptions::new(), &[sst_file]).unwrap();
|
2018-10-03 16:21:33 +02:00
|
|
|
drop(db);
|
|
|
|
let db = DB::open_for_read_only(DBOptions::default(), rocksdb, false).unwrap();
|
|
|
|
|
|
|
|
Ok(ConsoleSearch { common_words, metadata, db })
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn serve(self) {
|
|
|
|
loop {
|
|
|
|
print!("Searching for: ");
|
|
|
|
io::stdout().flush().unwrap();
|
|
|
|
|
|
|
|
let mut query = String::new();
|
|
|
|
io::stdin().read_line(&mut query).unwrap();
|
|
|
|
let query = query.trim().to_lowercase();
|
|
|
|
|
|
|
|
if query.is_empty() { break }
|
|
|
|
|
|
|
|
let (elapsed, _) = measure_time(|| search(&self.metadata, &self.db, &self.common_words, &query));
|
|
|
|
println!("Finished in {}", elapsed);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-10-17 13:35:34 +02:00
|
|
|
// "Sony" "PlayStation 4 500GB"
|
|
|
|
fn starts_with_playstation(doc: &Document, database: &DB) -> Vec<u8> {
|
|
|
|
let title_key = format!("{}-title", doc.id);
|
|
|
|
let title = database.get(title_key.as_bytes()).unwrap().unwrap();
|
|
|
|
title.get(0..4).map(|s| s.to_vec()).unwrap_or(Vec::new())
|
|
|
|
}
|
|
|
|
|
2018-10-03 16:21:33 +02:00
|
|
|
fn search(metadata: &Metadata, database: &DB, common_words: &CommonWords, query: &str) {
|
|
|
|
let mut automatons = Vec::new();
|
|
|
|
for query in query.split_whitespace().filter(|q| !common_words.contains(*q)) {
|
|
|
|
let lev = automaton::build(query);
|
|
|
|
automatons.push(lev);
|
|
|
|
}
|
|
|
|
|
2018-10-17 13:35:34 +02:00
|
|
|
let config = Config {
|
|
|
|
metadata: metadata,
|
|
|
|
automatons: automatons,
|
|
|
|
criteria: criterion::default(),
|
|
|
|
distinct: ((), 1),
|
|
|
|
};
|
|
|
|
let stream = RankedStream::new(config);
|
2018-10-10 16:57:21 +02:00
|
|
|
|
2018-10-17 13:35:34 +02:00
|
|
|
// let documents = stream.retrieve_distinct_documents(|doc| starts_with_playstation(doc, database), 0..20);
|
2018-10-11 16:09:28 +02:00
|
|
|
let documents = stream.retrieve_documents(0..20);
|
2018-10-11 14:04:41 +02:00
|
|
|
|
|
|
|
for document in documents {
|
2018-10-10 16:57:21 +02:00
|
|
|
let id_key = format!("{}-id", document.id);
|
2018-10-09 18:23:35 +02:00
|
|
|
let id = database.get(id_key.as_bytes()).unwrap().unwrap();
|
|
|
|
let id = unsafe { from_utf8_unchecked(&id) };
|
|
|
|
print!("{} ", id);
|
2018-10-03 16:21:33 +02:00
|
|
|
|
2018-10-10 16:57:21 +02:00
|
|
|
let title_key = format!("{}-title", document.id);
|
2018-10-03 16:21:33 +02:00
|
|
|
let title = database.get(title_key.as_bytes()).unwrap().unwrap();
|
|
|
|
let title = unsafe { from_utf8_unchecked(&title) };
|
2018-10-09 18:23:35 +02:00
|
|
|
println!("{:?}", title);
|
2018-10-03 16:21:33 +02:00
|
|
|
}
|
|
|
|
}
|
2018-10-09 18:23:35 +02:00
|
|
|
|
|
|
|
fn main() {
|
|
|
|
let command = CommandConsole::from_args();
|
|
|
|
let console = ConsoleSearch::from_command(command).unwrap();
|
|
|
|
console.serve()
|
|
|
|
}
|