annotate Sources/PythonBytes.h @ 122:45722358d459 fix-leak

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