Mercurial > hg > orthanc
annotate Core/RestApi/RestApiPath.cpp @ 2753:078e43c749d2 Orthanc-0.8.1
close old branch
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Tue, 17 Jul 2018 09:40:53 +0200 |
parents | c550e99c452b |
children | 6e7e5ed91c2d |
rev | line source |
---|---|
209 | 1 /** |
2 * Orthanc - A Lightweight, RESTful DICOM Store | |
689 | 3 * Copyright (C) 2012-2014 Medical Physics Department, CHU of Liege, |
209 | 4 * Belgium |
5 * | |
6 * This program is free software: you can redistribute it and/or | |
7 * modify it under the terms of the GNU General Public License as | |
8 * published by the Free Software Foundation, either version 3 of the | |
9 * License, or (at your option) any later version. | |
10 * | |
11 * In addition, as a special exception, the copyright holders of this | |
12 * program give permission to link the code of its release with the | |
13 * OpenSSL project's "OpenSSL" library (or with modified versions of it | |
14 * that use the same license as the "OpenSSL" library), and distribute | |
15 * the linked executables. You must obey the GNU General Public License | |
16 * in all respects for all of the code used other than "OpenSSL". If you | |
17 * modify file(s) with this exception, you may extend this exception to | |
18 * your version of the file(s), but you are not obligated to do so. If | |
19 * you do not wish to do so, delete this exception statement from your | |
20 * version. If you delete this exception statement from all source files | |
21 * in the program, then also delete it here. | |
22 * | |
23 * This program is distributed in the hope that it will be useful, but | |
24 * WITHOUT ANY WARRANTY; without even the implied warranty of | |
25 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
26 * General Public License for more details. | |
27 * | |
28 * You should have received a copy of the GNU General Public License | |
29 * along with this program. If not, see <http://www.gnu.org/licenses/>. | |
30 **/ | |
31 | |
32 | |
824
a811bdf8b8eb
precompiled headers
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
689
diff
changeset
|
33 #include "../PrecompiledHeaders.h" |
209 | 34 #include "RestApiPath.h" |
35 | |
966
886652370ff2
accelerating REST API matching
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
824
diff
changeset
|
36 #include "../OrthancException.h" |
886652370ff2
accelerating REST API matching
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
824
diff
changeset
|
37 |
209 | 38 #include <cassert> |
39 | |
40 namespace Orthanc | |
41 { | |
42 RestApiPath::RestApiPath(const std::string& uri) | |
43 { | |
44 Toolbox::SplitUriComponents(uri_, uri); | |
45 | |
46 if (uri_.size() == 0) | |
47 { | |
218 | 48 hasTrailing_ = false; |
209 | 49 return; |
50 } | |
51 | |
52 if (uri_.back() == "*") | |
53 { | |
54 hasTrailing_ = true; | |
55 uri_.pop_back(); | |
56 } | |
57 else | |
58 { | |
59 hasTrailing_ = false; | |
60 } | |
61 | |
62 components_.resize(uri_.size()); | |
63 for (size_t i = 0; i < uri_.size(); i++) | |
64 { | |
65 size_t s = uri_[i].size(); | |
66 assert(s > 0); | |
67 | |
68 if (uri_[i][0] == '{' && | |
69 uri_[i][s - 1] == '}') | |
70 { | |
71 components_[i] = uri_[i].substr(1, s - 2); | |
72 uri_[i] = ""; | |
73 } | |
74 else | |
75 { | |
76 components_[i] = ""; | |
77 } | |
78 } | |
79 } | |
80 | |
975 | 81 bool RestApiPath::Match(HttpHandler::Arguments& components, |
209 | 82 UriComponents& trailing, |
83 const std::string& uriRaw) const | |
84 { | |
85 UriComponents uri; | |
86 Toolbox::SplitUriComponents(uri, uriRaw); | |
87 return Match(components, trailing, uri); | |
88 } | |
89 | |
975 | 90 bool RestApiPath::Match(HttpHandler::Arguments& components, |
209 | 91 UriComponents& trailing, |
92 const UriComponents& uri) const | |
93 { | |
966
886652370ff2
accelerating REST API matching
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
824
diff
changeset
|
94 assert(uri_.size() == components_.size()); |
886652370ff2
accelerating REST API matching
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
824
diff
changeset
|
95 |
209 | 96 if (uri.size() < uri_.size()) |
97 { | |
98 return false; | |
99 } | |
100 | |
101 if (!hasTrailing_ && uri.size() > uri_.size()) | |
102 { | |
103 return false; | |
104 } | |
105 | |
106 components.clear(); | |
107 trailing.clear(); | |
108 | |
109 assert(uri_.size() <= uri.size()); | |
110 for (size_t i = 0; i < uri_.size(); i++) | |
111 { | |
112 if (components_[i].size() == 0) | |
113 { | |
114 // This URI component is not a free parameter | |
115 if (uri_[i] != uri[i]) | |
116 { | |
117 return false; | |
118 } | |
119 } | |
120 else | |
121 { | |
122 // This URI component is a free parameter | |
123 components[components_[i]] = uri[i]; | |
124 } | |
125 } | |
126 | |
127 if (hasTrailing_) | |
128 { | |
129 trailing.assign(uri.begin() + uri_.size(), uri.end()); | |
130 } | |
131 | |
132 return true; | |
133 } | |
134 | |
135 | |
136 bool RestApiPath::Match(const UriComponents& uri) const | |
137 { | |
975 | 138 HttpHandler::Arguments components; |
209 | 139 UriComponents trailing; |
140 return Match(components, trailing, uri); | |
141 } | |
966
886652370ff2
accelerating REST API matching
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
824
diff
changeset
|
142 |
886652370ff2
accelerating REST API matching
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
824
diff
changeset
|
143 |
886652370ff2
accelerating REST API matching
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
824
diff
changeset
|
144 bool RestApiPath::IsWildcardLevel(size_t level) const |
886652370ff2
accelerating REST API matching
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
824
diff
changeset
|
145 { |
886652370ff2
accelerating REST API matching
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
824
diff
changeset
|
146 assert(uri_.size() == components_.size()); |
886652370ff2
accelerating REST API matching
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
824
diff
changeset
|
147 |
886652370ff2
accelerating REST API matching
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
824
diff
changeset
|
148 if (level >= uri_.size()) |
886652370ff2
accelerating REST API matching
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
824
diff
changeset
|
149 { |
886652370ff2
accelerating REST API matching
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
824
diff
changeset
|
150 throw OrthancException(ErrorCode_ParameterOutOfRange); |
886652370ff2
accelerating REST API matching
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
824
diff
changeset
|
151 } |
886652370ff2
accelerating REST API matching
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
824
diff
changeset
|
152 |
886652370ff2
accelerating REST API matching
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
824
diff
changeset
|
153 return uri_[level].length() == 0; |
886652370ff2
accelerating REST API matching
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
824
diff
changeset
|
154 } |
886652370ff2
accelerating REST API matching
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
824
diff
changeset
|
155 |
886652370ff2
accelerating REST API matching
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
824
diff
changeset
|
156 const std::string& RestApiPath::GetWildcardName(size_t level) const |
886652370ff2
accelerating REST API matching
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
824
diff
changeset
|
157 { |
886652370ff2
accelerating REST API matching
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
824
diff
changeset
|
158 assert(uri_.size() == components_.size()); |
886652370ff2
accelerating REST API matching
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
824
diff
changeset
|
159 |
886652370ff2
accelerating REST API matching
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
824
diff
changeset
|
160 if (!IsWildcardLevel(level)) |
886652370ff2
accelerating REST API matching
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
824
diff
changeset
|
161 { |
886652370ff2
accelerating REST API matching
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
824
diff
changeset
|
162 throw OrthancException(ErrorCode_BadParameterType); |
886652370ff2
accelerating REST API matching
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
824
diff
changeset
|
163 } |
886652370ff2
accelerating REST API matching
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
824
diff
changeset
|
164 |
886652370ff2
accelerating REST API matching
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
824
diff
changeset
|
165 return components_[level]; |
886652370ff2
accelerating REST API matching
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
824
diff
changeset
|
166 } |
886652370ff2
accelerating REST API matching
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
824
diff
changeset
|
167 |
886652370ff2
accelerating REST API matching
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
824
diff
changeset
|
168 const std::string& RestApiPath::GetLevelName(size_t level) const |
886652370ff2
accelerating REST API matching
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
824
diff
changeset
|
169 { |
886652370ff2
accelerating REST API matching
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
824
diff
changeset
|
170 assert(uri_.size() == components_.size()); |
886652370ff2
accelerating REST API matching
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
824
diff
changeset
|
171 |
886652370ff2
accelerating REST API matching
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
824
diff
changeset
|
172 if (IsWildcardLevel(level)) |
886652370ff2
accelerating REST API matching
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
824
diff
changeset
|
173 { |
886652370ff2
accelerating REST API matching
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
824
diff
changeset
|
174 throw OrthancException(ErrorCode_BadParameterType); |
886652370ff2
accelerating REST API matching
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
824
diff
changeset
|
175 } |
886652370ff2
accelerating REST API matching
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
824
diff
changeset
|
176 |
886652370ff2
accelerating REST API matching
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
824
diff
changeset
|
177 return uri_[level]; |
886652370ff2
accelerating REST API matching
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
824
diff
changeset
|
178 } |
209 | 179 } |
966
886652370ff2
accelerating REST API matching
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
824
diff
changeset
|
180 |