Class: Albacore::Project

Inherits:
Object
  • Object
show all
Includes:
Logging
Defined in:
lib/albacore/project.rb

Overview

a project encapsulates the properties from a xxproj file.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Logging

#debug, #err, #error, #fatal, #info, #puts, #trace, #warn

Constructor Details

#initialize(proj_path) ⇒ Project

Returns a new instance of Project.



19
20
21
22
23
# File 'lib/albacore/project.rb', line 19

def initialize proj_path
  proj_path = proj_path.to_s unless proj_path.is_a? String
  @proj_xml_node = Nokogiri.XML(open(proj_path))
  @proj_path_base, @proj_filename = File.split proj_path
end

Instance Attribute Details

#proj_filenameObject (readonly)

Returns the value of attribute proj_filename.



17
18
19
# File 'lib/albacore/project.rb', line 17

def proj_filename
  @proj_filename
end

#proj_path_baseObject (readonly)

Returns the value of attribute proj_path_base.



17
18
19
# File 'lib/albacore/project.rb', line 17

def proj_path_base
  @proj_path_base
end

#proj_xml_nodeObject (readonly)

Returns the value of attribute proj_xml_node.



17
18
19
# File 'lib/albacore/project.rb', line 17

def proj_xml_node
  @proj_xml_node
end

Instance Method Details

#asmnameObject

get the assembly name specified in the project file



35
36
37
# File 'lib/albacore/project.rb', line 35

def asmname
  read_property 'AssemblyName'
end

#authorsObject

gets any authors from the project file



45
46
47
# File 'lib/albacore/project.rb', line 45

def authors
  read_property 'Authors'
end

#declared_packagesObject



108
109
110
111
112
113
114
115
116
117
118
# File 'lib/albacore/project.rb', line 108

def declared_packages
  return [] unless has_packages_config?
  doc = Nokogiri.XML(open(package_config))
  doc.xpath("//packages/package").collect { |p|
    OpenStruct.new(:id => p[:id], 
      :version => p[:version], 
      :target_framework => p[:targetFramework],
      :semver => Albacore::SemVer.parse(p[:version], '%M.%m.%p', false)
    )
  }
end

#declared_projectsObject



120
121
122
123
124
125
126
# File 'lib/albacore/project.rb', line 120

def declared_projects
  @proj_xml_node.css("ProjectReference").collect do |proj|
    debug "#{name}: found project reference: #{proj.css("Name").inner_text} [albacore: project]"
    Project.new(File.join(@proj_path_base, Albacore::Paths.normalise_slashes(proj['Include'])))
    #OpenStruct.new :name => proj.inner_text
  end
end

#descriptionObject



49
50
51
# File 'lib/albacore/project.rb', line 49

def description
  read_property 'Description'
end

#fallback_output_pathObject

This is the output path if the project file doens’t have a configured ‘Configuration’ condition like all default project files have that come from Visual Studio/Xamarin Studio.



77
78
79
80
81
82
# File 'lib/albacore/project.rb', line 77

def fallback_output_path
  fallback = @proj_xml_node.css("Project PropertyGroup OutputPath").first
  condition = fallback.parent['Condition'] || 'No \'Condition\' specified'
  warn "chose an OutputPath in: '#{self}' for Configuration: <#{condition}> [albacore: project]"
  fallback.inner_text
end

#faulty_refsObject



96
97
98
# File 'lib/albacore/project.rb', line 96

def faulty_refs
  find_refs.to_a.keep_if{ |r| r.children.css("HintPath").empty? }
end

#find_packagesObject

returns enumerable Package



145
146
147
148
149
150
151
# File 'lib/albacore/project.rb', line 145

def find_packages
  declared_packages.collect do |package|
    guess = ::Albacore::PackageRepo.new('./src/packages').find_latest package.id
    debug "#{name}: guess: #{guess} [albacore: project]"
    guess
  end
end

#find_refsObject

find the NodeList reference list



91
92
93
94
# File 'lib/albacore/project.rb', line 91

def find_refs
  # should always be there
  @proj_xml_node.css("Project Reference")
end

#has_faulty_refs?Boolean

Returns:

  • (Boolean)


100
101
102
# File 'lib/albacore/project.rb', line 100

def has_faulty_refs?
  faulty_refs.any?
end

#has_packages_config?Boolean

Returns:

  • (Boolean)


104
105
106
# File 'lib/albacore/project.rb', line 104

def has_packages_config?
  File.exists? package_config
end

#included_filesObject

returns a list of the files included in the project



129
130
131
132
133
134
135
136
137
138
139
140
141
142
# File 'lib/albacore/project.rb', line 129

def included_files
  ['Compile','Content','EmbeddedResource','None'].map { |item_name|
    proj_xml_node.xpath("/x:Project/x:ItemGroup/x:#{item_name}",
      'x' => "http://schemas.microsoft.com/developer/msbuild/2003").collect { |f|
      debug "#{name}: #included_files looking at '#{f}' [albacore: project]"
      link = f.elements.select{ |el| el.name == 'Link' }.map { |el| el.content }.first
      OpenStruct.new(:include => f[:Include], 
        :item_name => item_name.downcase,
        :link      => link,
        :include   => f['Include']
      )
    }
  }.flatten
end

#licenseObject

the license that the project has defined in the metadata in the xxproj file.



54
55
56
# File 'lib/albacore/project.rb', line 54

def license
  read_property 'License'
end

#nameObject Also known as: title

get the project name specified in the project file



26
27
28
29
# File 'lib/albacore/project.rb', line 26

def name
  prop = read_property 'Name' || asmname
  prop || asmname
end

#output_dll(conf) ⇒ Object

Gets the relative location (to the project base path) of the dll that it will output



86
87
88
# File 'lib/albacore/project.rb', line 86

def output_dll conf
  Paths.join(output_path(conf) || fallback_output_path, "#{asmname}.dll")
end

#output_path(conf) ⇒ Object

gets the output path of the project given the configuration or raise an error otherwise



60
61
62
# File 'lib/albacore/project.rb', line 60

def output_path conf
  try_output_path conf || raise(ConfigurationNotFoundError, "could not find configuration '#{conf}'")
end

#package_configObject

get the path of ‘packages.config’



165
166
167
# File 'lib/albacore/project.rb', line 165

def package_config
  File.join @proj_path_base, 'packages.config'
end

#pathObject

get the path of the project file



154
155
156
# File 'lib/albacore/project.rb', line 154

def path
  File.join @proj_path_base, @proj_filename
end

#save(output = nil) ⇒ Object

save the xml



159
160
161
162
# File 'lib/albacore/project.rb', line 159

def save(output = nil)
  output = path unless output
  File.open(output, 'w') { |f| @proj_xml_node.write_xml_to f }
end

#to_sObject



169
170
171
# File 'lib/albacore/project.rb', line 169

def to_s
  path
end

#try_output_path(conf) ⇒ Object



64
65
66
67
68
69
70
71
72
# File 'lib/albacore/project.rb', line 64

def try_output_path conf
  path = @proj_xml_node.css("Project PropertyGroup[Condition*='#{conf}|'] OutputPath")
  # path = @proj_xml_node.xpath("//Project/PropertyGroup[matches(@Condition, '#{conf}')]/OutputPath")

  debug { "#{name}: output path node[#{conf}]: #{ (path.empty? ? 'empty' : path.inspect) } [albacore: project]" }

  return path.inner_text unless path.empty?
  nil
end

#versionObject

gets the version from the project file



40
41
42
# File 'lib/albacore/project.rb', line 40

def version
  read_property 'Version'
end