Mercurial > hg > orthanc-databases
annotate Framework/Common/Integer64Value.cpp @ 395:a7a029043670 db-protobuf
integration mainline->db-protobuf
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Wed, 05 Apr 2023 14:53:57 +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 "Integer64Value.h" | |
24 | |
25 #include "BinaryStringValue.h" | |
26 #include "NullValue.h" | |
27 #include "Utf8StringValue.h" | |
28 | |
152 | 29 #include <OrthancException.h> |
0 | 30 |
31 #include <boost/lexical_cast.hpp> | |
32 | |
33 namespace OrthancDatabases | |
34 { | |
35 IValue* Integer64Value::Convert(ValueType target) const | |
36 { | |
37 std::string s = boost::lexical_cast<std::string>(value_); | |
38 | |
39 switch (target) | |
40 { | |
41 case ValueType_Null: | |
42 return new NullValue; | |
43 | |
44 case ValueType_BinaryString: | |
45 return new BinaryStringValue(s); | |
46 | |
47 case ValueType_Utf8String: | |
48 return new Utf8StringValue(s); | |
49 | |
50 default: | |
51 throw Orthanc::OrthancException(Orthanc::ErrorCode_ParameterOutOfRange); | |
52 } | |
53 } | |
54 } |