ManageIQ/ffi-vix_disk_lib

View on GitHub

Showing 27 of 27 total issues

File enum.rb has 303 lines of code (exceeds 250 allowed). Consider refactoring.
Open

require 'ffi'

module FFI
  module VixDiskLib
    module API
Severity: Minor
Found in lib/ffi-vix_disk_lib/enum.rb - About 3 hrs to fix

    File api_wrapper.rb has 295 lines of code (exceeds 250 allowed). Consider refactoring.
    Open

    require 'ffi-vix_disk_lib'
    require 'logger'
    require 'ffi-vix_disk_lib/safe_connect_params'
    require 'ffi-vix_disk_lib/safe_create_params'
    require 'ffi-vix_disk_lib/disk_info'
    Severity: Minor
    Found in lib/ffi-vix_disk_lib/api_wrapper.rb - About 3 hrs to fix

      File api.rb has 292 lines of code (exceeds 250 allowed). Consider refactoring.
      Open

      require 'ffi'
      
      module FFI
        module VixDiskLib
          module API
      Severity: Minor
      Found in lib/ffi-vix_disk_lib/api.rb - About 3 hrs to fix

        Method clone has 6 arguments (exceeds 4 allowed). Consider refactoring.
        Open

              def self.clone(dest_connection, dest_path, src_connection, src_path, create_parms, over_write)
        Severity: Minor
        Found in lib/ffi-vix_disk_lib/api_wrapper.rb - About 45 mins to fix

          Method initialize has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
          Open

                def initialize(in_create_parms)
                  create_parms = FFI::MemoryPointer.new(VixDiskLib::CreateParams, 1, true)
                  create_parms_start = create_parms
                  disk_type = in_create_parms[:diskType]
                  create_parms = create_parms_start + VixDiskLib::CreateParams.offset_of(:diskType)
          Severity: Minor
          Found in lib/ffi-vix_disk_lib/safe_create_params.rb - About 45 mins to fix

          Cognitive Complexity

          Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

          A method's cognitive complexity is based on a few simple rules:

          • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
          • Code is considered more complex for each "break in the linear flow of the code"
          • Code is considered more complex when "flow breaking structures are nested"

          Further reading

          Method init_ex has 5 arguments (exceeds 4 allowed). Consider refactoring.
          Open

                def self.init_ex(info_logger = nil, warn_logger = nil, error_logger = nil, libDir = nil, configFile = nil)
          Severity: Minor
          Found in lib/ffi-vix_disk_lib/api_wrapper.rb - About 35 mins to fix

            Method create has 5 arguments (exceeds 4 allowed). Consider refactoring.
            Open

                  def self.create(connection, path, create_parms, prog_func = nil, prog_callback_data = nil)
            Severity: Minor
            Found in lib/ffi-vix_disk_lib/api_wrapper.rb - About 35 mins to fix

              Method create_child has 5 arguments (exceeds 4 allowed). Consider refactoring.
              Open

                    def self.create_child(disk_handle, child_path, disk_type, prog_func = nil, prog_callback_data = nil)
              Severity: Minor
              Found in lib/ffi-vix_disk_lib/api_wrapper.rb - About 35 mins to fix

                Method initialize has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
                Open

                      def initialize(in_conn_parms)
                        conn_parms      = FFI::MemoryPointer.new(API::ConnectParams, 1, true)
                        @connect_params = conn_parms
                        set_param(in_conn_parms, :vmxSpec)
                        # Increment structure pointer to server_name
                Severity: Minor
                Found in lib/ffi-vix_disk_lib/safe_connect_params.rb - About 35 mins to fix

                Cognitive Complexity

                Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

                A method's cognitive complexity is based on a few simple rules:

                • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
                • Code is considered more complex for each "break in the linear flow of the code"
                • Code is considered more complex when "flow breaking structures are nested"

                Further reading

                Method has too many optional parameters. [5/3]
                Open

                      def self.init_ex(info_logger = nil, warn_logger = nil, error_logger = nil, libDir = nil, configFile = nil)
                        @info_logger, @warn_logger, @error_logger = info_logger, warn_logger, error_logger
                
                        vix_error = super(API::VERSION_MAJOR, API::VERSION_MINOR,
                                          logger_for("info"), logger_for("warn"), logger_for("error"), libDir, configFile)
                Severity: Minor
                Found in lib/ffi-vix_disk_lib/api_wrapper.rb by rubocop

                Checks for methods with too many parameters.

                The maximum number of parameters is configurable. Keyword arguments can optionally be excluded from the total count, as they add less complexity than positional or optional parameters.

                Any number of arguments for initialize method inside a block of Struct.new and Data.define like this is always allowed:

                Struct.new(:one, :two, :three, :four, :five, keyword_init: true) do
                  def initialize(one:, two:, three:, four:, five:)
                  end
                end

                This is because checking the number of arguments of the initialize method does not make sense.

                NOTE: Explicit block argument &block is not counted to prevent erroneous change that is avoided by making block argument implicit.

                Example: Max: 3

                # good
                def foo(a, b, c = 1)
                end

                Example: Max: 2

                # bad
                def foo(a, b, c = 1)
                end

                Example: CountKeywordArgs: true (default)

                # counts keyword args towards the maximum
                
                # bad (assuming Max is 3)
                def foo(a, b, c, d: 1)
                end
                
                # good (assuming Max is 3)
                def foo(a, b, c: 1)
                end

                Example: CountKeywordArgs: false

                # don't count keyword args towards the maximum
                
                # good (assuming Max is 3)
                def foo(a, b, c, d: 1)
                end

                This cop also checks for the maximum number of optional parameters. This can be configured using the MaxOptionalParameters config option.

                Example: MaxOptionalParameters: 3 (default)

                # good
                def foo(a = 1, b = 2, c = 3)
                end

                Example: MaxOptionalParameters: 2

                # bad
                def foo(a = 1, b = 2, c = 3)
                end

                Avoid parameter lists longer than 5 parameters. [6/5]
                Open

                      def self.clone(dest_connection, dest_path, src_connection, src_path, create_parms, over_write)
                Severity: Minor
                Found in lib/ffi-vix_disk_lib/api_wrapper.rb by rubocop

                Checks for methods with too many parameters.

                The maximum number of parameters is configurable. Keyword arguments can optionally be excluded from the total count, as they add less complexity than positional or optional parameters.

                Any number of arguments for initialize method inside a block of Struct.new and Data.define like this is always allowed:

                Struct.new(:one, :two, :three, :four, :five, keyword_init: true) do
                  def initialize(one:, two:, three:, four:, five:)
                  end
                end

                This is because checking the number of arguments of the initialize method does not make sense.

                NOTE: Explicit block argument &block is not counted to prevent erroneous change that is avoided by making block argument implicit.

                Example: Max: 3

                # good
                def foo(a, b, c = 1)
                end

                Example: Max: 2

                # bad
                def foo(a, b, c = 1)
                end

                Example: CountKeywordArgs: true (default)

                # counts keyword args towards the maximum
                
                # bad (assuming Max is 3)
                def foo(a, b, c, d: 1)
                end
                
                # good (assuming Max is 3)
                def foo(a, b, c: 1)
                end

                Example: CountKeywordArgs: false

                # don't count keyword args towards the maximum
                
                # good (assuming Max is 3)
                def foo(a, b, c, d: 1)
                end

                This cop also checks for the maximum number of optional parameters. This can be configured using the MaxOptionalParameters config option.

                Example: MaxOptionalParameters: 3 (default)

                # good
                def foo(a = 1, b = 2, c = 3)
                end

                Example: MaxOptionalParameters: 2

                # bad
                def foo(a = 1, b = 2, c = 3)
                end

                Method has too many optional parameters. [4/3]
                Open

                      def self.init(info_logger = nil, warn_logger = nil, error_logger = nil, libDir = nil)
                        @info_logger, @warn_logger, @error_logger = info_logger, warn_logger, error_logger
                
                        vix_error = super(API::VERSION_MAJOR, API::VERSION_MINOR,
                                          logger_for("info"), logger_for("warn"), logger_for("error"), libDir)
                Severity: Minor
                Found in lib/ffi-vix_disk_lib/api_wrapper.rb by rubocop

                Checks for methods with too many parameters.

                The maximum number of parameters is configurable. Keyword arguments can optionally be excluded from the total count, as they add less complexity than positional or optional parameters.

                Any number of arguments for initialize method inside a block of Struct.new and Data.define like this is always allowed:

                Struct.new(:one, :two, :three, :four, :five, keyword_init: true) do
                  def initialize(one:, two:, three:, four:, five:)
                  end
                end

                This is because checking the number of arguments of the initialize method does not make sense.

                NOTE: Explicit block argument &block is not counted to prevent erroneous change that is avoided by making block argument implicit.

                Example: Max: 3

                # good
                def foo(a, b, c = 1)
                end

                Example: Max: 2

                # bad
                def foo(a, b, c = 1)
                end

                Example: CountKeywordArgs: true (default)

                # counts keyword args towards the maximum
                
                # bad (assuming Max is 3)
                def foo(a, b, c, d: 1)
                end
                
                # good (assuming Max is 3)
                def foo(a, b, c: 1)
                end

                Example: CountKeywordArgs: false

                # don't count keyword args towards the maximum
                
                # good (assuming Max is 3)
                def foo(a, b, c, d: 1)
                end

                This cop also checks for the maximum number of optional parameters. This can be configured using the MaxOptionalParameters config option.

                Example: MaxOptionalParameters: 3 (default)

                # good
                def foo(a = 1, b = 2, c = 3)
                end

                Example: MaxOptionalParameters: 2

                # bad
                def foo(a = 1, b = 2, c = 3)
                end

                Method read has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
                Open

                      def self.read(ffi_connect_parms)
                        out_connect_parms              = {}
                        spec_ptr                       =  ffi_connect_parms.get_pointer(API::ConnectParams.offset_of(:vmxSpec))
                        out_connect_parms[:vmxSpec]    = spec_ptr.read_string unless spec_ptr.null?
                        serv_ptr                       =  ffi_connect_parms.get_pointer(API::ConnectParams.offset_of(:serverName))
                Severity: Minor
                Found in lib/ffi-vix_disk_lib/safe_connect_params.rb - About 25 mins to fix

                Cognitive Complexity

                Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

                A method's cognitive complexity is based on a few simple rules:

                • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
                • Code is considered more complex for each "break in the linear flow of the code"
                • Code is considered more complex when "flow breaking structures are nested"

                Further reading

                Similar blocks of code found in 3 locations. Consider refactoring.
                Open

                      INFO_LOGGER = proc do |fmt, args|
                        if @info_logger.nil?
                          if $vix_disk_lib_log
                            $vix_disk_lib_log.info "VMware(VixDiskLib): #{process_log_args(fmt, args)}"
                          else
                Severity: Minor
                Found in lib/ffi-vix_disk_lib/api_wrapper.rb and 2 other locations - About 20 mins to fix
                lib/ffi-vix_disk_lib/api_wrapper.rb on lines 397..405
                lib/ffi-vix_disk_lib/api_wrapper.rb on lines 409..417

                Duplicated Code

                Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                Tuning

                This issue has a mass of 27.

                We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                Refactorings

                Further Reading

                Similar blocks of code found in 3 locations. Consider refactoring.
                Open

                      WARN_LOGGER = proc do |fmt, args|
                        if @warn_logger.nil?
                          if $vix_disk_lib_log
                            $vix_disk_lib_log.warn "VMware(VixDiskLib): #{process_log_args(fmt, args)}"
                          else
                Severity: Minor
                Found in lib/ffi-vix_disk_lib/api_wrapper.rb and 2 other locations - About 20 mins to fix
                lib/ffi-vix_disk_lib/api_wrapper.rb on lines 385..393
                lib/ffi-vix_disk_lib/api_wrapper.rb on lines 409..417

                Duplicated Code

                Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                Tuning

                This issue has a mass of 27.

                We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                Refactorings

                Further Reading

                Similar blocks of code found in 3 locations. Consider refactoring.
                Open

                      ERROR_LOGGER = proc do |fmt, args|
                        if @error_logger.nil?
                          if $vix_disk_lib_log
                            $vix_disk_lib_log.error "VMware(VixDiskLib): #{process_log_args(fmt, args)}"
                          else
                Severity: Minor
                Found in lib/ffi-vix_disk_lib/api_wrapper.rb and 2 other locations - About 20 mins to fix
                lib/ffi-vix_disk_lib/api_wrapper.rb on lines 385..393
                lib/ffi-vix_disk_lib/api_wrapper.rb on lines 397..405

                Duplicated Code

                Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                Tuning

                This issue has a mass of 27.

                We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                Refactorings

                Further Reading

                Useless method definition detected.
                Open

                      def self.free_connect_params(connect_params)
                        super(connect_params)
                      end
                Severity: Minor
                Found in lib/ffi-vix_disk_lib/api_wrapper.rb by rubocop

                Checks for useless method definitions, specifically: empty constructors and methods just delegating to super.

                Safety:

                This cop is unsafe as it can register false positives for cases when an empty constructor just overrides the parent constructor, which is bad anyway.

                Example:

                # bad
                def initialize
                  super
                end
                
                def method
                  super
                end
                
                # good - with default arguments
                def initialize(x = Object.new)
                  super
                end
                
                # good
                def initialize
                  super
                  initialize_internals
                end
                
                def method(*args)
                  super(:extra_arg, *args)
                end

                Do not set test_files in gemspec.
                Open

                  spec.test_files    = `git ls-files -- spec/*`.split("\n")
                Severity: Minor
                Found in ffi-vix_disk_lib.gemspec by rubocop

                Checks that deprecated attributes are not set in a gemspec file. Removing deprecated attributes allows the user to receive smaller packed gems.

                Example:

                # bad
                Gem::Specification.new do |spec|
                  spec.name = 'your_cool_gem_name'
                  spec.test_files = Dir.glob('test/**/*')
                end
                
                # bad
                Gem::Specification.new do |spec|
                  spec.name = 'your_cool_gem_name'
                  spec.test_files += Dir.glob('test/**/*')
                end
                
                # good
                Gem::Specification.new do |spec|
                  spec.name = 'your_cool_gem_name'
                end

                Use String#include? instead of a regex match with literal-only pattern.
                Open

                      if RbConfig::CONFIG["host_os"] =~ /darwin/ && (env = ENV["LIBRARY_PATH"])
                Severity: Minor
                Found in lib/ffi-vix_disk_lib/api.rb by rubocop

                metadata['rubygems_mfa_required'] must be set to 'true'.
                Open

                Gem::Specification.new do |spec|
                  spec.name          = "ffi-vix_disk_lib"
                  spec.version       = FFI::VixDiskLib::VERSION
                  spec.authors       = ["Jerry Keselman", "Rich Oliveri", "Jason Frey"]
                  spec.email         = ["jerryk@redhat.com", "roliveri@redhat.com", "jfrey@redhat.com"]
                Severity: Minor
                Found in ffi-vix_disk_lib.gemspec by rubocop

                Requires a gemspec to have rubygems_mfa_required metadata set.

                This setting tells RubyGems that MFA (Multi-Factor Authentication) is required for accounts to be able perform privileged operations, such as (see RubyGems' documentation for the full list of privileged operations):

                • gem push
                • gem yank
                • gem owner --add/remove
                • adding or removing owners using gem ownership page

                This helps make your gem more secure, as users can be more confident that gem updates were pushed by maintainers.

                Example:

                # bad
                Gem::Specification.new do |spec|
                  # no `rubygems_mfa_required` metadata specified
                end
                
                # good
                Gem::Specification.new do |spec|
                  spec.metadata = {
                    'rubygems_mfa_required' => 'true'
                  }
                end
                
                # good
                Gem::Specification.new do |spec|
                  spec.metadata['rubygems_mfa_required'] = 'true'
                end
                
                # bad
                Gem::Specification.new do |spec|
                  spec.metadata = {
                    'rubygems_mfa_required' => 'false'
                  }
                end
                
                # good
                Gem::Specification.new do |spec|
                  spec.metadata = {
                    'rubygems_mfa_required' => 'true'
                  }
                end
                
                # bad
                Gem::Specification.new do |spec|
                  spec.metadata['rubygems_mfa_required'] = 'false'
                end
                
                # good
                Gem::Specification.new do |spec|
                  spec.metadata['rubygems_mfa_required'] = 'true'
                end
                Severity
                Category
                Status
                Source
                Language