Sha256: 249686b2d0f96c8d08cb492ff19386405ee2b84710c472d894f3ab026192c189

Contents?: true

Size: 1.53 KB

Versions: 5

Compression:

Stored size: 1.53 KB

Contents

# frozen_string_literal: true

module Fugit

  class << self

    def parse_cron(s); ::Fugit::Cron.parse(s); end
    def parse_duration(s); ::Fugit::Duration.parse(s); end
    def parse_nat(s, opts={}); ::Fugit::Nat.parse(s, opts); end
    def parse_at(s); ::Fugit::At.parse(s); end
    def parse_in(s); parse_duration(s); end

    def do_parse_cron(s); ::Fugit::Cron.do_parse(s); end
    def do_parse_duration(s); ::Fugit::Duration.do_parse(s); end
    def do_parse_nat(s, opts={}); ::Fugit::Nat.do_parse(s, opts); end
    def do_parse_at(s); ::Fugit::At.do_parse(s); end
    def do_parse_in(s); do_parse_duration(s); end

    def parse(s, opts={})

      opts[:at] = opts[:in] if opts.has_key?(:in)

      (opts[:cron] != false && parse_cron(s)) ||
      (opts[:duration] != false && parse_duration(s)) ||
      (opts[:nat] != false && parse_nat(s, opts)) ||
      (opts[:at] != false && parse_at(s)) ||
      nil
    end

    def do_parse(s, opts={})

      parse(s, opts) ||
      fail(ArgumentError.new("found no time information in #{s.inspect}"))
    end

    def parse_cronish(s, opts={})

      r = parse_cron(s) || parse_nat(s, opts)

      r.is_a?(::Fugit::Cron) ? r : nil
    end

    def do_parse_cronish(s, opts={})

      parse_cronish(s) ||
      fail(ArgumentError.new("not cron or 'natural' cron string: #{s.inspect}"))
    end

    def determine_type(s)

      case self.parse(s)
      when ::Fugit::Cron then 'cron'
      when ::Fugit::Duration then 'in'
      when ::Time, ::EtOrbi::EoTime then 'at'
      else nil
      end
    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
fugit-1.10.1 lib/fugit/parse.rb
fugit-1.10.0 lib/fugit/parse.rb
fugit-1.9.0 lib/fugit/parse.rb
fugit-1.8.1 lib/fugit/parse.rb
fugit-1.8.0 lib/fugit/parse.rb