Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 1 | /* |
| 2 | * support routines for subprocess module |
| 3 | * |
| 4 | * Currently, this extension module is only required when using the |
| 5 | * subprocess module on Windows, but in the future, stubs for other |
Tim Peters | f3250b0 | 2004-10-12 21:38:22 +0000 | [diff] [blame] | 6 | * platforms might be added here as well. |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 7 | * |
| 8 | * Copyright (c) 2004 by Fredrik Lundh <fredrik@pythonware.com> |
| 9 | * Copyright (c) 2004 by Secret Labs AB, http://www.pythonware.com |
| 10 | * Copyright (c) 2004 by Peter Astrand <astrand@lysator.liu.se> |
Tim Peters | f3250b0 | 2004-10-12 21:38:22 +0000 | [diff] [blame] | 11 | * |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 12 | * By obtaining, using, and/or copying this software and/or its |
| 13 | * associated documentation, you agree that you have read, understood, |
| 14 | * and will comply with the following terms and conditions: |
Tim Peters | f3250b0 | 2004-10-12 21:38:22 +0000 | [diff] [blame] | 15 | * |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 16 | * Permission to use, copy, modify, and distribute this software and |
| 17 | * its associated documentation for any purpose and without fee is |
| 18 | * hereby granted, provided that the above copyright notice appears in |
| 19 | * all copies, and that both that copyright notice and this permission |
| 20 | * notice appear in supporting documentation, and that the name of the |
| 21 | * authors not be used in advertising or publicity pertaining to |
| 22 | * distribution of the software without specific, written prior |
| 23 | * permission. |
Tim Peters | f3250b0 | 2004-10-12 21:38:22 +0000 | [diff] [blame] | 24 | * |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 25 | * THE AUTHORS DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, |
| 26 | * INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. |
| 27 | * IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY SPECIAL, INDIRECT OR |
| 28 | * CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS |
| 29 | * OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, |
| 30 | * NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION |
| 31 | * WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
Tim Peters | f3250b0 | 2004-10-12 21:38:22 +0000 | [diff] [blame] | 32 | * |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 33 | */ |
| 34 | |
Fredrik Lundh | 63168a5 | 2005-12-14 22:29:34 +0000 | [diff] [blame] | 35 | /* Licensed to PSF under a Contributor Agreement. */ |
| 36 | /* See http://www.python.org/2.4/license for licensing details. */ |
| 37 | |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 38 | #include "Python.h" |
| 39 | |
| 40 | #define WINDOWS_LEAN_AND_MEAN |
| 41 | #include "windows.h" |
| 42 | |
| 43 | /* -------------------------------------------------------------------- */ |
| 44 | /* handle wrapper. note that this library uses integers when passing |
| 45 | handles to a function, and handle wrappers when returning handles. |
| 46 | the wrapper is used to provide Detach and Close methods */ |
| 47 | |
| 48 | typedef struct { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 49 | PyObject_HEAD |
| 50 | HANDLE handle; |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 51 | } sp_handle_object; |
| 52 | |
Neal Norwitz | 227b533 | 2006-03-22 09:28:35 +0000 | [diff] [blame] | 53 | static PyTypeObject sp_handle_type; |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 54 | |
| 55 | static PyObject* |
| 56 | sp_handle_new(HANDLE handle) |
| 57 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 58 | sp_handle_object* self; |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 59 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 60 | self = PyObject_NEW(sp_handle_object, &sp_handle_type); |
| 61 | if (self == NULL) |
| 62 | return NULL; |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 63 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 64 | self->handle = handle; |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 65 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 66 | return (PyObject*) self; |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 67 | } |
| 68 | |
Georg Brandl | 3dbca81 | 2008-07-23 16:10:53 +0000 | [diff] [blame] | 69 | #if defined(MS_WIN32) && !defined(MS_WIN64) |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 70 | #define HANDLE_TO_PYNUM(handle) PyLong_FromLong((long) handle) |
| 71 | #define PY_HANDLE_PARAM "l" |
Georg Brandl | 3dbca81 | 2008-07-23 16:10:53 +0000 | [diff] [blame] | 72 | #else |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 73 | #define HANDLE_TO_PYNUM(handle) PyLong_FromLongLong((long long) handle) |
| 74 | #define PY_HANDLE_PARAM "L" |
Georg Brandl | 3dbca81 | 2008-07-23 16:10:53 +0000 | [diff] [blame] | 75 | #endif |
| 76 | |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 77 | static PyObject* |
| 78 | sp_handle_detach(sp_handle_object* self, PyObject* args) |
| 79 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 80 | HANDLE handle; |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 81 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 82 | if (! PyArg_ParseTuple(args, ":Detach")) |
| 83 | return NULL; |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 84 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 85 | handle = self->handle; |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 86 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 87 | self->handle = INVALID_HANDLE_VALUE; |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 88 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 89 | /* note: return the current handle, as an integer */ |
| 90 | return HANDLE_TO_PYNUM(handle); |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 91 | } |
| 92 | |
| 93 | static PyObject* |
| 94 | sp_handle_close(sp_handle_object* self, PyObject* args) |
| 95 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 96 | if (! PyArg_ParseTuple(args, ":Close")) |
| 97 | return NULL; |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 98 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 99 | if (self->handle != INVALID_HANDLE_VALUE) { |
| 100 | CloseHandle(self->handle); |
| 101 | self->handle = INVALID_HANDLE_VALUE; |
| 102 | } |
| 103 | Py_INCREF(Py_None); |
| 104 | return Py_None; |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 105 | } |
| 106 | |
| 107 | static void |
| 108 | sp_handle_dealloc(sp_handle_object* self) |
| 109 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 110 | if (self->handle != INVALID_HANDLE_VALUE) |
| 111 | CloseHandle(self->handle); |
| 112 | PyObject_FREE(self); |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 113 | } |
| 114 | |
| 115 | static PyMethodDef sp_handle_methods[] = { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 116 | {"Detach", (PyCFunction) sp_handle_detach, METH_VARARGS}, |
| 117 | {"Close", (PyCFunction) sp_handle_close, METH_VARARGS}, |
| 118 | {NULL, NULL} |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 119 | }; |
| 120 | |
Tim Peters | f3250b0 | 2004-10-12 21:38:22 +0000 | [diff] [blame] | 121 | static PyObject* |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 122 | sp_handle_as_int(sp_handle_object* self) |
| 123 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 124 | return HANDLE_TO_PYNUM(self->handle); |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 125 | } |
| 126 | |
| 127 | static PyNumberMethods sp_handle_as_number; |
| 128 | |
Neal Norwitz | 227b533 | 2006-03-22 09:28:35 +0000 | [diff] [blame] | 129 | static PyTypeObject sp_handle_type = { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 130 | PyVarObject_HEAD_INIT(NULL, 0) |
| 131 | "_subprocess_handle", sizeof(sp_handle_object), 0, |
| 132 | (destructor) sp_handle_dealloc, /*tp_dealloc*/ |
| 133 | 0, /*tp_print*/ |
| 134 | 0, /*tp_getattr*/ |
| 135 | 0, /*tp_setattr*/ |
| 136 | 0, /*tp_reserved*/ |
| 137 | 0, /*tp_repr*/ |
| 138 | &sp_handle_as_number, /*tp_as_number */ |
| 139 | 0, /*tp_as_sequence */ |
| 140 | 0, /*tp_as_mapping */ |
| 141 | 0, /*tp_hash*/ |
| 142 | 0, /*tp_call*/ |
| 143 | 0, /*tp_str*/ |
| 144 | 0, /*tp_getattro*/ |
| 145 | 0, /*tp_setattro*/ |
| 146 | 0, /*tp_as_buffer*/ |
| 147 | Py_TPFLAGS_DEFAULT, /*tp_flags*/ |
| 148 | 0, /*tp_doc*/ |
| 149 | 0, /*tp_traverse*/ |
| 150 | 0, /*tp_clear*/ |
| 151 | 0, /*tp_richcompare*/ |
| 152 | 0, /*tp_weaklistoffset*/ |
| 153 | 0, /*tp_iter*/ |
| 154 | 0, /*tp_iternext*/ |
| 155 | sp_handle_methods, /*tp_methods*/ |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 156 | }; |
| 157 | |
| 158 | /* -------------------------------------------------------------------- */ |
| 159 | /* windows API functions */ |
| 160 | |
Brian Curtin | 1ce6b58 | 2010-04-24 16:19:22 +0000 | [diff] [blame] | 161 | PyDoc_STRVAR(GetStdHandle_doc, |
| 162 | "GetStdHandle(handle) -> integer\n\ |
| 163 | \n\ |
| 164 | Return a handle to the specified standard device\n\ |
| 165 | (STD_INPUT_HANDLE, STD_OUTPUT_HANDLE, STD_ERROR_HANDLE).\n\ |
| 166 | The integer associated with the handle object is returned."); |
| 167 | |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 168 | static PyObject * |
| 169 | sp_GetStdHandle(PyObject* self, PyObject* args) |
| 170 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 171 | HANDLE handle; |
| 172 | int std_handle; |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 173 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 174 | if (! PyArg_ParseTuple(args, "i:GetStdHandle", &std_handle)) |
| 175 | return NULL; |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 176 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 177 | Py_BEGIN_ALLOW_THREADS |
| 178 | handle = GetStdHandle((DWORD) std_handle); |
| 179 | Py_END_ALLOW_THREADS |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 180 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 181 | if (handle == INVALID_HANDLE_VALUE) |
| 182 | return PyErr_SetFromWindowsErr(GetLastError()); |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 183 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 184 | if (! handle) { |
| 185 | Py_INCREF(Py_None); |
| 186 | return Py_None; |
| 187 | } |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 188 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 189 | /* note: returns integer, not handle object */ |
| 190 | return HANDLE_TO_PYNUM(handle); |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 191 | } |
| 192 | |
Brian Curtin | 1ce6b58 | 2010-04-24 16:19:22 +0000 | [diff] [blame] | 193 | PyDoc_STRVAR(GetCurrentProcess_doc, |
| 194 | "GetCurrentProcess() -> handle\n\ |
| 195 | \n\ |
| 196 | Return a handle object for the current process."); |
| 197 | |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 198 | static PyObject * |
| 199 | sp_GetCurrentProcess(PyObject* self, PyObject* args) |
| 200 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 201 | if (! PyArg_ParseTuple(args, ":GetCurrentProcess")) |
| 202 | return NULL; |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 203 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 204 | return sp_handle_new(GetCurrentProcess()); |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 205 | } |
| 206 | |
Brian Curtin | 1ce6b58 | 2010-04-24 16:19:22 +0000 | [diff] [blame] | 207 | PyDoc_STRVAR(DuplicateHandle_doc, |
| 208 | "DuplicateHandle(source_proc_handle, source_handle,\n\ |
| 209 | target_proc_handle, target_handle, access,\n\ |
| 210 | inherit[, options]) -> handle\n\ |
| 211 | \n\ |
| 212 | Return a duplicate handle object.\n\ |
| 213 | \n\ |
| 214 | The duplicate handle refers to the same object as the original\n\ |
| 215 | handle. Therefore, any changes to the object are reflected\n\ |
| 216 | through both handles."); |
| 217 | |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 218 | static PyObject * |
| 219 | sp_DuplicateHandle(PyObject* self, PyObject* args) |
| 220 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 221 | HANDLE target_handle; |
| 222 | BOOL result; |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 223 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 224 | HANDLE source_process_handle; |
| 225 | HANDLE source_handle; |
| 226 | HANDLE target_process_handle; |
| 227 | int desired_access; |
| 228 | int inherit_handle; |
| 229 | int options = 0; |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 230 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 231 | if (! PyArg_ParseTuple(args, |
| 232 | PY_HANDLE_PARAM PY_HANDLE_PARAM PY_HANDLE_PARAM |
| 233 | "ii|i:DuplicateHandle", |
| 234 | &source_process_handle, |
| 235 | &source_handle, |
| 236 | &target_process_handle, |
| 237 | &desired_access, |
| 238 | &inherit_handle, |
| 239 | &options)) |
| 240 | return NULL; |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 241 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 242 | Py_BEGIN_ALLOW_THREADS |
| 243 | result = DuplicateHandle( |
| 244 | source_process_handle, |
| 245 | source_handle, |
| 246 | target_process_handle, |
| 247 | &target_handle, |
| 248 | desired_access, |
| 249 | inherit_handle, |
| 250 | options |
| 251 | ); |
| 252 | Py_END_ALLOW_THREADS |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 253 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 254 | if (! result) |
| 255 | return PyErr_SetFromWindowsErr(GetLastError()); |
Tim Peters | f3250b0 | 2004-10-12 21:38:22 +0000 | [diff] [blame] | 256 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 257 | return sp_handle_new(target_handle); |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 258 | } |
| 259 | |
Brian Curtin | 1ce6b58 | 2010-04-24 16:19:22 +0000 | [diff] [blame] | 260 | PyDoc_STRVAR(CreatePipe_doc, |
| 261 | "CreatePipe(pipe_attrs, size) -> (read_handle, write_handle)\n\ |
| 262 | \n\ |
| 263 | Create an anonymous pipe, and return handles to the read and\n\ |
| 264 | write ends of the pipe.\n\ |
| 265 | \n\ |
| 266 | pipe_attrs is ignored internally and can be None."); |
| 267 | |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 268 | static PyObject * |
| 269 | sp_CreatePipe(PyObject* self, PyObject* args) |
| 270 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 271 | HANDLE read_pipe; |
| 272 | HANDLE write_pipe; |
| 273 | BOOL result; |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 274 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 275 | PyObject* pipe_attributes; /* ignored */ |
| 276 | int size; |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 277 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 278 | if (! PyArg_ParseTuple(args, "Oi:CreatePipe", &pipe_attributes, &size)) |
| 279 | return NULL; |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 280 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 281 | Py_BEGIN_ALLOW_THREADS |
| 282 | result = CreatePipe(&read_pipe, &write_pipe, NULL, size); |
| 283 | Py_END_ALLOW_THREADS |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 284 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 285 | if (! result) |
| 286 | return PyErr_SetFromWindowsErr(GetLastError()); |
Tim Peters | f3250b0 | 2004-10-12 21:38:22 +0000 | [diff] [blame] | 287 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 288 | return Py_BuildValue( |
| 289 | "NN", sp_handle_new(read_pipe), sp_handle_new(write_pipe)); |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 290 | } |
| 291 | |
| 292 | /* helpers for createprocess */ |
| 293 | |
| 294 | static int |
| 295 | getint(PyObject* obj, char* name) |
| 296 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 297 | PyObject* value; |
| 298 | int ret; |
Tim Peters | f3250b0 | 2004-10-12 21:38:22 +0000 | [diff] [blame] | 299 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 300 | value = PyObject_GetAttrString(obj, name); |
| 301 | if (! value) { |
| 302 | PyErr_Clear(); /* FIXME: propagate error? */ |
| 303 | return 0; |
| 304 | } |
| 305 | ret = (int) PyLong_AsLong(value); |
| 306 | Py_DECREF(value); |
| 307 | return ret; |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 308 | } |
Tim Peters | f3250b0 | 2004-10-12 21:38:22 +0000 | [diff] [blame] | 309 | |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 310 | static HANDLE |
| 311 | gethandle(PyObject* obj, char* name) |
| 312 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 313 | sp_handle_object* value; |
| 314 | HANDLE ret; |
Tim Peters | f3250b0 | 2004-10-12 21:38:22 +0000 | [diff] [blame] | 315 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 316 | value = (sp_handle_object*) PyObject_GetAttrString(obj, name); |
| 317 | if (! value) { |
| 318 | PyErr_Clear(); /* FIXME: propagate error? */ |
| 319 | return NULL; |
| 320 | } |
| 321 | if (Py_TYPE(value) != &sp_handle_type) |
| 322 | ret = NULL; |
| 323 | else |
| 324 | ret = value->handle; |
| 325 | Py_DECREF(value); |
| 326 | return ret; |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 327 | } |
| 328 | |
| 329 | static PyObject* |
| 330 | getenvironment(PyObject* environment) |
| 331 | { |
Brian Curtin | 852823d | 2010-08-17 20:49:09 +0000 | [diff] [blame] | 332 | int i; |
| 333 | Py_ssize_t envsize; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 334 | PyObject* out = NULL; |
| 335 | PyObject* keys; |
| 336 | PyObject* values; |
| 337 | Py_UNICODE* p; |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 338 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 339 | /* convert environment dictionary to windows enviroment string */ |
| 340 | if (! PyMapping_Check(environment)) { |
| 341 | PyErr_SetString( |
| 342 | PyExc_TypeError, "environment must be dictionary or None"); |
| 343 | return NULL; |
| 344 | } |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 345 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 346 | envsize = PyMapping_Length(environment); |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 347 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 348 | keys = PyMapping_Keys(environment); |
| 349 | values = PyMapping_Values(environment); |
| 350 | if (!keys || !values) |
| 351 | goto error; |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 352 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 353 | out = PyUnicode_FromUnicode(NULL, 2048); |
| 354 | if (! out) |
| 355 | goto error; |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 356 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 357 | p = PyUnicode_AS_UNICODE(out); |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 358 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 359 | for (i = 0; i < envsize; i++) { |
Brian Curtin | 852823d | 2010-08-17 20:49:09 +0000 | [diff] [blame] | 360 | Py_ssize_t ksize, vsize, totalsize; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 361 | PyObject* key = PyList_GET_ITEM(keys, i); |
| 362 | PyObject* value = PyList_GET_ITEM(values, i); |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 363 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 364 | if (! PyUnicode_Check(key) || ! PyUnicode_Check(value)) { |
| 365 | PyErr_SetString(PyExc_TypeError, |
| 366 | "environment can only contain strings"); |
| 367 | goto error; |
| 368 | } |
| 369 | ksize = PyUnicode_GET_SIZE(key); |
| 370 | vsize = PyUnicode_GET_SIZE(value); |
| 371 | totalsize = (p - PyUnicode_AS_UNICODE(out)) + ksize + 1 + |
| 372 | vsize + 1 + 1; |
| 373 | if (totalsize > PyUnicode_GET_SIZE(out)) { |
Brian Curtin | 852823d | 2010-08-17 20:49:09 +0000 | [diff] [blame] | 374 | Py_ssize_t offset = p - PyUnicode_AS_UNICODE(out); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 375 | PyUnicode_Resize(&out, totalsize + 1024); |
| 376 | p = PyUnicode_AS_UNICODE(out) + offset; |
| 377 | } |
| 378 | Py_UNICODE_COPY(p, PyUnicode_AS_UNICODE(key), ksize); |
| 379 | p += ksize; |
| 380 | *p++ = '='; |
| 381 | Py_UNICODE_COPY(p, PyUnicode_AS_UNICODE(value), vsize); |
| 382 | p += vsize; |
| 383 | *p++ = '\0'; |
| 384 | } |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 385 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 386 | /* add trailing null byte */ |
| 387 | *p++ = '\0'; |
| 388 | PyUnicode_Resize(&out, p - PyUnicode_AS_UNICODE(out)); |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 389 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 390 | /* PyObject_Print(out, stdout, 0); */ |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 391 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 392 | Py_XDECREF(keys); |
| 393 | Py_XDECREF(values); |
Fredrik Lundh | bb4692b | 2005-11-12 10:15:03 +0000 | [diff] [blame] | 394 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 395 | return out; |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 396 | |
Tim Peters | f3250b0 | 2004-10-12 21:38:22 +0000 | [diff] [blame] | 397 | error: |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 398 | Py_XDECREF(out); |
| 399 | Py_XDECREF(keys); |
| 400 | Py_XDECREF(values); |
| 401 | return NULL; |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 402 | } |
| 403 | |
Brian Curtin | 1ce6b58 | 2010-04-24 16:19:22 +0000 | [diff] [blame] | 404 | PyDoc_STRVAR(CreateProcess_doc, |
| 405 | "CreateProcess(app_name, cmd_line, proc_attrs, thread_attrs,\n\ |
| 406 | inherit, flags, env_mapping, curdir,\n\ |
| 407 | startup_info) -> (proc_handle, thread_handle,\n\ |
| 408 | pid, tid)\n\ |
| 409 | \n\ |
| 410 | Create a new process and its primary thread. The return\n\ |
| 411 | value is a tuple of the process handle, thread handle,\n\ |
| 412 | process ID, and thread ID.\n\ |
| 413 | \n\ |
| 414 | proc_attrs and thread_attrs are ignored internally and can be None."); |
| 415 | |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 416 | static PyObject * |
| 417 | sp_CreateProcess(PyObject* self, PyObject* args) |
| 418 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 419 | BOOL result; |
| 420 | PROCESS_INFORMATION pi; |
| 421 | STARTUPINFOW si; |
| 422 | PyObject* environment; |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 423 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 424 | Py_UNICODE* application_name; |
| 425 | Py_UNICODE* command_line; |
| 426 | PyObject* process_attributes; /* ignored */ |
| 427 | PyObject* thread_attributes; /* ignored */ |
| 428 | int inherit_handles; |
| 429 | int creation_flags; |
| 430 | PyObject* env_mapping; |
| 431 | Py_UNICODE* current_directory; |
| 432 | PyObject* startup_info; |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 433 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 434 | if (! PyArg_ParseTuple(args, "ZZOOiiOZO:CreateProcess", |
| 435 | &application_name, |
| 436 | &command_line, |
| 437 | &process_attributes, |
| 438 | &thread_attributes, |
| 439 | &inherit_handles, |
| 440 | &creation_flags, |
| 441 | &env_mapping, |
| 442 | ¤t_directory, |
| 443 | &startup_info)) |
| 444 | return NULL; |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 445 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 446 | ZeroMemory(&si, sizeof(si)); |
| 447 | si.cb = sizeof(si); |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 448 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 449 | /* note: we only support a small subset of all SI attributes */ |
| 450 | si.dwFlags = getint(startup_info, "dwFlags"); |
| 451 | si.wShowWindow = getint(startup_info, "wShowWindow"); |
| 452 | si.hStdInput = gethandle(startup_info, "hStdInput"); |
| 453 | si.hStdOutput = gethandle(startup_info, "hStdOutput"); |
| 454 | si.hStdError = gethandle(startup_info, "hStdError"); |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 455 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 456 | if (PyErr_Occurred()) |
| 457 | return NULL; |
Fredrik Lundh | 3a49e92 | 2005-11-12 10:15:14 +0000 | [diff] [blame] | 458 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 459 | if (env_mapping == Py_None) |
| 460 | environment = NULL; |
| 461 | else { |
| 462 | environment = getenvironment(env_mapping); |
| 463 | if (! environment) |
| 464 | return NULL; |
| 465 | } |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 466 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 467 | Py_BEGIN_ALLOW_THREADS |
| 468 | result = CreateProcessW(application_name, |
| 469 | command_line, |
| 470 | NULL, |
| 471 | NULL, |
| 472 | inherit_handles, |
| 473 | creation_flags | CREATE_UNICODE_ENVIRONMENT, |
| 474 | environment ? PyUnicode_AS_UNICODE(environment) : NULL, |
| 475 | current_directory, |
| 476 | &si, |
| 477 | &pi); |
| 478 | Py_END_ALLOW_THREADS |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 479 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 480 | Py_XDECREF(environment); |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 481 | |
Tim Golden | ad537f2 | 2010-08-08 11:18:16 +0000 | [diff] [blame] | 482 | if (! result) |
| 483 | return PyErr_SetFromWindowsErr(GetLastError()); |
Tim Peters | f3250b0 | 2004-10-12 21:38:22 +0000 | [diff] [blame] | 484 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 485 | return Py_BuildValue("NNii", |
| 486 | sp_handle_new(pi.hProcess), |
| 487 | sp_handle_new(pi.hThread), |
| 488 | pi.dwProcessId, |
| 489 | pi.dwThreadId); |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 490 | } |
| 491 | |
Brian Curtin | 1ce6b58 | 2010-04-24 16:19:22 +0000 | [diff] [blame] | 492 | PyDoc_STRVAR(TerminateProcess_doc, |
| 493 | "TerminateProcess(handle, exit_code) -> None\n\ |
| 494 | \n\ |
| 495 | Terminate the specified process and all of its threads."); |
| 496 | |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 497 | static PyObject * |
Fredrik Lundh | e515293 | 2005-12-18 21:06:46 +0000 | [diff] [blame] | 498 | sp_TerminateProcess(PyObject* self, PyObject* args) |
| 499 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 500 | BOOL result; |
Fredrik Lundh | e515293 | 2005-12-18 21:06:46 +0000 | [diff] [blame] | 501 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 502 | HANDLE process; |
| 503 | int exit_code; |
| 504 | if (! PyArg_ParseTuple(args, PY_HANDLE_PARAM "i:TerminateProcess", |
| 505 | &process, &exit_code)) |
| 506 | return NULL; |
Fredrik Lundh | e515293 | 2005-12-18 21:06:46 +0000 | [diff] [blame] | 507 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 508 | result = TerminateProcess(process, exit_code); |
Fredrik Lundh | e515293 | 2005-12-18 21:06:46 +0000 | [diff] [blame] | 509 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 510 | if (! result) |
| 511 | return PyErr_SetFromWindowsErr(GetLastError()); |
Fredrik Lundh | e515293 | 2005-12-18 21:06:46 +0000 | [diff] [blame] | 512 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 513 | Py_INCREF(Py_None); |
| 514 | return Py_None; |
Fredrik Lundh | e515293 | 2005-12-18 21:06:46 +0000 | [diff] [blame] | 515 | } |
| 516 | |
Brian Curtin | 1ce6b58 | 2010-04-24 16:19:22 +0000 | [diff] [blame] | 517 | PyDoc_STRVAR(GetExitCodeProcess_doc, |
| 518 | "GetExitCodeProcess(handle) -> Exit code\n\ |
| 519 | \n\ |
| 520 | Return the termination status of the specified process."); |
| 521 | |
Fredrik Lundh | e515293 | 2005-12-18 21:06:46 +0000 | [diff] [blame] | 522 | static PyObject * |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 523 | sp_GetExitCodeProcess(PyObject* self, PyObject* args) |
| 524 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 525 | DWORD exit_code; |
| 526 | BOOL result; |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 527 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 528 | HANDLE process; |
| 529 | if (! PyArg_ParseTuple(args, PY_HANDLE_PARAM ":GetExitCodeProcess", &process)) |
| 530 | return NULL; |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 531 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 532 | result = GetExitCodeProcess(process, &exit_code); |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 533 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 534 | if (! result) |
| 535 | return PyErr_SetFromWindowsErr(GetLastError()); |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 536 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 537 | return PyLong_FromLong(exit_code); |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 538 | } |
| 539 | |
Brian Curtin | 1ce6b58 | 2010-04-24 16:19:22 +0000 | [diff] [blame] | 540 | PyDoc_STRVAR(WaitForSingleObject_doc, |
| 541 | "WaitForSingleObject(handle, timeout) -> result\n\ |
| 542 | \n\ |
| 543 | Wait until the specified object is in the signaled state or\n\ |
| 544 | the time-out interval elapses. The timeout value is specified\n\ |
| 545 | in milliseconds."); |
| 546 | |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 547 | static PyObject * |
| 548 | sp_WaitForSingleObject(PyObject* self, PyObject* args) |
| 549 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 550 | DWORD result; |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 551 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 552 | HANDLE handle; |
| 553 | int milliseconds; |
| 554 | if (! PyArg_ParseTuple(args, PY_HANDLE_PARAM "i:WaitForSingleObject", |
| 555 | &handle, |
| 556 | &milliseconds)) |
| 557 | return NULL; |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 558 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 559 | Py_BEGIN_ALLOW_THREADS |
| 560 | result = WaitForSingleObject(handle, (DWORD) milliseconds); |
| 561 | Py_END_ALLOW_THREADS |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 562 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 563 | if (result == WAIT_FAILED) |
| 564 | return PyErr_SetFromWindowsErr(GetLastError()); |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 565 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 566 | return PyLong_FromLong((int) result); |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 567 | } |
| 568 | |
Brian Curtin | 1ce6b58 | 2010-04-24 16:19:22 +0000 | [diff] [blame] | 569 | PyDoc_STRVAR(GetVersion_doc, |
| 570 | "GetVersion() -> version\n\ |
| 571 | \n\ |
| 572 | Return the version number of the current operating system."); |
| 573 | |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 574 | static PyObject * |
| 575 | sp_GetVersion(PyObject* self, PyObject* args) |
| 576 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 577 | if (! PyArg_ParseTuple(args, ":GetVersion")) |
| 578 | return NULL; |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 579 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 580 | return PyLong_FromLong((int) GetVersion()); |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 581 | } |
| 582 | |
Brian Curtin | 1ce6b58 | 2010-04-24 16:19:22 +0000 | [diff] [blame] | 583 | PyDoc_STRVAR(GetModuleFileName_doc, |
| 584 | "GetModuleFileName(module) -> path\n\ |
| 585 | \n\ |
| 586 | Return the fully-qualified path for the file that contains\n\ |
| 587 | the specified module. The module must have been loaded by the\n\ |
| 588 | current process.\n\ |
| 589 | \n\ |
| 590 | The module parameter should be a handle to the loaded module\n\ |
| 591 | whose path is being requested. If this parameter is 0, \n\ |
| 592 | GetModuleFileName retrieves the path of the executable file\n\ |
| 593 | of the current process."); |
| 594 | |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 595 | static PyObject * |
| 596 | sp_GetModuleFileName(PyObject* self, PyObject* args) |
| 597 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 598 | BOOL result; |
| 599 | HMODULE module; |
| 600 | WCHAR filename[MAX_PATH]; |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 601 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 602 | if (! PyArg_ParseTuple(args, PY_HANDLE_PARAM ":GetModuleFileName", |
| 603 | &module)) |
| 604 | return NULL; |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 605 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 606 | result = GetModuleFileNameW(module, filename, MAX_PATH); |
| 607 | filename[MAX_PATH-1] = '\0'; |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 608 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 609 | if (! result) |
| 610 | return PyErr_SetFromWindowsErr(GetLastError()); |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 611 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 612 | return PyUnicode_FromUnicode(filename, Py_UNICODE_strlen(filename)); |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 613 | } |
| 614 | |
| 615 | static PyMethodDef sp_functions[] = { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 616 | {"GetStdHandle", sp_GetStdHandle, METH_VARARGS, GetStdHandle_doc}, |
| 617 | {"GetCurrentProcess", sp_GetCurrentProcess, METH_VARARGS, |
| 618 | GetCurrentProcess_doc}, |
| 619 | {"DuplicateHandle", sp_DuplicateHandle, METH_VARARGS, |
| 620 | DuplicateHandle_doc}, |
| 621 | {"CreatePipe", sp_CreatePipe, METH_VARARGS, CreatePipe_doc}, |
| 622 | {"CreateProcess", sp_CreateProcess, METH_VARARGS, CreateProcess_doc}, |
| 623 | {"TerminateProcess", sp_TerminateProcess, METH_VARARGS, |
| 624 | TerminateProcess_doc}, |
| 625 | {"GetExitCodeProcess", sp_GetExitCodeProcess, METH_VARARGS, |
| 626 | GetExitCodeProcess_doc}, |
| 627 | {"WaitForSingleObject", sp_WaitForSingleObject, METH_VARARGS, |
| 628 | WaitForSingleObject_doc}, |
| 629 | {"GetVersion", sp_GetVersion, METH_VARARGS, GetVersion_doc}, |
| 630 | {"GetModuleFileName", sp_GetModuleFileName, METH_VARARGS, |
| 631 | GetModuleFileName_doc}, |
| 632 | {NULL, NULL} |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 633 | }; |
| 634 | |
| 635 | /* -------------------------------------------------------------------- */ |
| 636 | |
| 637 | static void |
| 638 | defint(PyObject* d, const char* name, int value) |
| 639 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 640 | PyObject* v = PyLong_FromLong((long) value); |
| 641 | if (v) { |
| 642 | PyDict_SetItemString(d, (char*) name, v); |
| 643 | Py_DECREF(v); |
| 644 | } |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 645 | } |
| 646 | |
Martin v. Löwis | 1a21451 | 2008-06-11 05:26:20 +0000 | [diff] [blame] | 647 | static struct PyModuleDef _subprocessmodule = { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 648 | PyModuleDef_HEAD_INIT, |
| 649 | "_subprocess", |
| 650 | NULL, |
| 651 | -1, |
| 652 | sp_functions, |
| 653 | NULL, |
| 654 | NULL, |
| 655 | NULL, |
| 656 | NULL |
Martin v. Löwis | 1a21451 | 2008-06-11 05:26:20 +0000 | [diff] [blame] | 657 | }; |
| 658 | |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 659 | PyMODINIT_FUNC |
Martin v. Löwis | 1a21451 | 2008-06-11 05:26:20 +0000 | [diff] [blame] | 660 | PyInit__subprocess() |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 661 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 662 | PyObject *d; |
| 663 | PyObject *m; |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 664 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 665 | /* patch up object descriptors */ |
| 666 | sp_handle_as_number.nb_int = (unaryfunc) sp_handle_as_int; |
| 667 | if (PyType_Ready(&sp_handle_type) < 0) |
| 668 | return NULL; |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 669 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 670 | m = PyModule_Create(&_subprocessmodule); |
| 671 | if (m == NULL) |
| 672 | return NULL; |
| 673 | d = PyModule_GetDict(m); |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 674 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 675 | /* constants */ |
| 676 | defint(d, "STD_INPUT_HANDLE", STD_INPUT_HANDLE); |
| 677 | defint(d, "STD_OUTPUT_HANDLE", STD_OUTPUT_HANDLE); |
| 678 | defint(d, "STD_ERROR_HANDLE", STD_ERROR_HANDLE); |
| 679 | defint(d, "DUPLICATE_SAME_ACCESS", DUPLICATE_SAME_ACCESS); |
| 680 | defint(d, "STARTF_USESTDHANDLES", STARTF_USESTDHANDLES); |
| 681 | defint(d, "STARTF_USESHOWWINDOW", STARTF_USESHOWWINDOW); |
| 682 | defint(d, "SW_HIDE", SW_HIDE); |
| 683 | defint(d, "INFINITE", INFINITE); |
| 684 | defint(d, "WAIT_OBJECT_0", WAIT_OBJECT_0); |
Reid Kleckner | 31aa7dd | 2011-03-14 12:02:10 -0400 | [diff] [blame^] | 685 | defint(d, "WAIT_TIMEOUT", WAIT_TIMEOUT); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 686 | defint(d, "CREATE_NEW_CONSOLE", CREATE_NEW_CONSOLE); |
| 687 | defint(d, "CREATE_NEW_PROCESS_GROUP", CREATE_NEW_PROCESS_GROUP); |
Brian Curtin | eb24d74 | 2010-04-12 17:16:38 +0000 | [diff] [blame] | 688 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 689 | return m; |
Fredrik Lundh | 5b3687d | 2004-10-12 15:26:28 +0000 | [diff] [blame] | 690 | } |