]> git.sesse.net Git - vlc/blob - bindings/python/vlcglue.h
Merge fixes to the python binding from my branch
[vlc] / bindings / python / vlcglue.h
1 /*****************************************************************************
2  * vlcglue.h: Main header for the Python binding
3  *****************************************************************************
4  * Copyright (C) 1998-2004 the VideoLAN team
5  * $Id: vlc.c 12667 2005-09-25 10:19:26Z zorglub $
6  *
7  * Authors: Olivier Aubert <oaubert at bat710.univ-lyon1.fr>
8  *          ClĂ©ment Stenac <zorglub@videolan.org>
9  *
10  * This program is free software; you can redistribute it and/or modify
11  * it under the terms of the GNU General Public License as published by
12  * the Free Software Foundation; either version 2 of the License, or
13  * (at your option) any later version.
14  *
15  * This program is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  * GNU General Public License for more details.
19  *
20  * You should have received a copy of the GNU General Public License
21  * along with this program; if not, write to the Free Software
22  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
23  *****************************************************************************/
24
25 #include <Python.h>
26 #include "structmember.h"
27
28 /* Undefine the following define to disable low-level vlc Object support */
29 #define VLCOBJECT_SUPPORT 0
30
31 #define __VLC__
32
33 #include <stdio.h>
34 #include <vlc/control.h>
35
36 #define SELF ((MediaControl*)self)
37
38 /**********************************************************************
39  * Exceptions handling
40  **********************************************************************/
41
42 #define MC_TRY exception=mediacontrol_exception_init(exception)
43
44 #define MC_EXCEPT  \
45   if (exception->code) { \
46     PyObject *py_exc = MediaControl_InternalException; \
47     switch (exception->code) { \
48     case mediacontrol_InternalException: \
49       py_exc = MediaControl_InternalException; \
50       break; \
51     case mediacontrol_PlaylistException: \
52       py_exc = MediaControl_PlaylistException; \
53       break; \
54     case mediacontrol_InvalidPosition: \
55       py_exc = MediaControl_InvalidPosition; \
56       break; \
57     case mediacontrol_PositionKeyNotSupported: \
58       py_exc = MediaControl_PositionKeyNotSupported; \
59       break; \
60     case mediacontrol_PositionOriginNotSupported: \
61       py_exc = MediaControl_PositionOriginNotSupported; \
62       break; \
63     } \
64     PyErr_SetString(py_exc, exception->message); \
65     mediacontrol_exception_free(exception); \
66     return NULL; \
67   } else { mediacontrol_exception_free(exception); }
68
69 PyObject *MediaControl_InternalException;
70 PyObject *MediaControl_PositionKeyNotSupported;
71 PyObject *MediaControl_PositionOriginNotSupported;
72 PyObject *MediaControl_InvalidPosition;
73 PyObject *MediaControl_PlaylistException;
74
75 /**********************************************************************
76  * VLC Object
77  **********************************************************************/
78 #ifdef VLCOBJECT_SUPPORT
79
80 #define VLCSELF ((vlcObject*)self)
81
82 /**********************************************************************
83  * VLCObject Object
84  **********************************************************************/
85 typedef struct
86 {
87     PyObject_HEAD
88     vlc_object_t* p_object;
89     int b_released;
90 } vlcObject;
91
92 staticforward PyTypeObject vlcObject_Type;
93
94 #endif
95
96 /**********************************************************************
97  * MediaControl Object
98  **********************************************************************/
99 typedef struct
100 {
101     PyObject_HEAD
102     mediacontrol_Instance* mc;
103 }MediaControl;
104
105 staticforward PyTypeObject MediaControl_Type;
106
107 /**********************************************************************
108  * Position Object
109  **********************************************************************/
110 typedef struct
111 {
112     PyObject_HEAD
113     int origin;
114     int key;
115     long long value;
116 } PyPosition;
117
118 staticforward PyTypeObject PyPosition_Type;
119
120 mediacontrol_PositionKey positionKey_py_to_c( PyObject * py_key );
121 mediacontrol_PositionOrigin positionOrigin_py_to_c( PyObject * py_origin );
122 mediacontrol_Position* position_py_to_c( PyObject * py_position );
123 PyPosition* position_c_to_py(mediacontrol_Position *position);