Mercurial > hg > orthanc
annotate OrthancServer/Search/SetOfResources.cpp @ 2222:21713ce8717b
Fix handling of Move Originator AET and ID in C-MOVE SCP
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Tue, 13 Dec 2016 14:34:33 +0100 |
parents | b1291df2f780 |
children | a3a65de1840f |
rev | line source |
---|---|
1746 | 1 /** |
2 * Orthanc - A Lightweight, RESTful DICOM Store | |
1900 | 3 * Copyright (C) 2012-2016 Sebastien Jodogne, Medical Physics |
1746 | 4 * Department, University Hospital of Liege, Belgium |
5 * | |
6 * This program is free software: you can redistribute it and/or | |
7 * modify it under the terms of the GNU General Public License as | |
8 * published by the Free Software Foundation, either version 3 of the | |
9 * License, or (at your option) any later version. | |
10 * | |
11 * In addition, as a special exception, the copyright holders of this | |
12 * program give permission to link the code of its release with the | |
13 * OpenSSL project's "OpenSSL" library (or with modified versions of it | |
14 * that use the same license as the "OpenSSL" library), and distribute | |
15 * the linked executables. You must obey the GNU General Public License | |
16 * in all respects for all of the code used other than "OpenSSL". If you | |
17 * modify file(s) with this exception, you may extend this exception to | |
18 * your version of the file(s), but you are not obligated to do so. If | |
19 * you do not wish to do so, delete this exception statement from your | |
20 * version. If you delete this exception statement from all source files | |
21 * in the program, then also delete it here. | |
22 * | |
23 * This program is distributed in the hope that it will be useful, but | |
24 * WITHOUT ANY WARRANTY; without even the implied warranty of | |
25 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
26 * General Public License for more details. | |
27 * | |
28 * You should have received a copy of the GNU General Public License | |
29 * along with this program. If not, see <http://www.gnu.org/licenses/>. | |
30 **/ | |
31 | |
32 | |
1747 | 33 #include "../PrecompiledHeadersServer.h" |
1746 | 34 #include "SetOfResources.h" |
35 | |
1747 | 36 #include "../../Core/OrthancException.h" |
1746 | 37 |
38 | |
39 namespace Orthanc | |
40 { | |
41 void SetOfResources::Intersect(const std::list<int64_t>& resources) | |
42 { | |
43 if (resources_.get() == NULL) | |
44 { | |
45 resources_.reset(new Resources); | |
46 | |
47 for (std::list<int64_t>::const_iterator | |
48 it = resources.begin(); it != resources.end(); ++it) | |
49 { | |
50 resources_->insert(*it); | |
51 } | |
52 } | |
53 else | |
54 { | |
55 std::auto_ptr<Resources> filtered(new Resources); | |
56 | |
57 for (std::list<int64_t>::const_iterator | |
58 it = resources.begin(); it != resources.end(); ++it) | |
59 { | |
60 if (resources_->find(*it) != resources_->end()) | |
61 { | |
62 filtered->insert(*it); | |
63 } | |
64 } | |
65 | |
66 resources_ = filtered; | |
67 } | |
68 } | |
69 | |
70 | |
71 void SetOfResources::GoDown() | |
72 { | |
73 if (level_ == ResourceType_Instance) | |
74 { | |
75 throw OrthancException(ErrorCode_BadSequenceOfCalls); | |
76 } | |
77 | |
1753 | 78 if (resources_.get() != NULL) |
79 { | |
80 std::auto_ptr<Resources> children(new Resources); | |
1746 | 81 |
1753 | 82 for (Resources::const_iterator it = resources_->begin(); |
83 it != resources_->end(); ++it) | |
84 { | |
85 std::list<int64_t> tmp; | |
86 database_.GetChildrenInternalId(tmp, *it); | |
1746 | 87 |
1753 | 88 for (std::list<int64_t>::const_iterator |
89 child = tmp.begin(); child != tmp.end(); ++child) | |
90 { | |
91 children->insert(*child); | |
92 } | |
1746 | 93 } |
1753 | 94 |
95 resources_ = children; | |
1746 | 96 } |
97 | |
1747 | 98 switch (level_) |
99 { | |
100 case ResourceType_Patient: | |
101 level_ = ResourceType_Study; | |
102 break; | |
103 | |
104 case ResourceType_Study: | |
105 level_ = ResourceType_Series; | |
106 break; | |
107 | |
108 case ResourceType_Series: | |
109 level_ = ResourceType_Instance; | |
110 break; | |
111 | |
112 default: | |
113 throw OrthancException(ErrorCode_InternalError); | |
114 } | |
1746 | 115 } |
116 | |
117 | |
118 void SetOfResources::Flatten(std::list<std::string>& result) | |
119 { | |
120 result.clear(); | |
121 | |
122 if (resources_.get() == NULL) | |
123 { | |
124 // All the resources of this level are part of the filter | |
125 database_.GetAllPublicIds(result, level_); | |
126 } | |
127 else | |
128 { | |
129 for (Resources::const_iterator it = resources_->begin(); | |
130 it != resources_->end(); ++it) | |
131 { | |
132 result.push_back(database_.GetPublicId(*it)); | |
133 } | |
134 } | |
135 } | |
1750
55d52567bebb
LookupResource implemented
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1747
diff
changeset
|
136 |
55d52567bebb
LookupResource implemented
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1747
diff
changeset
|
137 |
55d52567bebb
LookupResource implemented
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1747
diff
changeset
|
138 void SetOfResources::Flatten(std::list<int64_t>& result) |
55d52567bebb
LookupResource implemented
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1747
diff
changeset
|
139 { |
55d52567bebb
LookupResource implemented
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1747
diff
changeset
|
140 result.clear(); |
55d52567bebb
LookupResource implemented
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1747
diff
changeset
|
141 |
55d52567bebb
LookupResource implemented
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1747
diff
changeset
|
142 if (resources_.get() == NULL) |
55d52567bebb
LookupResource implemented
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1747
diff
changeset
|
143 { |
55d52567bebb
LookupResource implemented
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1747
diff
changeset
|
144 // All the resources of this level are part of the filter |
55d52567bebb
LookupResource implemented
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1747
diff
changeset
|
145 database_.GetAllInternalIds(result, level_); |
55d52567bebb
LookupResource implemented
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1747
diff
changeset
|
146 } |
55d52567bebb
LookupResource implemented
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1747
diff
changeset
|
147 else |
55d52567bebb
LookupResource implemented
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1747
diff
changeset
|
148 { |
55d52567bebb
LookupResource implemented
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1747
diff
changeset
|
149 for (Resources::const_iterator it = resources_->begin(); |
55d52567bebb
LookupResource implemented
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1747
diff
changeset
|
150 it != resources_->end(); ++it) |
55d52567bebb
LookupResource implemented
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1747
diff
changeset
|
151 { |
55d52567bebb
LookupResource implemented
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1747
diff
changeset
|
152 result.push_back(*it); |
55d52567bebb
LookupResource implemented
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1747
diff
changeset
|
153 } |
55d52567bebb
LookupResource implemented
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1747
diff
changeset
|
154 } |
55d52567bebb
LookupResource implemented
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1747
diff
changeset
|
155 } |
1746 | 156 } |