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 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294
|
/* -*- Mode: C; c-basic-offset: 4 -*-
* vim: tabstop=4 shiftwidth=4 expandtab
*
* Copyright (C) 2011 John (J5) Palmieri <johnp@redhat.com>
* Copyright (C) 2013 Simon Feltman <sfeltman@gnome.org>
*
* 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, see <http://www.gnu.org/licenses/>.
*/
#ifndef __PYGI_CACHE_H__
#define __PYGI_CACHE_H__
/* Workaround for FFI_GO_CLOSURES not being defined on macOS
* See also: https://github.com/openjdk/jdk17u-dev/pull/741
*/
#ifndef FFI_GO_CLOSURES
#define FFI_GO_CLOSURES 0
#endif
#include <girepository/girepository.h>
#include <girepository/girffi.h>
#include "pygi-invoke-state-struct.h"
G_BEGIN_DECLS
typedef struct _PyGIArgCache PyGIArgCache;
typedef struct _PyGICallableCache PyGICallableCache;
typedef struct _PyGIFunctionCache PyGIFunctionCache;
typedef struct _PyGIVFuncCache PyGIVFuncCache;
typedef PyGIFunctionCache PyGICCallbackCache;
typedef PyGIFunctionCache PyGIConstructorCache;
typedef PyGIFunctionCache PyGIFunctionWithInstanceCache;
typedef PyGIFunctionCache PyGIMethodCache;
typedef PyGICallableCache PyGIClosureCache;
typedef gboolean (*PyGIMarshalFromPyFunc) (PyGIInvokeState *state,
PyGICallableCache *callable_cache,
PyGIArgCache *arg_cache,
PyObject *py_arg, GIArgument *arg,
gpointer *cleanup_data);
typedef PyObject *(*PyGIMarshalToPyFunc) (PyGIInvokeState *state,
PyGICallableCache *callable_cache,
PyGIArgCache *arg_cache,
GIArgument *arg,
gpointer *cleanup_data);
typedef void (*PyGIMarshalFromPyCleanupFunc) (PyGIInvokeState *state,
PyGIArgCache *arg_cache,
PyObject *py_arg, gpointer data,
gboolean was_processed);
typedef void (*PyGIMarshalToPyCleanupFunc) (PyGIInvokeState *state,
PyGIArgCache *arg_cache,
gpointer cleanup_data,
gpointer data,
gboolean was_processed);
/* Argument meta types denote how we process the argument:
* - PYGI_META_ARG_TYPE_PARENT - parents may or may not have children
* but are always processed via the normal marshaller for their
* actual GI type. If they have children the marshaller will
* also handle marshalling the children.
* - PYGI_META_ARG_TYPE_CHILD - Children without python argument are
* ignored by the marshallers and handled directly by their parents
* marshaller.
* - Children with pyargs (PYGI_META_ARG_TYPE_CHILD_WITH_PYARG) are processed
* the same as other child args but also have an index into the
* python parameters passed to the invoker
*/
typedef enum {
PYGI_META_ARG_TYPE_PARENT,
PYGI_META_ARG_TYPE_CHILD,
PYGI_META_ARG_TYPE_CHILD_WITH_PYARG,
PYGI_META_ARG_TYPE_CLOSURE,
} PyGIMetaArgType;
/*
* Argument direction types denotes how we marshal,
* e.g. to Python or from Python or both.
*/
typedef enum {
PYGI_DIRECTION_TO_PYTHON = 1 << 0,
PYGI_DIRECTION_FROM_PYTHON = 1 << 1,
PYGI_DIRECTION_BIDIRECTIONAL = PYGI_DIRECTION_TO_PYTHON
| PYGI_DIRECTION_FROM_PYTHON
} PyGIDirection;
/*
* In PyGI IN and OUT arguments mean different things depending on the context
* of the callable, e.g. is it a callback that is being called from C or a
* function that is being called from Python.
*/
typedef enum {
PYGI_CALLING_CONTEXT_IS_FROM_C,
PYGI_CALLING_CONTEXT_IS_FROM_PY
} PyGICallingContext;
typedef enum {
PYGI_ASYNC_CONTEXT_NONE = 0,
PYGI_ASYNC_CONTEXT_CALLBACK,
PYGI_ASYNC_CONTEXT_CANCELLABLE,
} PyGIAsyncContext;
struct _PyGIArgCache {
GITypeInfo *type_info;
GIArgInfo *arg_info;
PyGIMetaArgType meta_type;
PyGIAsyncContext async_context;
gboolean is_pointer;
PyGIDirection direction;
GITransfer transfer;
GITypeTag type_tag;
PyGIMarshalFromPyFunc from_py_marshaller;
PyGIMarshalToPyFunc to_py_marshaller;
PyGIMarshalFromPyCleanupFunc from_py_cleanup;
PyGIMarshalToPyCleanupFunc to_py_cleanup;
GDestroyNotify destroy_notify;
gssize c_arg_index;
gssize py_arg_index;
};
typedef struct _PyGISequenceCache {
PyGIArgCache arg_cache;
PyGIArgCache *item_cache;
} PyGISequenceCache;
typedef struct _PyGIArgGArray {
PyGISequenceCache seq_cache;
unsigned int len_arg_index;
gboolean has_len_arg;
gsize item_size;
} PyGIArgGArray;
typedef struct _PyGIInterfaceCache {
PyGIArgCache arg_cache;
gboolean is_foreign;
GType g_type;
PyObject *py_type;
GIRegisteredTypeInfo *interface_info;
gchar *type_name;
} PyGIInterfaceCache;
struct _PyGICallableCache {
GIBaseInfo *info;
PyGICallingContext calling_context;
PyGIArgCache *return_cache;
GPtrArray *args_cache;
GSList *to_py_args;
GHashTable *arg_name_hash;
/* Index of user_data arg passed to a callable. */
unsigned int user_data_index;
gboolean has_user_data;
/* A user_data arg that can eat variable args passed to a callable. */
PyGIArgCache *user_data_varargs_arg;
/* Number of args already added */
unsigned int args_offset;
/* Number of out args passed to gi_function_info_invoke.
* This is used for the length of PyGIInvokeState.out_values */
gssize n_to_py_args;
/* If the callable return value gets used */
gboolean has_return;
/* The type used for returning multiple values or NULL */
PyTypeObject *resulttuple_type;
/* Number of out args for gi_function_info_invoke that will be skipped
* when marshaling to Python due to them being implicitly available
* (list/array length).
*/
gssize n_to_py_child_args;
/* Number of Python arguments expected for invoking the gi function. */
gssize n_py_args;
void (*deinit) (PyGICallableCache *callable_cache);
};
struct _PyGIFunctionCache {
PyGICallableCache callable_cache;
/* Information about async functions. */
PyObject *async_finish;
PyGIArgCache *async_callback;
PyGIArgCache *async_cancellable;
/* An invoker with ffi_cif already setup */
GIFunctionInvoker invoker;
PyObject *(*invoke) (PyGIFunctionCache *function_cache,
PyGIInvokeState *state, PyObject *const *py_args,
size_t py_nargsf, PyObject *py_kwnames);
};
struct _PyGIVFuncCache {
PyGIFunctionWithInstanceCache fwi_cache;
};
typedef struct _PyGICallbackCache {
PyGIArgCache arg_cache;
unsigned int user_data_index;
gboolean has_user_data;
unsigned int destroy_notify_index;
gboolean has_destroy_notify;
GIScopeType scope;
GIBaseInfo *interface_info;
PyGIClosureCache *closure_cache;
} PyGICallbackCache;
const char *pygi_arg_cache_get_name (PyGIArgCache *cache);
gboolean pygi_arg_cache_allow_none (PyGIArgCache *cache);
gboolean pygi_arg_cache_is_caller_allocates (PyGIArgCache *cache);
void pygi_callable_cache_free (PyGICallableCache *cache);
gchar *pygi_callable_cache_get_full_name (PyGICallableCache *cache);
gboolean pygi_callable_cache_skip_return (PyGICallableCache *cache);
gboolean pygi_callable_cache_can_throw_gerror (PyGICallableCache *cache);
PyGIFunctionCache *pygi_function_cache_new (GICallableInfo *info);
PyObject *pygi_function_cache_invoke (PyGIFunctionCache *function_cache,
PyObject *const *py_args,
size_t py_nargsf, PyObject *py_kwnames);
PyGIFunctionCache *pygi_ccallback_cache_new (GICallableInfo *info,
GCallback function_ptr);
PyObject *pygi_ccallback_cache_invoke (PyGIFunctionCache *function_cache,
PyObject *const *py_args,
size_t py_nargsf, PyObject *py_kwnames,
gpointer user_data);
PyGIFunctionCache *pygi_constructor_cache_new (GICallableInfo *info);
PyGIFunctionCache *pygi_method_cache_new (GICallableInfo *info);
PyGIFunctionCache *pygi_vfunc_cache_new (GICallableInfo *info);
PyGIClosureCache *pygi_closure_cache_new (GICallableInfo *info);
static inline guint
_pygi_callable_cache_args_len (PyGICallableCache *cache)
{
return cache->args_cache->len;
}
static inline PyGIArgCache *
_pygi_callable_cache_get_arg (PyGICallableCache *cache, guint index)
{
return (PyGIArgCache *)g_ptr_array_index (cache->args_cache, index);
}
static inline void
_pygi_callable_cache_set_arg (PyGICallableCache *cache, guint index,
PyGIArgCache *arg_cache)
{
cache->args_cache->pdata[index] = arg_cache;
}
G_END_DECLS
#endif /* __PYGI_CACHE_H__ */
|