mirror of
https://github.com/GNOME/libxml2.git
synced 2025-02-05 17:39:40 +08:00
added the 'usual' setup.py to allow building a libxml2-python module based
* python/README python/generator.py python/libxml.c python/setup.py: added the 'usual' setup.py to allow building a libxml2-python module based on the same code. The initialization is however different the 2 .so files fo libxml2 and libxslt are identical and they entry point initialize both libraries. this is done to avoid some possible nasty problem since the Python don't merge the maps of all shared modules. Daniel
This commit is contained in:
parent
fcbfa2d9dd
commit
0fea6f45cd
10
ChangeLog
10
ChangeLog
@ -1,3 +1,13 @@
|
||||
Fri Feb 22 23:44:57 CET 2002 Daniel Veillard <daniel@veillard.com>
|
||||
|
||||
* python/README python/generator.py python/libxml.c python/setup.py:
|
||||
added the 'usual' setup.py to allow building a libxml2-python
|
||||
module based on the same code. The initialization is however
|
||||
different the 2 .so files fo libxml2 and libxslt are identical and
|
||||
they entry point initialize both libraries. this is done to avoid
|
||||
some possible nasty problem since the Python don't merge the maps
|
||||
of all shared modules.
|
||||
|
||||
Wed Feb 20 23:16:08 CET 2002 Daniel Veillard <daniel@veillard.com>
|
||||
|
||||
* parser.c: fixed a push/encoding bug reported by Michael
|
||||
|
34
python/README
Normal file
34
python/README
Normal file
@ -0,0 +1,34 @@
|
||||
Module libxml2-python
|
||||
=====================
|
||||
|
||||
This is the libxml2 python module, providing access to the
|
||||
libxml2 and libxslt (if available) libraries. For general
|
||||
informationss on those XML and XSLT libraries check their
|
||||
web pages at :
|
||||
http://xmlsoft.org/
|
||||
and
|
||||
http://xmlsoft.org/XSLT/
|
||||
|
||||
The latest version of the sources for this module and the
|
||||
associated libraries can be found at:
|
||||
ftp://xmlsoft.org/
|
||||
|
||||
Binaries packages of the libxml2 and libxslt libraries can
|
||||
be found either on the FTP site for Linux, from external
|
||||
sources linked from the web pages, or as part of your set of
|
||||
packages provided with your operating system.
|
||||
|
||||
NOTE:
|
||||
this module distribution is not the primary distribution
|
||||
of the libxml2 and libxslt Python binding code, but as
|
||||
the Python way of packaging those for non-Linux systems.
|
||||
The main sources are the libxml2 and libxslt tar.gz found on
|
||||
the site. One side effect is that the official RPM packages for
|
||||
those modules are not generated from the libxml2-python
|
||||
distributions but as part of the normal RPM packaging of
|
||||
those two libraries.
|
||||
The RPM packages can be found at:
|
||||
http://rpmfind.net/linux/rpm2html/search.php?query=libxml2-python
|
||||
http://rpmfind.net/linux/rpm2html/search.php?query=libxslt-python
|
||||
|
||||
Daniel Veillard
|
@ -5,6 +5,7 @@
|
||||
|
||||
functions = {}
|
||||
|
||||
import sys
|
||||
import string
|
||||
|
||||
#######################################################################
|
||||
@ -408,6 +409,18 @@ def print_function_wrapper(name, output, export, include):
|
||||
output.write("}\n\n")
|
||||
return 1
|
||||
|
||||
def buildStubs():
|
||||
global py_types
|
||||
global py_return_types
|
||||
global unknown_types
|
||||
|
||||
try:
|
||||
f = open("libxml2-api.xml")
|
||||
data = f.read()
|
||||
(parser, target) = getparser()
|
||||
parser.feed(data)
|
||||
parser.close()
|
||||
except IOError, msg:
|
||||
try:
|
||||
f = open("../doc/libxml2-api.xml")
|
||||
data = f.read()
|
||||
@ -416,6 +429,7 @@ try:
|
||||
parser.close()
|
||||
except IOError, msg:
|
||||
print file, ":", msg
|
||||
sys.exit(1)
|
||||
|
||||
n = len(functions.keys())
|
||||
print "Found %d functions in libxml2-api.xml" % (n)
|
||||
@ -531,36 +545,8 @@ classes_destructors = {
|
||||
function_classes = {}
|
||||
|
||||
function_classes["None"] = []
|
||||
for type in classes_type.keys():
|
||||
function_classes[classes_type[type][2]] = []
|
||||
|
||||
#
|
||||
# Build the list of C types to look for ordered to start with primary classes
|
||||
#
|
||||
ctypes = []
|
||||
classes_list = []
|
||||
ctypes_processed = {}
|
||||
classes_processed = {}
|
||||
for classe in primary_classes:
|
||||
classes_list.append(classe)
|
||||
classes_processed[classe] = ()
|
||||
for type in classes_type.keys():
|
||||
tinfo = classes_type[type]
|
||||
if tinfo[2] == classe:
|
||||
ctypes.append(type)
|
||||
ctypes_processed[type] = ()
|
||||
for type in classes_type.keys():
|
||||
if ctypes_processed.has_key(type):
|
||||
continue
|
||||
tinfo = classes_type[type]
|
||||
if not classes_processed.has_key(tinfo[2]):
|
||||
classes_list.append(tinfo[2])
|
||||
classes_processed[tinfo[2]] = ()
|
||||
|
||||
ctypes.append(type)
|
||||
ctypes_processed[type] = ()
|
||||
|
||||
def nameFixup(function, classe, type, file):
|
||||
def nameFixup(name, classe, type, file):
|
||||
listname = classe + "List"
|
||||
ll = len(listname)
|
||||
l = len(classe)
|
||||
@ -613,6 +599,93 @@ def nameFixup(function, classe, type, file):
|
||||
func = "UTF8" + func[4:]
|
||||
return func
|
||||
|
||||
|
||||
def functionCompare(info1, info2):
|
||||
(index1, func1, name1, ret1, args1, file1) = info1
|
||||
(index2, func2, name2, ret2, args2, file2) = info2
|
||||
if file1 == file2:
|
||||
if func1 < func2:
|
||||
return -1
|
||||
if func1 > func2:
|
||||
return 1
|
||||
if file1 == "python_accessor":
|
||||
return -1
|
||||
if file2 == "python_accessor":
|
||||
return 1
|
||||
if file1 < file2:
|
||||
return -1
|
||||
if file1 > file2:
|
||||
return 1
|
||||
return 0
|
||||
|
||||
def writeDoc(name, args, indent, output):
|
||||
if functions[name][0] == None or functions[name][0] == "":
|
||||
return
|
||||
val = functions[name][0]
|
||||
val = string.replace(val, "NULL", "None");
|
||||
output.write(indent)
|
||||
output.write('"""')
|
||||
while len(val) > 60:
|
||||
str = val[0:60]
|
||||
i = string.rfind(str, " ");
|
||||
if i < 0:
|
||||
i = 60
|
||||
str = val[0:i]
|
||||
val = val[i:]
|
||||
output.write(str)
|
||||
output.write('\n ');
|
||||
output.write(indent)
|
||||
output.write(val);
|
||||
output.write('"""\n')
|
||||
|
||||
def buildWrappers():
|
||||
global ctypes
|
||||
global py_types
|
||||
global py_return_types
|
||||
global unknown_types
|
||||
global functions
|
||||
global function_classes
|
||||
global classes_type
|
||||
global classes_list
|
||||
global converter_type
|
||||
global primary_classes
|
||||
global converter_type
|
||||
global classes_ancestor
|
||||
global converter_type
|
||||
global primary_classes
|
||||
global classes_ancestor
|
||||
global classes_destructors
|
||||
|
||||
for type in classes_type.keys():
|
||||
function_classes[classes_type[type][2]] = []
|
||||
|
||||
#
|
||||
# Build the list of C types to look for ordered to start
|
||||
# with primary classes
|
||||
#
|
||||
ctypes = []
|
||||
classes_list = []
|
||||
ctypes_processed = {}
|
||||
classes_processed = {}
|
||||
for classe in primary_classes:
|
||||
classes_list.append(classe)
|
||||
classes_processed[classe] = ()
|
||||
for type in classes_type.keys():
|
||||
tinfo = classes_type[type]
|
||||
if tinfo[2] == classe:
|
||||
ctypes.append(type)
|
||||
ctypes_processed[type] = ()
|
||||
for type in classes_type.keys():
|
||||
if ctypes_processed.has_key(type):
|
||||
continue
|
||||
tinfo = classes_type[type]
|
||||
if not classes_processed.has_key(tinfo[2]):
|
||||
classes_list.append(tinfo[2])
|
||||
classes_processed[tinfo[2]] = ()
|
||||
|
||||
ctypes.append(type)
|
||||
ctypes_processed[type] = ()
|
||||
|
||||
for name in functions.keys():
|
||||
found = 0;
|
||||
(desc, ret, args, file) = functions[name]
|
||||
@ -657,44 +730,6 @@ classes = open("libxml2class.py", "w")
|
||||
txt = open("libxml2class.txt", "w")
|
||||
txt.write(" Generated Classes for libxml2-python\n\n")
|
||||
|
||||
def functionCompare(info1, info2):
|
||||
(index1, func1, name1, ret1, args1, file1) = info1
|
||||
(index2, func2, name2, ret2, args2, file2) = info2
|
||||
if file1 == file2:
|
||||
if func1 < func2:
|
||||
return -1
|
||||
if func1 > func2:
|
||||
return 1
|
||||
if file1 == "python_accessor":
|
||||
return -1
|
||||
if file2 == "python_accessor":
|
||||
return 1
|
||||
if file1 < file2:
|
||||
return -1
|
||||
if file1 > file2:
|
||||
return 1
|
||||
return 0
|
||||
|
||||
def writeDoc(name, args, indent, output):
|
||||
if functions[name][0] == None or functions[name][0] == "":
|
||||
return
|
||||
val = functions[name][0]
|
||||
val = string.replace(val, "NULL", "None");
|
||||
output.write(indent)
|
||||
output.write('"""')
|
||||
while len(val) > 60:
|
||||
str = val[0:60]
|
||||
i = string.rfind(str, " ");
|
||||
if i < 0:
|
||||
i = 60
|
||||
str = val[0:i]
|
||||
val = val[i:]
|
||||
output.write(str)
|
||||
output.write('\n ');
|
||||
output.write(indent)
|
||||
output.write(val);
|
||||
output.write('"""\n')
|
||||
|
||||
txt.write("#\n# Global functions of the module\n#\n\n")
|
||||
if function_classes.has_key("None"):
|
||||
flist = function_classes["None"]
|
||||
@ -849,3 +884,7 @@ for classname in classes_list:
|
||||
|
||||
txt.close()
|
||||
classes.close()
|
||||
|
||||
|
||||
buildStubs()
|
||||
buildWrappers()
|
||||
|
@ -4,6 +4,9 @@
|
||||
* entry points where an automatically generated stub is either
|
||||
* unpractical or would not match cleanly the Python model.
|
||||
*
|
||||
* If compiled with MERGED_MODULES, the entry point will be used to
|
||||
* initialize both the libxml2 and the libxslt wrappers
|
||||
*
|
||||
* See Copyright for the status of this software.
|
||||
*
|
||||
* daniel@veillard.com
|
||||
@ -1418,9 +1421,16 @@ static PyMethodDef libxmlMethods[] = {
|
||||
{ NULL }
|
||||
};
|
||||
|
||||
#ifdef MERGED_MODULES
|
||||
extern void initlibxml2mod(void);
|
||||
#endif
|
||||
|
||||
void initlibxml2mod(void) {
|
||||
PyObject *m;
|
||||
m = Py_InitModule("libxml2mod", libxmlMethods);
|
||||
libxml_xmlErrorInitialize();
|
||||
#ifdef MERGED_MODULES
|
||||
initlibxsltmod();
|
||||
#endif
|
||||
}
|
||||
|
||||
|
120
python/setup.py
Executable file
120
python/setup.py
Executable file
@ -0,0 +1,120 @@
|
||||
#!/usr/bin/python -u
|
||||
#
|
||||
# Setup script for libxml2 and libxslt if found
|
||||
#
|
||||
import sys, os
|
||||
from distutils.core import setup, Extension
|
||||
|
||||
|
||||
def missing(file):
|
||||
if os.access(file, os.R_OK) == 0:
|
||||
return 1
|
||||
return 0
|
||||
|
||||
xml_files = ["libxml2-api.xml", "libxml2-python-api.xml",
|
||||
"libxml.c", "libxml.py", "libxml_wrap.h", "types.c",
|
||||
"xmlgenerator.py", "README", "TODO"]
|
||||
|
||||
xslt_files = ["libxslt-api.xml", "libxslt-python-api.xml",
|
||||
"libxslt.c", "libxsl.py", "libxslt_wrap.h",
|
||||
"xsltgenerator.py"]
|
||||
|
||||
if missing("libxml2-py.c") or missing("libxml2.py"):
|
||||
try:
|
||||
try:
|
||||
import xmlgenerator
|
||||
except:
|
||||
import generator
|
||||
except:
|
||||
print "failed to find and generate stubs for libxml2, aborting ..."
|
||||
print sys.exc_type, sys.exc_value
|
||||
sys.exit(1)
|
||||
|
||||
head = open("libxml.py", "r")
|
||||
generated = open("libxml2class.py", "r")
|
||||
result = open("libxml2.py", "w")
|
||||
for line in head.readlines():
|
||||
result.write(line)
|
||||
for line in generated.readlines():
|
||||
result.write(line)
|
||||
head.close()
|
||||
generated.close()
|
||||
result.close()
|
||||
|
||||
with_xslt=0
|
||||
if missing("libxslt-py.c") or missing("libxslt.py"):
|
||||
if missing("xsltgenerator.py") or missing("libxslt-api.xml"):
|
||||
print "libxslt stub generator not found, libxslt not built"
|
||||
else:
|
||||
try:
|
||||
import xsltgenerator
|
||||
except:
|
||||
print "failed to generate stubs for libxslt, aborting ..."
|
||||
print sys.exc_type, sys.exc_value
|
||||
else:
|
||||
head = open("libxsl.py", "r")
|
||||
generated = open("libxsltclass.py", "r")
|
||||
result = open("libxslt.py", "w")
|
||||
for line in head.readlines():
|
||||
result.write(line)
|
||||
for line in generated.readlines():
|
||||
result.write(line)
|
||||
head.close()
|
||||
generated.close()
|
||||
result.close()
|
||||
with_xslt=1
|
||||
else:
|
||||
with_xslt=1
|
||||
|
||||
|
||||
descr = "libxml2 package"
|
||||
modules = [ 'libxml2' ]
|
||||
c_files = ['libxml2-py.c', 'libxml.c', 'types.c' ]
|
||||
includes= ["/usr/include/libxml2"]
|
||||
libs = ["xml2", "m", "z"]
|
||||
macros = []
|
||||
if with_xslt == 1:
|
||||
descr = "libxml2 and libxslt package"
|
||||
#
|
||||
# We are gonna build 2 identical shared libs with merge initializing
|
||||
# both libxml2mod and libxsltmod
|
||||
#
|
||||
c_files = c_files + ['libxslt-py.c', 'libxslt.c']
|
||||
libs.insert(0, 'xslt')
|
||||
includes.append("/usr/include/libxslt")
|
||||
modules.append('libxslt')
|
||||
macros.append(('MERGED_MODULES', '1'))
|
||||
|
||||
|
||||
extens=[Extension('libxml2mod', c_files, include_dirs=includes,
|
||||
libraries=libs, define_macros=macros)]
|
||||
if with_xslt == 1:
|
||||
extens.append(Extension('libxsltmod', c_files, include_dirs=includes,
|
||||
libraries=libs))
|
||||
|
||||
if missing("MANIFEST"):
|
||||
global xml_files
|
||||
|
||||
manifest = open("MANIFEST", "w")
|
||||
manifest.write("setup.py\n")
|
||||
for file in xml_files:
|
||||
manifest.write(file + "\n")
|
||||
if with_xslt == 1:
|
||||
for file in xslt_files:
|
||||
manifest.write(file + "\n")
|
||||
manifest.close()
|
||||
|
||||
setup (name = "libxml2-python",
|
||||
version = "2.4.16",
|
||||
description = descr,
|
||||
author = "Daniel Veillard",
|
||||
author_email = "veillard@redhat.com",
|
||||
url = "http://xmlsoft.org/python.html",
|
||||
licence="MIT Licence",
|
||||
|
||||
py_modules=modules,
|
||||
ext_modules=extens,
|
||||
)
|
||||
|
||||
sys.exit(0)
|
||||
|
Loading…
Reference in New Issue
Block a user