Class: IronSpect::Inspecter

Inherits:
Object
  • Object
show all
Defined in:
lib/iron-spect.rb

Instance Method Summary collapse

Constructor Details

#initialize(repo_dir = Dir.getwd) ⇒ Inspecter

Returns a new instance of Inspecter.



8
9
10
11
12
13
# File 'lib/iron-spect.rb', line 8

def initialize(repo_dir=Dir.getwd)
  @sln_file_manager = Parsers::SolutionFileParser.new(repo_dir)
  @sln_file = @sln_file_manager.parse
  @repo_dir = repo_dir
  @startup_csproj_file = get_global_property('MonoDevelopProperties', 'StartupItem')
end

Instance Method Details

#get_executable_path(type) ⇒ Object



15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
# File 'lib/iron-spect.rb', line 15

def get_executable_path(type)
  raise "You must provide either 'Release' or 'Debug'" if not(type =~ /^(Debug|Release)$/)


  @csproj_file_manager = Parsers::ProjectFileParser.new("#{@repo_dir}/#{@startup_csproj_file}")
  startup_csproj = @csproj_file_manager.parse

  startup_csproj['PropertyGroup'].each do |property|
    if property.include?('Condition')
      if property['Condition'] === "'$(Configuration)|$(Platform)' == '#{type}|AnyCPU'"
        @out_path = property['OutputPath'][0].gsub(/\\/, '/').strip
      end
    end

    if property.include?('AssemblyName')
      @assembly_name = property['AssemblyName'][0].strip
    end

    if property.include?('OutputType')
      @out_type = property['OutputType'][0].strip.downcase
    end

    next
  end
  raise "Didn't find any Release executable paths" if (@out_path.nil? || @assembly_name.nil? || @out_type.nil?)
  "#{@repo_dir}/#{strip_csproj}/#{@out_path}#{@assembly_name}.#{@out_type}"
end

#get_global_property(property_tag, property) ⇒ Object



43
44
45
46
47
48
49
50
51
52
# File 'lib/iron-spect.rb', line 43

def get_global_property(property_tag, property)
  @sln_file[:global].each do |prop|
    prop_set = prop[:properties] if (prop[:property_tag] === property_tag)
    next if prop_set.nil?
    prop_set.each do |p|
      return p[:value].gsub(/\\/, '/') if p[:key] === property
    end
    raise "Property '#{property}' not found for property tag '#{property_tag}'"
  end
end

#get_project_property(project_name, property) ⇒ Object



54
55
56
57
58
59
60
61
62
# File 'lib/iron-spect.rb', line 54

def get_project_property(project_name, property)
  @sln_file[:projects].each do |project|
    if project[:assembly_info][:name] =~ /("?)#{project_name}("?)/
      return project[:assembly_info][property.to_sym].gsub(/\\/, '/') if (property != 'guid' && project[:assembly_info][property.to_sym])
      return project[:guid].gsub(/\\/, '/') if property === 'guid'
    end
  end
  raise "Property '#{property}' not found for project '#{project_name}'"
end

#strip_csprojObject



64
65
66
# File 'lib/iron-spect.rb', line 64

def strip_csproj
  @startup_csproj_file.match(/(^.*)\/.*\.csproj$/).captures[0].strip
end