1994-10-08 16:30:50 -03:00
|
|
|
/* Example of embedding Python in another program */
|
|
|
|
|
1995-03-28 05:22:53 -04:00
|
|
|
#include "Python.h"
|
1994-10-08 16:30:50 -03:00
|
|
|
|
2008-10-17 12:54:44 -03:00
|
|
|
PyObject* PyInit_xyzzy(void); /* Forward */
|
1997-12-25 00:51:41 -04:00
|
|
|
|
2000-07-22 16:25:51 -03:00
|
|
|
main(int argc, char **argv)
|
1994-10-08 16:30:50 -03:00
|
|
|
{
|
2010-05-09 13:14:21 -03:00
|
|
|
/* Ignore passed-in argc/argv. If desired, conversion
|
|
|
|
should use mbstowcs to convert them. */
|
|
|
|
wchar_t *args[] = {L"embed", L"hello", 0};
|
2008-10-17 12:54:44 -03:00
|
|
|
|
2010-05-09 13:14:21 -03:00
|
|
|
/* Pass argv[0] to the Python interpreter */
|
|
|
|
Py_SetProgramName(args[0]);
|
2008-10-17 12:54:44 -03:00
|
|
|
|
2010-05-09 13:14:21 -03:00
|
|
|
/* Add a static module */
|
|
|
|
PyImport_AppendInittab("xyzzy", PyInit_xyzzy);
|
1994-10-08 16:30:50 -03:00
|
|
|
|
2010-05-09 13:14:21 -03:00
|
|
|
/* Initialize the Python interpreter. Required. */
|
|
|
|
Py_Initialize();
|
1994-10-08 16:30:50 -03:00
|
|
|
|
2010-05-09 13:14:21 -03:00
|
|
|
/* Define sys.argv. It is up to the application if you
|
|
|
|
want this; you can also let it undefined (since the Python
|
|
|
|
code is generally not a main program it has no business
|
Merged revisions 83393,83396,83398,83404-83405,83408 via svnmerge from
svn+ssh://svn.python.org/python/branches/py3k
........
r83393 | georg.brandl | 2010-08-01 10:35:29 +0200 (So, 01 Aug 2010) | 1 line
#1690103: fix initial namespace for code run with trace.main().
........
r83396 | georg.brandl | 2010-08-01 10:52:32 +0200 (So, 01 Aug 2010) | 1 line
#4810: document "--" option separator in timeit help.
........
r83398 | georg.brandl | 2010-08-01 11:06:34 +0200 (So, 01 Aug 2010) | 1 line
#8826: the "expires" attribute value is a date string with spaces, but apparently not all user-agents put it in quotes. Handle that as a special case.
........
r83404 | georg.brandl | 2010-08-01 16:25:22 +0200 (So, 01 Aug 2010) | 1 line
#6439: fix argument type for PySys_SetArgvEx() and Py_SetProgramName() in Demo/embed code.
........
r83405 | georg.brandl | 2010-08-01 16:38:17 +0200 (So, 01 Aug 2010) | 1 line
#4943: do not try to include drive letters (and colons) when looking for a probably module name.
........
r83408 | georg.brandl | 2010-08-01 17:30:56 +0200 (So, 01 Aug 2010) | 1 line
#5551: symbolic links never can be mount points. Fixes the fix for #1713.
........
2010-08-01 15:56:30 -03:00
|
|
|
touching sys.argv...)
|
|
|
|
|
|
|
|
If the third argument is true, sys.path is modified to include
|
|
|
|
either the directory containing the script named by argv[0], or
|
|
|
|
the current working directory. This can be risky; if you run
|
|
|
|
an application embedding Python in a directory controlled by
|
|
|
|
someone else, attackers could put a Trojan-horse module in the
|
|
|
|
directory (say, a file named os.py) that your application would
|
|
|
|
then import and run.
|
|
|
|
*/
|
|
|
|
PySys_SetArgvEx(2, args, 0);
|
1994-10-08 16:30:50 -03:00
|
|
|
|
2010-05-09 13:14:21 -03:00
|
|
|
/* Do some application specific code */
|
|
|
|
printf("Hello, brave new world\n\n");
|
1994-10-08 16:30:50 -03:00
|
|
|
|
2010-05-09 13:14:21 -03:00
|
|
|
/* Execute some Python statements (in module __main__) */
|
|
|
|
PyRun_SimpleString("import sys\n");
|
|
|
|
PyRun_SimpleString("print(sys.builtin_module_names)\n");
|
|
|
|
PyRun_SimpleString("print(sys.modules.keys())\n");
|
|
|
|
PyRun_SimpleString("print(sys.executable)\n");
|
|
|
|
PyRun_SimpleString("print(sys.argv)\n");
|
1994-10-08 16:30:50 -03:00
|
|
|
|
2010-05-09 13:14:21 -03:00
|
|
|
/* Note that you can call any public function of the Python
|
|
|
|
interpreter here, e.g. call_object(). */
|
1994-10-08 16:30:50 -03:00
|
|
|
|
2010-05-09 13:14:21 -03:00
|
|
|
/* Some more application specific code */
|
|
|
|
printf("\nGoodbye, cruel world\n");
|
1994-10-08 16:30:50 -03:00
|
|
|
|
2010-05-09 13:14:21 -03:00
|
|
|
/* Exit, cleaning up the interpreter */
|
|
|
|
Py_Exit(0);
|
|
|
|
/*NOTREACHED*/
|
1994-10-08 16:30:50 -03:00
|
|
|
}
|
|
|
|
|
1997-12-25 00:51:41 -04:00
|
|
|
/* A static module */
|
|
|
|
|
2000-07-22 16:25:51 -03:00
|
|
|
/* 'self' is not used */
|
1997-12-25 00:51:41 -04:00
|
|
|
static PyObject *
|
2001-01-10 13:09:00 -04:00
|
|
|
xyzzy_foo(PyObject *self, PyObject* args)
|
1997-12-25 00:51:41 -04:00
|
|
|
{
|
2010-05-09 13:14:21 -03:00
|
|
|
return PyLong_FromLong(42L);
|
1997-12-25 00:51:41 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
static PyMethodDef xyzzy_methods[] = {
|
2010-05-09 13:14:21 -03:00
|
|
|
{"foo", xyzzy_foo, METH_NOARGS,
|
|
|
|
"Return the meaning of everything."},
|
|
|
|
{NULL, NULL} /* sentinel */
|
1997-12-25 00:51:41 -04:00
|
|
|
};
|
|
|
|
|
2008-10-17 12:54:44 -03:00
|
|
|
static struct PyModuleDef xyzzymodule = {
|
2010-05-09 13:14:21 -03:00
|
|
|
{}, /* m_base */
|
|
|
|
"xyzzy", /* m_name */
|
|
|
|
0, /* m_doc */
|
|
|
|
0, /* m_size */
|
|
|
|
xyzzy_methods, /* m_methods */
|
|
|
|
0, /* m_reload */
|
|
|
|
0, /* m_traverse */
|
|
|
|
0, /* m_clear */
|
|
|
|
0, /* m_free */
|
2008-10-17 12:54:44 -03:00
|
|
|
};
|
|
|
|
|
|
|
|
PyObject*
|
|
|
|
PyInit_xyzzy(void)
|
1997-12-25 00:51:41 -04:00
|
|
|
{
|
2010-05-09 13:14:21 -03:00
|
|
|
return PyModule_Create(&xyzzymodule);
|
1997-12-25 00:51:41 -04:00
|
|
|
}
|