Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Latest commit

 

History

History
History
60 lines (50 loc) · 1.26 KB

File metadata and controls

60 lines (50 loc) · 1.26 KB
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
/*
* ResourceNode.cpp
*
* Created on: Dec 6, 2017
* Author: frank
*/
#include "ResourceNode.hpp"
namespace httpsserver {
ResourceNode::ResourceNode(const std::string path, const std::string method, const HTTPSCallbackFunction * callback):
_path(std::move(path)),
_method(std::move(method)),
_callback(callback) {
// 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 */
Morty Proxy This is a proxified and sanitized view of the page, visit original site.