Class: Cplus2Ruby::CodeGenerator

Inherits:
Object
  • Object
show all
Defined in:
lib/cplus2ruby/code_generator.rb

Direct Known Subclasses

CppCodeGenerator, WrapperCodeGenerator

Instance Method Summary collapse

Constructor Details

#initialize(model = Cplus2Ruby.model) ⇒ CodeGenerator

Returns a new instance of CodeGenerator.



4
5
6
# File 'lib/cplus2ruby/code_generator.rb', line 4

def initialize(model=Cplus2Ruby.model)
  @model = model
end

Instance Method Details

#all_methods_of(klass) ⇒ Object



34
35
36
37
38
39
# File 'lib/cplus2ruby/code_generator.rb', line 34

def all_methods_of(klass)
  klass.local_annotations.each do |name, options|
    next if options[:class] != Cplus2Ruby::Method
    yield name, options
  end
end

#all_properties_of(klass) ⇒ Object



27
28
29
30
31
32
# File 'lib/cplus2ruby/code_generator.rb', line 27

def all_properties_of(klass)
  klass.local_annotations.each do |name, options|
    next if options[:class] != Cplus2Ruby::Property
    yield name, options
  end
end

#args_convertable?(args) ⇒ Boolean

Returns:

  • (Boolean)


41
42
43
44
45
46
# File 'lib/cplus2ruby/code_generator.rb', line 41

def args_convertable?(args)
  #FIXME: Facets 2.3.0 has a bug in Dictionary#all?
  ##args.all? {|_, type| @model.typing.can_convert?(type) }
  args.each {|_, type| return false unless @model.typing.can_convert?(type) }
  return true
end

#arity(args) ⇒ Object



48
49
50
# File 'lib/cplus2ruby/code_generator.rb', line 48

def arity(args)
  args.size - (args.include?(:returns) ? 1 : 0)
end

#no_wrap?(klass) ⇒ Boolean

Returns:

  • (Boolean)


19
20
21
# File 'lib/cplus2ruby/code_generator.rb', line 19

def no_wrap?(klass)
  (klass.local_annotations[:__options__] || {})[:no_wrap]
end

#wrap?(klass) ⇒ Boolean

Returns:

  • (Boolean)


23
24
25
# File 'lib/cplus2ruby/code_generator.rb', line 23

def wrap?(klass)
  not no_wrap?(klass)
end

#write_out(file, str) ⇒ Object

Allows preprocessing of generated code.



11
12
13
14
15
16
17
# File 'lib/cplus2ruby/code_generator.rb', line 11

def write_out(file, str)
  if @model.settings()[:substitute_iv_ats] 
    str.gsub!('@', 'this->')
  end
  FileUtils.mkdir_p(File.dirname(file))
  File.open(file, 'w+') {|out| out.puts str}
end