2018-04-22 23:34:41 +08:00
|
|
|
// TODO make the raptor binary expose multiple subcommand
|
|
|
|
// make only one binary
|
|
|
|
|
|
|
|
extern crate fst;
|
|
|
|
extern crate raptor;
|
|
|
|
extern crate serde_json;
|
|
|
|
#[macro_use] extern crate serde_derive;
|
|
|
|
|
2018-04-23 00:10:01 +08:00
|
|
|
use std::collections::HashSet;
|
2018-04-22 23:34:41 +08:00
|
|
|
use std::fs::File;
|
|
|
|
use std::io::{BufReader, BufRead};
|
|
|
|
|
|
|
|
use fst::Streamer;
|
|
|
|
use serde_json::from_str;
|
|
|
|
|
|
|
|
use raptor::{MultiMapBuilder, MultiMap};
|
|
|
|
|
|
|
|
#[derive(Debug, Deserialize)]
|
|
|
|
struct Product {
|
|
|
|
product_id: u64,
|
|
|
|
title: String,
|
|
|
|
ft: String,
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
let data = File::open("products.json_lines").unwrap();
|
|
|
|
let data = BufReader::new(data);
|
|
|
|
|
2018-04-23 00:10:01 +08:00
|
|
|
let common_words = {
|
|
|
|
// TODO don't break if doesn't exist
|
|
|
|
let file = File::open("fr.stopwords.txt").unwrap();
|
|
|
|
let file = BufReader::new(file);
|
|
|
|
let mut set = HashSet::new();
|
|
|
|
|
|
|
|
for line in file.lines() {
|
|
|
|
let words = line.unwrap();
|
|
|
|
for word in words.split_whitespace() {
|
|
|
|
set.insert(word.to_owned());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
set
|
|
|
|
};
|
|
|
|
|
2018-04-22 23:34:41 +08:00
|
|
|
let mut builder = MultiMapBuilder::new();
|
|
|
|
for line in data.lines() {
|
|
|
|
let line = line.unwrap();
|
|
|
|
|
2018-04-23 00:10:01 +08:00
|
|
|
// TODO if possible remove String allocation of Product here...
|
2018-04-22 23:34:41 +08:00
|
|
|
let product: Product = from_str(&line).unwrap();
|
|
|
|
|
|
|
|
let title = product.title.split_whitespace();
|
2018-04-23 00:10:01 +08:00
|
|
|
let description = product.ft.split_whitespace().filter(|&s| s != "Description");
|
|
|
|
let words = title.chain(description)
|
|
|
|
.filter(|&s| s.chars().any(|c| c.is_alphabetic())) // remove that ?
|
2018-04-23 00:28:08 +08:00
|
|
|
.filter(|&s| !common_words.contains(s))
|
|
|
|
.map(|s| s.to_lowercase());
|
2018-04-22 23:34:41 +08:00
|
|
|
|
|
|
|
for word in words {
|
|
|
|
builder.insert(word, product.product_id);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
let map = File::create("map.fst").unwrap();
|
|
|
|
let values = File::create("values.vecs").unwrap();
|
|
|
|
let (map, values) = builder.build(map, values).unwrap();
|
|
|
|
|
2018-04-23 00:28:08 +08:00
|
|
|
// just to check if the dump is valid
|
2018-04-22 23:34:41 +08:00
|
|
|
let map = unsafe { MultiMap::from_paths("map.fst", "values.vecs").unwrap() };
|
|
|
|
|
2018-04-23 00:10:01 +08:00
|
|
|
// let mut stream = map.stream();
|
|
|
|
// while let Some(x) = stream.next() {
|
|
|
|
// println!("{:?}", x);
|
|
|
|
// }
|
2018-04-22 23:34:41 +08:00
|
|
|
}
|