libvips/cplusplus/gen-operators.py

264 lines
7.6 KiB
Python
Raw Normal View History

2019-02-01 21:45:12 +01:00
#!/usr/bin/env python
2014-10-27 19:17:49 +01:00
2019-02-01 21:45:12 +01:00
# This file generates the member definitions and declarations for all vips operators.
# It's in Python, since we use the whole of FFI.
2014-10-27 19:17:49 +01:00
2019-02-01 21:45:12 +01:00
# Regenerate the files with something like:
#
# cd cplusplus
# python gen-operators.py
2014-10-27 19:17:49 +01:00
2019-02-01 21:45:12 +01:00
# this needs pyvips
#
# pip install --user pyvips
2014-10-27 19:17:49 +01:00
2019-02-01 21:45:12 +01:00
# Sample member declaration:
# VImage invert(VOption *options = 0) const;
2014-10-27 19:17:49 +01:00
2019-02-01 21:45:12 +01:00
# Sample member definition:
# VImage VImage::invert( VOption *options ) const
# {
# VImage out;
#
# call( "invert",
# (options ? options : VImage::option())->
# set( "in", *this )->
# set( "out", &out ) );
#
# return( out );
# }
2014-10-27 19:17:49 +01:00
import argparse
2014-10-27 19:17:49 +01:00
2019-02-01 21:45:12 +01:00
from pyvips import Image, Operation, GValue, Error, \
ffi, gobject_lib, type_map, type_from_name, nickname_find, type_name
2014-10-27 19:17:49 +01:00
# turn a GType into a C++ type
gtype_to_cpp = {
2019-02-01 21:45:12 +01:00
GValue.gbool_type: 'bool',
GValue.gint_type: 'int',
GValue.gdouble_type: 'double',
GValue.gstr_type: 'char *',
GValue.refstr_type: 'char *',
GValue.gflags_type: 'int',
GValue.image_type: 'VImage',
GValue.array_int_type: 'std::vector<int>',
GValue.array_double_type: 'std::vector<double>',
GValue.array_image_type: 'std::vector<VImage>',
GValue.blob_type: 'VipsBlob *'
2014-10-27 19:17:49 +01:00
}
2019-02-01 21:45:12 +01:00
# values for VipsArgumentFlags
_REQUIRED = 1
_INPUT = 16
_OUTPUT = 32
_DEPRECATED = 64
_MODIFY = 128
# for VipsOperationFlags
_OPERATION_DEPRECATED = 8
def get_cpp_type(gtype):
"""Map a gtype to C++ type name we use to represent it.
"""
if gtype in gtype_to_cpp:
return gtype_to_cpp[gtype]
fundamental = gobject_lib.g_type_fundamental(gtype)
2014-10-27 19:17:49 +01:00
# enum params use the C name as their name
2019-02-01 21:45:12 +01:00
if fundamental == GValue.genum_type:
return type_name(gtype)
2014-10-27 19:17:49 +01:00
2019-02-01 21:45:12 +01:00
if fundamental in gtype_to_cpp:
return gtype_to_cpp[fundamental]
2014-10-27 19:17:49 +01:00
2019-02-01 21:45:12 +01:00
return '<unknown type>'
2014-10-27 19:17:49 +01:00
2019-02-01 21:45:12 +01:00
# swap any '-' for '_'
def cppize(name):
return name.replace('-', '_')
2014-11-16 13:19:04 +01:00
2019-02-01 21:45:12 +01:00
def generate_operation(operation_name, declaration_only=False):
op = Operation.new_from_name(operation_name)
2014-11-16 13:19:04 +01:00
2019-02-01 21:45:12 +01:00
# we are only interested in non-deprecated args
args = [[name, flags] for name, flags in op.get_args()
if not flags & _DEPRECATED]
2014-10-27 19:17:49 +01:00
2019-02-01 21:45:12 +01:00
# find the first required input image arg, if any ... that will be self
member_x = None
for name, flags in args:
if ((flags & _INPUT) != 0 and
(flags & _REQUIRED) != 0 and
op.get_typeof(name) == GValue.image_type):
member_x = name
2014-10-27 19:17:49 +01:00
break
2019-02-01 21:45:12 +01:00
required_input = [name for name, flags in args
if (flags & _INPUT) != 0 and
(flags & _REQUIRED) != 0 and
name != member_x]
required_output = [name for name, flags in args
if ((flags & _OUTPUT) != 0 and
(flags & _REQUIRED) != 0) or
((flags & _INPUT) != 0 and
(flags & _REQUIRED) != 0 and
(flags & _MODIFY) != 0) and
name != member_x]
has_output = len(required_output) >= 1
# Add a C++ style comment block with some additional markings (@param, @return)
if declaration_only:
description = op.get_description()
result = '\n/**\n'
result += ' * ' + description[0].upper() + description[1:] + '.'
for name in required_input:
result += '\n * @param ' + cppize(name) + ' ' + op.get_blurb(name) + '.'
if has_output:
# skip the first element
for name in required_output[1:]:
result += '\n * @param ' + cppize(name) + ' ' + op.get_blurb(name) + '.'
result += '\n * @param options Optional options.'
if has_output:
result += '\n * @return ' + op.get_blurb(required_output[0]) + '.'
result += '\n */\n'
else:
result = '\n'
2019-02-01 21:45:12 +01:00
if member_x is None and declaration_only:
result += 'static '
if has_output:
# the first output arg will be used as the result
cpp_type = get_cpp_type(op.get_typeof(required_output[0]))
spacing = '' if cpp_type.endswith('*') else ' '
result += '{0}{1}'.format(cpp_type, spacing)
else:
result += 'void '
2014-10-27 19:17:49 +01:00
2019-02-01 21:45:12 +01:00
if not declaration_only:
result += 'VImage::'
2014-10-27 19:17:49 +01:00
2019-02-01 21:45:12 +01:00
result += '{0}( '.format(operation_name)
for name in required_input:
gtype = op.get_typeof(name)
cpp_type = get_cpp_type(gtype)
spacing = '' if cpp_type.endswith('*') else ' '
result += '{0}{1}{2}, '.format(cpp_type, spacing, cppize(name))
2014-10-27 19:17:49 +01:00
2019-02-01 21:45:12 +01:00
# output params are passed by reference
if has_output:
# skip the first element
for name in required_output[1:]:
gtype = op.get_typeof(name)
cpp_type = get_cpp_type(gtype)
spacing = '' if cpp_type.endswith('*') else ' '
result += '{0}{1}*{2}, '.format(cpp_type, spacing, cppize(name))
2014-10-27 19:17:49 +01:00
2019-02-01 21:45:12 +01:00
result += 'VOption *options {0})'.format('= 0 ' if declaration_only else '')
2014-10-27 19:17:49 +01:00
2019-02-01 21:45:12 +01:00
# if no 'this' available, it's a class method and they are all const
if member_x is not None:
result += ' const'
if declaration_only:
result += ';'
return result
result += '\n{\n'
if has_output:
# the first output arg will be used as the result
name = required_output[0]
cpp_type = get_cpp_type(op.get_typeof(name))
spacing = '' if cpp_type.endswith('*') else ' '
result += ' {0}{1}{2};\n\n'.format(cpp_type, spacing, cppize(name))
result += ' call( "{0}",\n'.format(operation_name)
result += ' (options ? options : VImage::option())'
if member_x is not None:
result += '->\n'
result += ' set( "{0}", *this )'.format(member_x)
all_required = required_input
if has_output:
# first element needs to be passed by reference
arg = cppize(required_output[0])
result += '->\n'
result += ' set( "{0}", &{1} )'.format(required_output[0], arg)
# append the remaining list
all_required += required_output[1:]
for name in all_required:
arg = cppize(name)
result += '->\n'
result += ' set( "{0}", {1} )'.format(name, arg)
result += ' );\n'
if has_output:
result += '\n'
result += ' return( {0} );\n'.format(required_output[0])
result += '}'
2019-02-01 21:45:12 +01:00
return result
def generate_operators(declarations_only=False):
2019-02-01 21:45:12 +01:00
all_nicknames = []
2019-02-01 21:45:12 +01:00
def add_nickname(gtype, a, b):
nickname = nickname_find(gtype)
try:
# can fail for abstract types
op = Operation.new_from_name(nickname)
2014-10-27 19:17:49 +01:00
2019-02-01 21:45:12 +01:00
# we are only interested in non-deprecated operations
if (op.get_flags() & _OPERATION_DEPRECATED) == 0:
all_nicknames.append(nickname)
except Error:
pass
2014-10-27 19:17:49 +01:00
2019-02-01 21:45:12 +01:00
type_map(gtype, add_nickname)
2014-10-27 19:17:49 +01:00
2019-02-01 21:45:12 +01:00
return ffi.NULL
2014-10-27 19:17:49 +01:00
2019-02-01 21:45:12 +01:00
type_map(type_from_name('VipsOperation'), add_nickname)
2014-10-27 19:17:49 +01:00
# add 'missing' synonyms by hand
all_nicknames.append('crop')
2014-10-27 19:17:49 +01:00
2019-02-01 21:45:12 +01:00
# make list unique and sort
all_nicknames = list(set(all_nicknames))
all_nicknames.sort()
2014-10-27 19:17:49 +01:00
for nickname in all_nicknames:
print(generate_operation(nickname, declarations_only))
2014-10-27 19:17:49 +01:00
parser = argparse.ArgumentParser(description='C++ binding generator')
parser.add_argument('--gen', '-g',
default='cpp',
choices=['h', 'cpp'],
help='File to generate: h (headers) or cpp (implementations) (default: %(default)s)')
2014-10-27 19:17:49 +01:00
if __name__ == '__main__':
args = parser.parse_args()
2014-10-27 19:17:49 +01:00
generate_operators(args.gen == 'h')