mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
135 lines
4.4 KiB
Python
Executable File
135 lines
4.4 KiB
Python
Executable File
# ***** BEGIN LICENSE BLOCK *****
|
|
# Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
|
#
|
|
# The contents of this file are subject to the Mozilla Public License Version
|
|
# 1.1 (the "License"); you may not use this file except in compliance with
|
|
# the License. You may obtain a copy of the License at
|
|
# http://www.mozilla.org/MPL/
|
|
#
|
|
# Software distributed under the License is distributed on an "AS IS" basis,
|
|
# WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
|
# for the specific language governing rights and limitations under the
|
|
# License.
|
|
#
|
|
# The Original Code is mozilla.org code.
|
|
#
|
|
# Contributor(s):
|
|
# Chris Jones <jones.chris.g@gmail.com>
|
|
#
|
|
# Alternatively, the contents of this file may be used under the terms of
|
|
# either of the GNU General Public License Version 2 or later (the "GPL"),
|
|
# or the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
|
# in which case the provisions of the GPL or the LGPL are applicable instead
|
|
# of those above. If you wish to allow use of your version of this file only
|
|
# under the terms of either the GPL or the LGPL, and not to allow others to
|
|
# use your version of this file under the terms of the MPL, indicate your
|
|
# decision by deleting the provisions above and replace them with the notice
|
|
# and other provisions required by the GPL or the LGPL. If you do not delete
|
|
# the provisions above, a recipient may use your version of this file under
|
|
# the terms of any one of the MPL, the GPL or the LGPL.
|
|
#
|
|
# ***** END LICENSE BLOCK *****
|
|
|
|
import optparse, os, re, sys
|
|
from cStringIO import StringIO
|
|
|
|
import ipdl
|
|
|
|
def log(minv, fmt, *args):
|
|
if _verbosity >= minv:
|
|
print fmt % args
|
|
|
|
# process command line
|
|
|
|
op = optparse.OptionParser(usage='ipdl.py [options] IPDLfiles...')
|
|
op.add_option('-I', '--include', dest='includedirs', default=[ ],
|
|
action='append',
|
|
help='Additional directory to search for included protocol specifications')
|
|
op.add_option('-v', '--verbose', dest='verbosity', default=1, action='count',
|
|
help='Verbose logging (specify -vv or -vvv for very verbose logging)')
|
|
op.add_option('-q', '--quiet', dest='verbosity', action='store_const', const=0,
|
|
help="Suppress logging output")
|
|
op.add_option('-d', '--outheaders-dir', dest='headersdir', default='.',
|
|
help="""Directory into which C++ headers will be generated.
|
|
A protocol Foo in the namespace bar will cause the headers
|
|
dir/bar/Foo.h, dir/bar/FooParent.h, and dir/bar/FooParent.h
|
|
to be generated""")
|
|
op.add_option('-o', '--outcpp-dir', dest='cppdir', default='.',
|
|
help="""Directory into which C++ sources will be generated
|
|
A protocol Foo in the namespace bar will cause the sources
|
|
cppdir/FooParent.cpp, cppdir/FooChild.cpp
|
|
to be generated""")
|
|
|
|
|
|
options, files = op.parse_args()
|
|
_verbosity = options.verbosity
|
|
headersdir = options.headersdir
|
|
cppdir = options.cppdir
|
|
includedirs = [ os.path.abspath(incdir) for incdir in options.includedirs ]
|
|
|
|
if not len(files):
|
|
op.error("No IPDL files specified")
|
|
|
|
log(2, 'Generated C++ headers will be generated relative to "%s"', headersdir)
|
|
log(2, 'Generated C++ sources will be generated in "%s"', cppdir)
|
|
|
|
allprotocols = []
|
|
|
|
for f in files:
|
|
log(1, os.path.basename(f))
|
|
if f == '-':
|
|
fd = sys.stdin
|
|
filename = '<stdin>'
|
|
else:
|
|
fd = open(f)
|
|
filename = f
|
|
|
|
specstring = fd.read()
|
|
fd.close()
|
|
|
|
ast = ipdl.parse(specstring, filename, includedirs=includedirs)
|
|
if ast is None:
|
|
print >>sys.stderr, 'Specification could not be parsed.'
|
|
sys.exit(1)
|
|
|
|
allprotocols.append('%sMsgStart' % ast.protocol.name)
|
|
|
|
log(2, 'checking types')
|
|
if not ipdl.typecheck(ast):
|
|
print >>sys.stderr, 'Specification is not well typed.'
|
|
sys.exit(1)
|
|
|
|
if _verbosity > 2:
|
|
log(3, ' pretty printed code:')
|
|
ipdl.genipdl(ast, codedir)
|
|
|
|
ipdl.gencxx(filename, ast, headersdir, cppdir)
|
|
|
|
allprotocols.sort()
|
|
|
|
ipcmsgstart = StringIO()
|
|
|
|
print >>ipcmsgstart, """
|
|
// CODE GENERATED by ipdl.py. Do not edit.
|
|
|
|
#ifndef IPCMessageStart_h
|
|
#define IPCMessageStart_h
|
|
|
|
enum IPCMessageStart {
|
|
"""
|
|
|
|
for name in allprotocols:
|
|
print >>ipcmsgstart, " %s," % name
|
|
|
|
print >>ipcmsgstart, """
|
|
LastMsgIndex
|
|
};
|
|
|
|
COMPILE_ASSERT(LastMsgIndex <= 65536, need_to_update_IPC_MESSAGE_MACRO);
|
|
|
|
#endif // ifndef IPCMessageStart_h
|
|
"""
|
|
|
|
ipdl.writeifmodified(ipcmsgstart.getvalue(),
|
|
os.path.join(headersdir, 'IPCMessageStart.h'))
|