Welcome to mirror list, hosted at ThFree Co, Russian Federation.

QueryProbingPT.cpp « misc - github.com/moses-smt/mosesdecoder.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5047d4d474a148b2a7fe98172b881c1c3fd7e50b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
#include "util/file_piece.hh"

#include "util/file.hh"
#include "util/scoped.hh"
#include "util/string_piece.hh"
#include "util/tokenize_piece.hh"
#include "util/murmur_hash.hh"
#include "util/probing_hash_table.hh"
#include "util/usage.hh"

#include "moses/TranslationModel/ProbingPT/quering.hh"

#include <cstdio>
#include <sys/types.h>
#include <sys/stat.h>

#include <fstream>
#include <iostream>
#include <sstream>
#include <string>
#include <sys/mman.h>
#include <sys/stat.h> //For finding size of file
#include <boost/functional/hash.hpp>
#include <sys/types.h>
#include <sys/stat.h>
#include <unistd.h>
#include <fcntl.h>

int main(int argc, char* argv[])
{
  if (argc != 2) {
    // Tell the user how to run the program
    std::cerr << "Usage: " << argv[0] << " path_to_directory" << std::endl;
    return 1;
  }

  Moses::QueryEngine queries(argv[1]);

  //Interactive search
  std::cout << "Please enter a string to be searched, or exit to exit." << std::endl;
  while (true) {
    std::string cinstr = "";
    getline(std::cin, cinstr);
    if (cinstr == "exit") {
      break;
    } else {
      //Actual lookup
      std::pair<bool, std::vector<target_text> > query_result;
      query_result = queries.query(StringPiece(cinstr));

      if (query_result.first) {
        queries.printTargetInfo(query_result.second);
      } else {
        std::cout << "Key not found!" << std::endl;
      }
    }
  }

  util::PrintUsage(std::cout);

  return 0;
}