blob: 9a86d5e43848ec20e1f14c7f7f5585fab9850449 [file] [log] [blame]
Guido van Rossum29c1ea51997-08-07 00:11:34 +00001/*********************************************************
2
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00003 msvcrtmodule.c
Guido van Rossum29c1ea51997-08-07 00:11:34 +00004
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00005 A Python interface to the Microsoft Visual C Runtime
6 Library, providing access to those non-portable, but
7 still useful routines.
Guido van Rossum29c1ea51997-08-07 00:11:34 +00008
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +00009 Only ever compiled with an MS compiler, so no attempt
10 has been made to avoid MS language extensions, etc...
Guido van Rossum29c1ea51997-08-07 00:11:34 +000011
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +000012 This may only work on NT or 95...
Guido van Rossum407a22d1997-08-13 19:57:53 +000013
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +000014 Author: Mark Hammond and Guido van Rossum.
15 Maintenance: Guido van Rossum.
Guido van Rossum407a22d1997-08-13 19:57:53 +000016
Guido van Rossum29c1ea51997-08-07 00:11:34 +000017***********************************************************/
Guido van Rossum407a22d1997-08-13 19:57:53 +000018
Guido van Rossum29c1ea51997-08-07 00:11:34 +000019#include "Python.h"
20#include "malloc.h"
Tim Peters5fa0bd62000-12-12 01:58:56 +000021#include <io.h>
22#include <conio.h>
23#include <sys/locking.h>
Martin v. Löwis3dc33d12007-08-31 07:58:36 +000024#include <crtdbg.h>
25#include <windows.h>
Guido van Rossum29c1ea51997-08-07 00:11:34 +000026
Benjamin Peterson4469d0c2008-11-30 22:46:23 +000027#ifdef _MSC_VER
Martin v. Löwis31e8af92010-02-18 16:29:17 +000028#if _MSC_VER >= 1500 && _MSC_VER < 1600
Benjamin Peterson4469d0c2008-11-30 22:46:23 +000029#include <crtassem.h>
30#endif
31#endif
32
Guido van Rossum407a22d1997-08-13 19:57:53 +000033// Force the malloc heap to clean itself up, and free unused blocks
34// back to the OS. (According to the docs, only works on NT.)
Tim Peters5fa0bd62000-12-12 01:58:56 +000035static PyObject *
36msvcrt_heapmin(PyObject *self, PyObject *args)
Guido van Rossum29c1ea51997-08-07 00:11:34 +000037{
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +000038 if (!PyArg_ParseTuple(args, ":heapmin"))
39 return NULL;
Guido van Rossum407a22d1997-08-13 19:57:53 +000040
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +000041 if (_heapmin() != 0)
42 return PyErr_SetFromErrno(PyExc_IOError);
Guido van Rossum407a22d1997-08-13 19:57:53 +000043
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +000044 Py_INCREF(Py_None);
45 return Py_None;
Guido van Rossum29c1ea51997-08-07 00:11:34 +000046}
47
Benjamin Peterson68dbebc2009-12-31 03:30:26 +000048PyDoc_STRVAR(heapmin_doc,
49"heapmin() -> None\n\
50\n\
51Force the malloc() heap to clean itself up and return unused blocks\n\
52to the operating system. On failure, this raises IOError.");
53
Guido van Rossum407a22d1997-08-13 19:57:53 +000054// Perform locking operations on a C runtime file descriptor.
Tim Peters5fa0bd62000-12-12 01:58:56 +000055static PyObject *
56msvcrt_locking(PyObject *self, PyObject *args)
Guido van Rossum29c1ea51997-08-07 00:11:34 +000057{
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +000058 int fd;
59 int mode;
60 long nbytes;
61 int err;
Guido van Rossum407a22d1997-08-13 19:57:53 +000062
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +000063 if (!PyArg_ParseTuple(args, "iil:locking", &fd, &mode, &nbytes))
64 return NULL;
Guido van Rossum29c1ea51997-08-07 00:11:34 +000065
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +000066 Py_BEGIN_ALLOW_THREADS
67 err = _locking(fd, mode, nbytes);
68 Py_END_ALLOW_THREADS
69 if (err != 0)
70 return PyErr_SetFromErrno(PyExc_IOError);
Guido van Rossum29c1ea51997-08-07 00:11:34 +000071
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +000072 Py_INCREF(Py_None);
73 return Py_None;
Guido van Rossum29c1ea51997-08-07 00:11:34 +000074}
Guido van Rossum407a22d1997-08-13 19:57:53 +000075
Benjamin Peterson68dbebc2009-12-31 03:30:26 +000076PyDoc_STRVAR(locking_doc,
77"locking(fd, mode, nbytes) -> None\n\
78\n\
79Lock part of a file based on file descriptor fd from the C runtime.\n\
80Raises IOError on failure. The locked region of the file extends from\n\
81the current file position for nbytes bytes, and may continue beyond\n\
82the end of the file. mode must be one of the LK_* constants listed\n\
83below. Multiple regions in a file may be locked at the same time, but\n\
84may not overlap. Adjacent regions are not merged; they must be unlocked\n\
85individually.");
86
Guido van Rossum407a22d1997-08-13 19:57:53 +000087// Set the file translation mode for a C runtime file descriptor.
Tim Peters5fa0bd62000-12-12 01:58:56 +000088static PyObject *
89msvcrt_setmode(PyObject *self, PyObject *args)
Guido van Rossum407a22d1997-08-13 19:57:53 +000090{
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +000091 int fd;
92 int flags;
93 if (!PyArg_ParseTuple(args,"ii:setmode", &fd, &flags))
94 return NULL;
Guido van Rossum407a22d1997-08-13 19:57:53 +000095
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +000096 flags = _setmode(fd, flags);
97 if (flags == -1)
98 return PyErr_SetFromErrno(PyExc_IOError);
Guido van Rossum407a22d1997-08-13 19:57:53 +000099
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000100 return PyLong_FromLong(flags);
Guido van Rossum407a22d1997-08-13 19:57:53 +0000101}
102
Benjamin Peterson68dbebc2009-12-31 03:30:26 +0000103PyDoc_STRVAR(setmode_doc,
104"setmode(fd, mode) -> Previous mode\n\
105\n\
106Set the line-end translation mode for the file descriptor fd. To set\n\
107it to text mode, flags should be os.O_TEXT; for binary, it should be\n\
108os.O_BINARY.");
109
Guido van Rossum407a22d1997-08-13 19:57:53 +0000110// Convert an OS file handle to a C runtime file descriptor.
Tim Peters5fa0bd62000-12-12 01:58:56 +0000111static PyObject *
112msvcrt_open_osfhandle(PyObject *self, PyObject *args)
Guido van Rossum407a22d1997-08-13 19:57:53 +0000113{
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000114 long handle;
115 int flags;
116 int fd;
Guido van Rossum407a22d1997-08-13 19:57:53 +0000117
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000118 if (!PyArg_ParseTuple(args, "li:open_osfhandle", &handle, &flags))
119 return NULL;
Guido van Rossum407a22d1997-08-13 19:57:53 +0000120
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000121 fd = _open_osfhandle(handle, flags);
122 if (fd == -1)
123 return PyErr_SetFromErrno(PyExc_IOError);
Guido van Rossum407a22d1997-08-13 19:57:53 +0000124
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000125 return PyLong_FromLong(fd);
Guido van Rossum407a22d1997-08-13 19:57:53 +0000126}
127
Benjamin Peterson68dbebc2009-12-31 03:30:26 +0000128PyDoc_STRVAR(open_osfhandle_doc,
129"open_osfhandle(handle, flags) -> file descriptor\n\
130\n\
131Create a C runtime file descriptor from the file handle handle. The\n\
132flags parameter should be a bitwise OR of os.O_APPEND, os.O_RDONLY,\n\
133and os.O_TEXT. The returned file descriptor may be used as a parameter\n\
134to os.fdopen() to create a file object.");
135
Guido van Rossum407a22d1997-08-13 19:57:53 +0000136// Convert a C runtime file descriptor to an OS file handle.
Tim Peters5fa0bd62000-12-12 01:58:56 +0000137static PyObject *
138msvcrt_get_osfhandle(PyObject *self, PyObject *args)
Guido van Rossum407a22d1997-08-13 19:57:53 +0000139{
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000140 int fd;
141 Py_intptr_t handle;
Guido van Rossum407a22d1997-08-13 19:57:53 +0000142
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000143 if (!PyArg_ParseTuple(args,"i:get_osfhandle", &fd))
144 return NULL;
Guido van Rossum407a22d1997-08-13 19:57:53 +0000145
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000146 handle = _get_osfhandle(fd);
147 if (handle == -1)
148 return PyErr_SetFromErrno(PyExc_IOError);
Guido van Rossum407a22d1997-08-13 19:57:53 +0000149
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000150 /* technically 'handle' is not a pointer, but a integer as
151 large as a pointer, Python's *VoidPtr interface is the
152 most appropriate here */
153 return PyLong_FromVoidPtr((void*)handle);
Guido van Rossum407a22d1997-08-13 19:57:53 +0000154}
155
Benjamin Peterson68dbebc2009-12-31 03:30:26 +0000156PyDoc_STRVAR(get_osfhandle_doc,
157"get_osfhandle(fd) -> file handle\n\
158\n\
159Return the file handle for the file descriptor fd. Raises IOError\n\
160if fd is not recognized.");
161
Guido van Rossum407a22d1997-08-13 19:57:53 +0000162/* Console I/O */
Guido van Rossum407a22d1997-08-13 19:57:53 +0000163
Tim Peters5fa0bd62000-12-12 01:58:56 +0000164static PyObject *
165msvcrt_kbhit(PyObject *self, PyObject *args)
Guido van Rossum407a22d1997-08-13 19:57:53 +0000166{
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000167 int ok;
Guido van Rossum407a22d1997-08-13 19:57:53 +0000168
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000169 if (!PyArg_ParseTuple(args, ":kbhit"))
170 return NULL;
Guido van Rossum407a22d1997-08-13 19:57:53 +0000171
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000172 ok = _kbhit();
173 return PyLong_FromLong(ok);
Guido van Rossum407a22d1997-08-13 19:57:53 +0000174}
175
Benjamin Peterson68dbebc2009-12-31 03:30:26 +0000176PyDoc_STRVAR(kbhit_doc,
177"kbhit() -> bool\n\
178\n\
179Return true if a keypress is waiting to be read.");
180
Tim Peters5fa0bd62000-12-12 01:58:56 +0000181static PyObject *
182msvcrt_getch(PyObject *self, PyObject *args)
Guido van Rossum407a22d1997-08-13 19:57:53 +0000183{
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000184 int ch;
185 char s[1];
Guido van Rossum407a22d1997-08-13 19:57:53 +0000186
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000187 if (!PyArg_ParseTuple(args, ":getch"))
188 return NULL;
Guido van Rossum407a22d1997-08-13 19:57:53 +0000189
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000190 Py_BEGIN_ALLOW_THREADS
191 ch = _getch();
192 Py_END_ALLOW_THREADS
193 s[0] = ch;
194 return PyBytes_FromStringAndSize(s, 1);
Guido van Rossum407a22d1997-08-13 19:57:53 +0000195}
196
Benjamin Peterson68dbebc2009-12-31 03:30:26 +0000197PyDoc_STRVAR(getch_doc,
198"getch() -> key character\n\
199\n\
200Read a keypress and return the resulting character. Nothing is echoed to\n\
201the console. This call will block if a keypress is not already\n\
202available, but will not wait for Enter to be pressed. If the pressed key\n\
203was a special function key, this will return '\\000' or '\\xe0'; the next\n\
204call will return the keycode. The Control-C keypress cannot be read with\n\
205this function.");
206
Amaury Forgeot d'Arc3d17a5c2008-06-13 01:09:34 +0000207#ifdef _WCONIO_DEFINED
Tim Peters5fa0bd62000-12-12 01:58:56 +0000208static PyObject *
Christian Heimes2f1019e2007-12-10 16:18:49 +0000209msvcrt_getwch(PyObject *self, PyObject *args)
210{
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000211 Py_UNICODE ch;
212 Py_UNICODE u[1];
Christian Heimes2f1019e2007-12-10 16:18:49 +0000213
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000214 if (!PyArg_ParseTuple(args, ":getwch"))
215 return NULL;
Christian Heimes2f1019e2007-12-10 16:18:49 +0000216
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000217 Py_BEGIN_ALLOW_THREADS
218 ch = _getwch();
219 Py_END_ALLOW_THREADS
220 u[0] = ch;
221 return PyUnicode_FromUnicode(u, 1);
Christian Heimes2f1019e2007-12-10 16:18:49 +0000222}
Benjamin Peterson68dbebc2009-12-31 03:30:26 +0000223
224PyDoc_STRVAR(getwch_doc,
225"getwch() -> Unicode key character\n\
226\n\
227Wide char variant of getch(), returning a Unicode value.");
Christian Heimesc36625b2008-01-04 13:33:00 +0000228#endif
Christian Heimes2f1019e2007-12-10 16:18:49 +0000229
230static PyObject *
Tim Peters5fa0bd62000-12-12 01:58:56 +0000231msvcrt_getche(PyObject *self, PyObject *args)
Guido van Rossum407a22d1997-08-13 19:57:53 +0000232{
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000233 int ch;
234 char s[1];
Guido van Rossum407a22d1997-08-13 19:57:53 +0000235
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000236 if (!PyArg_ParseTuple(args, ":getche"))
237 return NULL;
Guido van Rossum407a22d1997-08-13 19:57:53 +0000238
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000239 Py_BEGIN_ALLOW_THREADS
240 ch = _getche();
241 Py_END_ALLOW_THREADS
242 s[0] = ch;
243 return PyBytes_FromStringAndSize(s, 1);
Guido van Rossum407a22d1997-08-13 19:57:53 +0000244}
245
Benjamin Peterson68dbebc2009-12-31 03:30:26 +0000246PyDoc_STRVAR(getche_doc,
247"getche() -> key character\n\
248\n\
249Similar to getch(), but the keypress will be echoed if it represents\n\
250a printable character.");
251
Amaury Forgeot d'Arc3d17a5c2008-06-13 01:09:34 +0000252#ifdef _WCONIO_DEFINED
Tim Peters5fa0bd62000-12-12 01:58:56 +0000253static PyObject *
Christian Heimes2f1019e2007-12-10 16:18:49 +0000254msvcrt_getwche(PyObject *self, PyObject *args)
255{
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000256 Py_UNICODE ch;
257 Py_UNICODE s[1];
Christian Heimes2f1019e2007-12-10 16:18:49 +0000258
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000259 if (!PyArg_ParseTuple(args, ":getwche"))
260 return NULL;
Christian Heimes2f1019e2007-12-10 16:18:49 +0000261
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000262 Py_BEGIN_ALLOW_THREADS
263 ch = _getwche();
264 Py_END_ALLOW_THREADS
265 s[0] = ch;
266 return PyUnicode_FromUnicode(s, 1);
Christian Heimes2f1019e2007-12-10 16:18:49 +0000267}
Benjamin Peterson68dbebc2009-12-31 03:30:26 +0000268
269PyDoc_STRVAR(getwche_doc,
270"getwche() -> Unicode key character\n\
271\n\
272Wide char variant of getche(), returning a Unicode value.");
Christian Heimesc36625b2008-01-04 13:33:00 +0000273#endif
Christian Heimes2f1019e2007-12-10 16:18:49 +0000274
275static PyObject *
Tim Peters5fa0bd62000-12-12 01:58:56 +0000276msvcrt_putch(PyObject *self, PyObject *args)
Guido van Rossum407a22d1997-08-13 19:57:53 +0000277{
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000278 char ch;
Guido van Rossum407a22d1997-08-13 19:57:53 +0000279
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000280 if (!PyArg_ParseTuple(args, "c:putch", &ch))
281 return NULL;
Guido van Rossum407a22d1997-08-13 19:57:53 +0000282
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000283 _putch(ch);
284 Py_INCREF(Py_None);
285 return Py_None;
Guido van Rossum407a22d1997-08-13 19:57:53 +0000286}
287
Benjamin Peterson68dbebc2009-12-31 03:30:26 +0000288PyDoc_STRVAR(putch_doc,
289"putch(char) -> None\n\
290\n\
291Print the character char to the console without buffering.");
292
Amaury Forgeot d'Arc3d17a5c2008-06-13 01:09:34 +0000293#ifdef _WCONIO_DEFINED
Christian Heimes2f1019e2007-12-10 16:18:49 +0000294static PyObject *
295msvcrt_putwch(PyObject *self, PyObject *args)
296{
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000297 int ch;
Christian Heimes2f1019e2007-12-10 16:18:49 +0000298
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000299 if (!PyArg_ParseTuple(args, "C:putwch", &ch))
300 return NULL;
Christian Heimes2f1019e2007-12-10 16:18:49 +0000301
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000302 _putwch(ch);
303 Py_RETURN_NONE;
Christian Heimes2f1019e2007-12-10 16:18:49 +0000304
305}
Benjamin Peterson68dbebc2009-12-31 03:30:26 +0000306
307PyDoc_STRVAR(putwch_doc,
308"putwch(unicode_char) -> None\n\
309\n\
310Wide char variant of putch(), accepting a Unicode value.");
Christian Heimesc36625b2008-01-04 13:33:00 +0000311#endif
Christian Heimes2f1019e2007-12-10 16:18:49 +0000312
Tim Peters5fa0bd62000-12-12 01:58:56 +0000313static PyObject *
314msvcrt_ungetch(PyObject *self, PyObject *args)
Guido van Rossum407a22d1997-08-13 19:57:53 +0000315{
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000316 char ch;
Guido van Rossum407a22d1997-08-13 19:57:53 +0000317
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000318 if (!PyArg_ParseTuple(args, "c:ungetch", &ch))
319 return NULL;
Guido van Rossum407a22d1997-08-13 19:57:53 +0000320
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000321 if (_ungetch(ch) == EOF)
322 return PyErr_SetFromErrno(PyExc_IOError);
323 Py_INCREF(Py_None);
324 return Py_None;
Guido van Rossum407a22d1997-08-13 19:57:53 +0000325}
326
Benjamin Peterson68dbebc2009-12-31 03:30:26 +0000327PyDoc_STRVAR(ungetch_doc,
328"ungetch(char) -> None\n\
329\n\
330Cause the character char to be \"pushed back\" into the console buffer;\n\
331it will be the next character read by getch() or getche().");
332
Amaury Forgeot d'Arc3d17a5c2008-06-13 01:09:34 +0000333#ifdef _WCONIO_DEFINED
Christian Heimes2f1019e2007-12-10 16:18:49 +0000334static PyObject *
335msvcrt_ungetwch(PyObject *self, PyObject *args)
336{
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000337 int ch;
Christian Heimes2f1019e2007-12-10 16:18:49 +0000338
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000339 if (!PyArg_ParseTuple(args, "C:ungetwch", &ch))
340 return NULL;
Christian Heimes2f1019e2007-12-10 16:18:49 +0000341
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000342 if (_ungetwch(ch) == WEOF)
343 return PyErr_SetFromErrno(PyExc_IOError);
344 Py_INCREF(Py_None);
345 return Py_None;
Christian Heimes2f1019e2007-12-10 16:18:49 +0000346}
Benjamin Peterson68dbebc2009-12-31 03:30:26 +0000347
348PyDoc_STRVAR(ungetwch_doc,
349"ungetwch(unicode_char) -> None\n\
350\n\
351Wide char variant of ungetch(), accepting a Unicode value.");
Christian Heimesc36625b2008-01-04 13:33:00 +0000352#endif
Guido van Rossum29c1ea51997-08-07 00:11:34 +0000353
Tim Peters5fa0bd62000-12-12 01:58:56 +0000354static void
355insertint(PyObject *d, char *name, int value)
356{
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000357 PyObject *v = PyLong_FromLong((long) value);
358 if (v == NULL) {
359 /* Don't bother reporting this error */
360 PyErr_Clear();
361 }
362 else {
363 PyDict_SetItemString(d, name, v);
364 Py_DECREF(v);
365 }
Tim Peters5fa0bd62000-12-12 01:58:56 +0000366}
367
Martin v. Löwis3dc33d12007-08-31 07:58:36 +0000368#ifdef _DEBUG
369
370static PyObject*
371msvcrt_setreportfile(PyObject *self, PyObject *args)
372{
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000373 int type, file;
374 _HFILE res;
Martin v. Löwis3dc33d12007-08-31 07:58:36 +0000375
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000376 if (!PyArg_ParseTuple(args, "ii", &type, &file))
377 return NULL;
378 res = _CrtSetReportFile(type, (_HFILE)file);
379 return PyLong_FromLong((long)res);
380 Py_INCREF(Py_None);
381 return Py_None;
Martin v. Löwis3dc33d12007-08-31 07:58:36 +0000382}
383
384static PyObject*
385msvcrt_setreportmode(PyObject *self, PyObject *args)
386{
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000387 int type, mode;
388 int res;
Martin v. Löwis3dc33d12007-08-31 07:58:36 +0000389
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000390 if (!PyArg_ParseTuple(args, "ii", &type, &mode))
391 return NULL;
392 res = _CrtSetReportMode(type, mode);
393 if (res == -1)
394 return PyErr_SetFromErrno(PyExc_IOError);
395 return PyLong_FromLong(res);
Martin v. Löwis3dc33d12007-08-31 07:58:36 +0000396}
397
398static PyObject*
399msvcrt_seterrormode(PyObject *self, PyObject *args)
400{
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000401 int mode, res;
Martin v. Löwis3dc33d12007-08-31 07:58:36 +0000402
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000403 if (!PyArg_ParseTuple(args, "i", &mode))
404 return NULL;
405 res = _set_error_mode(mode);
406 return PyLong_FromLong(res);
Martin v. Löwis3dc33d12007-08-31 07:58:36 +0000407}
408
409#endif
410
411static PyObject*
412seterrormode(PyObject *self, PyObject *args)
413{
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000414 unsigned int mode, res;
Martin v. Löwis3dc33d12007-08-31 07:58:36 +0000415
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000416 if (!PyArg_ParseTuple(args, "I", &mode))
417 return NULL;
418 res = SetErrorMode(mode);
419 return PyLong_FromUnsignedLong(res);
Martin v. Löwis3dc33d12007-08-31 07:58:36 +0000420}
421
Tim Peters5fa0bd62000-12-12 01:58:56 +0000422
Guido van Rossum29c1ea51997-08-07 00:11:34 +0000423/* List of functions exported by this module */
424static struct PyMethodDef msvcrt_functions[] = {
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000425 {"heapmin", msvcrt_heapmin, METH_VARARGS, heapmin_doc},
426 {"locking", msvcrt_locking, METH_VARARGS, locking_doc},
427 {"setmode", msvcrt_setmode, METH_VARARGS, setmode_doc},
428 {"open_osfhandle", msvcrt_open_osfhandle, METH_VARARGS, open_osfhandle_doc},
429 {"get_osfhandle", msvcrt_get_osfhandle, METH_VARARGS, get_osfhandle_doc},
430 {"kbhit", msvcrt_kbhit, METH_VARARGS, kbhit_doc},
431 {"getch", msvcrt_getch, METH_VARARGS, getch_doc},
432 {"getche", msvcrt_getche, METH_VARARGS, getche_doc},
433 {"putch", msvcrt_putch, METH_VARARGS, putch_doc},
434 {"ungetch", msvcrt_ungetch, METH_VARARGS, ungetch_doc},
435 {"SetErrorMode", seterrormode, METH_VARARGS},
Martin v. Löwis3dc33d12007-08-31 07:58:36 +0000436#ifdef _DEBUG
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000437 {"CrtSetReportFile", msvcrt_setreportfile, METH_VARARGS},
438 {"CrtSetReportMode", msvcrt_setreportmode, METH_VARARGS},
439 {"set_error_mode", msvcrt_seterrormode, METH_VARARGS},
Martin v. Löwis3dc33d12007-08-31 07:58:36 +0000440#endif
Amaury Forgeot d'Arc3d17a5c2008-06-13 01:09:34 +0000441#ifdef _WCONIO_DEFINED
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000442 {"getwch", msvcrt_getwch, METH_VARARGS, getwch_doc},
443 {"getwche", msvcrt_getwche, METH_VARARGS, getwche_doc},
444 {"putwch", msvcrt_putwch, METH_VARARGS, putwch_doc},
445 {"ungetwch", msvcrt_ungetwch, METH_VARARGS, ungetwch_doc},
Christian Heimesc36625b2008-01-04 13:33:00 +0000446#endif
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000447 {NULL, NULL}
Guido van Rossum29c1ea51997-08-07 00:11:34 +0000448};
449
Martin v. Löwis1a214512008-06-11 05:26:20 +0000450
451static struct PyModuleDef msvcrtmodule = {
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000452 PyModuleDef_HEAD_INIT,
453 "msvcrt",
454 NULL,
455 -1,
456 msvcrt_functions,
457 NULL,
458 NULL,
459 NULL,
460 NULL
Martin v. Löwis1a214512008-06-11 05:26:20 +0000461};
462
Thomas Hellera18331d2004-07-28 20:02:52 +0000463PyMODINIT_FUNC
Martin v. Löwis1a214512008-06-11 05:26:20 +0000464PyInit_msvcrt(void)
Guido van Rossum29c1ea51997-08-07 00:11:34 +0000465{
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000466 int st;
467 PyObject *d;
468 PyObject *m = PyModule_Create(&msvcrtmodule);
469 if (m == NULL)
470 return NULL;
471 d = PyModule_GetDict(m);
Tim Peters5fa0bd62000-12-12 01:58:56 +0000472
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000473 /* constants for the locking() function's mode argument */
474 insertint(d, "LK_LOCK", _LK_LOCK);
475 insertint(d, "LK_NBLCK", _LK_NBLCK);
476 insertint(d, "LK_NBRLCK", _LK_NBRLCK);
477 insertint(d, "LK_RLCK", _LK_RLCK);
478 insertint(d, "LK_UNLCK", _LK_UNLCK);
479 insertint(d, "SEM_FAILCRITICALERRORS", SEM_FAILCRITICALERRORS);
480 insertint(d, "SEM_NOALIGNMENTFAULTEXCEPT", SEM_NOALIGNMENTFAULTEXCEPT);
481 insertint(d, "SEM_NOGPFAULTERRORBOX", SEM_NOGPFAULTERRORBOX);
482 insertint(d, "SEM_NOOPENFILEERRORBOX", SEM_NOOPENFILEERRORBOX);
Martin v. Löwis3dc33d12007-08-31 07:58:36 +0000483#ifdef _DEBUG
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000484 insertint(d, "CRT_WARN", _CRT_WARN);
485 insertint(d, "CRT_ERROR", _CRT_ERROR);
486 insertint(d, "CRT_ASSERT", _CRT_ASSERT);
487 insertint(d, "CRTDBG_MODE_DEBUG", _CRTDBG_MODE_DEBUG);
488 insertint(d, "CRTDBG_MODE_FILE", _CRTDBG_MODE_FILE);
489 insertint(d, "CRTDBG_MODE_WNDW", _CRTDBG_MODE_WNDW);
490 insertint(d, "CRTDBG_REPORT_MODE", _CRTDBG_REPORT_MODE);
491 insertint(d, "CRTDBG_FILE_STDERR", (int)_CRTDBG_FILE_STDERR);
492 insertint(d, "CRTDBG_FILE_STDOUT", (int)_CRTDBG_FILE_STDOUT);
493 insertint(d, "CRTDBG_REPORT_FILE", (int)_CRTDBG_REPORT_FILE);
Martin v. Löwis3dc33d12007-08-31 07:58:36 +0000494#endif
Benjamin Peterson4469d0c2008-11-30 22:46:23 +0000495
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000496 /* constants for the crt versions */
Benjamin Peterson4469d0c2008-11-30 22:46:23 +0000497#ifdef _VC_ASSEMBLY_PUBLICKEYTOKEN
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000498 st = PyModule_AddStringConstant(m, "VC_ASSEMBLY_PUBLICKEYTOKEN",
499 _VC_ASSEMBLY_PUBLICKEYTOKEN);
500 if (st < 0) return NULL;
Benjamin Peterson4469d0c2008-11-30 22:46:23 +0000501#endif
502#ifdef _CRT_ASSEMBLY_VERSION
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000503 st = PyModule_AddStringConstant(m, "CRT_ASSEMBLY_VERSION",
504 _CRT_ASSEMBLY_VERSION);
505 if (st < 0) return NULL;
Benjamin Peterson4469d0c2008-11-30 22:46:23 +0000506#endif
507#ifdef __LIBRARIES_ASSEMBLY_NAME_PREFIX
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000508 st = PyModule_AddStringConstant(m, "LIBRARIES_ASSEMBLY_NAME_PREFIX",
509 __LIBRARIES_ASSEMBLY_NAME_PREFIX);
510 if (st < 0) return NULL;
Benjamin Peterson4469d0c2008-11-30 22:46:23 +0000511#endif
512
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000513 return m;
Guido van Rossum29c1ea51997-08-07 00:11:34 +0000514}