-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbytes.go
125 lines (100 loc) · 4.68 KB
/
bytes.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
package cpy
/*
#include "Python.h"
#include "macro.h"
*/
import "C"
import "unsafe"
// Bytes is an instance of PyTypeObject represents the Python `bytes` type; it is the same object as `bytes` in the
// Python layer.
//
// Reference: https://docs.python.org/3/c-api/bytes.html#c.PyBytes_Type
var Bytes = togo((*C.PyObject)(unsafe.Pointer(&C.PyBytes_Type)))
// PyBytes_Check returns true if the object o is a `bytes` object or an instance of a subtype of the `bytes` type.
// This function always succeeds.
//
// Reference: https://docs.python.org/3/c-api/bytes.html#c.PyBytes_Check
func PyBytes_Check(o *PyObject) bool {
return C._go_PyBytes_Check(toc(o)) != 0
}
// PyBytes_CheckExact returns true if the object o is a `bytes` object, but not an instance of a subtype of the `bytes`
// type. This function always succeeds.
//
// Reference: https://docs.python.org/3/c-api/bytes.html#c.PyBytes_CheckExact
func PyBytes_CheckExact(o *PyObject) bool {
return C._go_PyBytes_CheckExact(toc(o)) != 0
}
// PyBytes_FromString returns a new bytes object with a copy of the string v as value on success, and NULL on failure.
// The parameter v must not be NULL; it will not be checked.
//
// Reference: https://docs.python.org/3/c-api/bytes.html#c.PyBytes_FromString
func PyBytes_FromString(str string) *PyObject {
cstr := C.CString(str)
defer C.free(unsafe.Pointer(cstr))
return togo(C.PyBytes_FromString(cstr))
}
// PyBytes_FromStringAndSize returns a new `bytes` object with a copy of the string v as value and length len on
// success, and `NULL` on failure. If v is `NULL`, the contents of the bytes object are uninitialized.
//
// Reference: https://docs.python.org/3/c-api/bytes.html#c.PyBytes_FromStringAndSize
func PyBytes_FromStringAndSize(str string) *PyObject {
cstr := C.CString(str)
defer C.free(unsafe.Pointer(cstr))
return togo(C.PyBytes_FromStringAndSize(cstr, C.Py_ssize_t(len(str))))
}
// PyBytes_FromObject returns the `bytes` representation of object o that implements the buffer protocol.
//
// Reference: https://docs.python.org/3/c-api/bytes.html#c.PyBytes_FromObject
func PyBytes_FromObject(o *PyObject) *PyObject {
return togo(C.PyBytes_FromObject(toc(o)))
}
// PyBytes_Size returns the length of the bytes in bytes object o.
//
// Reference: https://docs.python.org/3/c-api/bytes.html#c.PyBytes_Size
func PyBytes_Size(o *PyObject) int {
return int(C.PyBytes_Size(toc(o)))
}
// PyBytes_AsString returns a pointer to the contents of o. The pointer refers to the internal buffer of o, which
// consists of len(o) + 1 bytes. The last byte in the buffer is always null, regardless of whether there are any other
// null bytes. The data must not be modified in any way, unless the object was just created using
// PyBytes_FromStringAndSize(NULL, size). It must not be deallocated.
//
// If o is not a bytes object at all, PyBytes_AsString() returns NULL and raises TypeError.
//
// Reference: https://docs.python.org/3/c-api/bytes.html#c.PyBytes_AsString
func PyBytes_AsString(o *PyObject) string {
return C.GoStringN(C.PyBytes_AsString(toc(o)), C.int(C.PyBytes_Size(toc(o))))
}
// PyBytes_Concat creates a new bytes object in *bytes containing the contents of newpart appended to bytes; the caller
// will own the new reference. The reference to the old value of bytes will be stolen. If the new object cannot be
// created, the old reference to bytes will still be discarded and the value of *bytes will be set to NULL; the
// appropriate exception will be set.
//
// Reference: https://docs.python.org/3/c-api/bytes.html#c.PyBytes_Concat
func PyBytes_Concat(bytes, newpart *PyObject) *PyObject {
cbytes := toc(bytes)
C.PyBytes_Concat(&cbytes, toc(newpart)) //nolint: gocritic
return togo(cbytes)
}
// PyBytes_ConcatAndDel creates a new bytes object in *bytes containing the contents of newpart appended to bytes. This
// version releases the strong reference to newpart (i.e. decrements its reference count).
//
// Reference: https://docs.python.org/3/c-api/bytes.html#c.PyBytes_ConcatAndDel
func PyBytes_ConcatAndDel(bytes, newpart *PyObject) *PyObject {
cbytes := toc(bytes)
C.PyBytes_ConcatAndDel(&cbytes, toc(newpart)) //nolint: gocritic
return togo(cbytes)
}
// PyBytes_FromByteSlice uses https://docs.python.org/3/c-api/bytes.html#c.PyBytes_FromStringAndSize but with []byte.
func PyBytes_FromByteSlice(bytes []byte) *PyObject {
pbytes := C.CBytes(bytes)
defer C.free(pbytes)
cstr := (*C.char)(pbytes)
return togo(C.PyBytes_FromStringAndSize(cstr, C.Py_ssize_t(len(bytes))))
}
// PyBytes_AsByteSlice is equivalent to PyBytes_AsString but returns byte slices.
func PyBytes_AsByteSlice(o *PyObject) []byte {
cstr := C.PyBytes_AsString(toc(o))
size := C.PyBytes_Size(toc(o))
return C.GoBytes(unsafe.Pointer(cstr), C.int(size))
}