Mercurial > hg > orthanc-databases
annotate Framework/Common/NullValue.cpp @ 415:7e123f047771
LookupResources optimization continued
author | Alain Mazy <am@osimis.io> |
---|---|
date | Thu, 22 Jun 2023 18:07:41 +0200 |
parents | 3d6886f3e5b3 |
children | ecd0b719cff5 |
rev | line source |
---|---|
0 | 1 /** |
2 * Orthanc - A Lightweight, RESTful DICOM Store | |
3 * Copyright (C) 2012-2016 Sebastien Jodogne, Medical Physics | |
4 * Department, University Hospital of Liege, Belgium | |
389
3d6886f3e5b3
upgrade to year 2023
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
359
diff
changeset
|
5 * Copyright (C) 2017-2023 Osimis S.A., Belgium |
3d6886f3e5b3
upgrade to year 2023
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
359
diff
changeset
|
6 * Copyright (C) 2021-2023 Sebastien Jodogne, ICTEAM UCLouvain, Belgium |
0 | 7 * |
8 * This program is free software: you can redistribute it and/or | |
9 * modify it under the terms of the GNU Affero General Public License | |
10 * as published by the Free Software Foundation, either version 3 of | |
11 * the License, or (at your option) any later version. | |
12 * | |
13 * This program is distributed in the hope that it will be useful, but | |
14 * WITHOUT ANY WARRANTY; without even the implied warranty of | |
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
16 * Affero General Public License for more details. | |
17 * | |
18 * You should have received a copy of the GNU Affero General Public License | |
19 * along with this program. If not, see <http://www.gnu.org/licenses/>. | |
20 **/ | |
21 | |
22 | |
23 #include "NullValue.h" | |
24 | |
298
8f655f308de9
added IResult::Print()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
193
diff
changeset
|
25 #include "Utf8StringValue.h" |
8f655f308de9
added IResult::Print()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
193
diff
changeset
|
26 |
152 | 27 #include <OrthancException.h> |
0 | 28 |
29 namespace OrthancDatabases | |
30 { | |
31 IValue* NullValue::Convert(ValueType target) const | |
32 { | |
298
8f655f308de9
added IResult::Print()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
193
diff
changeset
|
33 switch (target) |
0 | 34 { |
298
8f655f308de9
added IResult::Print()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
193
diff
changeset
|
35 case ValueType_Null: |
8f655f308de9
added IResult::Print()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
193
diff
changeset
|
36 return new NullValue; |
8f655f308de9
added IResult::Print()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
193
diff
changeset
|
37 |
8f655f308de9
added IResult::Print()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
193
diff
changeset
|
38 case ValueType_Utf8String: |
8f655f308de9
added IResult::Print()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
193
diff
changeset
|
39 return new Utf8StringValue("(null)"); |
8f655f308de9
added IResult::Print()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
193
diff
changeset
|
40 |
8f655f308de9
added IResult::Print()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
193
diff
changeset
|
41 default: |
8f655f308de9
added IResult::Print()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
193
diff
changeset
|
42 throw Orthanc::OrthancException(Orthanc::ErrorCode_ParameterOutOfRange); |
0 | 43 } |
44 } | |
45 } |