Sha256: eb8604a4c3c3adc4c4523559f8b1f413216769ad16cb54a9f5435efdf3d7dae9

Contents?: true

Size: 1.69 KB

Versions: 180

Compression:

Stored size: 1.69 KB

Contents

module Eco
  module API
    module Common
      module People

        # @example Example of usage:
        #  class ExampleParser < Eco::API::Common::People::BaseParser
        #    def process
        #      @parsers.define_attribute("example") do |parser|
        #        parser.def_parser  do |str, deps|
        #          i = value.to_i rescue 0
        #          i +=5 if deps.dig(:sum_5)
        #          i
        #        end.def_serializer do |value|
        #          value.to_s
        #        end
        #      end
        #    end
        #  end
        #  pparser = Eco::API::Common::People::PersonParser.new
        #  ExampleParser.new(pparser)
        #  pparser.parse("example","3") # out: 3
        #  pparser.parse("example","3", deps: {sum_5: true}) # out: 8
        #  pparser.serialise("example, 8) # out: "8"
        #
        # Helper class to inherit from to ease the definition of attribute parsers in a `PersonParser` object,
        # mostly used in for configuration loading.
        class BaseParser

          # @param parsers [Eco::API::Common::People::PersonParser] set of attribute parsers/serialisers.
          # @param options [Hash] keyword arguments to be used in the `process` method of the child class.
          def initialize(parsers, **options)
            @parsers = parsers
            @options = options
          end

          # Method to be overriden by the child class.
          # @note this method is called to load the definition of the attribute parser/serializer.
          def process
            raise "Method needs to be overriden in the child class #{self.class}"
          end
        end
      end
    end
  end
end

Version data entries

180 entries across 180 versions & 1 rubygems

Version Path
eco-helpers-2.0.50 lib/eco/api/common/people/base_parser.rb
eco-helpers-2.0.49 lib/eco/api/common/people/base_parser.rb
eco-helpers-2.0.48 lib/eco/api/common/people/base_parser.rb
eco-helpers-2.0.47 lib/eco/api/common/people/base_parser.rb
eco-helpers-2.0.46 lib/eco/api/common/people/base_parser.rb
eco-helpers-2.0.45 lib/eco/api/common/people/base_parser.rb
eco-helpers-2.0.44 lib/eco/api/common/people/base_parser.rb
eco-helpers-2.0.43 lib/eco/api/common/people/base_parser.rb
eco-helpers-2.0.42 lib/eco/api/common/people/base_parser.rb
eco-helpers-2.0.41 lib/eco/api/common/people/base_parser.rb
eco-helpers-2.0.40 lib/eco/api/common/people/base_parser.rb
eco-helpers-2.0.39 lib/eco/api/common/people/base_parser.rb
eco-helpers-2.0.38 lib/eco/api/common/people/base_parser.rb
eco-helpers-2.0.37 lib/eco/api/common/people/base_parser.rb
eco-helpers-2.0.36 lib/eco/api/common/people/base_parser.rb
eco-helpers-2.0.35 lib/eco/api/common/people/base_parser.rb
eco-helpers-2.0.34 lib/eco/api/common/people/base_parser.rb
eco-helpers-2.0.33 lib/eco/api/common/people/base_parser.rb
eco-helpers-2.0.32 lib/eco/api/common/people/base_parser.rb
eco-helpers-2.0.31 lib/eco/api/common/people/base_parser.rb