Class: Cxx::EvalContext

Inherits:
Object
  • Object
show all
Extended by:
Deprecated
Includes:
Cxxproject, Cxxproject::Context
Defined in:
lib/cxx/eval_context.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Instance Attribute Details

#all_blocksObject

Returns the value of attribute all_blocks.



12
13
14
# File 'lib/cxx/eval_context.rb', line 12

def all_blocks
  @all_blocks
end

Instance Method Details

#attach_includes(hash, bblock) ⇒ Object



37
38
39
# File 'lib/cxx/eval_context.rb', line 37

def attach_includes(hash,bblock)
  bblock.set_includes(get_as_array(hash, :includes)) if hash.has_key?(:includes)
end

#attach_sources(hash, bblock) ⇒ Object



26
27
28
29
30
31
32
33
34
35
# File 'lib/cxx/eval_context.rb', line 26

def attach_sources(hash,bblock)
  if hash.has_key?(:sources)
    ss = hash[:sources]
    if ss.class == Array || ss.class == Rake::FileList
      bblock.set_sources(ss)
    else
      raise "sources need to be given in an Array or FileList, not a #{ss.class}"
    end
  end
end

#attach_tags(hash, bblock) ⇒ Object



41
42
43
44
45
46
# File 'lib/cxx/eval_context.rb', line 41

def attach_tags(hash, bblock)
  bblock.tags = Set.new
  if hash.has_key?(:tags)
    bblock.tags = hash[:tags].to_set
  end
end

#bin_lib(name, hash = Hash.new) ⇒ Object



124
125
126
127
128
129
130
131
132
# File 'lib/cxx/eval_context.rb', line 124

def bin_lib(name, hash=Hash.new)
  raise "not a hash" unless hash.is_a?(Hash)
  check_hash(hash, [:includes, :lib_path])

  bblock = Cxxproject::BinaryLibrary.new(name)
  attach_includes(hash,bblock)
  bblock.add_lib_element(Cxxproject::HasLibraries::SEARCH_PATH, hash[:lib_path], true) if hash.has_key?(:lib_path)
  return bblock
end

#bin_libs(names, hash = Hash.new) ⇒ Object

specify some binary libs returns all binary libs as array



136
137
138
139
140
141
142
# File 'lib/cxx/eval_context.rb', line 136

def bin_libs(names, hash=Hash.new)
  raise "not a hash" unless hash.is_a?(Hash)
  check_hash(hash, [:includes, :lib_path])

  mapped = names.map{|n|n.to_s}
  return mapped.map{|name|bin_lib(name, hash)}
end

#compile(name, hash) ⇒ Object



144
145
146
147
148
149
150
151
# File 'lib/cxx/eval_context.rb', line 144

def compile(name, hash)
  raise "not a hash" unless hash.is_a?(Hash)
  check_hash(hash,[:sources,:includes])
  bblock = Cxxproject::SingleSource.new(name)
  attach_sources(hash,bblock)
  attach_includes(hash,bblock)
  all_blocks << bblock
end

#custom(name, hash) ⇒ Object



153
154
155
156
157
158
159
160
161
162
# File 'lib/cxx/eval_context.rb', line 153

def custom(name, hash)
  raise "not a hash" unless hash.is_a?(Hash)
  check_hash(hash,[:execute, :dependencies])
  bblock = Cxxproject::CustomBuildingBlock.new(name)
  bblock.set_actions(hash[:execute]) if hash.has_key?(:execute)
  if hash.has_key?(:dependencies)
    bblock.set_dependencies(hash[:dependencies])
  end
  all_blocks << bblock
end

#cxx_configuration(&block) ⇒ Object

must be called to add building blocks



15
16
17
18
# File 'lib/cxx/eval_context.rb', line 15

def cxx_configuration(&block)
  @all_blocks = []
  block.call
end

#eval_project(project_text, project_file, pwd) ⇒ Object



20
21
22
23
24
# File 'lib/cxx/eval_context.rb', line 20

def eval_project(project_text, project_file, pwd)
  @current_project_file = project_file
  @current_working_dir = pwd
  instance_eval(project_text)
end

#exe(name, hash) ⇒ Object

specify an executable hash supports:

  • :sources

  • :includes

  • :dependencies

  • :output_dir



54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
# File 'lib/cxx/eval_context.rb', line 54

def exe(name, hash)
  raise "not a hash" unless hash.is_a?(Hash)
  check_hash(hash,[:sources,:includes,:dependencies,:libpath,:output_dir, :tags])
  bblock = Cxxproject::Executable.new(name)
  attach_sources(hash,bblock)
  attach_includes(hash,bblock)
  attach_tags(hash, bblock)
  if hash.has_key?(:dependencies)
    bblock.set_dependencies(hash[:dependencies])
    hash[:dependencies].each { |d| bblock.add_lib_element(Cxxproject::HasLibraries::DEPENDENCY, d) }
  end
  bblock.set_output_dir(hash[:output_dir]) if hash.has_key?(:output_dir)
  all_blocks << bblock
  bblock
end

#shared_lib(name, hash) ⇒ Object

specify an executable hash supports:

  • :sources

  • :includes

  • :dependencies

  • :output_dir

  • :tags



77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
# File 'lib/cxx/eval_context.rb', line 77

def shared_lib(name, hash)
  raise "not a hash" unless hash.is_a?(Hash)
  check_hash(hash, [:sources, :includes, :dependencies, :output_dir, :tags])
  bblock = Cxxproject::SharedLibrary.new(name)
  attach_sources(hash,bblock)
  attach_includes(hash,bblock)
  attach_tags(hash, bblock)
  if hash.has_key?(:dependencies)
    bblock.set_dependencies(hash[:dependencies])
    hash[:dependencies].each { |d| bblock.add_lib_element(Cxxproject::HasLibraries::DEPENDENCY, d) }
  end
  bblock.set_output_dir(hash[:output_dir]) if hash.has_key?(:output_dir)
  all_blocks << bblock
  bblock
end

#static_lib(name, hash) ⇒ Object

specify a static library hash supports:

  • :sources

  • :includes

  • :dependencies

  • :toolchain

  • :file_dependencies

  • :output_dir

  • :whole_archive

  • :tags



103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
# File 'lib/cxx/eval_context.rb', line 103

def static_lib(name, hash)
  raise "not a hash" unless hash.is_a?(Hash)
  check_hash(hash, [:sources, :includes, :dependencies, :toolchain, :file_dependencies, :output_dir, :whole_archive, :tags])
  raise ":sources need to be defined" unless hash.has_key?(:sources)
  bblock = Cxxproject::StaticLibrary.new(name, hash[:whole_archive])
  attach_sources(hash,bblock)
  attach_includes(hash,bblock)
  attach_tags(hash, bblock)
  bblock.set_tcs(hash[:toolchain]) if hash.has_key?(:toolchain)
  if hash.has_key?(:dependencies)
    bblock.set_dependencies(hash[:dependencies])
    hash[:dependencies].each { |d| bblock.add_lib_element(Cxxproject::HasLibraries::DEPENDENCY, d) }
  end
  bblock.file_dependencies = hash[:file_dependencies] if hash.has_key?(:file_dependencies)
  bblock.set_output_dir(hash[:output_dir]) if hash.has_key?(:output_dir)
  all_blocks << bblock
  bblock
end