summaryrefslogtreecommitdiff
path: root/lang_ext/python/definition.h
blob: 040019d7ff1403bfa41bbb63f1b970acbaca38dc (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
/*
 * upb - a minimalist implementation of protocol buffers.
 *
 * Copyright (c) 2009 Joshua Haberman.  See LICENSE for details.
 *
 * See def.h for a general description.  These definitions
 * must be shared so that specific Python message types (for the
 * different proto APIs) can have access to the C definitions. */

#ifndef UPB_PYTHON_DEFINITION_H_
#define UPB_PYTHON_DEFINITION_H_

#include <Python.h>

#ifdef __cplusplus
extern "C" {
#endif

typedef struct {
  PyObject_HEAD
  struct upb_context *context;
} PyUpb_Context;

typedef struct {
  PyObject_HEAD
  struct upb_msgdef *def;
  PyUpb_Context *context;
} PyUpb_MsgDef;

extern PyTypeObject PyUpb_MsgDefType;

/* What format string should be passed to PyArg_ParseTuple to get just a raw
 * string of bytes and a length. */
#if PY_MAJOR_VERSION >= 3
#define BYTES_FORMAT "y#"
#else
#define BYTES_FORMAT "s#"
#endif

PyUpb_MsgDef *get_or_create_msgdef(struct upb_msgdef *def);

#define RETURN_BOOL(val) if(val) { Py_RETURN_TRUE; } else { Py_RETURN_FALSE; }

#ifdef __cplusplus
}  /* extern "C" */
#endif

#endif
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback