summaryrefslogtreecommitdiff
path: root/src/python.c
blob: de8aec9d9252b52234bc5495c06611b4c50a4133 (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
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
/* Python scripting support
 *
 * Copyright (c) 2009 Sadrul Habib Chowdhury (sadrul@users.sf.net)
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 3, or (at your option)
 * any later version.
 *
 * This program 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 General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program (see the file COPYING); if not, write to the
 * Free Software Foundation, Inc.,
 * 51 Franklin Street, Fifth Floor, Boston, MA  02111-1301  USA
 *
 ****************************************************************
 */
#include <sys/types.h>

#include "config.h"
#include "screen.h"
#include "script.h"
#include <sys/stat.h>
#include <unistd.h>

#include <stdio.h>
#include <string.h>
#include <stdlib.h>

#include "extern.h"
#include "logfile.h"

#include <Python.h>
#include <structmember.h>

extern struct win *windows;

/** Window {{{ */
typedef struct
{
  PyObject_HEAD
  struct win w;
} PyWindow;

static PyMemberDef py_window_members[] =
{
  {"title", T_STRING, offsetof(PyWindow, w) + offsetof(struct win, w_title), 0, "Title of the window"},
  {"number", T_INT, offsetof(PyWindow, w) + offsetof(struct win, w_number), 0, "The window number"},
  {NULL}
};

static PyTypeObject PyWindowType =
{
  PyObject_HEAD_INIT(NULL)
  .ob_size = 0,
  .tp_name = "screen.window",
  .tp_basicsize = sizeof(PyWindow),
  .tp_flags = Py_TPFLAGS_DEFAULT,
  .tp_doc = "Window object",
  .tp_methods = NULL,
  .tp_members = py_window_members
};

static PyObject *
PyWindow_FromWindow(struct win *w)
{
  PyWindow *obj = PyWindowType.tp_alloc(&PyWindowType, 0);
  obj->w = *w;
  return (PyObject *)obj;
}

/** }}} */

static PyObject *
screen_windows(PyObject *self)
{
  struct win *w = windows;
  int count = 0;
  for (; w; w = w->w_next)
    ++count;
  PyObject *tuple = PyTuple_New(count);

  for (w = windows, count = 0; w; w = w->w_next, ++count)
    {
      PyTuple_SetItem(tuple, count, PyWindow_FromWindow(w));
    }

  return tuple;
}

const PyMethodDef py_methods[] = {
  {"windows", (PyCFunction)screen_windows, METH_NOARGS, NULL},
  {NULL, NULL, 0, NULL}
};

static int
SPyInit(void)
{
  PyObject *m;

  Py_Initialize();

  PyType_Ready(&PyWindowType);

  m = Py_InitModule3 ("screen", py_methods, NULL);

  Py_INCREF(&PyWindowType);
  PyModule_AddObject(m, "Window", (PyObject *)&PyWindowType);
  return 0;
}

static int
SPyFinit(void)
{
  /*Py_Finalize(); // Crashes -- why? */
  return 0;
}

static int
SPySource(const char *file, int async)
{
  FILE *f = fopen(file, "rb");
  int ret = PyRun_SimpleFile(f, file);
  fclose(f);

  if (ret == 0)
      return 1; /* Success */

  if (PyErr_Occurred())
    {
      PyErr_Print();
      return 0;
    }

  return 1;
}

struct binding py_binding =
{
  "python",
  0,
  0,
  SPyInit,
  SPyFinit,
  0,
  SPySource,
  0,
  0
};