Class: SportDb::RsssfGameReader

Inherits:
Object
  • Object
show all
Includes:
LogUtils::Logging, Models, FixtureHelpers, TextUtils::ValueHelper
Defined in:
lib/sportdb/rsssf_reader.rb

Class Method Summary collapse

Instance Method Summary collapse

Methods included from FixtureHelpers

#cut_off_end_of_line_comment!, #find_date!, #find_game_pos!, #find_ground!, #find_group_title_and_pos!, #find_leading_num!, #find_leading_pos!, #find_nationality!, #find_person!, #find_round_def_title!, #find_round_header_title!, #find_round_header_title2!, #find_round_pos!, #find_rsssf_date!, #find_scores!, #find_team!, #find_team1!, #find_team2!, #find_teams!, #is_goals?, #is_group?, #is_group_def?, #is_knockout_round?, #is_postponed?, #is_round?, #is_round_def?, #map_ground!, #map_person!, #map_team!, #map_teams!, #match_teams!

Constructor Details

#initialize(event_key, text) ⇒ RsssfGameReader

Returns a new instance of RsssfGameReader.



36
37
38
39
40
41
42
43
# File 'lib/sportdb/rsssf_reader.rb', line 36

def initialize( event_key, text )
  ### fix - fix -fix:
  ##  change event to event_or_event_key !!!!!  - allow event_key as string passed in

  ## todo/fix: how to add opts={} ???
  @event_key         = event_key
  @text              = text
end

Class Method Details

.from_string(event_key, text) ⇒ Object

todo: add from_file and from_zip too



30
31
32
33
34
# File 'lib/sportdb/rsssf_reader.rb', line 30

def self.from_string( event_key, text )
  ### fix - fix -fix:
  ##  change event to event_or_event_key !!!!!  - allow event_key as string passed in
  self.new( event_key, text )
end

Instance Method Details

#parse_date_header(line) ⇒ Object



237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
# File 'lib/sportdb/rsssf_reader.rb', line 237

def parse_date_header( line )
  # note: returns true if parsed, false if no match
 
  # line with NO teams  plus include date e.g.
  #   [Jun 17]  etc.

  @team_mapper.map_titles!( line )
  team1_key = @team_mapper.find_key!( line )
  team2_key = @team_mapper.find_key!( line )

  date  = find_rsssf_date!( line, start_at: @event.start_at )

  if date && team1_key.nil? && team2_key.nil?
    logger.debug( "date header line found: >#{line}<")
    logger.debug( "    date: #{date}")
    
    @last_date = date   # keep a reference for later use
    return true
  else
    return false
  end
end

#parse_fixtures(reader) ⇒ Object



262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
# File 'lib/sportdb/rsssf_reader.rb', line 262

def parse_fixtures( reader )
    
  reader.each_line do |line|

    ## fix: use inline/simpler is_rsssf_round?       
    if is_round?( line )
      parse_round_header( line )
    elsif try_parse_game( line )
      # do nothing here
    elsif try_parse_date_header( line )
      # do nothing here
    else
      logger.info "skipping line (no match found): >#{line}<"
    end
  end # lines.each

  ###########################
  # backtrack and patch round dates (start_at/end_at)

  unless @patch_round_ids.empty?
    ###
    # note: use uniq - to allow multiple round headers (possible?)

    Round.find( @patch_round_ids.uniq ).each do |r|
      logger.debug "patch round start_at/end_at date for #{r.title}:"

      ## note:
      ## will add "scope" pos first e.g
      #
      ## SELECT "games".* FROM "games"  WHERE "games"."round_id" = ?
      # ORDER BY pos, play_at asc  [["round_id", 7]]
      #   thus will NOT order by play_at but by pos first!!!
      # =>
      #  need to unscope pos!!! or use unordered_games - games_by_play_at_date etc.??
      #   thus use reorder()!!! - not just order('play_at asc')

      games = r.games.reorder( 'play_at asc' ).all

      ## skip rounds w/ no games

      ## todo/check/fix: what's the best way for checking assoc w/ 0 recs?
      next if games.size == 0

      # note: make sure start_at/end_at is date only (e.g. use play_at.to_date)
      #   sqlite3 saves datetime in date field as datetime, for example (will break date compares later!)

      round_attribs = {
        start_at: games[0].play_at.to_date,   # use games.first ?
        end_at:   games[-1].play_at.to_date  # use games.last ? why? why not?
      }

      logger.debug round_attribs.to_json
      r.update_attributes!( round_attribs )
    end
  end
end

#parse_game(line) ⇒ Object



149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
# File 'lib/sportdb/rsssf_reader.rb', line 149

def parse_game( line )
  logger.debug "parsing game (fixture) line: >#{line}<"

  @team_mapper.map_titles!( line )
  team1_key = @team_mapper.find_key!( line )
  team2_key = @team_mapper.find_key!( line )

  ## note: if we do NOT find two teams; return false - no match found
  if team1_key.nil? || team2_key.nil?
    logger.debug "  no game match (two teams required) found for line: >#{line}<"
    return false
  end

  date      = find_rsssf_date!( line, start_at: @event.start_at )

  ###
  # check if date found?
  #   note: ruby falsey is nil & false only (not 0 or empty array etc.)
  if date
    @last_date = date    # keep a reference for later use
  else
    date = @last_date    # no date found; (re)use last seen date
  end

  ## fix/todo: use find_rsssf_scores!( line )
  ##   use rsssf specific score finder!!!
  scores = find_scores!( line )

  logger.debug "  line: >#{line}<"


  ### todo: cache team lookups in hash?
  team1 = Team.find_by!( key: team1_key )
  team2 = Team.find_by!( key: team2_key )

  round = @last_round

  ### check if games exists
  ##  with this teams in this round if yes only update
  game = Game.find_by( round_id: round.id,
                       team1_id: team1.id,
                       team2_id: team2.id )
                        
  game_attribs = {
    score1:    scores[0],
    score2:    scores[1],
    score1et:  scores[2],
    score2et:  scores[3],
    score1p:   scores[4],
    score2p:   scores[5],
    play_at:    date,
    play_at_v2: nil,
    postponed:  false,
    knockout:   false,  ## round.knockout, ## note: for now always use knockout flag from round - why? why not?? 
    ground_id: nil,
    group_id:  nil
  }

  if game.present?
    logger.debug "update game #{game.id}:"
  else
    logger.debug "create game:"
    game = Game.new

    ## Note: use round.games.count for pos
    ##  lets us add games out of order if later needed
    more_game_attribs = {
      round_id: round.id,
      team1_id: team1.id,
      team2_id: team2.id,
      pos:      round.games.count+1
    }
    game_attribs = game_attribs.merge( more_game_attribs )
  end

  logger.debug game_attribs.to_json
  game.update_attributes!( game_attribs )
  
  return true   # game match found
end

#parse_round_header(line) ⇒ Object



68
69
70
71
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
130
131
132
133
134
135
136
137
138
139
140
# File 'lib/sportdb/rsssf_reader.rb', line 68

def parse_round_header( line )

  ## todo/fix:
  ##   simplify - for now round number always required
  #      e.g. no auto-calculation supported here
  #       fail if round found w/o number/pos !!!
  #
  #  also remove knockout flag for now (set to always false for now)
  
  logger.debug "parsing round header line: >#{line}<"

  ### todo/fix/check:  move cut off optional comment in reader for all lines? why? why not?
  cut_off_end_of_line_comment!( line )  # cut off optional comment starting w/ #

  ## check for date in header first e.g. Round 36 [Jul 20]  !!
  ##   avoid "conflict" with getting "wrong" round number from date etc.
  date = find_rsssf_date!( line, start_at: @event.start_at )
  if date
    @last_date = date
  end
  
  ## todo/check/fix:
  #   make sure  Round of 16  will not return pos 16 -- how? possible?
  #   add unit test too to verify
  pos = find_round_pos!( line )

  ## check if pos available; if not auto-number/calculate
  if pos.nil?
      logger.error( "  no round pos found in line >#{line}<; round pos required in rsssf; sorry" )
      fail( "round pos required in rsssf; sorry")
  end

  title = find_round_header_title!( line )

  ## Note: use extracted round title for knockout check
  ## knockout_flag = is_knockout_round?( title )

  logger.debug "  line: >#{line}<"
      
  ## Note: dummy/placeholder start_at, end_at date
  ##  replace/patch after adding all games for round

  round_attribs = {
    title:    title,
    title2:   nil,
    knockout: false
  }

  round = Round.find_by( event_id: @event.id,
                         pos:      pos )

  if round.present?
    logger.debug "update round #{round.id}:"
  else
    logger.debug "create round:"
    round = Round.new
        
    round_attribs = round_attribs.merge( {
      event_id: @event.id,
      pos:      pos,
      start_at: Date.parse('1911-11-11'),
      end_at:   Date.parse('1911-11-11')
    })
  end

  logger.debug round_attribs.to_json
 
  round.update_attributes!( round_attribs )

  ### store list of round ids for patching start_at/end_at at the end
  @patch_round_ids << round.id
  @last_round = round     ## keep track of last seen round for matches that follow etc.
end

#readObject



46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
# File 'lib/sportdb/rsssf_reader.rb', line 46

def read
  ## note: assume active activerecord connection
  @event = Event.find_by!( key: @event_key )

  logger.debug "Event #{@event.key} >#{@event.title}<"

  @team_mapper = TextUtils::TitleMapper.new( @event.teams, 'team' )

  ## reset cached values
  @patch_round_ids = []

  @last_round    = nil
  @last_date     = nil
  
  ## always use english (en) for now
  SportDb.lang.lang = 'en'

  reader = LineReader.from_string( @text )
  parse_fixtures( reader )    
end

#try_parse_date_header(line) ⇒ Object



231
232
233
234
235
# File 'lib/sportdb/rsssf_reader.rb', line 231

def try_parse_date_header( line )
  # note: clone line; for possible test do NOT modify in place for now
  # note: returns true if parsed, false if no match
  parse_date_header( line.dup )
end

#try_parse_game(line) ⇒ Object



143
144
145
146
147
# File 'lib/sportdb/rsssf_reader.rb', line 143

def try_parse_game( line )
  # note: clone line; for possible test do NOT modify in place for now
  # note: returns true if parsed, false if no match
  parse_game( line.dup )
end