Mercurial > hg > orthanc
annotate OrthancServer/Sources/OrthancWebDav.h @ 5752:717acb0ea546 find-refactoring
fix DICOMWeb integration tests
author | Alain Mazy <am@orthanc.team> |
---|---|
date | Tue, 03 Sep 2024 16:37:31 +0200 |
parents | eb56ee3c5d63 |
children | 1404a80dd461 |
rev | line source |
---|---|
4240 | 1 /** |
2 * Orthanc - A Lightweight, RESTful DICOM Store | |
3 * Copyright (C) 2012-2016 Sebastien Jodogne, Medical Physics | |
4 * Department, University Hospital of Liege, Belgium | |
5640
f7adfb22e20e
updated copyright, as Orthanc Team now replaces Osimis
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
5485
diff
changeset
|
5 * Copyright (C) 2017-2023 Osimis S.A., Belgium |
f7adfb22e20e
updated copyright, as Orthanc Team now replaces Osimis
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
5485
diff
changeset
|
6 * Copyright (C) 2024-2024 Orthanc Team SRL, Belgium |
5485
48b8dae6dc77
upgrade to year 2024
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
5185
diff
changeset
|
7 * Copyright (C) 2021-2024 Sebastien Jodogne, ICTEAM UCLouvain, Belgium |
4240 | 8 * |
9 * This program is free software: you can redistribute it and/or | |
10 * modify it under the terms of the GNU General Public License as | |
11 * published by the Free Software Foundation, either version 3 of the | |
12 * License, or (at your option) any later version. | |
13 * | |
14 * This program is distributed in the hope that it will be useful, but | |
15 * WITHOUT ANY WARRANTY; without even the implied warranty of | |
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
17 * General Public License for more details. | |
18 * | |
19 * You should have received a copy of the GNU General Public License | |
20 * along with this program. If not, see <http://www.gnu.org/licenses/>. | |
21 **/ | |
22 | |
23 | |
24 #pragma once | |
25 | |
26 #include "../../OrthancFramework/Sources/HttpServer/WebDavStorage.h" | |
27 #include "../../OrthancFramework/Sources/MultiThreading/SharedMessageQueue.h" | |
28 #include "../../OrthancFramework/Sources/Toolbox.h" | |
29 | |
30 | |
31 namespace Orthanc | |
32 { | |
33 class ServerContext; | |
34 | |
35 class OrthancWebDav : public IWebDavBucket | |
36 { | |
37 private: | |
38 typedef std::map<ResourceType, std::string> Templates; | |
39 | |
4242
5cfa6ba75dfc
deleting resources from Orthanc WebDAV
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4240
diff
changeset
|
40 class DicomDeleteVisitor; |
4240 | 41 class DicomFileVisitor; |
5705
eb56ee3c5d63
removed dependency of OrthancWebDav on ServerContext::ILookupVisitor
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
5700
diff
changeset
|
42 class DicomFileVisitorV2; |
4242
5cfa6ba75dfc
deleting resources from Orthanc WebDAV
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4240
diff
changeset
|
43 class DicomIdentifiersVisitor; |
5700
1fab9ddaf702
webdav using ResourceFinder
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
5640
diff
changeset
|
44 class DicomIdentifiersVisitorV2; |
4240 | 45 class InstancesOfSeries; |
46 class InternalNode; | |
47 class ListOfResources; | |
48 class ListOfStudiesByDate; | |
49 class ListOfStudiesByMonth; | |
50 class ListOfStudiesByYear; | |
4242
5cfa6ba75dfc
deleting resources from Orthanc WebDAV
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4240
diff
changeset
|
51 class OrthancJsonVisitor; |
5705
eb56ee3c5d63
removed dependency of OrthancWebDav on ServerContext::ILookupVisitor
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
5700
diff
changeset
|
52 class OrthancJsonVisitorV2; |
4240 | 53 class ResourcesIndex; |
54 class RootNode; | |
55 class SingleDicomResource; | |
4242
5cfa6ba75dfc
deleting resources from Orthanc WebDAV
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4240
diff
changeset
|
56 |
4240 | 57 class INode : public boost::noncopyable |
58 { | |
59 public: | |
60 virtual ~INode() | |
61 { | |
62 } | |
63 | |
64 virtual bool ListCollection(IWebDavBucket::Collection& target, | |
65 const UriComponents& path) = 0; | |
66 | |
67 virtual bool GetFileContent(MimeType& mime, | |
68 std::string& content, | |
69 boost::posix_time::ptime& time, | |
70 const UriComponents& path) = 0; | |
4242
5cfa6ba75dfc
deleting resources from Orthanc WebDAV
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4240
diff
changeset
|
71 |
5cfa6ba75dfc
deleting resources from Orthanc WebDAV
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4240
diff
changeset
|
72 virtual bool DeleteItem(const UriComponents& path) = 0; |
4240 | 73 }; |
74 | |
75 | |
76 void AddVirtualFile(Collection& collection, | |
77 const UriComponents& path, | |
78 const std::string& filename); | |
79 | |
80 static void UploadWorker(OrthancWebDav* that); | |
81 | |
82 void Upload(const std::string& path); | |
4242
5cfa6ba75dfc
deleting resources from Orthanc WebDAV
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4240
diff
changeset
|
83 |
5cfa6ba75dfc
deleting resources from Orthanc WebDAV
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4240
diff
changeset
|
84 INode& GetRootNode(const std::string& rootPath); |
4240 | 85 |
86 ServerContext& context_; | |
4242
5cfa6ba75dfc
deleting resources from Orthanc WebDAV
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4240
diff
changeset
|
87 bool allowDicomDelete_; |
4243
64f57c9d5f79
configuration options for webdav
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4242
diff
changeset
|
88 bool allowUpload_; |
4240 | 89 std::unique_ptr<INode> patients_; |
90 std::unique_ptr<INode> studies_; | |
91 std::unique_ptr<INode> dates_; | |
92 Templates patientsTemplates_; | |
93 Templates studiesTemplates_; | |
94 WebDavStorage uploads_; | |
95 SharedMessageQueue uploadQueue_; | |
96 boost::thread uploadThread_; | |
4243
64f57c9d5f79
configuration options for webdav
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4242
diff
changeset
|
97 bool uploadRunning_; |
4240 | 98 |
99 public: | |
4242
5cfa6ba75dfc
deleting resources from Orthanc WebDAV
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4240
diff
changeset
|
100 OrthancWebDav(ServerContext& context, |
4243
64f57c9d5f79
configuration options for webdav
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4242
diff
changeset
|
101 bool allowDicomDelete, |
64f57c9d5f79
configuration options for webdav
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4242
diff
changeset
|
102 bool allowUpload); |
4240 | 103 |
104 virtual ~OrthancWebDav() | |
105 { | |
106 Stop(); | |
107 } | |
108 | |
109 virtual bool IsExistingFolder(const UriComponents& path) ORTHANC_OVERRIDE; | |
110 | |
111 virtual bool ListCollection(Collection& collection, | |
112 const UriComponents& path) ORTHANC_OVERRIDE; | |
113 | |
114 virtual bool GetFileContent(MimeType& mime, | |
115 std::string& content, | |
116 boost::posix_time::ptime& modificationTime, | |
117 const UriComponents& path) ORTHANC_OVERRIDE; | |
118 | |
119 virtual bool StoreFile(const std::string& content, | |
120 const UriComponents& path) ORTHANC_OVERRIDE; | |
121 | |
122 virtual bool CreateFolder(const UriComponents& path) ORTHANC_OVERRIDE; | |
123 | |
124 virtual bool DeleteItem(const std::vector<std::string>& path) ORTHANC_OVERRIDE; | |
125 | |
126 virtual void Start() ORTHANC_OVERRIDE; | |
127 | |
128 virtual void Stop() ORTHANC_OVERRIDE; | |
129 }; | |
130 } |