Class: Bibliothecary::Parsers::Cargo

Inherits:
Object
  • Object
show all
Includes:
Analyser
Defined in:
lib/bibliothecary/parsers/cargo.rb

Class Method Summary collapse

Methods included from Analyser

included

Class Method Details

.mappingObject



8
9
10
11
12
13
14
15
16
17
18
19
# File 'lib/bibliothecary/parsers/cargo.rb', line 8

def self.mapping
  {
    /Cargo\.toml$/ => {
      kind: 'manifest',
      parser: :parse_manifest
    },
    /Cargo\.lock$/ => {
      kind: 'lockfile',
      parser: :parse_lockfile
    }
  }
end

.parse_lockfile(file_contents) ⇒ Object



36
37
38
39
40
41
42
43
44
45
46
47
# File 'lib/bibliothecary/parsers/cargo.rb', line 36

def self.parse_lockfile(file_contents)
  manifest = TomlRB.parse(file_contents)
  manifest.fetch('package',[]).map do |dependency|
    next if not dependency['source'] or not dependency['source'].start_with?('registry+')
    {
      name: dependency['name'],
      requirement: dependency['version'],
      type: 'runtime'
    }
  end
    .compact
end

.parse_manifest(file_contents) ⇒ Object



21
22
23
24
25
26
27
28
29
30
31
32
33
34
# File 'lib/bibliothecary/parsers/cargo.rb', line 21

def self.parse_manifest(file_contents)
  manifest = TomlRB.parse(file_contents)
  manifest.fetch('dependencies', []).map do |name, requirement|
    if requirement.respond_to?(:fetch)
      requirement = requirement['version'] or next
    end
    {
      name: name,
      requirement: requirement,
      type: 'runtime'
    }
  end
    .compact
end