-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsdk.h
66 lines (51 loc) · 1.34 KB
/
sdk.h
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
/*
* sdk.h
*
* Created on: 2017Äê7ÔÂ13ÈÕ
* Author: zhenlin
*/
#ifndef SDK_H_
#define SDK_H_
#include <iostream>
#include <string>
#include <fstream>
#include <vector>
typedef long long LL;
const int kCharSize = sizeof(char);
const int kDoubleSize = sizeof(double);
class SearchParameter {
public:
static SearchParameter& GetInstance() {
static SearchParameter instance;
return instance;
}
std::string path_input_;
std::string path_output_;
int num_thread_;
int max_char_per_file_;
int max_char_per_line_;
int max_double_per_file_;
private:
SearchParameter() : path_input_(""), path_output_(""), num_thread_(1), max_char_per_file_(100000000), max_char_per_line_(30), max_double_per_file_(max_char_per_file_ / 15) {};
SearchParameter(const SearchParameter&){};
SearchParameter& operator=(const SearchParameter&) {};
~SearchParameter() {};
};
struct Item {
int id_;
int len_;
char *content_;
Item(): id_(0), len_(0), content_(NULL) {};
Item(int id, int len, char *content): id_(id), len_(len), content_(content) {};
~Item() {
delete content_;
content_ = NULL;
};
};
// small function
static inline bool DoesFileExist(const std::string path);
bool ParseParamFile(const std::string& path);
bool IsLegalNumber(const char *line);
double FastAToF(const char *p);
void RadixSort(std::vector<double> &nums);
#endif /* SDK_H_ */