File: unsatisfiable_graph.rb

package info (click to toggle)
ruby-semantic-puppet 1.1.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 292 kB
  • sloc: ruby: 2,898; makefile: 6
file content (37 lines) | stat: -rw-r--r-- 829 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
require 'semantic_puppet/dependency'

module SemanticPuppet
  module Dependency
    class UnsatisfiableGraph < StandardError
      attr_reader :graph, :unsatisfied

      def initialize(graph, unsatisfied = nil)
        @graph = graph

        deps = sentence_from_list(graph.modules)

        if unsatisfied
          @unsatisfied = unsatisfied
          super "Could not find satisfying releases of #{unsatisfied} for #{deps}"
        else
          super "Could not find satisfying releases for #{deps}"
        end
      end

      private

      def sentence_from_list(list)
        case list.length
        when 1
          list.first
        when 2
          list.join(' and ')
        else
          list = list.dup
          list.push("and #{list.pop}")
          list.join(', ')
        end
      end
    end
  end
end