inital commit
[c11concurrency-benchmarks.git] / mabain / examples / mb_insert_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 // Insert key-value pair to mabain db
26 int main(int argc, char *argv[])
27 {
28     if(argc == 2) {
29         db_dir = argv[1];
30     }
31
32     mabain::DB::SetLogFile("/var/tmp/mabain_test/mabain.log");
33
34     DB db(db_dir, CONSTS::WriterOptions());
35     if(!db.is_open()) {
36         std::cerr << "failed to open mabain db: " << db.StatusStr() << "\n";
37         exit(1);
38     }
39
40     std::string key[3], value[3];
41     int rval;
42
43     key[0] = "Apple";
44     value[0] = "Red";
45     key[1] = "Orange";
46     value[1] = "Yellow";
47     key[2] = "Grape";
48     value[2] = "Purple";
49
50     for(int i = 0; i < 3; i++) {
51         rval = db.Add(key[i], value[i]);
52         if(rval != MBError::SUCCESS) {
53             std::cout << key[i] << ": " << MBError::get_error_str(rval) << std::endl;
54         }
55     }
56
57     db.PrintStats(std::cout);
58     db.Close();
59
60     mabain::DB::CloseLogFile();
61     return 0;
62 }