-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.cpp
55 lines (49 loc) · 1.73 KB
/
main.cpp
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
#include "database.h"
#include <iostream>
#include <string>
int main(){
Database db;
init(db);
while(true){
std::string command = commandInput();
if (command == "add"){
std::string key = keyInput();
Type type = typeInput();
void *value;
//type이 유효할때만
if (type == ARRAY){
value = arrayInput(type);
if ( value != nullptr){
Entry *entry = create(type, key, value);
add(db, entry);
}
} else if (type == INT || type == DOUBLE || type == STRING){
value = valueInput(type);
Entry *entry = create(type, key, value);
add(db, entry);
}
} else if (command == "list"){
listPrint(db);
} else if (command == "get"){
std::string key = keyInput();
Entry *entry = get(db, key);
if (entry != nullptr){
entryPrint(entry);
} else {
std::cout << "not found";
std::cout << std::endl;
}
} else if (command == "del"){
std::string key = keyInput();
remove(db, key);
} else if (command == "exit"){
destroy(db);
break;
} else{
std::cout << "invalid command";
std::cout << std::endl;
}
std::cout << std::endl;
}
return 0;
}