inital commit
[c11concurrency-benchmarks.git] / mabain / examples / mb_longest_prefix_test.cpp
1 /**
2  * Copyright (C) 2017 Cisco Inc.
3  *
4  * This program is free software: you can redistribute it and/or  modify
5  * it under the terms of the GNU General Public License, version 2,
6  * as published by the Free Software Foundation.
7  *
8  * This program is distributed in the hope that it will be useful,
9  * but WITHOUT ANY WARRANTY; without even the implied warranty of
10  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
11  * GNU General Public License for more details.
12  *
13  * You should have received a copy of the GNU General Public License
14  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
15  */
16
17 // @author Changxue Deng <chadeng@cisco.com>
18
19 #include <mabain/db.h>
20
21 using namespace mabain;
22
23 const char *db_dir = "./tmp_dir/";
24
25 // Perform exact key match
26 int main(int argc, char *argv[])
27 {
28     if(argc == 2) {
29         db_dir = argv[1];
30     }
31
32     DB db(db_dir, CONSTS::ReaderOptions());
33     if(!db.is_open()) {
34         std::cerr << "failed to open mabain db: " << db.StatusStr() << "\n";
35         exit(1);
36     }
37
38     MBData mbdata;
39     int rval;
40     std::string key[4];
41
42     key[0] = "Apple Pie";
43     key[1] = "Grape Juice";
44     key[2] = "Orange Paper";
45     key[3] = "Kiwikiwi";
46
47     for(int i = 0; i < 4; i++) {
48         rval = db.FindLongestPrefix(key[i], mbdata);
49         if(rval == MBError::SUCCESS) {
50             std::cout << key[i] << ": " << std::string((char*) mbdata.buff, mbdata.data_len) << "\n";
51         } else {
52             std::cout << key[i] << ": not found\n";
53         }
54     }
55
56     db.Close();
57     return 0;
58 }