Sha256: 18d1ab1724fd5729e64ad8983fbbddbf40f59b06e4c40281225eb5f35f7a0c81
Contents?: true
Size: 1.88 KB
Versions: 3
Compression:
Stored size: 1.88 KB
Contents
require 'gir_ffi/builder/argument' module GirFFI::Builder # Implements the creation of a Ruby function definition out of a GIR # IFunctionInfo. class Function def initialize info, libmodule @info = info @libmodule = libmodule end def generate setup_accumulators @data = @info.args.map {|arg| Argument.build self, arg, @libmodule} @rvdata = ReturnValue.build self, @info alldata = @data.dup << @rvdata alldata.each {|data| data.prepare idx = data.type_info.array_length if idx > -1 data.length_arg = @data[idx] @data[idx].array_arg = data end } adjust_accumulators return filled_out_template end private def setup_accumulators @varno = 0 end def adjust_accumulators klass = @info.throws? ? ErrorArgument : NullArgument @errarg = klass.new(self) @errarg.prepare end def filled_out_template return <<-CODE def #{@info.name} #{inargs.join(', ')} #{pre.join("\n")} #{capture}::#{@libmodule}.#{@info.symbol} #{callargs.join(', ')} #{post.join("\n")} end CODE end def inargs @data.map(&:inarg).compact end def callargs ca = @data.map(&:callarg) ca << @errarg.callarg ca.unshift "self" if @info.method? ca.compact end def pre pr = @data.map(&:pre) pr << @errarg.pre pr.flatten end def capture if (cv = @rvdata.cvar) "#{cv} = " else "" end end def post po = (@data.map(&:post) + @data.map(&:postpost) + @rvdata.post) po.unshift @errarg.post retvals = ([@rvdata.retval] + @data.map(&:retval)).compact po << "return #{retvals.join(', ')}" unless retvals.empty? po.flatten end def new_var @varno += 1 "_v#{@varno}" end public :new_var end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
gir_ffi-0.0.10 | lib/gir_ffi/builder/function.rb |
gir_ffi-0.0.9 | lib/gir_ffi/builder/function.rb |
gir_ffi-0.0.8 | lib/gir_ffi/builder/function.rb |