# # ActiveFacts Generators. # Generate Ruby classes for the ActiveFacts API from an ActiveFacts vocabulary. # # Copyright (c) 2009 Clifford Heath. Read the LICENSE file. # require 'activefacts' require 'activefacts/vocabulary' require 'activefacts/generate/helpers/oo' require 'activefacts/mapping/rails' module ActiveFacts module Generate # Generate Ruby module containing classes for an ActiveFacts vocabulary. # Invoke as # afgen --ruby[=options] .cql # Options are comma or space separated: # * help list available options # * sql Emit the sql mapping for tables/columns (REVISIT: not functional at present) class RUBY < Helpers::OO private def set_option(option) @mapping = false case option when 'help', '?' $stderr.puts "Usage:\t\tafgen --ruby[=option,option] input_file.cql\n"+ "\t\tmapping={sql|rails}\tEmit data to enable mappings to SQL or to Rails" exit 0 when /mapping=(.*)/ @mapping = $1 @vocabulary.tables else super end end def vocabulary_start(vocabulary) puts "require 'activefacts/api'\n" if @mapping require 'activefacts/persistence' end if @mapping == 'sql' puts "require 'activefacts/persistence'\n" @tables = vocabulary.tables end puts "\nmodule ::#{vocabulary.name}\n\n" end def vocabulary_end puts "end" end def emit_mapping o case @mapping when 'sql' puts " table" when 'rails' puts " table :#{o.rails_name}" end end def data_type_dump(o) value_type_dump(o, o.name, {}) if o.all_role.size > 0 end def value_type_dump(o, super_type_name, facets) length = (l = o.length) && l > 0 ? ":length => #{l}" : nil scale = (s = o.scale) && s > 0 ? ":scale => #{s}" : nil params = [length,scale].compact * ", " ruby_type_name = super_type_name.gsub(/ /,'') name = o.name.sub(/^[a-z]/) {|i| i.upcase}.gsub(/ /,'') if ruby_type_name == name ruby_type_name = '::'+ruby_type_name end puts " class #{name} < #{ruby_type_name}\n" + " value_type #{params}\n" emit_mapping o if o.is_table puts " restrict #{o.value_constraint.all_allowed_range_sorted.map{|ar| ar.to_s}*", "}\n" if o.value_constraint puts " \# REVISIT: #{o.name} is in units of #{o.unit.name}\n" if o.unit roles_dump(o) puts " end\n\n" end def subtype_dump(o, supertypes, pi = nil) primary_supertype = o && (o.identifying_supertype || o.supertypes[0]) secondary_supertypes = o.supertypes-[primary_supertype] puts " class #{o.name.gsub(/ /,'')} < #{ primary_supertype.name.gsub(/ /,'') }" puts " identified_by #{identified_by(o, pi)}" if pi puts " supertypes "+secondary_supertypes.map{|st| st.name.gsub(/ /,'')}*", " if secondary_supertypes.size > 0 emit_mapping(o) if o.is_table fact_roles_dump(o.fact_type) if o.fact_type roles_dump(o) puts " end\n\n" @constraints_used[pi] = true if pi end def non_subtype_dump(o, pi) puts " class #{o.name.gsub(/ /,'')}" # We want to name the absorption role only when it's absorbed along its single identifying role. puts " identified_by #{identified_by(o, pi)}" emit_mapping o if o.is_table fact_roles_dump(o.fact_type) if o.fact_type roles_dump(o) puts " end\n\n" @constraints_used[pi] = true end # Dump one fact type. def fact_type_dump(fact_type, name) return if skip_fact_type(fact_type) o = fact_type.entity_type primary_supertype = o && (o.identifying_supertype || o.supertypes[0]) secondary_supertypes = o.supertypes-[primary_supertype] # Get the preferred identifier, but don't emit it unless it's different from the primary supertype's: pi = o.preferred_identifier pi = nil if pi && primary_supertype && primary_supertype.preferred_identifier == pi puts " class #{name.gsub(/ /,'')}" + (primary_supertype ? " < "+primary_supertype.name.gsub(/ /,'') : "") + "\n" + secondary_supertypes.map{|sst| " supertype :#{sst.name.gsub(/ /,'_')}"}*"\n" + (pi ? " identified_by #{identified_by(o, pi)}" : "") emit_mapping o if o.is_table fact_roles_dump(fact_type) roles_dump(o) puts " end\n\n" @fact_types_dumped[fact_type] = true end def identified_by_roles_and_facts(entity_type, identifying_role_refs, identifying_facts) identifying_role_refs.map{|role_ref| ":"+preferred_role_name(role_ref.role, entity_type) }*", " end def unary_dump(role, role_name) puts " maybe :"+role_name end def binary_dump(role, role_name, role_player, mandatory = nil, one_to_one = nil, readings = nil, other_role_name = nil, other_method_name = nil) ruby_role_name = ":"+role_name.gsub(/ /,'_') # Find whether we need the name of the other role player, and whether it's defined yet: implied_role_name = role_player.name.gsub(/ /,'').sub(/^[a-z]/) {|i| i.upcase} if role_name.camelcase != implied_role_name # Only use Class name if it's not implied by the rolename role_reference = ":class => "+object_type_reference(role_player) end other_role_name = ":counterpart => :"+other_role_name.gsub(/ /,'_') if other_role_name if vr = role.role_value_constraint value_restriction = ":restrict => #{vr}" end options = [ ruby_role_name, role_reference, mandatory ? ":mandatory => true" : nil, readings, other_role_name, value_restriction ].compact line = " #{one_to_one ? "one_to_one" : "has_one" } #{options*', '} " if other_method_name line += " "*(48-line.length) if line.length < 48 line += "\# See #{role_player.name.gsub(/ /,'')}.#{other_method_name}" end puts line #puts " \# REVISIT: #{other_role_name} has values restricted to #{role.role_value_constraint}\n" if role.role_value_constraint end def object_type_reference object_type if !@object_types_dumped[object_type] '"'+object_type.name.gsub(/ /,'')+'"' else role_reference = object_type.name.gsub(/ /,'') end end end end end ActiveFacts::Registry.generator('ruby', ActiveFacts::Generate::RUBY)