Class: Fbe::Iterate
- Inherits:
-
Object
- Object
- Fbe::Iterate
- Defined in:
- lib/fbe/iterate.rb
Overview
Iterate.
- Author
-
Yegor Bugayenko (yegor256@gmail.com)
- Copyright
-
Copyright © 2024 Zerocracy
- License
-
MIT
Instance Method Summary collapse
- #as(label) ⇒ Object
- #by(query) ⇒ Object
-
#initialize(fb, loog) ⇒ Iterate
constructor
A new instance of Iterate.
- #limit(limit) ⇒ Object
- #over ⇒ Object
- #quota_aware ⇒ Object
Constructor Details
#initialize(fb, loog) ⇒ Iterate
Returns a new instance of Iterate.
41 42 43 44 45 46 47 48 49 |
# File 'lib/fbe/iterate.rb', line 41 def initialize(fb, loog) @fb = fb @loog = loog @label = nil @since = 0 @query = nil @limit = 100 @quota_aware = false end |
Instance Method Details
#as(label) ⇒ Object
66 67 68 69 70 |
# File 'lib/fbe/iterate.rb', line 66 def as(label) raise 'Label is already set' unless @label.nil? raise 'Cannot set "label" to nil' if label.nil? @label = label end |
#by(query) ⇒ Object
60 61 62 63 64 |
# File 'lib/fbe/iterate.rb', line 60 def by(query) raise 'Query is already set' unless @query.nil? raise 'Cannot set query to nil' if query.nil? @query = query end |
#limit(limit) ⇒ Object
55 56 57 58 |
# File 'lib/fbe/iterate.rb', line 55 def limit(limit) raise 'Cannot set "limit" to nil' if limit.nil? @limit = limit end |
#over ⇒ Object
72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 |
# File 'lib/fbe/iterate.rb', line 72 def over(&) raise 'Use "as" first' if @label.nil? raise 'Use "by" first' if @query.nil? seen = {} oct = Fbe.octo(loog: @loog) repos = Fbe.unmask_repos(loog: @loog) loop do repos.each do |repo| seen[repo] = 0 if seen[repo].nil? if seen[repo] > @limit @loog.debug("We've seen too many in the #{repo} repo, time to move to the next one") next end rid = oct.repo_id_by_name(repo) before = Fbe.fb.query( "(agg (and (eq what '#{@label}') (eq where 'github') (eq repository #{rid})) (first latest))" ).one Fbe.fb.query("(and (eq what '#{@label}') (eq where 'github') (eq repository #{rid}))").delete! before = before.nil? ? @since : before[0] nxt = Fbe.fb.query(@query).one(before:, repository: rid) after = if nxt.nil? @loog.debug("Next is nil, starting from the beginning at #{@since}") @since else @loog.debug("Next is #{nxt}, starting from it...") yield(rid, nxt) end raise "Iterator must return an Integer, while #{after.class} returned" unless after.is_a?(Integer) f = Fbe.fb.insert f.where = 'github' f.repository = rid f.latest = if after.nil? @loog.debug("After is nil, setting the `latest` to nxt: #{nxt}") nxt else @loog.debug("After is #{after}, setting the `latest` to it") after end f.what = @label seen[repo] += 1 if oct.off_quota @loog.debug('We are off GitHub quota, time to stop') break end end if oct.off_quota @loog.debug('We are off GitHub quota, time to stop') break end unless seen.values.any? { |v| v < @limit } @loog.debug('No more repos to scan, quitting') break end end @loog.debug("Finished scanning #{repos.size} repos: #{seen.map { |k, v| "#{k}:#{v}" }.join(', ')}") end |
#quota_aware ⇒ Object
51 52 53 |
# File 'lib/fbe/iterate.rb', line 51 def quota_aware @quota_aware = true end |