-
Notifications
You must be signed in to change notification settings - Fork 104
Expand file tree
/
Copy pathutils.c
More file actions
56 lines (49 loc) · 1.61 KB
/
utils.c
File metadata and controls
56 lines (49 loc) · 1.61 KB
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
// Copyright (c) 2017 Ryan Leckey
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
// SOFTWARE.
#include "utils.h"
PyObject* PyXmlSec_GetFilePathOrContent(PyObject* file, int* is_content) {
PyObject* data;
PyObject* utf8;
PyObject* tmp = NULL;
if (PyObject_HasAttrString(file, "read")) {
data = PyObject_CallMethod(file, "read", NULL);
if (data != NULL && PyUnicode_Check(data)) {
utf8 = PyUnicode_AsUTF8String(data);
Py_DECREF(data);
data = utf8;
}
*is_content = 1;
return data;
}
*is_content = 0;
if (!PyUnicode_FSConverter(file, &tmp)) {
return NULL;
}
return tmp;
}
int PyXmlSec_SetStringAttr(PyObject* obj, const char* name, const char* value) {
PyObject* tmp = PyUnicode_FromString(value);
int r;
if (tmp == NULL) {
return -1;
}
r = PyObject_SetAttrString(obj, name, tmp);
Py_DECREF(tmp);
return r;
}
int PyXmlSec_SetLongAttr(PyObject* obj, const char* name, long value) {
PyObject* tmp = PyLong_FromLong(value);
int r;
if (tmp == NULL) {
return -1;
}
r = PyObject_SetAttrString(obj, name, tmp);
Py_DECREF(tmp);
return r;
}