Mercurial > hg > orthanc
annotate OrthancFramework/Sources/HttpServer/WebDavStorage.h @ 5853:4d932683049d get-scu tip
very first implementation of C-Get SCU
author | Alain Mazy <am@orthanc.team> |
---|---|
date | Tue, 29 Oct 2024 17:25:49 +0100 |
parents | f7adfb22e20e |
children |
rev | line source |
---|---|
4230 | 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 |
4230 | 8 * |
9 * This program is free software: you can redistribute it and/or | |
10 * modify it under the terms of the GNU Lesser General Public License | |
11 * as published by the Free Software Foundation, either version 3 of | |
12 * the 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 * Lesser General Public License for more details. | |
18 * | |
19 * You should have received a copy of the GNU Lesser General Public | |
20 * License along with this program. If not, see | |
21 * <http://www.gnu.org/licenses/>. | |
22 **/ | |
23 | |
24 | |
25 | |
26 #pragma once | |
27 | |
28 #include "IWebDavBucket.h" | |
29 | |
30 #include <boost/thread/recursive_mutex.hpp> | |
31 | |
32 namespace Orthanc | |
33 { | |
34 class WebDavStorage : public IWebDavBucket | |
35 { | |
36 private: | |
37 class StorageFile; | |
38 class StorageFolder; | |
39 | |
40 StorageFolder* LookupParentFolder(const std::vector<std::string>& path); | |
41 | |
42 boost::shared_ptr<StorageFolder> root_; // PImpl | |
43 boost::recursive_mutex mutex_; | |
44 bool isMemory_; | |
45 | |
46 public: | |
4253 | 47 explicit WebDavStorage(bool isMemory); |
4230 | 48 |
49 virtual bool IsExistingFolder(const std::vector<std::string>& path) ORTHANC_OVERRIDE; | |
50 | |
51 virtual bool ListCollection(Collection& collection, | |
52 const std::vector<std::string>& path) ORTHANC_OVERRIDE; | |
53 | |
54 virtual bool GetFileContent(MimeType& mime, | |
55 std::string& content, | |
56 boost::posix_time::ptime& modificationTime, | |
57 const std::vector<std::string>& path) ORTHANC_OVERRIDE; | |
58 | |
59 virtual bool StoreFile(const std::string& content, | |
60 const std::vector<std::string>& path) ORTHANC_OVERRIDE; | |
61 | |
62 virtual bool CreateFolder(const std::vector<std::string>& path) ORTHANC_OVERRIDE; | |
63 | |
4232
688435755466
added DELETE in WebDAV, first working virtual filesystem
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4230
diff
changeset
|
64 virtual bool DeleteItem(const std::vector<std::string>& path) ORTHANC_OVERRIDE; |
688435755466
added DELETE in WebDAV, first working virtual filesystem
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4230
diff
changeset
|
65 |
4230 | 66 virtual void Start() ORTHANC_OVERRIDE |
67 { | |
68 } | |
69 | |
70 virtual void Stop() ORTHANC_OVERRIDE | |
71 { | |
72 } | |
4239
c8754c4c1862
upload DICOM using WebDAV
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4232
diff
changeset
|
73 |
c8754c4c1862
upload DICOM using WebDAV
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4232
diff
changeset
|
74 void RemoveEmptyFolders(); |
4230 | 75 }; |
76 } |