summaryrefslogtreecommitdiffstats
path: root/gio/pygio-utils.c
blob: 313b147125fc1773cf6f36d8c7f683cc90326bb5 (plain)
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
126
127
128
129
130
/* -*- Mode: C; c-basic-offset: 4 -*-
 * pygtk- Python bindings for the GTK toolkit.
 * Copyright (C) 2008  Johan Dahlin
 * Copyright (C) 2008  Gian Mario Tagliaretti
 *
 *   giomodule.c: module wrapping the GIO library
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
 * USA
 */

#include "pygio-utils.h"

/**
 * pygio_check_cancellable:
 * @pycancellable:
 * @cancellable:
 *
 * Returns:
 */
gboolean
pygio_check_cancellable(PyGObject *pycancellable,
			GCancellable **cancellable)
{
  if (pycancellable == NULL || (PyObject*)pycancellable == Py_None)
      *cancellable = NULL;
  else if (pygobject_check(pycancellable, &PyGCancellable_Type))
      *cancellable = G_CANCELLABLE(pycancellable->obj);
  else
    {
      PyErr_SetString(PyExc_TypeError,
		      "cancellable should be a gio.Cancellable");
      return FALSE;
    }
  return TRUE;
}

/**
 * pygio_check_launch_context:
 * @pycontext:
 * @context:
 *
 * Returns:
 */
gboolean
pygio_check_launch_context(PyGObject *pycontext,
                           GAppLaunchContext **context)
{
  if (pycontext == NULL || (PyObject*)pycontext == Py_None)
      *context = NULL;
  else if (pygobject_check(pycontext, &PyGAppLaunchContext_Type))
      *context = G_APP_LAUNCH_CONTEXT(pycontext->obj);
  else
    {
      PyErr_SetString(PyExc_TypeError,
		      "launch_context should be a GAppLaunchContext or None");
      return FALSE;
    }
  return TRUE;
}

/**
 * pygio_pylist_to_gfile_glist:
 * @pyfile_list:
 *
 * Returns:
 */
GList *
pygio_pylist_to_gfile_glist(PyObject *pyfile_list)
{
    GList *file_list = NULL;
    PyObject *item;
    int len, i;

    len = PySequence_Size(pyfile_list);
    for (i = 0; i < len; i++) {
        item = PySequence_GetItem(pyfile_list, i);
        if (!PyObject_TypeCheck(item, &PyGFile_Type)) {
            PyErr_SetString(PyExc_TypeError,
                            "files must be a list or tuple of GFile");
            g_list_free(file_list);
            return NULL;
        }
        file_list = g_list_prepend(file_list, ((PyGObject *)item)->obj);
    }
    file_list = g_list_reverse(file_list);

    return file_list;
}

/**
 * pygio_pylist_to_uri_glist:
 * @pyfile_list:
 *
 * Returns:
 */
GList *
pygio_pylist_to_uri_glist(PyObject *pyfile_list)
{
    GList *file_list = NULL;
    PyObject *item;
    int len, i;

    len = PySequence_Size(pyfile_list);
    for (i = 0; i < len; i++) {
    item = PySequence_GetItem(pyfile_list, i);
        if (!PyString_Check(item)) {
            PyErr_SetString(PyExc_TypeError,
                            "files must be strings");
            g_list_free(file_list);
            return NULL;
        }
        file_list = g_list_prepend(file_list, PyString_AsString(item));
    }
    file_list = g_list_reverse(file_list);

    return file_list;
}