122
|
1 /**
|
|
2 * Python plugin for Orthanc
|
|
3 * Copyright (C) 2020-2022 Osimis S.A., Belgium
|
|
4 * Copyright (C) 2021-2022 Sebastien Jodogne, ICTEAM UCLouvain, Belgium
|
|
5 *
|
|
6 * This program is free software: you can redistribute it and/or
|
|
7 * modify it under the terms of the GNU Affero General Public License
|
|
8 * as published by the Free Software Foundation, either version 3 of
|
|
9 * the License, or (at your option) any later version.
|
|
10 *
|
|
11 * This program is distributed in the hope that it will be useful, but
|
|
12 * WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
14 * Affero General Public License for more details.
|
|
15 *
|
|
16 * You should have received a copy of the GNU Affero General Public License
|
|
17 * along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
18 **/
|
|
19
|
|
20
|
|
21 #pragma once
|
|
22
|
|
23 #include "PythonObject.h"
|
|
24
|
|
25 #include <Compatibility.h> // For std::unique_ptr
|
|
26
|
|
27 // A Python string is always valid, or an exception was thrown on its creation
|
|
28 class PythonBytes : public boost::noncopyable
|
|
29 {
|
|
30 private:
|
|
31 std::unique_ptr<PythonObject> bytes_;
|
|
32
|
|
33 void SanityCheck();
|
|
34
|
|
35 public:
|
|
36 PythonBytes(PythonLock& lock,
|
|
37 const void* data,
|
|
38 size_t size);
|
|
39
|
|
40 PyObject* GetPyObject() const
|
|
41 {
|
|
42 return bytes_->GetPyObject();
|
|
43 }
|
|
44
|
|
45 PyObject* Release()
|
|
46 {
|
|
47 return bytes_->Release();
|
|
48 }
|
|
49 };
|