-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathDealItem.cpp
75 lines (67 loc) · 1.59 KB
/
DealItem.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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
/*
* File: DealItem.h
* Author: try
*
* Created on 2011年7月15日, 下午5:51
*/
#include "DealItem.h"
#include "FilterSearch.h"
#include "Util.h"
#include <fstream>
using namespace std;
DealItem::DealItem(){}
DealItem::~DealItem(){
}
bool DealItem::AppendKeyFile(string &filename, string &str)
{
ofstream out;
out.open(filename.c_str(),ios::app);
if(out.fail()) {
LOG(Util::ERROR,"open keyfile %s failed", filename.c_str());
return false;
}
out << str << "\n";
out.close();
return true;
}
void DealItem::service(Request& req, Response& resp){
const char *key = req.getParameter("key");
cout << key << endl;
resp.setContentType("text/html; charset=utf-8");
string cont ="";
cont += key;
string str;
Util::URLDecode(cont, str);
Util::ReplaceSpace(str);
LOG(Util::INFO,"add item %s", str.c_str());
if(str=="") {
resp.write("data is null.");
return;
}
std::vector<string> ret;
GentFind f;
f.Search(str, ret);
if(ret.size() == 0) {
string filename = FilterSearchMgr::Instance()->GetFilename();
if(!AppendKeyFile(filename, str)) {
resp.write("filename error");
return;
}
filename = FilterSearchMgr::Instance()->GetFileAddName();
if(!AppendKeyFile(filename, str)) {
resp.write("filename error");
return;
}
//添加进内存
FilterSearchMgr::Instance()->ItemAdd(str);
std::vector<string> exvect;
GentFind f;
f.Search(str, exvect);
string r = (exvect.size()>0)?"success":"failed";
resp.write(r.c_str());
resp.setAsynAnswerMode(false);
}else{
resp.write("exist");
}
resp.complete();
}