blob: 5a066a5997dae5e3223da9825fc34b8cfc598b5b [file] [log] [blame]
Guido van Rossumf70e43a1991-02-19 12:39:46 +00001/***********************************************************
Guido van Rossum6d023c91995-01-04 19:12:13 +00002Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam,
3The Netherlands.
Guido van Rossumf70e43a1991-02-19 12:39:46 +00004
5 All Rights Reserved
6
Guido van Rossumd266eb41996-10-25 14:44:06 +00007Permission to use, copy, modify, and distribute this software and its
8documentation for any purpose and without fee is hereby granted,
Guido van Rossumf70e43a1991-02-19 12:39:46 +00009provided that the above copyright notice appear in all copies and that
Guido van Rossumd266eb41996-10-25 14:44:06 +000010both that copyright notice and this permission notice appear in
Guido van Rossumf70e43a1991-02-19 12:39:46 +000011supporting documentation, and that the names of Stichting Mathematisch
Guido van Rossumd266eb41996-10-25 14:44:06 +000012Centrum or CWI or Corporation for National Research Initiatives or
13CNRI not be used in advertising or publicity pertaining to
14distribution of the software without specific, written prior
15permission.
Guido van Rossumf70e43a1991-02-19 12:39:46 +000016
Guido van Rossumd266eb41996-10-25 14:44:06 +000017While CWI is the initial source for this software, a modified version
18is made available by the Corporation for National Research Initiatives
19(CNRI) at the Internet address ftp://ftp.python.org.
20
21STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH
22REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF
23MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH
24CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL
25DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
26PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
27TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
28PERFORMANCE OF THIS SOFTWARE.
Guido van Rossumf70e43a1991-02-19 12:39:46 +000029
30******************************************************************/
31
Guido van Rossum85a5fbb1990-10-14 12:07:46 +000032/* System module */
33
34/*
35Various bits of information used by the interpreter are collected in
36module 'sys'.
Guido van Rossum3f5da241990-12-20 15:06:42 +000037Function member:
Guido van Rossumcc8914f1995-03-20 15:09:40 +000038- exit(sts): raise SystemExit
Guido van Rossum85a5fbb1990-10-14 12:07:46 +000039Data members:
40- stdin, stdout, stderr: standard file objects
Guido van Rossum85a5fbb1990-10-14 12:07:46 +000041- modules: the table of modules (dictionary)
Guido van Rossum3f5da241990-12-20 15:06:42 +000042- path: module search path (list of strings)
43- argv: script arguments (list of strings)
44- ps1, ps2: optional primary and secondary prompts (strings)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +000045*/
46
Guido van Rossum65bf9f21997-04-29 18:33:38 +000047#include "Python.h"
Guido van Rossum85a5fbb1990-10-14 12:07:46 +000048
Guido van Rossume2437a11992-03-23 18:20:18 +000049#include "osdefs.h"
Guido van Rossum3f5da241990-12-20 15:06:42 +000050
Guido van Rossum1254d791997-05-20 15:57:25 +000051#ifdef HAVE_UNISTD_H
Guido van Rossumc474dea1997-04-25 15:38:31 +000052#include <unistd.h>
53#endif
54
Guido van Rossum9b38a141996-09-11 23:12:24 +000055#ifdef MS_COREDLL
Guido van Rossumc606fe11996-04-09 02:37:57 +000056extern void *PyWin_DLLhModule;
Guido van Rossum6c1e5f21997-09-29 23:34:23 +000057/* A string loaded from the DLL at startup: */
58extern const char *PyWin_DLLVersionString;
Guido van Rossumc606fe11996-04-09 02:37:57 +000059#endif
60
Guido van Rossum65bf9f21997-04-29 18:33:38 +000061PyObject *
62PySys_GetObject(name)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +000063 char *name;
64{
Guido van Rossum25ce5661997-08-02 03:10:38 +000065 PyThreadState *tstate = PyThreadState_Get();
66 PyObject *sd = tstate->interp->sysdict;
67 return PyDict_GetItemString(sd, name);
Guido van Rossum85a5fbb1990-10-14 12:07:46 +000068}
69
70FILE *
Guido van Rossum65bf9f21997-04-29 18:33:38 +000071PySys_GetFile(name, def)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +000072 char *name;
73 FILE *def;
74{
75 FILE *fp = NULL;
Guido van Rossum65bf9f21997-04-29 18:33:38 +000076 PyObject *v = PySys_GetObject(name);
77 if (v != NULL && PyFile_Check(v))
78 fp = PyFile_AsFile(v);
Guido van Rossum85a5fbb1990-10-14 12:07:46 +000079 if (fp == NULL)
80 fp = def;
81 return fp;
82}
83
84int
Guido van Rossum65bf9f21997-04-29 18:33:38 +000085PySys_SetObject(name, v)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +000086 char *name;
Guido van Rossum65bf9f21997-04-29 18:33:38 +000087 PyObject *v;
Guido van Rossum85a5fbb1990-10-14 12:07:46 +000088{
Guido van Rossum25ce5661997-08-02 03:10:38 +000089 PyThreadState *tstate = PyThreadState_Get();
90 PyObject *sd = tstate->interp->sysdict;
Guido van Rossum5ad58c61992-01-26 18:15:48 +000091 if (v == NULL) {
Guido van Rossum25ce5661997-08-02 03:10:38 +000092 if (PyDict_GetItemString(sd, name) == NULL)
Guido van Rossum5ad58c61992-01-26 18:15:48 +000093 return 0;
94 else
Guido van Rossum25ce5661997-08-02 03:10:38 +000095 return PyDict_DelItemString(sd, name);
Guido van Rossum5ad58c61992-01-26 18:15:48 +000096 }
Guido van Rossum85a5fbb1990-10-14 12:07:46 +000097 else
Guido van Rossum25ce5661997-08-02 03:10:38 +000098 return PyDict_SetItemString(sd, name, v);
Guido van Rossum85a5fbb1990-10-14 12:07:46 +000099}
100
Guido van Rossum65bf9f21997-04-29 18:33:38 +0000101static PyObject *
Guido van Rossuma027efa1997-05-05 20:56:21 +0000102sys_exc_info(self, args)
103 PyObject *self;
104 PyObject *args;
105{
106 PyThreadState *tstate;
107 if (!PyArg_Parse(args, ""))
108 return NULL;
109 tstate = PyThreadState_Get();
Guido van Rossuma027efa1997-05-05 20:56:21 +0000110 return Py_BuildValue(
111 "(OOO)",
112 tstate->exc_type != NULL ? tstate->exc_type : Py_None,
113 tstate->exc_value != NULL ? tstate->exc_value : Py_None,
114 tstate->exc_traceback != NULL ?
115 tstate->exc_traceback : Py_None);
116}
117
Guido van Rossumc3bc31e1998-06-27 19:43:25 +0000118static char exc_info_doc[] =
119"exc_info() -> (type, value, traceback)\n\
120\n\
121Return information about the exception that is currently being handled.\n\
122This should be called from inside an except clause only.";
123
Guido van Rossuma027efa1997-05-05 20:56:21 +0000124static PyObject *
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000125sys_exit(self, args)
Guido van Rossum65bf9f21997-04-29 18:33:38 +0000126 PyObject *self;
127 PyObject *args;
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000128{
Guido van Rossum6a468bf1991-12-31 13:15:35 +0000129 /* Raise SystemExit so callers may catch it or clean up. */
Guido van Rossum65bf9f21997-04-29 18:33:38 +0000130 PyErr_SetObject(PyExc_SystemExit, args);
Guido van Rossum6a468bf1991-12-31 13:15:35 +0000131 return NULL;
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000132}
133
Guido van Rossumc3bc31e1998-06-27 19:43:25 +0000134static char exit_doc[] =
135"exit([status])\n\
136\n\
137Exit the interpreter by raising SystemExit(status).\n\
138If the status is omitted or None, it defaults to zero (i.e., success).\n\
139If the status numeric, it will be used as the system exit status.\n\
140If it is another kind of object, it will be printed and the system\n\
141exit status will be one (i.e., failure).";
142
Guido van Rossum65bf9f21997-04-29 18:33:38 +0000143static PyObject *
Guido van Rossume2437a11992-03-23 18:20:18 +0000144sys_settrace(self, args)
Guido van Rossum65bf9f21997-04-29 18:33:38 +0000145 PyObject *self;
146 PyObject *args;
Guido van Rossume2437a11992-03-23 18:20:18 +0000147{
Guido van Rossuma027efa1997-05-05 20:56:21 +0000148 PyThreadState *tstate = PyThreadState_Get();
Guido van Rossum65bf9f21997-04-29 18:33:38 +0000149 if (args == Py_None)
Guido van Rossume2437a11992-03-23 18:20:18 +0000150 args = NULL;
Guido van Rossume765f7d1992-04-05 14:17:55 +0000151 else
Guido van Rossum65bf9f21997-04-29 18:33:38 +0000152 Py_XINCREF(args);
Guido van Rossuma027efa1997-05-05 20:56:21 +0000153 Py_XDECREF(tstate->sys_tracefunc);
154 tstate->sys_tracefunc = args;
Guido van Rossum65bf9f21997-04-29 18:33:38 +0000155 Py_INCREF(Py_None);
156 return Py_None;
Guido van Rossume2437a11992-03-23 18:20:18 +0000157}
158
Guido van Rossumc3bc31e1998-06-27 19:43:25 +0000159static char settrace_doc[] =
160"settrace(function)\n\
161\n\
162Set the global debug tracing function. It will be called on each\n\
163function call. See the debugger chapter in the library manual.";
164
Guido van Rossum65bf9f21997-04-29 18:33:38 +0000165static PyObject *
Guido van Rossume2437a11992-03-23 18:20:18 +0000166sys_setprofile(self, args)
Guido van Rossum65bf9f21997-04-29 18:33:38 +0000167 PyObject *self;
168 PyObject *args;
Guido van Rossume2437a11992-03-23 18:20:18 +0000169{
Guido van Rossuma027efa1997-05-05 20:56:21 +0000170 PyThreadState *tstate = PyThreadState_Get();
Guido van Rossum65bf9f21997-04-29 18:33:38 +0000171 if (args == Py_None)
Guido van Rossume2437a11992-03-23 18:20:18 +0000172 args = NULL;
Guido van Rossume765f7d1992-04-05 14:17:55 +0000173 else
Guido van Rossum65bf9f21997-04-29 18:33:38 +0000174 Py_XINCREF(args);
Guido van Rossuma027efa1997-05-05 20:56:21 +0000175 Py_XDECREF(tstate->sys_profilefunc);
176 tstate->sys_profilefunc = args;
Guido van Rossum65bf9f21997-04-29 18:33:38 +0000177 Py_INCREF(Py_None);
178 return Py_None;
Guido van Rossume2437a11992-03-23 18:20:18 +0000179}
180
Guido van Rossumc3bc31e1998-06-27 19:43:25 +0000181static char setprofile_doc[] =
182"setprofile(function)\n\
183\n\
184Set the profiling function. It will be called on each function call\n\
185and return. See the profiler chapter in the library manual.";
186
Guido van Rossum65bf9f21997-04-29 18:33:38 +0000187static PyObject *
Guido van Rossuma0d7a231995-01-09 17:46:13 +0000188sys_setcheckinterval(self, args)
Guido van Rossum65bf9f21997-04-29 18:33:38 +0000189 PyObject *self;
190 PyObject *args;
Guido van Rossuma0d7a231995-01-09 17:46:13 +0000191{
Guido van Rossuma027efa1997-05-05 20:56:21 +0000192 PyThreadState *tstate = PyThreadState_Get();
Guido van Rossum25ce5661997-08-02 03:10:38 +0000193 if (!PyArg_ParseTuple(args, "i", &tstate->interp->checkinterval))
Guido van Rossuma0d7a231995-01-09 17:46:13 +0000194 return NULL;
Guido van Rossum65bf9f21997-04-29 18:33:38 +0000195 Py_INCREF(Py_None);
196 return Py_None;
Guido van Rossuma0d7a231995-01-09 17:46:13 +0000197}
198
Guido van Rossumc3bc31e1998-06-27 19:43:25 +0000199static char setcheckinterval_doc[] =
200"setcheckinterval(n)\n\
201\n\
202Tell the Python interpreter to check for asynchronous events every\n\
203n instructions. This also affects how often thread switches occur.";
204
Guido van Rossum14b4adb1992-09-03 20:25:30 +0000205#ifdef USE_MALLOPT
206/* Link with -lmalloc (or -lmpc) on an SGI */
207#include <malloc.h>
208
Guido van Rossum65bf9f21997-04-29 18:33:38 +0000209static PyObject *
Guido van Rossum14b4adb1992-09-03 20:25:30 +0000210sys_mdebug(self, args)
Guido van Rossum65bf9f21997-04-29 18:33:38 +0000211 PyObject *self;
212 PyObject *args;
Guido van Rossum14b4adb1992-09-03 20:25:30 +0000213{
214 int flag;
Guido van Rossum65bf9f21997-04-29 18:33:38 +0000215 if (!PyArg_Parse(args, "i", &flag))
Guido van Rossum14b4adb1992-09-03 20:25:30 +0000216 return NULL;
217 mallopt(M_DEBUG, flag);
Guido van Rossum65bf9f21997-04-29 18:33:38 +0000218 Py_INCREF(Py_None);
219 return Py_None;
Guido van Rossum14b4adb1992-09-03 20:25:30 +0000220}
221#endif /* USE_MALLOPT */
222
Guido van Rossum65bf9f21997-04-29 18:33:38 +0000223static PyObject *
Sjoerd Mullender6ec3c651995-08-29 09:18:14 +0000224sys_getrefcount(self, args)
Guido van Rossum65bf9f21997-04-29 18:33:38 +0000225 PyObject *self;
226 PyObject *args;
Sjoerd Mullender6ec3c651995-08-29 09:18:14 +0000227{
Guido van Rossum65bf9f21997-04-29 18:33:38 +0000228 PyObject *arg;
229 if (!PyArg_Parse(args, "O", &arg))
Sjoerd Mullender6ec3c651995-08-29 09:18:14 +0000230 return NULL;
Guido van Rossum65bf9f21997-04-29 18:33:38 +0000231 return PyInt_FromLong((long) arg->ob_refcnt);
Sjoerd Mullender6ec3c651995-08-29 09:18:14 +0000232}
233
Guido van Rossumc3bc31e1998-06-27 19:43:25 +0000234static char getrefcount_doc[] =
235"getrefcount(object) -> integer\n\
236\n\
237Return the current reference count for the object. This includes the\n\
238temporary reference in the argument list, so it is at least 2.";
239
Sjoerd Mullender6ec3c651995-08-29 09:18:14 +0000240#ifdef COUNT_ALLOCS
241static PyObject *
242sys_getcounts(self, args)
243 PyObject *self, *args;
244{
245 extern PyObject *get_counts Py_PROTO((void));
246
247 if (!PyArg_Parse(args, ""))
248 return NULL;
249 return get_counts();
250}
251#endif
252
Guido van Rossum7f3f2c11996-05-23 22:45:41 +0000253#ifdef Py_TRACE_REFS
Guido van Rossumded690f1996-05-24 20:48:31 +0000254/* Defined in objects.c because it uses static globals if that file */
255extern PyObject *_Py_GetObjects Py_PROTO((PyObject *, PyObject *));
Sjoerd Mullender6ec3c651995-08-29 09:18:14 +0000256#endif
Guido van Rossumded690f1996-05-24 20:48:31 +0000257
Guido van Rossum43f1b8d1997-01-24 04:07:45 +0000258#ifdef DYNAMIC_EXECUTION_PROFILE
259/* Defined in ceval.c because it uses static globals if that file */
260extern PyObject *_Py_GetDXProfile Py_PROTO((PyObject *, PyObject *));
261#endif
262
Guido van Rossum65bf9f21997-04-29 18:33:38 +0000263static PyMethodDef sys_methods[] = {
Guido van Rossum43f1b8d1997-01-24 04:07:45 +0000264 /* Might as well keep this in alphabetic order */
Guido van Rossumc3bc31e1998-06-27 19:43:25 +0000265 {"exc_info", sys_exc_info, 0, exc_info_doc},
266 {"exit", sys_exit, 0, exit_doc},
Sjoerd Mullender6ec3c651995-08-29 09:18:14 +0000267#ifdef COUNT_ALLOCS
268 {"getcounts", sys_getcounts, 0},
269#endif
Guido van Rossum43f1b8d1997-01-24 04:07:45 +0000270#ifdef DYNAMIC_EXECUTION_PROFILE
271 {"getdxp", _Py_GetDXProfile, 1},
272#endif
Guido van Rossum7f3f2c11996-05-23 22:45:41 +0000273#ifdef Py_TRACE_REFS
Guido van Rossumded690f1996-05-24 20:48:31 +0000274 {"getobjects", _Py_GetObjects, 1},
Sjoerd Mullender6ec3c651995-08-29 09:18:14 +0000275#endif
Guido van Rossumc3bc31e1998-06-27 19:43:25 +0000276 {"getrefcount", sys_getrefcount, 0, getrefcount_doc},
Guido van Rossum14b4adb1992-09-03 20:25:30 +0000277#ifdef USE_MALLOPT
Guido van Rossum4f508cc1995-02-21 21:03:24 +0000278 {"mdebug", sys_mdebug, 0},
Guido van Rossum14b4adb1992-09-03 20:25:30 +0000279#endif
Guido van Rossumc3bc31e1998-06-27 19:43:25 +0000280 {"setcheckinterval", sys_setcheckinterval, 1, setcheckinterval_doc},
281 {"setprofile", sys_setprofile, 0, setprofile_doc},
282 {"settrace", sys_settrace, 0, settrace_doc},
Guido van Rossum3f5da241990-12-20 15:06:42 +0000283 {NULL, NULL} /* sentinel */
284};
285
Guido van Rossum65bf9f21997-04-29 18:33:38 +0000286static PyObject *
Guido van Rossum34679b71993-01-26 13:33:44 +0000287list_builtin_module_names()
288{
Guido van Rossum65bf9f21997-04-29 18:33:38 +0000289 PyObject *list = PyList_New(0);
Guido van Rossum34679b71993-01-26 13:33:44 +0000290 int i;
291 if (list == NULL)
292 return NULL;
Guido van Rossum25c649f1997-11-04 17:04:34 +0000293 for (i = 0; PyImport_Inittab[i].name != NULL; i++) {
Guido van Rossuma027efa1997-05-05 20:56:21 +0000294 PyObject *name = PyString_FromString(
Guido van Rossum25c649f1997-11-04 17:04:34 +0000295 PyImport_Inittab[i].name);
Guido van Rossum34679b71993-01-26 13:33:44 +0000296 if (name == NULL)
297 break;
Guido van Rossum65bf9f21997-04-29 18:33:38 +0000298 PyList_Append(list, name);
299 Py_DECREF(name);
Guido van Rossum34679b71993-01-26 13:33:44 +0000300 }
Guido van Rossum65bf9f21997-04-29 18:33:38 +0000301 if (PyList_Sort(list) != 0) {
302 Py_DECREF(list);
Guido van Rossum1d5735e1994-08-30 08:27:36 +0000303 list = NULL;
304 }
Guido van Rossum8f49e121997-01-06 22:55:54 +0000305 if (list) {
Guido van Rossum65bf9f21997-04-29 18:33:38 +0000306 PyObject *v = PyList_AsTuple(list);
307 Py_DECREF(list);
Guido van Rossum8f49e121997-01-06 22:55:54 +0000308 list = v;
309 }
Guido van Rossum34679b71993-01-26 13:33:44 +0000310 return list;
311}
312
Guido van Rossum40552d01998-08-06 03:34:39 +0000313/* XXX This doc string is too long to be a single string literal in VC++ 5.0.
314 Two literals concatenated works just fine. If you have a K&R compiler
315 or other abomination that however *does* understand longer strings,
316 get rid of the !!! comment in the middle and the quotes that surround it. */
Guido van Rossumc3bc31e1998-06-27 19:43:25 +0000317static char sys_doc[] =
318"This module provides access to some objects used or maintained by the\n\
319interpreter and to functions that interact strongly with the interpreter.\n\
320\n\
321Dynamic objects:\n\
322\n\
323argv -- command line arguments; argv[0] is the script pathname if known\n\
324path -- module search path; path[0] is the script directory, else ''\n\
325modules -- dictionary of loaded modules\n\
326exitfunc -- you may set this to a function to be called when Python exits\n\
327\n\
328stdin -- standard input file object; used by raw_input() and input()\n\
329stdout -- standard output file object; used by the print statement\n\
330stderr -- standard error object; used for error messages\n\
331 By assigning another file object (or an object that behaves like a file)\n\
332 to one of these, it is possible to redirect all of the interpreter's I/O.\n\
333\n\
334last_type -- type of last uncaught exception\n\
335last_value -- value of last uncaught exception\n\
336last_traceback -- traceback of last uncaught exception\n\
337 These three are only available in an interactive session after a\n\
338 traceback has been printed.\n\
339\n\
340exc_type -- type of exception currently being handled\n\
341exc_value -- value of exception currently being handled\n\
342exc_traceback -- traceback of exception currently being handled\n\
343 The function exc_info() should be used instead of these three,\n\
344 because it is thread-safe.\n\
Guido van Rossuma71b5f41999-01-14 19:07:00 +0000345"
346#ifndef MS_WIN16
347/* Concatenating string here */
348"\n\
Guido van Rossumc3bc31e1998-06-27 19:43:25 +0000349Static objects:\n\
350\n\
351maxint -- the largest supported integer (the smallest is -maxint-1)\n\
352builtin_module_names -- tuple of module names built into this intepreter\n\
353version -- the version of this interpreter\n\
354copyright -- copyright notice pertaining to this interpreter\n\
355platform -- platform identifier\n\
356executable -- pathname of this Python interpreter\n\
357prefix -- prefix used to find the Python library\n\
358exec_prefix -- prefix used to find the machine-specific Python library\n\
359dllhandle -- [Windows only] integer handle of the Python DLL\n\
360winver -- [Windows only] version number of the Python DLL\n\
361__stdin__ -- the original stdin; don't use!\n\
362__stdout__ -- the original stdout; don't use!\n\
363__stderr__ -- the original stderr; don't use!\n\
364\n\
365Functions:\n\
366\n\
367exc_info() -- return thread-safe information about the current exception\n\
368exit() -- exit the interpreter by raising SystemExit\n\
369getrefcount() -- return the reference count for an object (plus one :-)\n\
370setcheckinterval() -- control how often the interpreter checks for events\n\
371setprofile() -- set the global profiling function\n\
372settrace() -- set the global debug tracing function\n\
373";
Guido van Rossuma71b5f41999-01-14 19:07:00 +0000374#endif
Guido van Rossumc3bc31e1998-06-27 19:43:25 +0000375
Guido van Rossum25ce5661997-08-02 03:10:38 +0000376PyObject *
377_PySys_Init()
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000378{
Guido van Rossum65bf9f21997-04-29 18:33:38 +0000379 extern int fclose Py_PROTO((FILE *));
Guido van Rossum25ce5661997-08-02 03:10:38 +0000380 PyObject *m, *v, *sysdict;
381 PyObject *sysin, *sysout, *syserr;
382
Guido van Rossumc3bc31e1998-06-27 19:43:25 +0000383 m = Py_InitModule3("sys", sys_methods, sys_doc);
Guido van Rossum65bf9f21997-04-29 18:33:38 +0000384 sysdict = PyModule_GetDict(m);
Guido van Rossum25ce5661997-08-02 03:10:38 +0000385
386 sysin = PyFile_FromFile(stdin, "<stdin>", "r", NULL);
387 sysout = PyFile_FromFile(stdout, "<stdout>", "w", NULL);
388 syserr = PyFile_FromFile(stderr, "<stderr>", "w", NULL);
Guido van Rossum65bf9f21997-04-29 18:33:38 +0000389 if (PyErr_Occurred())
Guido van Rossum25ce5661997-08-02 03:10:38 +0000390 return NULL;
Guido van Rossum65bf9f21997-04-29 18:33:38 +0000391 PyDict_SetItemString(sysdict, "stdin", sysin);
392 PyDict_SetItemString(sysdict, "stdout", sysout);
393 PyDict_SetItemString(sysdict, "stderr", syserr);
Guido van Rossumbd36dba1998-02-19 20:53:06 +0000394 /* Make backup copies for cleanup */
395 PyDict_SetItemString(sysdict, "__stdin__", sysin);
396 PyDict_SetItemString(sysdict, "__stdout__", sysout);
397 PyDict_SetItemString(sysdict, "__stderr__", syserr);
Guido van Rossum25ce5661997-08-02 03:10:38 +0000398 Py_XDECREF(sysin);
399 Py_XDECREF(sysout);
400 Py_XDECREF(syserr);
Guido van Rossum65bf9f21997-04-29 18:33:38 +0000401 PyDict_SetItemString(sysdict, "version",
402 v = PyString_FromString(Py_GetVersion()));
Barry Warsaw54892c41999-01-27 16:33:19 +0000403 Py_XDECREF(v);
Guido van Rossume0d7dae1999-01-03 12:55:39 +0000404 PyDict_SetItemString(sysdict, "hexversion",
405 v = PyInt_FromLong(PY_VERSION_HEX));
Guido van Rossum65bf9f21997-04-29 18:33:38 +0000406 Py_XDECREF(v);
407 PyDict_SetItemString(sysdict, "copyright",
408 v = PyString_FromString(Py_GetCopyright()));
409 Py_XDECREF(v);
410 PyDict_SetItemString(sysdict, "platform",
411 v = PyString_FromString(Py_GetPlatform()));
412 Py_XDECREF(v);
Guido van Rossumb2c8ec41997-05-22 20:41:20 +0000413 PyDict_SetItemString(sysdict, "executable",
414 v = PyString_FromString(Py_GetProgramFullPath()));
415 Py_XDECREF(v);
Guido van Rossum65bf9f21997-04-29 18:33:38 +0000416 PyDict_SetItemString(sysdict, "prefix",
417 v = PyString_FromString(Py_GetPrefix()));
418 Py_XDECREF(v);
419 PyDict_SetItemString(sysdict, "exec_prefix",
420 v = PyString_FromString(Py_GetExecPrefix()));
421 Py_XDECREF(v);
422 PyDict_SetItemString(sysdict, "maxint",
423 v = PyInt_FromLong(PyInt_GetMax()));
424 Py_XDECREF(v);
Guido van Rossum65bf9f21997-04-29 18:33:38 +0000425 PyDict_SetItemString(sysdict, "builtin_module_names",
Guido van Rossum1ae940a1995-01-02 19:04:15 +0000426 v = list_builtin_module_names());
Guido van Rossum65bf9f21997-04-29 18:33:38 +0000427 Py_XDECREF(v);
Guido van Rossum8b9ea871996-08-23 18:14:47 +0000428#ifdef MS_COREDLL
Guido van Rossum65bf9f21997-04-29 18:33:38 +0000429 PyDict_SetItemString(sysdict, "dllhandle",
430 v = PyInt_FromLong((int)PyWin_DLLhModule));
431 Py_XDECREF(v);
432 PyDict_SetItemString(sysdict, "winver",
Guido van Rossum6c1e5f21997-09-29 23:34:23 +0000433 v = PyString_FromString(PyWin_DLLVersionString));
Guido van Rossum65bf9f21997-04-29 18:33:38 +0000434 Py_XDECREF(v);
Guido van Rossumc606fe11996-04-09 02:37:57 +0000435#endif
Guido van Rossum65bf9f21997-04-29 18:33:38 +0000436 if (PyErr_Occurred())
Guido van Rossum25ce5661997-08-02 03:10:38 +0000437 return NULL;
438 return m;
Guido van Rossum5b3138b1990-11-18 17:41:40 +0000439}
440
Guido van Rossum65bf9f21997-04-29 18:33:38 +0000441static PyObject *
Guido van Rossum3f5da241990-12-20 15:06:42 +0000442makepathobject(path, delim)
443 char *path;
444 int delim;
Guido van Rossum5b3138b1990-11-18 17:41:40 +0000445{
Guido van Rossum3f5da241990-12-20 15:06:42 +0000446 int i, n;
447 char *p;
Guido van Rossum65bf9f21997-04-29 18:33:38 +0000448 PyObject *v, *w;
Guido van Rossum3f5da241990-12-20 15:06:42 +0000449
450 n = 1;
451 p = path;
452 while ((p = strchr(p, delim)) != NULL) {
453 n++;
454 p++;
Guido van Rossum5b3138b1990-11-18 17:41:40 +0000455 }
Guido van Rossum65bf9f21997-04-29 18:33:38 +0000456 v = PyList_New(n);
Guido van Rossum3f5da241990-12-20 15:06:42 +0000457 if (v == NULL)
458 return NULL;
459 for (i = 0; ; i++) {
460 p = strchr(path, delim);
461 if (p == NULL)
462 p = strchr(path, '\0'); /* End of string */
Guido van Rossum65bf9f21997-04-29 18:33:38 +0000463 w = PyString_FromStringAndSize(path, (int) (p - path));
Guido van Rossum3f5da241990-12-20 15:06:42 +0000464 if (w == NULL) {
Guido van Rossum65bf9f21997-04-29 18:33:38 +0000465 Py_DECREF(v);
Guido van Rossum3f5da241990-12-20 15:06:42 +0000466 return NULL;
467 }
Guido van Rossum65bf9f21997-04-29 18:33:38 +0000468 PyList_SetItem(v, i, w);
Guido van Rossum3f5da241990-12-20 15:06:42 +0000469 if (*p == '\0')
470 break;
471 path = p+1;
472 }
473 return v;
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000474}
475
476void
Guido van Rossum65bf9f21997-04-29 18:33:38 +0000477PySys_SetPath(path)
Guido van Rossum3f5da241990-12-20 15:06:42 +0000478 char *path;
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000479{
Guido van Rossum65bf9f21997-04-29 18:33:38 +0000480 PyObject *v;
Guido van Rossum3f5da241990-12-20 15:06:42 +0000481 if ((v = makepathobject(path, DELIM)) == NULL)
Guido van Rossum65bf9f21997-04-29 18:33:38 +0000482 Py_FatalError("can't create sys.path");
483 if (PySys_SetObject("path", v) != 0)
484 Py_FatalError("can't assign sys.path");
485 Py_DECREF(v);
Guido van Rossum3f5da241990-12-20 15:06:42 +0000486}
487
Guido van Rossum65bf9f21997-04-29 18:33:38 +0000488static PyObject *
Guido van Rossum3f5da241990-12-20 15:06:42 +0000489makeargvobject(argc, argv)
490 int argc;
491 char **argv;
492{
Guido van Rossum65bf9f21997-04-29 18:33:38 +0000493 PyObject *av;
Guido van Rossumee3a2991992-01-14 18:42:53 +0000494 if (argc <= 0 || argv == NULL) {
495 /* Ensure at least one (empty) argument is seen */
496 static char *empty_argv[1] = {""};
497 argv = empty_argv;
498 argc = 1;
499 }
Guido van Rossum65bf9f21997-04-29 18:33:38 +0000500 av = PyList_New(argc);
Guido van Rossum3f5da241990-12-20 15:06:42 +0000501 if (av != NULL) {
Guido van Rossum5b3138b1990-11-18 17:41:40 +0000502 int i;
Guido van Rossum3f5da241990-12-20 15:06:42 +0000503 for (i = 0; i < argc; i++) {
Guido van Rossum65bf9f21997-04-29 18:33:38 +0000504 PyObject *v = PyString_FromString(argv[i]);
Guido van Rossum3f5da241990-12-20 15:06:42 +0000505 if (v == NULL) {
Guido van Rossum65bf9f21997-04-29 18:33:38 +0000506 Py_DECREF(av);
Guido van Rossum3f5da241990-12-20 15:06:42 +0000507 av = NULL;
508 break;
Guido van Rossum5b3138b1990-11-18 17:41:40 +0000509 }
Guido van Rossum65bf9f21997-04-29 18:33:38 +0000510 PyList_SetItem(av, i, v);
Guido van Rossum5b3138b1990-11-18 17:41:40 +0000511 }
Guido van Rossum5b3138b1990-11-18 17:41:40 +0000512 }
Guido van Rossum3f5da241990-12-20 15:06:42 +0000513 return av;
514}
515
516void
Guido van Rossum65bf9f21997-04-29 18:33:38 +0000517PySys_SetArgv(argc, argv)
Guido van Rossum3f5da241990-12-20 15:06:42 +0000518 int argc;
519 char **argv;
520{
Guido van Rossum65bf9f21997-04-29 18:33:38 +0000521 PyObject *av = makeargvobject(argc, argv);
522 PyObject *path = PySys_GetObject("path");
Guido van Rossum3f5da241990-12-20 15:06:42 +0000523 if (av == NULL)
Guido van Rossum65bf9f21997-04-29 18:33:38 +0000524 Py_FatalError("no mem for sys.argv");
525 if (PySys_SetObject("argv", av) != 0)
526 Py_FatalError("can't assign sys.argv");
Guido van Rossum94a96671996-07-30 20:35:50 +0000527 if (path != NULL) {
Guido van Rossumc474dea1997-04-25 15:38:31 +0000528 char *argv0 = argv[0];
Guido van Rossum94a96671996-07-30 20:35:50 +0000529 char *p = NULL;
Guido van Rossumcc883411996-09-10 14:44:21 +0000530 int n = 0;
Guido van Rossum65bf9f21997-04-29 18:33:38 +0000531 PyObject *a;
Guido van Rossumc474dea1997-04-25 15:38:31 +0000532#ifdef HAVE_READLINK
533 char link[MAXPATHLEN+1];
534 char argv0copy[2*MAXPATHLEN+1];
535 int nr = 0;
536 if (argc > 0 && argv0 != NULL)
537 nr = readlink(argv0, link, MAXPATHLEN);
538 if (nr > 0) {
539 /* It's a symlink */
540 link[nr] = '\0';
541 if (link[0] == SEP)
542 argv0 = link; /* Link to absolute path */
543 else if (strchr(link, SEP) == NULL)
544 ; /* Link without path */
545 else {
546 /* Must join(dirname(argv0), link) */
547 char *q = strrchr(argv0, SEP);
548 if (q == NULL)
549 argv0 = link; /* argv0 without path */
550 else {
551 /* Must make a copy */
552 strcpy(argv0copy, argv0);
553 q = strrchr(argv0copy, SEP);
554 strcpy(q+1, link);
555 argv0 = argv0copy;
556 }
557 }
558 }
559#endif /* HAVE_READLINK */
Guido van Rossumcc883411996-09-10 14:44:21 +0000560#if SEP == '\\' /* Special case for MS filename syntax */
Guido van Rossumc474dea1997-04-25 15:38:31 +0000561 if (argc > 0 && argv0 != NULL) {
Guido van Rossumcc883411996-09-10 14:44:21 +0000562 char *q;
Guido van Rossumc474dea1997-04-25 15:38:31 +0000563 p = strrchr(argv0, SEP);
Guido van Rossumcc883411996-09-10 14:44:21 +0000564 /* Test for alternate separator */
Guido van Rossumc474dea1997-04-25 15:38:31 +0000565 q = strrchr(p ? p : argv0, '/');
Guido van Rossumcc883411996-09-10 14:44:21 +0000566 if (q != NULL)
567 p = q;
568 if (p != NULL) {
Guido van Rossumc474dea1997-04-25 15:38:31 +0000569 n = p + 1 - argv0;
Guido van Rossumcc883411996-09-10 14:44:21 +0000570 if (n > 1 && p[-1] != ':')
571 n--; /* Drop trailing separator */
572 }
573 }
574#else /* All other filename syntaxes */
Guido van Rossumc474dea1997-04-25 15:38:31 +0000575 if (argc > 0 && argv0 != NULL)
576 p = strrchr(argv0, SEP);
Guido van Rossumcc883411996-09-10 14:44:21 +0000577 if (p != NULL) {
Guido van Rossumc474dea1997-04-25 15:38:31 +0000578 n = p + 1 - argv0;
Guido van Rossumcc883411996-09-10 14:44:21 +0000579#if SEP == '/' /* Special case for Unix filename syntax */
580 if (n > 1)
581 n--; /* Drop trailing separator */
582#endif /* Unix */
583 }
584#endif /* All others */
Guido van Rossum65bf9f21997-04-29 18:33:38 +0000585 a = PyString_FromStringAndSize(argv0, n);
Guido van Rossum94a96671996-07-30 20:35:50 +0000586 if (a == NULL)
Guido van Rossum65bf9f21997-04-29 18:33:38 +0000587 Py_FatalError("no mem for sys.path insertion");
588 if (PyList_Insert(path, 0, a) < 0)
589 Py_FatalError("sys.path.insert(0) failed");
590 Py_DECREF(a);
Guido van Rossuma63d9f41996-07-24 01:31:37 +0000591 }
Guido van Rossum65bf9f21997-04-29 18:33:38 +0000592 Py_DECREF(av);
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000593}
Guido van Rossuma890e681998-05-12 14:59:24 +0000594
595
596/* APIs to write to sys.stdout or sys.stderr using a printf-like interface.
597 Adapted from code submitted by Just van Rossum.
598
599 PySys_WriteStdout(format, ...)
600 PySys_WriteStderr(format, ...)
601
602 The first function writes to sys.stdout; the second to sys.stderr. When
603 there is a problem, they write to the real (C level) stdout or stderr;
Guido van Rossum8442af31998-10-12 18:22:10 +0000604 no exceptions are raised.
Guido van Rossuma890e681998-05-12 14:59:24 +0000605
606 Both take a printf-style format string as their first argument followed
607 by a variable length argument list determined by the format string.
608
609 *** WARNING ***
610
611 The format should limit the total size of the formatted output string to
612 1000 bytes. In particular, this means that no unrestricted "%s" formats
613 should occur; these should be limited using "%.<N>s where <N> is a
614 decimal number calculated so that <N> plus the maximum size of other
615 formatted text does not exceed 1000 bytes. Also watch out for "%f",
616 which can print hundreds of digits for very large numbers.
617
618 */
619
620static void
621mywrite(name, fp, format, va)
622 char *name;
623 FILE *fp;
624 const char *format;
625 va_list va;
626{
627 PyObject *file;
Guido van Rossum8442af31998-10-12 18:22:10 +0000628 PyObject *error_type, *error_value, *error_traceback;
Guido van Rossuma890e681998-05-12 14:59:24 +0000629
Guido van Rossum8442af31998-10-12 18:22:10 +0000630 PyErr_Fetch(&error_type, &error_value, &error_traceback);
Guido van Rossuma890e681998-05-12 14:59:24 +0000631 file = PySys_GetObject(name);
632 if (file == NULL || PyFile_AsFile(file) == fp)
633 vfprintf(fp, format, va);
634 else {
635 char buffer[1001];
Guido van Rossum8442af31998-10-12 18:22:10 +0000636 if (vsprintf(buffer, format, va) >= sizeof(buffer))
637 Py_FatalError("PySys_WriteStdout/err: buffer overrun");
Guido van Rossuma890e681998-05-12 14:59:24 +0000638 if (PyFile_WriteString(buffer, file) != 0) {
639 PyErr_Clear();
640 fputs(buffer, fp);
641 }
642 }
Guido van Rossum8442af31998-10-12 18:22:10 +0000643 PyErr_Restore(error_type, error_value, error_traceback);
Guido van Rossuma890e681998-05-12 14:59:24 +0000644}
645
646void
647#ifdef HAVE_STDARG_PROTOTYPES
648PySys_WriteStdout(const char *format, ...)
649#else
650PySys_WriteStdout(va_alist)
651 va_dcl
652#endif
653{
654 va_list va;
655
656#ifdef HAVE_STDARG_PROTOTYPES
657 va_start(va, format);
658#else
659 char *format;
660 va_start(va);
661 format = va_arg(va, char *);
662#endif
663 mywrite("stdout", stdout, format, va);
664 va_end(va);
665}
666
667void
668#ifdef HAVE_STDARG_PROTOTYPES
669PySys_WriteStderr(const char *format, ...)
670#else
671PySys_WriteStderr(va_alist)
672 va_dcl
673#endif
674{
675 va_list va;
676
677#ifdef HAVE_STDARG_PROTOTYPES
678 va_start(va, format);
679#else
680 char *format;
681 va_start(va);
682 format = va_arg(va, char *);
683#endif
684 mywrite("stderr", stderr, format, va);
685 va_end(va);
686}