-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdatabase_connection.py
executable file
·252 lines (214 loc) · 9.74 KB
/
database_connection.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
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
141
142
143
144
145
146
147
148
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
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
import threading
from mysql import connector
from player import PlayerStats
class DbConnection():
_db_lock = threading.Lock()
def __init__(self, username, password, commit_changes=False):
self.db = connector.connect(host='localhost', database='softball', user=username, password=password)
self.commit_changes = commit_changes
self.cursor = self.db.cursor()
def _execute_command(self, command):
DbConnection._db_lock.acquire()
try:
if self.commit_changes:
self.cursor.execute(command)
self.db.commit()
else:
print(f"DRYRUN: would have executed {command}")
except Exception as e:
raise e
finally:
DbConnection._db_lock.release()
def _insert_player_stat(self, player_id, game_id, stat):
insert_command = f'''INSERT INTO playerstat (player,
game,
plateappearances,
runs,
sacflies,
walks,
strikeouts,
singles,
doubles,
triples,
homeruns)
VALUES ({player_id},
{game_id},
{stat.plate_appearances},
{stat.runs},
{stat.sac_flies},
{stat.walks},
{stat.strikeouts},
{stat.singles},
{stat.doubles},
{stat.triples},
{stat.home_runs});'''
self._execute_command(insert_command)
def _insert_player_stats(self, game):
game_id = self.get_game_id(game.team, game.year, game.gamenum)
for player, stat in game.player_stats.items():
if stat.games_played != 1:
continue
player_id = self.get_player_id(player)
self._insert_player_stat(player_id, game_id, stat)
def get_stats_for_player_in_seasons(self, playername, seasons):
and_str = ''
for i, s in enumerate(seasons):
if i == len(seasons)-1:
and_str += f'game.year={s}'
else:
and_str += f'game.year={s} OR '
and_str +=');'
id = self.get_player_id(playername)
query = f'''SELECT * FROM playerstat
INNER JOIN game ON playerstat.game=game.id
WHERE playerstat.player={id} AND ('''
query += and_str
DbConnection._db_lock.acquire()
try:
self.cursor.execute(query)
query_results = self.cursor.fetchall()
except Exception as e:
raise e
finally:
DbConnection._db_lock.release()
stats = PlayerStats()
for p in query_results:
stats = stats + PlayerStats(1, p[3], p[4], p[5], p[6], p[7], p[8], p[9], p[10], p[11])
return stats
def get_career_stats_for_player(self, playername):
return self.get_stats_for_player_in_seasons(playername, self.get_seasons())
def get_all_stats(self):
DbConnection._db_lock.acquire()
query = f'''SELECT * FROM playerstat
INNER JOIN game ON playerstat.game=game.id
INNER JOIN player ON playerstat.player=player.id;'''
self.cursor.execute(query)
playerstats = self.cursor.fetchall()
return playerstats
def get_game_id(self, team, year, gamenum):
DbConnection._db_lock.acquire()
try:
self.cursor.execute(f'SELECT id, team, year, gamenum FROM game WHERE team = "{team}" AND year = {year} AND gamenum = {gamenum};')
games = self.cursor.fetchall()
except Exception as e:
raise e
finally:
DbConnection._db_lock.release()
if len(games) > 1:
raise RuntimeError(f'multiple games returned for {team}, {year}, #{gamenum}')
if len(games) == 0:
return 0
return games[0][0]
def get_game_ids_in_season(self, year):
DbConnection._db_lock.acquire()
try:
self.cursor.execute(f'SELECT id FROM game WHERE year={year};')
game_ids = self.cursor.fetchall()
except Exception as e:
raise e
finally:
DbConnection._db_lock.release()
return [i[0] for i in game_ids]
def get_player_id(self, playername):
DbConnection._db_lock.acquire()
try:
self.cursor.execute(f'SELECT id FROM player WHERE name="{playername}";')
ids = self.cursor.fetchall()
except Exception as e:
raise e
finally:
DbConnection._db_lock.release()
if len(ids) != 1:
raise RuntimeError(f'player with name {playername} not found in DB, len {len(ids)}')
return ids[0][0]
def get_player_list(self):
DbConnection._db_lock.acquire()
try:
self.cursor.execute('SELECT name FROM player;')
query_result = self.cursor.fetchall()
except Exception as e:
raise e
finally:
DbConnection._db_lock.release()
names = [n[0] for n in query_result]
return names
def get_raw_stats_from_game_id(self, game_id):
DbConnection._db_lock.acquire()
try:
self.cursor.execute(f'SELECT gamenum, opponent, washome FROM game WHERE id={game_id};')
results = self.cursor.fetchall()
game_num = results[0][0]
opponent = results[0][1]
was_home = results[0][2]
self.cursor.execute(f'''SELECT name, plateappearances, runs, sacflies, walks, strikeouts, singles, doubles, triples, homeruns
FROM playerstat
INNER JOIN game ON playerstat.game=game.id
INNER JOIN player ON playerstat.player=player.id
WHERE playerstat.game={game_id};''')
game_stats = self.cursor.fetchall()
except Exception as e:
raise e
finally:
DbConnection._db_lock.release()
return {'game_num': game_num, 'opponent': opponent, 'was_home': was_home, 'stats': game_stats}
def get_roster_for_season(self, season):
if season == 'All':
return self.get_player_list()
DbConnection._db_lock.acquire()
try:
self.cursor.execute(f'''SELECT player, name FROM roster
INNER JOIN player ON roster.player=player.id
WHERE roster.year={season};''')
query_result = self.cursor.fetchall()
except Exception as e:
raise e
finally:
DbConnection._db_lock.release()
names = [n[1] for n in query_result]
return names
def get_seasons(self):
DbConnection._db_lock.acquire()
try:
self.cursor.execute('SELECT DISTINCT year FROM roster;')
query_result = self.cursor.fetchall()
except Exception as e:
raise e
finally:
DbConnection._db_lock.release()
seasons = [n[0] for n in query_result]
return seasons
def insert_game(self, game):
if self.get_game_id(game.team, game.year, game.gamenum) != 0:
raise RuntimeError(f'Game already exists in database - {game}')
insert_command = f'''INSERT INTO game (year,
team,
gamenum,
opponent,
opponentscore,
washome)
VALUES ({game.year},
"{game.team}",
{game.gamenum},
"{game.opponent}",
{game.opponentscore},
{game.was_home});'''
self._execute_command(insert_command)
self._insert_player_stats(game)
def insert_player(self, player_name):
self._execute_command(f'INSERT INTO player (name) VALUES ("{player_name}");')
def insert_roster_item(self, year, player_name):
pid = self.get_player_id(player_name)
DbConnection._db_lock.acquire()
try:
self.cursor.execute(f'SELECT player FROM roster WHERE player={pid} AND year={year};')
players = self.cursor.fetchall()
except Exception as e:
raise e
finally:
DbConnection._db_lock.release()
if len(players) != 0:
raise RuntimeError(f'{player_name} already exists in roster for year {year}')
self._execute_command(f'INSERT INTO roster (player, year) VALUES ({pid}, {year});')
def verify_players_exist_in_database(self, players):
for player in players:
id = self.get_player_id(player)