Mercurial > hg > orthanc
annotate OrthancFramework/Sources/RestApi/RestApiHierarchy.h @ 4349:85237ae3a076
relax CheckOrthancFrameworkSymbols.py about one friend stream function
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Sun, 06 Dec 2020 12:47:54 +0100 |
parents | a01b1c9cbef4 |
children | 80fd140b12ba |
rev | line source |
---|---|
969 | 1 /** |
2 * Orthanc - A Lightweight, RESTful DICOM Store | |
1900 | 3 * Copyright (C) 2012-2016 Sebastien Jodogne, Medical Physics |
1288
6e7e5ed91c2d
upgrade to year 2015
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
978
diff
changeset
|
4 * Department, University Hospital of Liege, Belgium |
3640
94f4a18a79cc
upgrade to year 2020
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3060
diff
changeset
|
5 * Copyright (C) 2017-2020 Osimis S.A., Belgium |
969 | 6 * |
7 * This program is free software: you can redistribute it and/or | |
4119
bf7b9edf6b81
re-licensing the OrthancFramework to LGPL, in order to license Stone of Orthanc under LGPL
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4044
diff
changeset
|
8 * modify it under the terms of the GNU Lesser General Public License |
bf7b9edf6b81
re-licensing the OrthancFramework to LGPL, in order to license Stone of Orthanc under LGPL
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4044
diff
changeset
|
9 * as published by the Free Software Foundation, either version 3 of |
bf7b9edf6b81
re-licensing the OrthancFramework to LGPL, in order to license Stone of Orthanc under LGPL
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4044
diff
changeset
|
10 * the License, or (at your option) any later version. |
969 | 11 * |
12 * This program is distributed in the hope that it will be useful, but | |
13 * WITHOUT ANY WARRANTY; without even the implied warranty of | |
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
4119
bf7b9edf6b81
re-licensing the OrthancFramework to LGPL, in order to license Stone of Orthanc under LGPL
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4044
diff
changeset
|
15 * Lesser General Public License for more details. |
969 | 16 * |
4119
bf7b9edf6b81
re-licensing the OrthancFramework to LGPL, in order to license Stone of Orthanc under LGPL
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4044
diff
changeset
|
17 * You should have received a copy of the GNU Lesser General Public |
bf7b9edf6b81
re-licensing the OrthancFramework to LGPL, in order to license Stone of Orthanc under LGPL
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4044
diff
changeset
|
18 * License along with this program. If not, see |
bf7b9edf6b81
re-licensing the OrthancFramework to LGPL, in order to license Stone of Orthanc under LGPL
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4044
diff
changeset
|
19 * <http://www.gnu.org/licenses/>. |
969 | 20 **/ |
21 | |
22 | |
23 #pragma once | |
24 | |
975 | 25 #include "RestApiGetCall.h" |
26 #include "RestApiPostCall.h" | |
27 #include "RestApiPutCall.h" | |
28 #include "RestApiDeleteCall.h" | |
969 | 29 |
978 | 30 #include <set> |
31 | |
969 | 32 namespace Orthanc |
33 { | |
3992
f9863630ec7f
working on the shared library for Orthanc framework
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3640
diff
changeset
|
34 class ORTHANC_PUBLIC RestApiHierarchy : public boost::noncopyable |
969 | 35 { |
978 | 36 public: |
4026
05a363186da6
ORTHANC_BUILDING_FRAMEWORK_LIBRARY, Orthanc::InitializeFramework()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3992
diff
changeset
|
37 class ORTHANC_PUBLIC Resource : public boost::noncopyable |
969 | 38 { |
972 | 39 private: |
975 | 40 RestApiGetCall::Handler getHandler_; |
41 RestApiPostCall::Handler postHandler_; | |
42 RestApiPutCall::Handler putHandler_; | |
974 | 43 RestApiDeleteCall::Handler deleteHandler_; |
969 | 44 |
972 | 45 public: |
978 | 46 Resource(); |
972 | 47 |
48 bool HasHandler(HttpMethod method) const; | |
969 | 49 |
4300 | 50 void Register(RestApiGetCall::Handler handler); |
969 | 51 |
4300 | 52 void Register(RestApiPutCall::Handler handler); |
969 | 53 |
4300 | 54 void Register(RestApiPostCall::Handler handler); |
969 | 55 |
4300 | 56 void Register(RestApiDeleteCall::Handler handler); |
969 | 57 |
58 bool IsEmpty() const; | |
978 | 59 |
60 bool Handle(RestApiGetCall& call) const; | |
61 | |
62 bool Handle(RestApiPutCall& call) const; | |
63 | |
64 bool Handle(RestApiPostCall& call) const; | |
65 | |
66 bool Handle(RestApiDeleteCall& call) const; | |
969 | 67 }; |
68 | |
69 | |
978 | 70 class IVisitor : public boost::noncopyable |
71 { | |
72 public: | |
4303
44b53a2c0a13
improving detection of ABI compatibility
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4300
diff
changeset
|
73 virtual ~IVisitor() |
44b53a2c0a13
improving detection of ABI compatibility
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4300
diff
changeset
|
74 { |
44b53a2c0a13
improving detection of ABI compatibility
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4300
diff
changeset
|
75 } |
978 | 76 |
77 virtual bool Visit(const Resource& resource, | |
78 const UriComponents& uri, | |
4330
a01b1c9cbef4
moving generic type definitions from IHttpHandler to HttpToolbox
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4303
diff
changeset
|
79 const HttpToolbox::Arguments& components, |
978 | 80 const UriComponents& trailing) = 0; |
81 }; | |
82 | |
83 | |
84 private: | |
969 | 85 typedef std::map<std::string, RestApiHierarchy*> Children; |
86 | |
978 | 87 Resource handlers_; |
969 | 88 Children children_; |
89 Children wildcardChildren_; | |
978 | 90 Resource universalHandlers_; |
969 | 91 |
92 static RestApiHierarchy& AddChild(Children& children, | |
93 const std::string& name); | |
94 | |
95 static void DeleteChildren(Children& children); | |
96 | |
97 template <typename Handler> | |
98 void RegisterInternal(const RestApiPath& path, | |
99 Handler handler, | |
100 size_t level); | |
101 | |
978 | 102 bool CanGenerateDirectory() const; |
103 | |
4330
a01b1c9cbef4
moving generic type definitions from IHttpHandler to HttpToolbox
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4303
diff
changeset
|
104 bool LookupResource(HttpToolbox::Arguments& components, |
978 | 105 const UriComponents& uri, |
106 IVisitor& visitor, | |
107 size_t level); | |
969 | 108 |
109 bool GetDirectory(Json::Value& result, | |
110 const UriComponents& uri, | |
111 size_t level); | |
112 | |
113 public: | |
114 ~RestApiHierarchy(); | |
115 | |
970 | 116 void Register(const std::string& uri, |
974 | 117 RestApiGetCall::Handler handler); |
969 | 118 |
970 | 119 void Register(const std::string& uri, |
974 | 120 RestApiPutCall::Handler handler); |
969 | 121 |
970 | 122 void Register(const std::string& uri, |
974 | 123 RestApiPostCall::Handler handler); |
969 | 124 |
970 | 125 void Register(const std::string& uri, |
974 | 126 RestApiDeleteCall::Handler handler); |
969 | 127 |
128 void CreateSiteMap(Json::Value& target) const; | |
129 | |
130 bool GetDirectory(Json::Value& result, | |
4300 | 131 const UriComponents& uri); |
969 | 132 |
978 | 133 bool LookupResource(const UriComponents& uri, |
134 IVisitor& visitor); | |
969 | 135 |
978 | 136 void GetAcceptedMethods(std::set<HttpMethod>& methods, |
137 const UriComponents& uri); | |
969 | 138 }; |
139 } |