forked from fhessel/esp32_https_server
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathResourceNode.cpp
More file actions
54 lines (45 loc) · 1.21 KB
/
ResourceNode.cpp
File metadata and controls
54 lines (45 loc) · 1.21 KB
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
#include "ResourceNode.hpp"
namespace httpsserver {
ResourceNode::ResourceNode(const std::string path, const std::string method, const HTTPSCallbackFunction * callback, const std::string tag):
_path(std::move(path)),
_method(std::move(method)),
_callback(callback),
_tag(tag) {
// Count the parameters
_urlParamCount = 0;
size_t idx = 0;
while((idx = path.find("/*", idx)) != std::string::npos) {
_urlParamCount+=1;
// If we don't do this, the same index will be found again... and again... and again...
idx+=1;
};
// Check if there are parameters
if (_urlParamCount > 0) {
// If there are parameters, store their indices
_urlParamIdx = new size_t[_urlParamCount];
for(int i = 0; i < _urlParamCount; i++) {
_urlParamIdx[i] = path.find("/*", i==0 ? 0 : _urlParamIdx[i-1])+1;
}
} else {
_urlParamIdx = NULL;
}
}
ResourceNode::~ResourceNode() {
if (_urlParamIdx != NULL) {
delete[] _urlParamIdx;
}
}
bool ResourceNode::hasUrlParameter() {
return _urlParamCount > 0;
}
size_t ResourceNode::getParamIdx(uint8_t idx) {
if (idx<_urlParamCount) {
return _urlParamIdx[idx];
} else {
return -1;
}
}
uint8_t ResourceNode::getUrlParamCount() {
return _urlParamCount;
}
} /* namespace httpsserver */