Mercurial > hg > orthanc
annotate OrthancServer/Sources/ExportedResource.cpp @ 5645:6ac54d7bff90
fix unit test Versions.BoostStatic
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Fri, 31 May 2024 18:26:54 +0200 |
parents | f7adfb22e20e |
children |
rev | line source |
---|---|
1247 | 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:
1247
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 |
1247 | 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 | |
1624
0a2ad4a6858f
fix missing precompiled headers
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1288
diff
changeset
|
24 #include "PrecompiledHeadersServer.h" |
1247 | 25 #include "ExportedResource.h" |
26 | |
4045 | 27 #include "../../OrthancFramework/Sources/OrthancException.h" |
1247 | 28 |
29 namespace Orthanc | |
30 { | |
31 void ExportedResource::Format(Json::Value& item) const | |
32 { | |
33 item = Json::objectValue; | |
34 item["Seq"] = static_cast<int>(seq_); | |
35 item["ResourceType"] = EnumerationToString(resourceType_); | |
36 item["ID"] = publicId_; | |
37 item["Path"] = GetBasePath(resourceType_, publicId_); | |
38 item["RemoteModality"] = modality_; | |
39 item["Date"] = date_; | |
40 | |
41 // WARNING: Do not add "break" below and do not reorder the case items! | |
42 switch (resourceType_) | |
43 { | |
44 case ResourceType_Instance: | |
45 item["SOPInstanceUID"] = sopInstanceUid_; | |
46 | |
47 case ResourceType_Series: | |
48 item["SeriesInstanceUID"] = seriesInstanceUid_; | |
49 | |
50 case ResourceType_Study: | |
51 item["StudyInstanceUID"] = studyInstanceUid_; | |
52 | |
53 case ResourceType_Patient: | |
54 item["PatientID"] = patientId_; | |
55 break; | |
56 | |
57 default: | |
58 throw OrthancException(ErrorCode_InternalError); | |
59 } | |
60 } | |
61 } |