Mercurial > hg > orthanc
annotate OrthancFramework/Sources/HttpServer/FilesystemHttpSender.cpp @ 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 |
---|---|
208 | 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:
1123
diff
changeset
|
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 |
208 | 8 * |
9 * 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
|
10 * 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
|
11 * 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
|
12 * the License, or (at your option) any later version. |
208 | 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 | |
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 * Lesser General Public License for more details. |
208 | 18 * |
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
|
19 * 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
|
20 * 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
|
21 * <http://www.gnu.org/licenses/>. |
208 | 22 **/ |
23 | |
824
a811bdf8b8eb
precompiled headers
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
689
diff
changeset
|
24 #include "../PrecompiledHeaders.h" |
208 | 25 #include "FilesystemHttpSender.h" |
26 | |
1522 | 27 #include "../OrthancException.h" |
1519
8bd0d897763f
refactoring: IHttpStreamAnswer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1288
diff
changeset
|
28 |
8bd0d897763f
refactoring: IHttpStreamAnswer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1288
diff
changeset
|
29 static const size_t CHUNK_SIZE = 64 * 1024; // Use 64KB chunks |
8bd0d897763f
refactoring: IHttpStreamAnswer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1288
diff
changeset
|
30 |
208 | 31 namespace Orthanc |
32 { | |
1522 | 33 void FilesystemHttpSender::Initialize(const boost::filesystem::path& path) |
208 | 34 { |
1522 | 35 SetContentFilename(path.filename().string()); |
36 file_.open(path.string().c_str(), std::ifstream::binary); | |
37 | |
38 if (!file_.is_open()) | |
39 { | |
40 throw OrthancException(ErrorCode_InexistentFile); | |
41 } | |
208 | 42 |
1519
8bd0d897763f
refactoring: IHttpStreamAnswer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1288
diff
changeset
|
43 file_.seekg(0, file_.end); |
8bd0d897763f
refactoring: IHttpStreamAnswer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1288
diff
changeset
|
44 size_ = file_.tellg(); |
8bd0d897763f
refactoring: IHttpStreamAnswer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1288
diff
changeset
|
45 file_.seekg(0, file_.beg); |
217 | 46 } |
47 | |
4298 | 48 FilesystemHttpSender::FilesystemHttpSender(const std::string& path) |
49 { | |
50 Initialize(path); | |
51 } | |
52 | |
53 FilesystemHttpSender::FilesystemHttpSender(const boost::filesystem::path& path) | |
54 { | |
55 Initialize(path); | |
56 } | |
57 | |
58 FilesystemHttpSender::FilesystemHttpSender(const std::string& path, | |
59 MimeType contentType) | |
60 { | |
61 SetContentType(contentType); | |
62 Initialize(path); | |
63 } | |
64 | |
65 FilesystemHttpSender::FilesystemHttpSender(const FilesystemStorage& storage, | |
66 const std::string& uuid) | |
67 { | |
68 Initialize(storage.GetPath(uuid)); | |
69 } | |
70 | |
71 uint64_t FilesystemHttpSender::GetContentLength() | |
72 { | |
73 return size_; | |
74 } | |
75 | |
1522 | 76 |
1519
8bd0d897763f
refactoring: IHttpStreamAnswer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1288
diff
changeset
|
77 bool FilesystemHttpSender::ReadNextChunk() |
8bd0d897763f
refactoring: IHttpStreamAnswer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1288
diff
changeset
|
78 { |
1525 | 79 if (chunk_.size() == 0) |
1522 | 80 { |
1525 | 81 chunk_.resize(CHUNK_SIZE); |
1522 | 82 } |
83 | |
1525 | 84 file_.read(&chunk_[0], chunk_.size()); |
1519
8bd0d897763f
refactoring: IHttpStreamAnswer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1288
diff
changeset
|
85 |
1525 | 86 if ((file_.flags() & std::istream::failbit) || |
87 file_.gcount() < 0) | |
1522 | 88 { |
1525 | 89 throw OrthancException(ErrorCode_CorruptedFile); |
1522 | 90 } |
91 | |
2332 | 92 chunkSize_ = static_cast<size_t>(file_.gcount()); |
1525 | 93 |
94 return chunkSize_ > 0; | |
208 | 95 } |
4298 | 96 |
97 const char *FilesystemHttpSender::GetChunkContent() | |
98 { | |
99 return chunk_.c_str(); | |
100 } | |
101 | |
102 size_t FilesystemHttpSender::GetChunkSize() | |
103 { | |
104 return chunkSize_; | |
105 } | |
208 | 106 } |