Mercurial > hg > orthanc-python
annotate Sources/PythonBytes.cpp @ 170:b49eeb36cd0d
removed generation of code model, now part of orthanc-java
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Thu, 27 Jun 2024 14:26:59 +0200 |
parents | 6fada29b6759 |
children | c8de83fe7faa |
rev | line source |
---|---|
122 | 1 /** |
2 * Python plugin for Orthanc | |
166
6fada29b6759
updated copyright, as Orthanc Team now replaces Osimis
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
122
diff
changeset
|
3 * Copyright (C) 2020-2023 Osimis S.A., Belgium |
6fada29b6759
updated copyright, as Orthanc Team now replaces Osimis
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
122
diff
changeset
|
4 * Copyright (C) 2024-2024 Orthanc Team SRL, Belgium |
6fada29b6759
updated copyright, as Orthanc Team now replaces Osimis
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
122
diff
changeset
|
5 * Copyright (C) 2021-2024 Sebastien Jodogne, ICTEAM UCLouvain, Belgium |
122 | 6 * |
7 * This program is free software: you can redistribute it and/or | |
8 * modify it under the terms of the GNU Affero General Public License | |
9 * as published by the Free Software Foundation, either version 3 of | |
10 * the License, or (at your option) any later version. | |
11 * | |
12 * This program is distributed in the hope that it will be useful, but | |
13 * WITHOUT ANY WARRANTY; without even the implied warranty of | |
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
15 * Affero General Public License for more details. | |
16 * | |
17 * You should have received a copy of the GNU Affero General Public License | |
18 * along with this program. If not, see <http://www.gnu.org/licenses/>. | |
19 **/ | |
20 | |
21 | |
22 #include "PythonBytes.h" | |
23 | |
24 #include "../Resources/Orthanc/Plugins/OrthancPluginCppWrapper.h" | |
25 | |
26 | |
27 void PythonBytes::SanityCheck() | |
28 { | |
29 if (!bytes_->IsValid()) | |
30 { | |
31 OrthancPlugins::LogError("Cannot create Python bytes"); | |
32 ORTHANC_PLUGINS_THROW_EXCEPTION(InternalError); | |
33 } | |
34 } | |
35 | |
36 | |
37 PythonBytes::PythonBytes(PythonLock& lock, | |
38 const void* data, | |
39 size_t size) | |
40 { | |
41 if (data == NULL && | |
42 size != 0) | |
43 { | |
44 ORTHANC_PLUGINS_THROW_EXCEPTION(NullPointer); | |
45 } | |
46 else | |
47 { | |
48 PyObject* obj = PyBytes_FromStringAndSize(reinterpret_cast<const char*>(data), size); | |
49 bytes_.reset(new PythonObject(lock, obj)); | |
50 SanityCheck(); | |
51 } | |
52 } |