Sha256: 53b26788f5588dd9125ce08488755679b3e7674d41852a00fa8d6b94c2bd41c8

Contents?: true

Size: 1.98 KB

Versions: 1

Compression:

Stored size: 1.98 KB

Contents

module Antrapol
  module ToolRack
    module ConditionUtils

      def is_empty?(obj)
        if not defined?(obj)
          true
        elsif obj.nil?
          true
        elsif obj.respond_to?(:empty?)
          begin
            if obj.respond_to?(:strip)
              if obj.ascii_only?
                obj.strip.empty?
              else
                obj.empty?
              end
            else
              obj.empty?
            end
          rescue ArgumentError => ex
            # strip sometimes trigger 'invalid byte sequence in UTF-8' error
            # This will happen if the data is binary but the reading of the data
            # is in ascii format. 
            if ex.message =~ /invalid byte sequence/
              cuLogger.twarn :is_empty?, "Invalid byte sequence exception indicates the data is in binary but was given a ASCII buffer to test."
              false
            else
              raise
            end
          end

        elsif obj.respond_to?(:length)
          obj.length == 0
        elsif obj.respond_to?(:size)
          obj.size == 0
        else
          false
        end
      end # is_empty?

      def not_empty?(obj)
        !is_empty?(obj)
      end # not empty

      def is_boolean?(val)
        !!val == val
      end
      alias_method :is_bool?, :is_boolean?

      def is_string_boolean?(str)
        if not_empty?(str)
          s = str.to_s.strip.downcase
          case s
          when "true", "false"
            true
          else
            false
          end
        else
          false
        end
      end
      alias_method :is_str_bool?, :is_string_boolean?

      def cuLogger
        if @cuLogger.nil?
          @cuLogger = Tlogger.new
        end
        @cuLogger
      end

      # 
      # Make it available at class level too
      #
      def self.included(klass)
        klass.class_eval <<-END
          extend Antrapol::ToolRack::ConditionUtils
        END
      end

    end # ConditionUtils
  end # MyToolRack
end # Antrapol

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
toolrack-0.18.5 lib/toolrack/condition_utils.rb