Sha256: 948840c020f0b3fb45fbe0da0e842ab81cc6e9e96f71fb2dbeb5fddb04b9966b

Contents?: true

Size: 1.79 KB

Versions: 36

Compression:

Stored size: 1.79 KB

Contents

require 'json'

module HybridPlatformsConductor

  class Topographer

    module Plugins

      # Output in Graphviz format
      class Json < Topographer::Plugin

        # Output the nodes graph in a file
        # [API] - This method is mandatory.
        #
        # Parameters::
        # * *file_name* (String): The file name for output
        def write_graph(file_name)
          # Build the JSON
          json = {
            nodes: [],
            links: [],
          }
          @topographer.nodes_graph.sort.each do |node_name, node_info|
            node_json = {
              id: node_name,
              description: "#{@topographer.title_for(node_name)} - #{@topographer.description_for(node_name)}",
              group: group_for(node_name),
            }
            node_json[:includes] = node_info[:includes] if @topographer.is_node_cluster?(node_name)
            json[:nodes] << node_json
            node_info[:connections].each do |connected_node_name, labels|
              json[:links] << {
                source: node_name,
                target: connected_node_name,
                value: 1,
                labels: labels.sort
              }
            end
          end
          File.write(file_name, JSON.pretty_generate(json))
        end

        private

        # Get the group of a given node
        #
        # Parameters::
        # * *node_name* (String): Node name
        # Result::
        # * String: Group
        def group_for(node_name)
          case @topographer.nodes_graph[node_name][:type]
          when :node
            if @topographer.is_node_physical?(node_name)
              1
            else
              2
            end
          when :cluster
            3
          when :unknown
            4
          end
        end

      end

    end

  end

end

Version data entries

36 entries across 36 versions & 1 rubygems

Version Path
hybrid_platforms_conductor-33.0.0 lib/hybrid_platforms_conductor/topographer/plugins/json.rb
hybrid_platforms_conductor-32.18.0 lib/hybrid_platforms_conductor/topographer/plugins/json.rb
hybrid_platforms_conductor-32.17.1 lib/hybrid_platforms_conductor/topographer/plugins/json.rb
hybrid_platforms_conductor-32.17.0 lib/hybrid_platforms_conductor/topographer/plugins/json.rb
hybrid_platforms_conductor-32.16.4 lib/hybrid_platforms_conductor/topographer/plugins/json.rb
hybrid_platforms_conductor-32.16.3 lib/hybrid_platforms_conductor/topographer/plugins/json.rb
hybrid_platforms_conductor-32.16.2 lib/hybrid_platforms_conductor/topographer/plugins/json.rb
hybrid_platforms_conductor-32.16.1 lib/hybrid_platforms_conductor/topographer/plugins/json.rb
hybrid_platforms_conductor-32.16.0 lib/hybrid_platforms_conductor/topographer/plugins/json.rb
hybrid_platforms_conductor-32.15.0 lib/hybrid_platforms_conductor/topographer/plugins/json.rb
hybrid_platforms_conductor-32.14.0 lib/hybrid_platforms_conductor/topographer/plugins/json.rb
hybrid_platforms_conductor-32.13.4 lib/hybrid_platforms_conductor/topographer/plugins/json.rb
hybrid_platforms_conductor-32.13.3 lib/hybrid_platforms_conductor/topographer/plugins/json.rb
hybrid_platforms_conductor-32.13.2 lib/hybrid_platforms_conductor/topographer/plugins/json.rb
hybrid_platforms_conductor-32.13.1 lib/hybrid_platforms_conductor/topographer/plugins/json.rb
hybrid_platforms_conductor-32.13.0 lib/hybrid_platforms_conductor/topographer/plugins/json.rb
hybrid_platforms_conductor-32.12.0 lib/hybrid_platforms_conductor/topographer/plugins/json.rb
hybrid_platforms_conductor-32.11.2 lib/hybrid_platforms_conductor/topographer/plugins/json.rb
hybrid_platforms_conductor-32.11.1 lib/hybrid_platforms_conductor/topographer/plugins/json.rb
hybrid_platforms_conductor-32.11.0 lib/hybrid_platforms_conductor/topographer/plugins/json.rb